Tools
The Toolbox
Open-source tools built to simplify Cosmos SDK node operations. From image building to database migration.
Dockermint
CD Pipeline for Cosmos SDK Nodes
The core pipeline that scans GitHub releases, builds deterministic Docker images, and pushes them to your registry. Define your chain once in a TOML recipe, and Dockermint handles everything from compilation to deployment.
Automatic release scanning
Deterministic multi-arch builds
Database backend flexibility
OCI registry push
Telegram notifications
Full build traceability
terminal
dockermint build \
--recipe cosmos-gaiad.toml \
--db-backend pebbledb \
--arch x86_64,aarch64 \
--running-env alpine3.23 \
--push registry.ioRustApache-2.0WIP0
Pebblify
LevelDB to PebbleDB Migration Tool
A high-performance migration tool that converts LevelDB databases to PebbleDB format for Cosmos SDK and CometBFT nodes. Parallel processing, crash recovery, smart batching, and data verification built in.
~216M keys migrated in 4 minutes
Parallel processing with adjustable workers
Checkpoint-based crash recovery
Adaptive memory-aware batching
Data integrity verification
Multi-arch Docker images
terminal
pebblify level-to-pebble ~/.gaia/data ./gaia-pebble
pebblify recover --tmp-dir /var/tmp
pebblify verify --sample 10 \
~/.gaia/data ./gaia-pebble/dataGoApache-2.0v0.1.01
Ecosystem
More Coming
We're building more tools to simplify Cosmos node operations. Follow us on GitHub and Telegram to stay updated on new releases.