Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add SafeToL2Migration contract abi #1371

Merged
merged 1 commit into from
Oct 9, 2024
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
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