Skip to content

Commit

Permalink
Add SafeToL2Migration contract abi
Browse files Browse the repository at this point in the history
  • Loading branch information
falvaradorodriguez committed Oct 9, 2024
1 parent 36ba021 commit 4f19e05
Show file tree
Hide file tree
Showing 2 changed files with 191 additions and 0 deletions.
8 changes: 8 additions & 0 deletions safe_eth/eth/contracts/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
MultiSendCallOnly: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2
SimulateTxAccessor: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199
SignMessageLib: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9
SafeToL2Migration: 0xfF83F6335d8930cBad1c0D439A841f01888D9f69
"""

import json
Expand Down Expand Up @@ -64,6 +65,7 @@
"safe_V1_1_1": "GnosisSafe_V1_1_1.json",
"safe_V1_3_0": "GnosisSafe_V1_3_0.json",
"safe_V1_4_1": "Safe_V1_4_1.json",
"safe_to_l2_migration": "SafeToL2Migration.json",
"simulate_tx_accessor_V1_4_1": "SimulateTxAccessor_V1_4_1.json",
"sign_message_lib": "SignMessageLib.json",
"uniswap_exchange": "uniswap_exchange.json",
Expand Down Expand Up @@ -179,6 +181,12 @@ def get_compatibility_fallback_handler_V1_4_1_contract(
raise NotImplementedError


def get_safe_to_l2_migration_contract(
w3: Web3, address: Optional[ChecksumAddress] = None
) -> Contract:
raise NotImplementedError


def get_sign_message_lib_contract(
w3: Web3, address: Optional[ChecksumAddress] = None
) -> Contract:
Expand Down
Loading

0 comments on commit 4f19e05

Please sign in to comment.