Skip to content

Commit

Permalink
refactor: remove goerli (#28)
Browse files Browse the repository at this point in the history
Co-authored-by: antazoey <jules@apeworx.io>
  • Loading branch information
NotPeopling2day and antazoey authored May 3, 2024
1 parent c1c688f commit d9b671b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions ape_arbitrum/ecosystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
NETWORKS = {
# chain_id, network_id
"mainnet": (42161, 42161),
"goerli": (421613, 421613),
"sepolia": (421614, 421614),
}
INTERNAL_TRANSACTION_TYPE = 106
Expand Down Expand Up @@ -108,7 +107,6 @@ class ArbitrumConfig(BaseEthereumConfig):
DEFAULT_TRANSACTION_TYPE: ClassVar[int] = EthTransactionType.STATIC.value
DEFAULT_LOCAL_GAS_LIMIT: ClassVar[GasLimit] = LOCAL_GAS_LIMIT
mainnet: NetworkConfig = _create_config()
goerli: NetworkConfig = _create_config()
sepolia: NetworkConfig = _create_config()


Expand Down
3 changes: 0 additions & 3 deletions tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
arbitrum
├── mainnet
│ └── geth (default)
├── goerli
│ └── geth (default)
├── sepolia
│ └── geth (default)
└── local (default)
Expand Down Expand Up @@ -49,7 +47,6 @@ def assert_rich_text(actual: str, expected: str):
def test_networks(runner, cli, arbitrum):
# Do this in case local env changed it.
arbitrum.mainnet.set_default_provider("geth")
arbitrum.goerli.set_default_provider("geth")
arbitrum.sepolia.set_default_provider("geth")

result = runner.invoke(cli, ["networks", "list"])
Expand Down

0 comments on commit d9b671b

Please sign in to comment.