Anchor-1 Guide
sudo apt update
sudo apt upgrade
sudo apt install gcc
git clone https://github.com/notional-labs/anone.git
cd anone
git checkout testnet-1.0.3
make install
cd ~/anone
# Pull latest branches to local
git fetch
# Checkout correct tag and build
git checkout testnet-1.0.3
make install
# Stop anoned via Screen
CTRL+C
# or via Systemctl assuming your service file is an1.service
sudo systemctl stop an1
# Clear blockchain data
anoned unsafe-reset-all
wget -O ~/.anone/config/genesis.json https://raw.githubusercontent.com/notional-labs/anone/master/networks/testnet-1/genesis.json
anoned start --p2p.seeds [email protected]:2280,[email protected]:2280,[email protected]:2280
anoned keys add <nameyourwalet>
anoned keys add <nameyourwallet> --recover
anoned tx staking create-validator --amount=1500000000uan1 --from="one1xxxxxxxxxxxxxxxxx" --pubkey=$(anoned tendermint show-validator) --moniker="moniker" --identity="Keybase PGP" --website="https://xxxxxxxxxxxx" --chain-id anone-testnet-1 --commission-rate="0.05" --commission-max-rate="0.20" --commission-max-change-rate="0.01" --min-self-delegation=1 --gas 200000 --fees 250000uan1 --keyring-backend os
nano ~/.anone/config/priv_validator_key.json
Show valoper address
anoned keys show <keyname> --bech val --address
Check status query validator
anoned q staking validator <valoperaddress>
Delegate
anoned tx staking delegate <valoperaddress> <qtyofcoin>uan1 --from <keyname> --chain-id anone-testnet-1 --fees 250000uan1