Assume you want to verify a new release proposal with code commit <COMMIT>
and binary hash <HASH>
.
- Install Docker (only once).
git clone https://github.com/TaggrNetwork/taggr.git
(only once)cd taggr
git fetch --all && git checkout <COMMIT>
make release
- Verify that the printed hash matches the
<HASH>
value from the release page.
To propose a release, follow the steps above first.
If they were successful, you'll find a binary release.wasm.gz
in the taggr
root directory.
Use the printed code commit and the binary to submit a new release proposal.
- Open the browser JS console and trigger this command:
api.call("heap_to_stable")
. - Fetch the backup:
DIR=/path/to/backup; ./backup.sh $DIR
. - Restore to the local replica:
DIR=/path/to/backup; ./backup.sh $DIR restore
.