This template can be used as a base for Inco's take-home challenge. It contains a bare minimum Cosmos SDK app, which contains an empty x/observer
module.
Below are some useful commands that can be run in the template.
- Build the node
make build
The binary will be in ./build/incod
.
-
Make sure the
incod
binary is in your $PATH. -
Run the node
./scripts/test_node.sh
You should see the node's logs running in your terminal. If you stop the node, and wish to re-run from the same height (not create a new chain), you can pass in CLEAN=false ./scripts/test_node.sh
.
If you modify the *.proto
files, you need to regenerate the *.{pb,pulsar}.go
files. Make sure you have Docker installed, and you can use the following command:
make proto-gen