diff --git a/src/v1/index.ts b/src/v1/index.ts index c0cfe342b..5ea82f8d2 100644 --- a/src/v1/index.ts +++ b/src/v1/index.ts @@ -1,5 +1,15 @@ +import { WalletContext } from '../commons/context' export * as config from './config' export * as signature from './signature' export const version = 1 + +export const DeployedWalletContext: WalletContext = { + version: version, + factory: '0xf9D09D634Fb818b05149329C1dcCFAeA53639d96', + guestModule: '0x02390F3E6E5FD1C6786CB78FD3027C117a9955A7', + mainModule: '0xd01F11855bCcb95f88D7A48492F66410d4637313', + mainModuleUpgradable: '0x7EFE6cE415956c5f80C6530cC6cc81b4808F6118', + walletCreationCode: '', +} diff --git a/src/v2/index.ts b/src/v2/index.ts index 1a939a732..7fa69ed60 100644 --- a/src/v2/index.ts +++ b/src/v2/index.ts @@ -1,3 +1,4 @@ +import { WalletContext } from '../commons/context' export * as config from "./config" export * as signature from "./signature" @@ -13,3 +14,12 @@ export const coders = { } export const version = 2 + +export const DeployedWalletContext: WalletContext = { + version: version, + factory: '0xFaA5c0b14d1bED5C888Ca655B9a8A5911F78eF4A', + guestModule: '0xfea230Ee243f88BC698dD8f1aE93F8301B6cdfaE', + mainModule: '0xfBf8f1A5E00034762D928f46d438B947f5d4065d', + mainModuleUpgradable: '0x4222dcA3974E39A8b41c411FeDDE9b09Ae14b911', + walletCreationCode: '', +}