Accumulate Snapshots

Public snapshots for bootstrapping Accumulate follower nodes.

Mainnet Snapshots

File DN Height BVN Height Size
mainnet-20260302-205934.tar.gz 19,512,460 19,510,704 54 GB

Browse all mainnet snapshots

Tools

File Description
accman-tools-v1.2-120-g9fd8fd7.tar.gz AccMan binaries and documentation (27 MB)

Browse all tools

Quick Start

Recommended: Use accman-bootstrap for automated setup.
# Download and extract tools
curl -LO https://snapshots.accumulatenetwork.io/tools/accman-tools-v1.2-120-g9fd8fd7.tar.gz
tar -xzf accman-tools-v1.2-120-g9fd8fd7.tar.gz

# Bootstrap from snapshot (as root)
sudo ./accman-release/bin/accman-bootstrap \
  -dir /data/acc \
  -snapshot https://snapshots.accumulatenetwork.io/mainnet/mainnet-20260302-205934.tar.gz

What This Does

  1. Downloads the 54 GB snapshot (with progress indicator)
  2. Verifies SHA-256 checksum
  3. Extracts follower data
  4. Generates fresh node keys (prevents P2P conflicts)
  5. Configures and starts the supervisor service
  6. Follower begins syncing from snapshot height

Manual Download

# Download snapshot
curl -LO https://snapshots.accumulatenetwork.io/mainnet/mainnet-20260302-205934.tar.gz
curl -LO https://snapshots.accumulatenetwork.io/mainnet/mainnet-20260302-205934.json

# Verify checksum
expected=$(jq -r .checksum mainnet-20260302-205934.json)
actual=$(sha256sum mainnet-20260302-205934.tar.gz | awk '{print $1}')
[ "$expected" = "$actual" ] && echo "OK" || echo "MISMATCH"

Documentation

Full documentation is included in the tools package. See docs/snapshots.md for detailed instructions.

Source: gitlab.com/AccumulateNetwork/accman


Last updated: March 2, 2026