Zora Sepolia Testnet
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/zora-sepolia-0thyhxtf5egcloud 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/zora-sepolia-0thyhxtf5e"
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.109.122.236/tcp/9222/p2p/16Uiu2HAmPnwsiAaWnehMsAgKt1GHrQXnghnPbFUXJt8QKcgytbbeenode://04994b4d0d00b33ff074f588334679358272571611059defd64f572294af969482fbce989b7402604a28797f7da5ed9b8ef9924fca000e0ad38d36782072d996@136.109.122.236:30303{
"canyon_time": "1699981200",
"delta_time": "1703203200",
"ecotone_time": "1708534800",
"fjord_time": "1716998400",
"granite_time": "1723478400",
"holocene_time": "1732633200",
"isthmus_time": "1744905600",
"jovian_time": "1763568001",
"karst_time": "1781712001",
"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/zora-sepolia-0thyhxtf5egcloud 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/zora-sepolia-0thyhxtf5e"
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.