Skip to content

Commit f9269ad

Browse files
authored
fix: update snapshots URL (ethereum#731)
1 parent 5a45991 commit f9269ad

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -507,11 +507,11 @@ network_params:
507507
eof_activation_epoch: null
508508

509509
# Network sync base url for syncing public networks from a custom snapshot (mostly useful for shadowforks)
510-
# Defaults to "https://ethpandaops-ethereum-node-snapshots.ams3.cdn.digitaloceanspaces.com/
510+
# Defaults to "https://snapshots.ethpandaops.io/"
511511
# If you have a local snapshot, you can set this to the local url:
512512
# network_snapshot_url_base = "http://10.10.101.21:10000/snapshots/"
513513
# The snapshots are taken with https://github.com/ethpandaops/snapshotter
514-
network_sync_base_url: https://ethpandaops-ethereum-node-snapshots.ams3.cdn.digitaloceanspaces.com/
514+
network_sync_base_url: https://snapshots.ethpandaops.io/
515515

516516
# The number of data column sidecar subnets used in the gossipsub protocol
517517
data_column_sidecar_subnet_count: 32

network_params.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ network_params:
7777
electra_fork_epoch: 100000000
7878
eip7594_fork_epoch: 100000001
7979
eip7594_fork_version: "0x70000038"
80-
network_sync_base_url: https://ethpandaops-ethereum-node-snapshots.ams3.cdn.digitaloceanspaces.com/
80+
network_sync_base_url: https://snapshots.ethpandaops.io/
8181
data_column_sidecar_subnet_count: 32
8282
samples_per_slot: 8
8383
custody_requirement: 1

src/package_io/input_parser.star

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,7 @@ def default_network_params():
794794
"eip7594_fork_epoch": 100000001,
795795
"eip7594_fork_version": "0x70000038",
796796
"eof_activation_epoch": "",
797-
"network_sync_base_url": "https://ethpandaops-ethereum-node-snapshots.ams3.cdn.digitaloceanspaces.com/",
797+
"network_sync_base_url": "https://snapshots.ethpandaops.io/",
798798
"data_column_sidecar_subnet_count": 32,
799799
"samples_per_slot": 8,
800800
"custody_requirement": 1,
@@ -827,7 +827,7 @@ def default_minimal_network_params():
827827
"eip7594_fork_epoch": 100000001,
828828
"eip7594_fork_version": "0x70000038",
829829
"eof_activation_epoch": "",
830-
"network_sync_base_url": "https://ethpandaops-ethereum-node-snapshots.ams3.cdn.digitaloceanspaces.com/",
830+
"network_sync_base_url": "https://snapshots.ethpandaops.io/",
831831
"data_column_sidecar_subnet_count": 32,
832832
"samples_per_slot": 8,
833833
"custody_requirement": 1,

0 commit comments

Comments
 (0)