Skip to content

Run a node

1.Download JSON files
Slug
rollup.json
rollup.json
genesis.json
genesis.json
2.Copy P2P configuration
Static peers
/ip4/8.231.252.245/tcp/9222/p2p/16Uiu2HAmV6HgoThRwWMhd5HKJUHxBrJoRXguHkJyTVcNmyVWuqtu
EL peer
enode://4f8065d3e7b706d63aa97116fe81379302d6172d126372720f0736b013cf26f18680fb3e9601df67dc9cf739c70294ec1f1a6ad1339ff2182d9e1896b58a5e45@8.231.252.245:30303
Optimism fork timestamps
{
  "canyon_time": "0",
  "delta_time": "0",
  "ecotone_time": "0",
  "fjord_time": "1720627201",
  "granite_time": "1726070401",
  "holocene_time": "1736445601",
  "isthmus_time": "1746806401",
  "jovian_time": "1764691201",
  "karst_time": "1783526401"
}
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/metal-mainnet-0

gcloud 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/metal-mainnet-0"

  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
Go to docs