emoney Node Snapshot
Chain ID:
emoney-3
|
Current Node Version:
v1.2.0
LATEST | BLOCK HEIGHT | SIZE | TIMESTAMP | DOWNLOAD |
---|---|---|---|---|
| 3,877,741 | 570 MiB | 1 hours ago | |
3,877,391 | 568 MiB | 4 hours ago |
emoney Snapshot Server Setup
We make a snapshot of one node every 3 hours. Then we delete all the previous snapshots to free up space on the file server.
Snapshot is designed to allow node operators to run efficient nodes on the e-Money. To make the snapshot as small as possible while being executable as a validator, use the following settings to save disk space: Tendermint chain storage grows over time regardless of pruning, so periodically synchronizing snapshots can be helpful. Because snapshot nodes are periodically synchronized with their state, snapshot sizes can be surprisingly small.
config/app.toml
# Prune Type
pruning = "custom"
# Prune Strategy
pruning-keep-recent = "100"
pruning-keep-every = "0"
pruning-interval = "10"
config/config.toml
indexer = "null"
How To Process emoney Snapshot
Install lz4 if needed
sudo apt update
sudo apt-get install lz4
download the snapshot
# Option 1 (latest)
wget -O emoney_3877741.tar.lz4 https://snapshots.mkv.one/mainnet/emoney/emoney_3877741.tar.lz4 --inet4-only
# Option 2
wget -O emoney_3877391.tar.lz4 https://snapshots.mkv.one/mainnet/emoney/emoney_3877391.tar.lz4 --inet4-only
Stop your node
sudo systemctl stop emd
Reset your node
emd unsafe-reset-all
or
emd tendermint unsafe-reset-all
Decompress the snapshot to your database location. Your database location will be something to the effect of ~/.emd depending on your node implementation.
# Option 1(latest)
lz4 -c -d emoney_3877741.tar.lz4 | tar -x -C $HOME/.emd
# Option 2
lz4 -c -d emoney_3877391.tar.lz4 | tar -x -C $HOME/.emd
Start your node
sudo systemctl start emd
sudo journalctl -u emd -f
ADVANCED COMMAND :
# Option 1 (latest)
curl -o - -L https://snapshots.mkv.one/mainnet/emoney/emoney_3877741.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.emd
# Option 2
curl -o - -L https://snapshots.mkv.one/mainnet/emoney/emoney_3877391.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.emd