Commit 91dc68c9 authored by Rafael Matias's avatar Rafael Matias Committed by GitHub

feat: use CDN URL for data snapshots used for shadow forks (#676)

The CDN should be faster then pointing it directly to the bucket.
parent 955f19f8
...@@ -500,11 +500,11 @@ network_params: ...@@ -500,11 +500,11 @@ network_params:
eip7594_fork_version: "0x70000038" eip7594_fork_version: "0x70000038"
# Network sync base url for syncing public networks from a custom snapshot (mostly useful for shadowforks) # Network sync base url for syncing public networks from a custom snapshot (mostly useful for shadowforks)
# Defaults to "https://ethpandaops-ethereum-node-snapshots.ams3.digitaloceanspaces.com/ # Defaults to "https://ethpandaops-ethereum-node-snapshots.ams3.cdn.digitaloceanspaces.com/
# If you have a local snapshot, you can set this to the local url: # 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/" # network_snapshot_url_base = "http://10.10.101.21:10000/snapshots/"
# The snapshots are taken with https://github.com/ethpandaops/snapshotter # The snapshots are taken with https://github.com/ethpandaops/snapshotter
network_sync_base_url: https://ethpandaops-ethereum-node-snapshots.ams3.digitaloceanspaces.com/ network_sync_base_url: https://ethpandaops-ethereum-node-snapshots.ams3.cdn.digitaloceanspaces.com/
# The number of data column sidecar subnets used in the gossipsub protocol # The number of data column sidecar subnets used in the gossipsub protocol
data_column_sidecar_subnet_count: 32 data_column_sidecar_subnet_count: 32
......
...@@ -76,7 +76,7 @@ network_params: ...@@ -76,7 +76,7 @@ network_params:
electra_fork_epoch: 100000000 electra_fork_epoch: 100000000
eip7594_fork_epoch: 100000001 eip7594_fork_epoch: 100000001
eip7594_fork_version: "0x70000038" eip7594_fork_version: "0x70000038"
network_sync_base_url: https://ethpandaops-ethereum-node-snapshots.ams3.digitaloceanspaces.com/ network_sync_base_url: https://ethpandaops-ethereum-node-snapshots.ams3.cdn.digitaloceanspaces.com/
data_column_sidecar_subnet_count: 32 data_column_sidecar_subnet_count: 32
samples_per_slot: 8 samples_per_slot: 8
custody_requirement: 1 custody_requirement: 1
......
...@@ -786,7 +786,7 @@ def default_network_params(): ...@@ -786,7 +786,7 @@ def default_network_params():
"electra_fork_epoch": 100000000, "electra_fork_epoch": 100000000,
"eip7594_fork_epoch": 100000001, "eip7594_fork_epoch": 100000001,
"eip7594_fork_version": "0x70000038", "eip7594_fork_version": "0x70000038",
"network_sync_base_url": "https://ethpandaops-ethereum-node-snapshots.ams3.digitaloceanspaces.com/", "network_sync_base_url": "https://ethpandaops-ethereum-node-snapshots.ams3.cdn.digitaloceanspaces.com/",
"data_column_sidecar_subnet_count": 32, "data_column_sidecar_subnet_count": 32,
"samples_per_slot": 8, "samples_per_slot": 8,
"custody_requirement": 1, "custody_requirement": 1,
...@@ -816,7 +816,7 @@ def default_minimal_network_params(): ...@@ -816,7 +816,7 @@ def default_minimal_network_params():
"electra_fork_epoch": 100000000, "electra_fork_epoch": 100000000,
"eip7594_fork_epoch": 100000001, "eip7594_fork_epoch": 100000001,
"eip7594_fork_version": "0x70000038", "eip7594_fork_version": "0x70000038",
"network_sync_base_url": "https://ethpandaops-ethereum-node-snapshots.ams3.digitaloceanspaces.com/", "network_sync_base_url": "https://ethpandaops-ethereum-node-snapshots.ams3.cdn.digitaloceanspaces.com/",
"data_column_sidecar_subnet_count": 32, "data_column_sidecar_subnet_count": 32,
"samples_per_slot": 8, "samples_per_slot": 8,
"custody_requirement": 1, "custody_requirement": 1,
......
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