Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"tsc-alias": "^1.8.10",
"typescript": "^5.3.3",
"utf-8-validate": "^6.0.3",
"viem": "^2.16.3",
"viem": "^2.30.6",
"ws": "^8.16.0"
},
"dependencies": {
Expand Down
151 changes: 146 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 14 additions & 10 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const MULTI_FACTOR_VALIDATOR_ADDRESS: Address =
export const OWNABLE_EXECUTOR_ADDRESS: Address =
'0x4Fd8d57b94966982B62e9588C27B4171B55E8354'
export const OWNABLE_VALIDATOR_ADDRESS: Address =
'0x2483DA3A338895199E5e538530213157e931Bf06'
'0x0000000000E9E6E96Bcaa3c113187CdB7E38AED9'
export const REGISTRY_ADDRESS: Address =
'0x000000000069E2a187AEFFb852bF3cCdC95151B2'
export const REGISTRY_HOOK_ADDRESS: Address =
Expand All @@ -34,28 +34,32 @@ export const SCHEDULED_ORDERS_EXECUTOR_ADDRESS: Address =
'0x40dc90D670C89F322fa8b9f685770296428DCb6b'
export const SCHEDULED_TRANSFERS_EXECUTOR_ADDRESS: Address =
'0xA8E374779aeE60413c974b484d6509c7E4DDb6bA'

// Temp
export const SMART_SESSIONS_ADDRESS: Address =
'0x00000000002B0eCfbD0496EE71e01257dA0E37DE'
'0x2358e7436B2bC3F8a82B4F128236a7AF1b32f23c'
//'0x0000000000b1c0591b3b3bdadd1e37c8903bd962'
Comment on lines 39 to +41

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you please update with the latest address: 0x00000000008bDABA73cD9815d79069c247Eb4bDA

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sorry did not get notification for this

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice catch!

export const SMART_SESSIONS_COMPATIBILITY_FALLBACK_ADDRESS: Address =
'0xBad7E91C4F2803978cd6c7C3Fe80B5Fd7f7B0b50'
'0x000000000052e9685932845660777DF43C2dC496'

export const SOCIAL_RECOVERY_ADDRESS: Address =
'0xA04D053b3C8021e8D5bF641816c42dAA75D8b597'
export const SPENDING_LIMITS_POLICY_ADDRESS: Address =
'0x00000088D48cF102A8Cdb0137A9b173f957c6343'
'0x000000000033212e272655d8a22402db819477a6'
export const TIME_FRAME_POLICY_ADDRESS: Address =
'0x8177451511dE0577b911C254E9551D981C26dc72'
'0x0000000000D30f611fA3bf652ac6879428586930'
export const SUDO_POLICY_ADDRESS: Address =
'0x0000003111cD8e92337C100F22B7A9dbf8DEE301'
'0x0000000000FEEc8D74e3143fBaBbca515358d869'
export const UNIVERSAL_ACTION_POLICY_ADDRESS: Address =
'0x0000006DDA6c463511C4e9B05CFc34C1247fCF1F'
'0x0000000000714Cf48FcF88A0bFBa70d313415032'
export const UNIVERSAL_EMAIL_RECOVERY_ADDRESS: Address =
'0x636632FA22052d2a4Fb6e3Bab84551B620b9C1F9'
export const USAGE_LIMIT_POLICY_ADDRESS: Address =
'0x1F34eF8311345A3A4a4566aF321b313052F51493'
'0x00000000001d4479FA2A947026204d0283ceDe4B'
export const VALUE_LIMIT_POLICY_ADDRESS: Address =
'0x730DA93267E7E513e932301B47F2ac7D062abC83'
'0x000000000021dC45451291BCDfc9f0B46d6f0278'
export const WEBAUTHN_VALIDATOR_ADDRESS: Address =
'0x2f167e55d42584f65e2e30a748f41ee75a311414'
'0x0000000000578c4cB0e472a5462da43C495C3F33'

export const DEFAULT_CONSTANTS = {
ACCOUNT_LOCKER_HOOK,
Expand Down
Loading