ABCI-client implementation for Dymension's autonomous RollApp forked from celestiaorg/optimint.
To learn more about Dymension's autonomous RollApps and dymint read the docs.
To download pre-built binaries, see the releases page.
You'll need go 1.18 installed and the required
environment variables set, which can be done with the following commands:
echo export GOPATH=\"\$HOME/go\" >> ~/.bash_profile
echo export PATH=\"\$PATH:\$GOPATH/bin\" >> ~/.bash_profilegit clone https://github.com/dymensionxyz/dymint.git
cd dymintto put the binary in $GOPATH/bin:
make installor to put the binary in ./build:
make buildThe latest Dymint is now installed. You can verify the installation by running:
dymintTo run a sequencer with a simple in-process (kvstore) application:
dymint init
dymint start --proxy_app=kvstoreIf you already have Dymint installed, and you make updates, simply
make installTo upgrade, run
git pull origin main
make installmake proto-genmake test