The following tool downloads are for Defund orbit-alpha-1 public testnet.
- Address book download – addrbook.json (updated weekly)
- Chain database snapshot – snapshot.tar.lz4 (updated every 8hr)
- Genesis file download – genesis.json
Address Book
If your node is having problem connecting to peers, try using this address book.
How to use address book
To use the address book. First stop your node, then download the addrbook.json file and copy to your defund config folder. Detailed steps below.
sudo systemctl stop defundd
wget -O addrbook.json https://usw-snapshots.s3.us-west-2.amazonaws.com/defund/orbit-alpha-1/addrbook.json
cp addrbook.json $HOME/.defund/config/addrbook.json
sudo systemctl start defundd
Snapshot
Type | Protocol Version | Size | Snapshot Frequency | Download URL |
---|---|---|---|---|
Pruned 100/0/19 | defundd v0.2.6 | 2 Gb | every 8 hrs | snapshot.tar.lz4 |
These snapshots currently are created every 8 hours or immediately as needed.
The download URL is a permalink. The link will remain the same even though the file will be updated. The permalink allows you to incorporate it into your node creation automation script.
To use our snapshot, you’ll need to match your node settings to our snapshot setting initially in order to start syncing. Once your node is synced to latest block height, you can then change your pruning setting to other settings you desire.
Pruning settings
To use our snapshot, change the following settings
app.toml – file located in your .defund/config folder
pruning = “custom”
pruning-keep-recent = “100”
pruning-keep-every = “0”
pruning-interval = “19”
config.toml – file located in your .defund/config folder
indexer = “null”
Note that the default indexer setting is “kv”.
How to use snapshot
To use our snapshot, follow the detailed steps below.
- Download the snapshot file
- Stop your service (or cosmovisor if you’re running cosmovisor)
- Reset your data folder. Be sure to backup your priv_validator_key.json and node_key.json files
- Extract snapshot file
- Optional step – Update file ownership as needed if it’s changed during file extraction
- Restart your service (or cosmovisor if you’re running cosmovisor)
See actual commands below.
wget -O snapshot.tar.lz4 https://usw-snapshots.s3.us-west-2.amazonaws.com/defund/orbit-alpha-1/snapshot.tar.lz4
sudo systemctl stop defundd
defundd tendermint unsafe-reset-all –keep-addr-book
lz4 -c -d snapshot.tar.lz4 | tar -x -C ~/.defund
chown -R YOUR_USER:YOUR_GROUP ~/.defund/data
sudo systemctl start defundd
Genesis File
This is a mirror of the team’s genesis file on the project’s github page. Be sure to check the file shasum hash.