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 new chain AURORIA_TESTNET 205205 addresses #870

Merged
merged 4 commits into from
Apr 1, 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 gnosis/eth/clients/blockscout_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ class BlockscoutClient:
EthereumNetwork.SEI_DEVNET: "https://seitrace.com/graphiql",
EthereumNetwork.LISK_SEPOLIA_TESTNET: "https://sepolia-blockscout.lisk.com/graphiql",
EthereumNetwork.REYA_NETWORK: "https://explorer.reya.network/graphiql",
EthereumNetwork.AURORIA_TESTNET: "https://auroria.explorer.stratisevm.com/graphiql",
}

def __init__(self, network: EthereumNetwork):
Expand Down
1 change: 1 addition & 0 deletions gnosis/eth/ethereum_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -1047,6 +1047,7 @@ class EthereumNetwork(Enum):
X1_DEVNET = 202212
JELLIE = 202624
X1_NETWORK = 204005
AURORIA_TESTNET = 205205
PLATON_MAINNET = 210425
MAS_MAINNET = 220315
REAPCHAIN_MAINNET = 221230
Expand Down
6 changes: 6 additions & 0 deletions gnosis/safe/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -899,6 +899,9 @@
"1.3.0",
), # safe singleton address
],
EthereumNetwork.AURORIA_TESTNET: [
("0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", 186765, "1.4.1+L2"), # v1.4.1+L2
],
}

PROXY_FACTORIES: Dict[EthereumNetwork, List[Tuple[str, int]]] = {
Expand Down Expand Up @@ -1458,4 +1461,7 @@
1675084,
), # v1.3.0 default singleton address
],
EthereumNetwork.AURORIA_TESTNET: [
("0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", 186758), # v1.4.1
],
}
Loading