Snapshots
Chain | Database | Format | Blockheight | Size | Full | Creation date | |
---|---|---|---|---|---|---|---|
direct link | polkadot | paritydb | pruned | 11600161 | 85G | 102G | Sun 14 Aug @ 12:00 |
direct link | polkadot | rocksdb | pruned | 11600296 | 87G | 104G | Sun 14 Aug @ 12:13 |
direct link | ksmcc3 | paritydb | pruned | 14001576 | 137G | 154G | Sun 14 Aug @ 12:19 |
direct link | ksmcc3 | rocksdb | pruned | 14001732 | 142G | 160G | Sun 14 Aug @ 12:34 |
info
Snapshots are compressed backups of the database directory of a polkadot or kusama node. If you start a node for the first time it will start building from start (genesis), which will take a while. If you download an up to date database your node will be up and running quicker.
The snapshots are available for kusama --chain ksmcc3
and polkadot --chain polkadot
in the paritydb --database paritydb
and rocksdb --database rocksdb
format (rocksdb being the default). They are pruned with --pruning 1000
, which is sufficient for a validator node.
Download the database
Paritydb kusama
wget http://snapshot.stakeworld.nl/paritydb-ksmcc3.lz4
Paritydb polkadot
wget http://snapshot.stakeworld.nl/paritydb-polkadot.lz4
Rocksdb polkadot
wget http://snapshot.stakeworld.nl/rocksdb-ksmcc3.lz4
Rocksdb polkadot
wget http://snapshot.stakeworld.nl/rocksdb-polkadot.lz4
Install the database directly
Install to /home/polkadot/.local/share/polkadot/chains/<chain>
or change to your target directory.
Paritydb kusama
curl -o - -L http://snapshot.stakeworld.nl/paritydb-ksmcc3.lz4 | lz4 -c -d - | tar -x -C /home/polkadot/.local/share/polkadot/chains/ksmcc3
Paritydb polkadot
curl -o - -L http://snapshot.stakeworld.nl/paritydb-polkadot.lz4 | lz4 -c -d - | tar -x -C /home/polkadot/.local/share/polkadot/chains/polkadot
Rocksdb kusama
curl -o - -L http://snapshot.stakeworld.nl/rocksdb-ksmcc3.lz4 | lz4 -c -d - | tar -x -C /home/polkadot/.local/share/polkadot/chains/ksmcc3
Rocksdb polkadot
curl -o - -L http://snapshot.stakeworld.nl/rocksdb-polkadot.lz4 | lz4 -c -d - | tar -x -C /home/polkadot/.local/share/polkadot/chains/polkadot