diff --git a/README.md b/README.md index 09441fc1b..0b3598785 100644 --- a/README.md +++ b/README.md @@ -507,11 +507,11 @@ network_params: eof_activation_epoch: null # Network sync base url for syncing public networks from a custom snapshot (mostly useful for shadowforks) - # Defaults to "https://ethpandaops-ethereum-node-snapshots.ams3.cdn.digitaloceanspaces.com/ + # Defaults to "https://snapshots.ethpandaops.io/" # If you have a local snapshot, you can set this to the local url: # network_snapshot_url_base = "http://10.10.101.21:10000/snapshots/" # The snapshots are taken with https://github.com/ethpandaops/snapshotter - network_sync_base_url: https://ethpandaops-ethereum-node-snapshots.ams3.cdn.digitaloceanspaces.com/ + network_sync_base_url: https://snapshots.ethpandaops.io/ # The number of data column sidecar subnets used in the gossipsub protocol data_column_sidecar_subnet_count: 32 diff --git a/network_params.yaml b/network_params.yaml index a5b9a9c11..aa059c60c 100644 --- a/network_params.yaml +++ b/network_params.yaml @@ -77,7 +77,7 @@ network_params: electra_fork_epoch: 100000000 eip7594_fork_epoch: 100000001 eip7594_fork_version: "0x70000038" - network_sync_base_url: https://ethpandaops-ethereum-node-snapshots.ams3.cdn.digitaloceanspaces.com/ + network_sync_base_url: https://snapshots.ethpandaops.io/ data_column_sidecar_subnet_count: 32 samples_per_slot: 8 custody_requirement: 1 diff --git a/src/package_io/input_parser.star b/src/package_io/input_parser.star index ac8ecda6a..0c06e8c35 100644 --- a/src/package_io/input_parser.star +++ b/src/package_io/input_parser.star @@ -794,7 +794,7 @@ def default_network_params(): "eip7594_fork_epoch": 100000001, "eip7594_fork_version": "0x70000038", "eof_activation_epoch": "", - "network_sync_base_url": "https://ethpandaops-ethereum-node-snapshots.ams3.cdn.digitaloceanspaces.com/", + "network_sync_base_url": "https://snapshots.ethpandaops.io/", "data_column_sidecar_subnet_count": 32, "samples_per_slot": 8, "custody_requirement": 1, @@ -827,7 +827,7 @@ def default_minimal_network_params(): "eip7594_fork_epoch": 100000001, "eip7594_fork_version": "0x70000038", "eof_activation_epoch": "", - "network_sync_base_url": "https://ethpandaops-ethereum-node-snapshots.ams3.cdn.digitaloceanspaces.com/", + "network_sync_base_url": "https://snapshots.ethpandaops.io/", "data_column_sidecar_subnet_count": 32, "samples_per_slot": 8, "custody_requirement": 1,