Commit 35bb9adf authored by Barnabas Busa's avatar Barnabas Busa Committed by GitHub

chore: yeet goerli (#570)

parent 5676f0dd
...@@ -450,7 +450,7 @@ participants: ...@@ -450,7 +450,7 @@ participants:
network_params: network_params:
# Network name, used to enable syncing of alternative networks # Network name, used to enable syncing of alternative networks
# Defaults to "kurtosis" # Defaults to "kurtosis"
# You can sync any public network by setting this to the network name (e.g. "mainnet", "goerli", "sepolia", "holesky") # You can sync any public network by setting this to the network name (e.g. "mainnet", "sepolia", "holesky")
# You can sync any devnet by setting this to the network name (e.g. "dencun-devnet-12", "verkle-gen-devnet-2") # You can sync any devnet by setting this to the network name (e.g. "dencun-devnet-12", "verkle-gen-devnet-2")
network: "kurtosis" network: "kurtosis"
......
...@@ -11,9 +11,9 @@ USED_PORTS = { ...@@ -11,9 +11,9 @@ USED_PORTS = {
} }
NETWORK_ID_TO_NAME = { NETWORK_ID_TO_NAME = {
"5": "goerli", "1": "mainnet",
"17000": "holesky",
"11155111": "sepolia", "11155111": "sepolia",
"3": "ropsten",
} }
# The min/max CPU/memory that mev-boost can use # The min/max CPU/memory that mev-boost can use
......
...@@ -13,9 +13,9 @@ MEV_RELAY_ENDPOINT_PORT = 9062 ...@@ -13,9 +13,9 @@ MEV_RELAY_ENDPOINT_PORT = 9062
MEV_RELAY_WEBSITE_PORT = 9060 MEV_RELAY_WEBSITE_PORT = 9060
NETWORK_ID_TO_NAME = { NETWORK_ID_TO_NAME = {
"5": "goerli", "1": "mainnet",
"17000": "holesky",
"11155111": "sepolia", "11155111": "sepolia",
"3": "ropsten",
} }
LAUNCH_ADMINER = True LAUNCH_ADMINER = True
......
...@@ -82,7 +82,6 @@ ETHEREUM_GENESIS_GENERATOR = struct( ...@@ -82,7 +82,6 @@ ETHEREUM_GENESIS_GENERATOR = struct(
NETWORK_NAME = struct( NETWORK_NAME = struct(
mainnet="mainnet", mainnet="mainnet",
goerli="goerli",
sepolia="sepolia", sepolia="sepolia",
holesky="holesky", holesky="holesky",
ephemery="ephemery", ephemery="ephemery",
...@@ -93,21 +92,18 @@ NETWORK_NAME = struct( ...@@ -93,21 +92,18 @@ NETWORK_NAME = struct(
PUBLIC_NETWORKS = ( PUBLIC_NETWORKS = (
"mainnet", "mainnet",
"goerli",
"sepolia", "sepolia",
"holesky", "holesky",
) )
NETWORK_ID = { NETWORK_ID = {
"mainnet": 1, "mainnet": 1,
"goerli": 5,
"sepolia": 11155111, "sepolia": 11155111,
"holesky": 17000, "holesky": 17000,
} }
CHECKPOINT_SYNC_URL = { CHECKPOINT_SYNC_URL = {
"mainnet": "https://beaconstate.info", "mainnet": "https://beaconstate.info",
"goerli": "https://checkpoint-sync.goerli.ethpandaops.io",
"sepolia": "https://checkpoint-sync.sepolia.ethpandaops.io", "sepolia": "https://checkpoint-sync.sepolia.ethpandaops.io",
"holesky": "https://checkpoint-sync.holesky.ethpandaops.io", "holesky": "https://checkpoint-sync.holesky.ethpandaops.io",
"ephemery": "https://checkpointz.bordel.wtf/", "ephemery": "https://checkpointz.bordel.wtf/",
...@@ -115,14 +111,12 @@ CHECKPOINT_SYNC_URL = { ...@@ -115,14 +111,12 @@ CHECKPOINT_SYNC_URL = {
GENESIS_VALIDATORS_ROOT = { GENESIS_VALIDATORS_ROOT = {
"mainnet": "0x4b363db94e286120d76eb905340fdd4e54bfe9f06bf33ff6cf5ad27f511bfe95", "mainnet": "0x4b363db94e286120d76eb905340fdd4e54bfe9f06bf33ff6cf5ad27f511bfe95",
"goerli": "0x043db0d9a83813551ee2f33450d23797757d430911a9320530ad8a0eabc43efb",
"sepolia": "0xd8ea171f3c94aea21ebc42a1ed61052acf3f9209c00e4efbaaddac09ed9b8078", "sepolia": "0xd8ea171f3c94aea21ebc42a1ed61052acf3f9209c00e4efbaaddac09ed9b8078",
"holesky": "0x9143aa7c615a7f7115e2b6aac319c03529df8242ae705fba9df39b79c59fa8b1", "holesky": "0x9143aa7c615a7f7115e2b6aac319c03529df8242ae705fba9df39b79c59fa8b1",
} }
DEPOSIT_CONTRACT_ADDRESS = { DEPOSIT_CONTRACT_ADDRESS = {
"mainnet": "0x00000000219ab540356cBB839Cbe05303d7705Fa", "mainnet": "0x00000000219ab540356cBB839Cbe05303d7705Fa",
"goerli": "0xff50ed3d0ec03aC01D4C79aAd74928BFF48a7b2b",
"sepolia": "0x7f02C3E3c98b133055B8B348B2Ac625669Ed295D", "sepolia": "0x7f02C3E3c98b133055B8B348B2Ac625669Ed295D",
"holesky": "0x4242424242424242424242424242424242424242", "holesky": "0x4242424242424242424242424242424242424242",
"ephemery": "0x4242424242424242424242424242424242424242", "ephemery": "0x4242424242424242424242424242424242424242",
...@@ -130,7 +124,6 @@ DEPOSIT_CONTRACT_ADDRESS = { ...@@ -130,7 +124,6 @@ DEPOSIT_CONTRACT_ADDRESS = {
GENESIS_TIME = { GENESIS_TIME = {
"mainnet": 1606824023, "mainnet": 1606824023,
"goerli": 1616508000,
"sepolia": 1655733600, "sepolia": 1655733600,
"holesky": 1695902400, "holesky": 1695902400,
} }
...@@ -151,21 +144,6 @@ VOLUME_SIZE = { ...@@ -151,21 +144,6 @@ VOLUME_SIZE = {
"lodestar_volume_size": 500000, # 500GB "lodestar_volume_size": 500000, # 500GB
"grandine_volume_size": 500000, # 500GB "grandine_volume_size": 500000, # 500GB
}, },
"goerli": {
"geth_volume_size": 800000, # 800GB
"erigon_volume_size": 1200000, # 1200GB
"nethermind_volume_size": 800000, # 800GB
"besu_volume_size": 800000, # 800GB
"reth_volume_size": 1200000, # 1200GB
"ethereumjs_volume_size": 800000, # 800GB
"nimbus_eth1_volume_size": 800000, # 800GB
"prysm_volume_size": 300000, # 300GB
"lighthouse_volume_size": 300000, # 300GB
"teku_volume_size": 300000, # 300GB
"nimbus_volume_size": 300000, # 300GB
"lodestar_volume_size": 300000, # 300GB
"grandine_volume_size": 300000, # 300GB
},
"sepolia": { "sepolia": {
"geth_volume_size": 300000, # 300GB "geth_volume_size": 300000, # 300GB
"erigon_volume_size": 500000, # 500GB "erigon_volume_size": 500000, # 500GB
...@@ -272,34 +250,6 @@ RAM_CPU_OVERRIDES = { ...@@ -272,34 +250,6 @@ RAM_CPU_OVERRIDES = {
"grandine_max_mem": 16384, # 16GB "grandine_max_mem": 16384, # 16GB
"grandine_max_cpu": 4000, # 4 cores "grandine_max_cpu": 4000, # 4 cores
}, },
"goerli": {
"geth_max_mem": 8192, # 8GB
"geth_max_cpu": 2000, # 2 cores
"erigon_max_mem": 8192, # 8GB
"erigon_max_cpu": 2000, # 2 cores
"nethermind_max_mem": 8192, # 8GB
"nethermind_max_cpu": 2000, # 2 cores
"besu_max_mem": 8192, # 8GB
"besu_max_cpu": 2000, # 2 cores
"reth_max_mem": 8192, # 8GB
"reth_max_cpu": 2000, # 2 cores
"ethereumjs_max_mem": 8192, # 8GB
"ethereumjs_max_cpu": 2000, # 2 cores
"nimbus_eth1_max_mem": 8192, # 8GB
"nimbus_eth1_max_cpu": 2000, # 2 cores
"prysm_max_mem": 8192, # 8GB
"prysm_max_cpu": 2000, # 2 cores
"lighthouse_max_mem": 8192, # 8GB
"lighthouse_max_cpu": 2000, # 2 cores
"teku_max_mem": 8192, # 8GB
"teku_max_cpu": 2000, # 2 cores
"nimbus_max_mem": 8192, # 8GB
"nimbus_max_cpu": 2000, # 2 cores
"lodestar_max_mem": 8192, # 8GB
"lodestar_max_cpu": 2000, # 2 cores
"grandine_max_mem": 8192, # 8GB
"grandine_max_cpu": 2000, # 2 cores
},
"sepolia": { "sepolia": {
"geth_max_mem": 4096, # 4GB "geth_max_mem": 4096, # 4GB
"geth_max_cpu": 1000, # 1 core "geth_max_cpu": 1000, # 1 core
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment