Doma 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/doma-dev-ix58nm4rndgcloud 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/doma-dev-ix58nm4rnd"
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.186.57/tcp/9222/p2p/16Uiu2HAmDgQCu8bRRqWDe8KtvELZpbUQXuwaq4cXmzxVmJfTRZKfenode://c3cd7074f58691a236813dc098dfb417b1880780d6c3632dc8539b79ad4e8f3e7e12e720b993433ea55756857758b2493ebe4b2afe7888a85595138dfbb5f826@136.109.186.57:30303Replace 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/doma-dev-ix58nm4rndgcloud 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/doma-dev-ix58nm4rnd"
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.