Welcome to validator AlxVoy ANODE.TEAM



Picasso

Picasso

Links

Mainnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

Wasm

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

wget -O Picasso.sh https://anode.team/Picasso/main/Picasso.sh && chmod u+x Picasso.sh && ./Picasso.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.23.6 required. ref
  • Prerequisite: git. ref

Install last binary

git clone https://github.com/ComposableFi/composable-cosmos
cd composable-cosmos
git checkout v6.6.41
make install

if an error has occurred, you can simply download the binary

wget -O $HOME/go/bin/picad https://anode.team/Picasso/main/picad && chmod +x $HOME/go/bin/picad

Init the config files

picad init [moniker] --chain-id centauri-1
sed -i "s/chain-id = .*/chain-id = \"centauri-1\"/" $HOME/.banksy/config/client.toml

Create a wallet

picad keys add [wallet_name]

Download genesis and addrbook

curl https://anode.team/Picasso/main/genesis.json > ~/.banksy/config/genesis.json
curl https://anode.team/Picasso/main/addrbook.json > ~/.banksy/config/addrbook.json

Add peers, seed

SEEDS=""
PEERS="a2dada4e7695d654904a9f7b561ae2125b73c97e@144.76.97.251:49656"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.banksy/config/config.toml

Add min gas

sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0ppica"|g' $HOME/.banksy/config/app.toml

Set custom ports

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

Pruning and indexer

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

Create the service file

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

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

[Install]
WantedBy=multi-user.target
EOF

Load service and start

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

Create Validator

picad tx staking create-validator \
  --amount=1000000000000ppica \
  --pubkey=$(picad tendermint show-validator) \
  --moniker="[moniker]" \
  --identity="[identity]" \
  --website="[website]" \
  --details="[details]" \
  --security-contact="[contact]" \
  --chain-id="centauri-1" \
  --commission-rate="0.10" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="1" \
  --gas 400000 \
  --from=[wallet_name]

Testnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

Wasm

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

wget -O Picasso.sh https://anode.team/Picasso/test/Picasso.sh && chmod u+x Picasso.sh && ./Picasso.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.23.6 required. ref
  • Prerequisite: git. ref

Install last binary

git clone https://github.com/ComposableFi/composable-cosmos
cd composable-cosmos
git checkout v6.6.41
make install

if an error has occurred, you can simply download the binary

wget -O $HOME/go/bin/picad https://anode.team/Picasso/test/picad && chmod +x $HOME/go/bin/picad

Init the config files

picad init [moniker] --chain-id centauri-1
sed -i "s/chain-id = .*/chain-id = \"centauri-1\"/" $HOME/.banksy/config/client.toml

Create a wallet

picad keys add [wallet_name]

Download genesis and addrbook

curl https://anode.team/Picasso/test/genesis.json > ~/.banksy/config/genesis.json
curl https://anode.team/Picasso/test/addrbook.json > ~/.banksy/config/addrbook.json

Add peers, seed

SEEDS=""
PEERS="a2dada4e7695d654904a9f7b561ae2125b73c97e@144.76.97.251:49656"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.banksy/config/config.toml

Add min gas

sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0ppica"|g' $HOME/.banksy/config/app.toml

Set custom ports

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

Pruning and indexer

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

Create the service file

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

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

[Install]
WantedBy=multi-user.target
EOF

Load service and start

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

Create Validator

picad tx staking create-validator \
  --amount=1000000000000ppica \
  --pubkey=$(picad tendermint show-validator) \
  --moniker="[moniker]" \
  --identity="[identity]" \
  --website="[website]" \
  --details="[details]" \
  --security-contact="[contact]" \
  --chain-id="centauri-1" \
  --commission-rate="0.10" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="1" \
  --gas 400000 \
  --from=[wallet_name]