Would you like to run the backend end services for Namadillo (e.g. Indexer and MASP Indexer) but not willing to wait for the node to synch from scratch?
The Namada Indexer snapshots are the database dump for the services namada indexer and namada masp indexer. They allow to start the service with an initialiazed DB without starting from empty databases.
Indexer Snapshots are taken from our public Namada Indexers that are synched directly from the blokchain (Not from other snapshots).
# Namada Indexer
SNAPSHOT_URL = https://namada-snapshot.shield-crypto.com/namada-indexer.sql
DB_NAME = namada-indexer
# MASP Indexer
#SNAPSHOT_URL = https://namada-snapshot.shield-crypto.com/masp-indexer.sql
#DB_NAME = masp_indexer_local
wget -O dump.sql $SNAPSHOT_URL
docker compose down
docker compose up -d postgres
docker compose cp dump.sql postgres:/tmp/dump.sql
docker compose exec postgres pg_restore -p 5433 -d $DB_NAME --clean tmp/dump.sql --verbose
docker compose exec postgres rm tmp/dump.sql
docker compose up -d
Snapshot Timestamp: Loading...
Chain Block Height: Loading...
Transactions Block Height: Loading...
DB Size: Loading...
Snapshot Timestamp: Loading...
MASP Block Height: Loading...
DB Size: Loading...