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 addresses 1.4.1 for chain PLUME_DEVNET #1456

Merged
merged 6 commits into from
Dec 2, 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
1 change: 1 addition & 0 deletions safe_eth/eth/clients/blockscout_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ class BlockscoutClient:
EthereumNetwork.INK_SEPOLIA: "https://explorer-sepolia.inkonchain.com/api/v1/graphql",
EthereumNetwork.STORY_ODYSSEY_TESTNET: "https://odyssey-testnet-explorer.storyscan.xyz/api/v1/graphql",
EthereumNetwork.SWELL_NETWORK_TESTNET: "https://swell-testnet-explorer.alt.technology/api/v1/graphql",
EthereumNetwork.PLUME_DEVNET: "https://test-explorer.plumenetwork.xyz/api/v1/graphql",
}

def __init__(self, network: EthereumNetwork):
Expand Down
1 change: 1 addition & 0 deletions safe_eth/eth/ethereum_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -1418,6 +1418,7 @@ class EthereumNetwork(Enum):
SLINGSHOT_TESTNET = 97435
GREEN_CHAIN_TESTNET = 97531
OPTIMUSZ7_TESTNET = 97970
PLUME_DEVNET = 98864
EBI_CHAIN = 98881
ELIBERTY_TESTNET = 99099
UB_SMART_CHAIN_TESTNET = 99998
Expand Down
11 changes: 11 additions & 0 deletions safe_eth/safe/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -1967,6 +1967,14 @@
("0x41675C099F32341bf84BFc5382aF534df5C7461a", 13895, "1.4.1"), # v1.4.1
("0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", 13894, "1.4.1+L2"), # v1.4.1+L2
],
EthereumNetwork.PLUME_DEVNET: [
("0x41675C099F32341bf84BFc5382aF534df5C7461a", 5167643, "1.4.1"), # v1.4.1
(
"0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
5167648,
"1.4.1+L2",
), # v1.4.1+L2
],
}

PROXY_FACTORIES: Dict[EthereumNetwork, List[Tuple[str, int]]] = {
Expand Down Expand Up @@ -2955,4 +2963,7 @@
EthereumNetwork.NAHMII_3_MAINNET: [
("0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", 13887), # v1.4.1
],
EthereumNetwork.PLUME_DEVNET: [
("0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", 5167616), # v1.4.1
],
}