Installation

Governor Tutorial Only!

circle-info

You'll need 1,2 INTO tokens to start

Setup the Cli

// install Go
sudo rm -rvf /usr/local/go/
wget https://golang.org/dl/go1.23.4.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.23.4.linux-amd64.tar.gz
rm go1.23.4.linux-amd64.tar.gz

// configure Go
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export GO111MODULE=on
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin

// setup the intento cli
git clone https://github.com/trstlabs/intento intento
cd intento
git checkout v1.0.1
make install

Create validator data

*enter script below for validatordata.json

CTRL+X , Y , Enter to save.

Create / Import Your Wallet and fill it with some INTO tokens.

Deploy Governor

circle-info

In this case i'm using ccnodes rpc, you can use any public intento rpc. ofcourse you can also use your own intento rpc. Running Intento RPC nodes aren't required for governor, but you may/may not receive delegation from team if not running complete services.

Last updated