Superseed Sepolia
Replace the billing project ID and data directory, then run this command to download and extract the latest snapshot from the requester-pays bucket. Snapshots can take up to 4 hours to become available after you enable external nodes.
Snapshot location
gs://conduit-networks-snapshots/sepolia-superseed-826s35710wgcloud storage
(
set -euo pipefail
export LC_ALL=C
export CLOUDSDK_BILLING_QUOTA_PROJECT="<billing-project-id>"
DATADIR="<path/to/datadir>"
PREFIX="gs://conduit-networks-snapshots/sepolia-superseed-826s35710w"
mkdir -p "${DATADIR}"
WORK="$(mktemp -d "${DATADIR}/.snapshot.XXXXXX")"
trap 'rm -rf "${WORK}"' EXIT
if gcloud storage ls "${PREFIX}/snapshot_part_aa.tar.part" >/dev/null 2>&1; then
gcloud storage cp "${PREFIX}/snapshot_part_*.tar.part" "${WORK}/"
else
gcloud storage cp "${PREFIX}/latest.tar" "${WORK}/"
fi
cat "${WORK}"/* | tar -xf - -C "${DATADIR}"
)View the guide for more information.
/ip4/136.67.84.211/tcp/9222/p2p/16Uiu2HAmPDGqwZoWDa9mEycMxVjiGpgrR3NREsokZYE69HYe6QLuenode://ac40cfc7dbb73b9549cde00b2d86361e183fc26b0b7f8eb94573c2499f1524305b2ad1b028d348b47b1b417dce3a42f08c9018ec0b15a0529f8c989b723a1250@136.67.84.211:30303{
"canyon_time": "0",
"delta_time": "0",
"ecotone_time": "1720195200",
"fjord_time": "1720627201",
"granite_time": "1725984001",
"holocene_time": "1732633200",
"isthmus_time": "1744905600",
"jovian_time": "1768978801",
"karst_time": "1787068801",
"pectrablobschedule_time": "1742486400"
}Replace the billing project ID and data directory, then run this command to download and extract the latest snapshot from the requester-pays bucket. Snapshots can take up to 4 hours to become available after you enable external nodes.
Snapshot location
gs://conduit-networks-snapshots/sepolia-superseed-826s35710wgcloud storage
(
set -euo pipefail
export LC_ALL=C
export CLOUDSDK_BILLING_QUOTA_PROJECT="<billing-project-id>"
DATADIR="<path/to/datadir>"
PREFIX="gs://conduit-networks-snapshots/sepolia-superseed-826s35710w"
mkdir -p "${DATADIR}"
WORK="$(mktemp -d "${DATADIR}/.snapshot.XXXXXX")"
trap 'rm -rf "${WORK}"' EXIT
if gcloud storage ls "${PREFIX}/snapshot_part_aa.tar.part" >/dev/null 2>&1; then
gcloud storage cp "${PREFIX}/snapshot_part_*.tar.part" "${WORK}/"
else
gcloud storage cp "${PREFIX}/latest.tar" "${WORK}/"
fi
cat "${WORK}"/* | tar -xf - -C "${DATADIR}"
)View the guide for more information.