Skip to content

Commit 91dc68c

Browse files
authored
feat: use CDN URL for data snapshots used for shadow forks (#676)
The CDN should be faster then pointing it directly to the bucket.
1 parent 955f19f commit 91dc68c

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
@@ -500,11 +500,11 @@ network_params:
500500
eip7594_fork_version: "0x70000038"
501501

502502
# Network sync base url for syncing public networks from a custom snapshot (mostly useful for shadowforks)
503-
# Defaults to "https://ethpandaops-ethereum-node-snapshots.ams3.digitaloceanspaces.com/
503+
# Defaults to "https://ethpandaops-ethereum-node-snapshots.ams3.cdn.digitaloceanspaces.com/
504504
# If you have a local snapshot, you can set this to the local url:
505505
# network_snapshot_url_base = "http://10.10.101.21:10000/snapshots/"
506506
# The snapshots are taken with https://github.com/ethpandaops/snapshotter
507-
network_sync_base_url: https://ethpandaops-ethereum-node-snapshots.ams3.digitaloceanspaces.com/
507+
network_sync_base_url: https://ethpandaops-ethereum-node-snapshots.ams3.cdn.digitaloceanspaces.com/
508508

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

network_params.yaml

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

src/package_io/input_parser.star

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -786,7 +786,7 @@ def default_network_params():
786786
"electra_fork_epoch": 100000000,
787787
"eip7594_fork_epoch": 100000001,
788788
"eip7594_fork_version": "0x70000038",
789-
"network_sync_base_url": "https://ethpandaops-ethereum-node-snapshots.ams3.digitaloceanspaces.com/",
789+
"network_sync_base_url": "https://ethpandaops-ethereum-node-snapshots.ams3.cdn.digitaloceanspaces.com/",
790790
"data_column_sidecar_subnet_count": 32,
791791
"samples_per_slot": 8,
792792
"custody_requirement": 1,
@@ -816,7 +816,7 @@ def default_minimal_network_params():
816816
"electra_fork_epoch": 100000000,
817817
"eip7594_fork_epoch": 100000001,
818818
"eip7594_fork_version": "0x70000038",
819-
"network_sync_base_url": "https://ethpandaops-ethereum-node-snapshots.ams3.digitaloceanspaces.com/",
819+
"network_sync_base_url": "https://ethpandaops-ethereum-node-snapshots.ams3.cdn.digitaloceanspaces.com/",
820820
"data_column_sidecar_subnet_count": 32,
821821
"samples_per_slot": 8,
822822
"custody_requirement": 1,

0 commit comments

Comments
 (0)