conduit-demo-cdk-g3
Run a node
1.Download JSON files
- Slug
- rollup.json
- rollup.json
- genesis.json
- genesis.json
2.Copy P2P configuration
- Static peers
/ip4/8.229.3.2/tcp/9222/p2p/16Uiu2HAkyeciVFED1YYj1KNJCAHDQc9D9AHRisaXPa3xc7W3kUjJ- EL peer
enode://df6af9edeb654cbbe0376fcecb6d48180315186e4fff5233747fcb1c6a5d762b7c843af3e4823969cfeb60335bb698be5e6de31a5bf792e44d40760b05dd061d@8.229.3.2:30303
3.Copy public RPC URL
- RPC
Download snapshot
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/conduit-demo-cdk-g3gcloud 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/conduit-demo-cdk-g3"
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.
4.Follow our guide