diff --git a/ape_arbitrum/ecosystem.py b/ape_arbitrum/ecosystem.py index e72d22d..3e491dc 100644 --- a/ape_arbitrum/ecosystem.py +++ b/ape_arbitrum/ecosystem.py @@ -20,7 +20,6 @@ NETWORKS = { # chain_id, network_id "mainnet": (42161, 42161), - "goerli": (421613, 421613), "sepolia": (421614, 421614), } INTERNAL_TRANSACTION_TYPE = 106 @@ -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() diff --git a/tests/test_integration.py b/tests/test_integration.py index eaf3070..28c10df 100644 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -6,8 +6,6 @@ arbitrum ├── mainnet │ └── geth (default) -├── goerli -│ └── geth (default) ├── sepolia │ └── geth (default) └── local (default) @@ -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"])