Skip to content

Commit

Permalink
provider utils, expose isValidMessageSignature and isValidTypedDataSi… (
Browse files Browse the repository at this point in the history
  • Loading branch information
pkieltyka authored Jul 13, 2023
1 parent 50c28a0 commit ca2fafe
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/v1/index.ts
Original file line number Diff line number Diff line change
@@ -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: '',
}
10 changes: 10 additions & 0 deletions src/v2/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { WalletContext } from '../commons/context'

export * as config from "./config"
export * as signature from "./signature"
Expand All @@ -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: '',
}

0 comments on commit ca2fafe

Please sign in to comment.