Welcome to validator AlxVoy ANODE.TEAM



Agoric

Agoric

Links

Mainnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

Service script (Install, State-Sync, Snapshot, Delete)

wget -O Agoric.sh https://anode.team/Agoric/main/Agoric.sh && chmod u+x Agoric.sh && ./Agoric.sh

Installation

Hardware Requirements

  • Memory 16GB
  • CPUs Quad Core or larger AMD or Intel (amd64) CPU
  • Disk At least 500GB NVMe Storage

Software Requirements

  • Prerequisite: go1.22.12 required. ref
  • Prerequisite: git. ref

Install last binary

git clone https://github.com/Agoric/agoric-sdk
cd $HOME/agoric-sdk
git fetch --all
git checkout agoric-upgrade-20
git clean -xdf && git submodule foreach --recursive git clean -xdf
./bin/agd build

Init the config files

agd init [moniker] --chain-id agoric-3
sed -i "s/chain-id = .*/chain-id = \"agoric-3\"/" $HOME/.agoric/config/client.toml

Create a wallet

agd keys add [wallet_name]

Download genesis and addrbook

curl https://anode.team/Agoric/main/genesis.json > ~/.agoric/config/genesis.json
curl https://anode.team/Agoric/main/addrbook.json > ~/.agoric/config/addrbook.json

Add peers, seed

SEEDS=""
PEERS="a0834c00aa5ad633b0bf800db60e62e93e2b695c@65.108.229.19:26676"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.agoric/config/config.toml

Add min gas

sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0.025ubld"|g' $HOME/.agoric/config/app.toml

Set custom ports

curl -sSL https://anode.team/set-ports.sh | bash -s -- .agoric

Pruning and indexer

sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.agoric/config/app.toml 
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.agoric/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"19\"/" $HOME/.agoric/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.agoric/config/config.toml

Create the service file

sudo tee /etc/systemd/system/agd.service > /dev/null <<EOF
[Unit]
Description=Agoric
After=network-online.target

[Service]
User=$USER
ExecStart=$(which agd) start
Restart=always
RestartSec=3
LimitNOFILE=65535

[Install]
WantedBy=multi-user.target
EOF

Load service and start

sudo systemctl daemon-reload && sudo systemctl enable agd
sudo systemctl restart agd && journalctl -fu agd -o cat

Create Validator

agd tx staking create-validator \
  --amount=1000000ubld \
  --pubkey=$(agd tendermint show-validator) \
  --moniker="[moniker]" \
  --identity="[identity]" \
  --website="[website]" \
  --details="[details]" \
  --security-contact="[contact]" \
  --chain-id="agoric-3" \
  --commission-rate="0.10" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="1" \
  --gas="auto" \
  --gas-adjustment="1.4" \
  --gas-prices="0.025ubld" \
  --from=[wallet_name]

Testnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

Service script (Install, State-Sync, Snapshot, Delete)

wget -O Agoric.sh https://anode.team/Agoric/test/Agoric.sh && chmod u+x Agoric.sh && ./Agoric.sh

Installation

Hardware Requirements

  • Memory 16GB
  • CPUs Quad Core or larger AMD or Intel (amd64) CPU
  • Disk At least 500GB NVMe Storage

Software Requirements

  • Prerequisite: go1.22.12 required. ref
  • Prerequisite: git. ref

Install last binary

git clone https://github.com/Agoric/agoric-sdk
cd $HOME/agoric-sdk
git fetch --all
git checkout agoric-upgrade-20
git clean -xdf && git submodule foreach --recursive git clean -xdf
./bin/agd build

Init the config files

agd init [moniker] --chain-id agoric-3
sed -i "s/chain-id = .*/chain-id = \"agoric-3\"/" $HOME/.agoric/config/client.toml

Create a wallet

agd keys add [wallet_name]

Download genesis and addrbook

curl https://anode.team/Agoric/test/genesis.json > ~/.agoric/config/genesis.json
curl https://anode.team/Agoric/test/addrbook.json > ~/.agoric/config/addrbook.json

Add peers, seed

SEEDS=""
PEERS="a0834c00aa5ad633b0bf800db60e62e93e2b695c@65.108.229.19:26676"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.agoric/config/config.toml

Add min gas

sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0.025ubld"|g' $HOME/.agoric/config/app.toml

Set custom ports

curl -sSL https://anode.team/set-ports.sh | bash -s -- .agoric

Pruning and indexer

sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.agoric/config/app.toml 
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.agoric/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"19\"/" $HOME/.agoric/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.agoric/config/config.toml

Create the service file

sudo tee /etc/systemd/system/agd.service > /dev/null <<EOF
[Unit]
Description=Agoric
After=network-online.target

[Service]
User=$USER
ExecStart=$(which agd) start
Restart=always
RestartSec=3
LimitNOFILE=65535

[Install]
WantedBy=multi-user.target
EOF

Load service and start

sudo systemctl daemon-reload && sudo systemctl enable agd
sudo systemctl restart agd && journalctl -fu agd -o cat

Create Validator

agd tx staking create-validator \
  --amount=1000000ubld \
  --pubkey=$(agd tendermint show-validator) \
  --moniker="[moniker]" \
  --identity="[identity]" \
  --website="[website]" \
  --details="[details]" \
  --security-contact="[contact]" \
  --chain-id="agoric-3" \
  --commission-rate="0.10" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="1" \
  --gas="auto" \
  --gas-adjustment="1.4" \
  --gas-prices="0.025ubld" \
  --from=[wallet_name]