4x CPUs; the faster clock speed the better 8GB RAM 100GB of storage (SSD or NVME)
8x CPUs; the faster clock speed the better 16GB RAM 1TB of storage (SSD or NVME)
sudo apt update sudo apt install -y curl git jq lz4 build-essential
sudo rm -rf /usr/local/go curl -L https://go.dev/dl/go1.21.6.linux-amd64.tar.gz | sudo tar -xzf - -C /usr/local echo 'export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin' >> $HOME/.bash_profile source .bash_profile
cd && rm -rf artela git clone https://github.com/artela-network/artela cd artela git checkout v0.4.7-rc6
make install
artelad config chain-id artela_11822-1 artelad config keyring-backend test artelad config node tcp://localhost:27857
artelad init "moniker" --chain-id artela_11822-1
curl -L https://snapshots-testnet.nodejumper.io/artela-testnet/genesis.json > $HOME/.artelad/config/genesis.json curl -L https://snapshots-testnet.nodejumper.io/artela-testnet/addrbook.json > $HOME/.artelad/config/addrbook.json
sed -i -e 's|^seeds =.|seeds = "[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656"|' $HOME/.artelad/config/config.toml
sed -i -e 's|^minimum-gas-prices =.|minimum-gas-prices = "20000000000uart"|' $HOME/.artelad/config/app.toml
sed -i
-e 's|^pruning =.|pruning = "custom"|'
-e 's|^pruning-keep-recent =.|pruning-keep-recent = "100"|'
-e 's|^pruning-interval =.|pruning-interval = "17"|'
$HOME/.artelad/config/app.toml
sed -i -e "s%:1317%:27817%; s%:8080%:27880%; s%:9090%:27890%; s%:9091%:27891%; s%:8545%:27845%; s%:8546%:27846%; s%:6065%:27865%" $HOME/.artelad/config/app.toml sed -i -e "s%:26658%:27858%; s%:26657%:27857%; s%:6060%:27860%; s%:26656%:27856%; s%:26660%:27861%" $HOME/.artelad/config/config.toml
curl "https://snapshots-testnet.nodejumper.io/artela-testnet/artela-testnet_latest.tar.lz4" | lz4 -dc - | tar -xf - -C "$HOME/.artelad"
sudo tee /etc/systemd/system/artelad.service > /dev/null << EOF [Unit] Description=Artela node service After=network-online.target [Service] User=$USER ExecStart=$(which artelad) start Restart=on-failure RestartSec=10 LimitNOFILE=65535 [Install] WantedBy=multi-user.target EOF sudo systemctl daemon-reload sudo systemctl enable artelad.service
sudo systemctl start artelad.service sudo journalctl -u artelad.service -f --no-hostname -o cat
artelad status 2>&1 | jq .SyncInfo
artelad status 2>&1 | jq -r '.SyncInfo.latest_block_height // .sync_info.latest_block_height'
artelad keys add wallet
- join to the discord https://discord.com/invite/artela
- you need Eip 55 address to get faucet
artelad query bank balances $ARTELA_WALLET_ADDRESS
3.request <YOUR_EVM_ADDRESS>
4.Voting the private key of Volt to import to Metamask, just type the following command artelad keys unsafe-export-eth-key wallet
artelad tx staking create-validator
--amount=1000000uart
--pubkey=$(artelad tendermint show-validator)
--moniker="moniker"
--identity=""
--details="I will go ahead "
--chain-id=artela_11822-1
--commission-rate=0.10
--commission-max-rate=0.20
--commission-max-change-rate=0.01
--min-self-delegation=1
--from=wallet
--gas-prices=20000000000uart
--gas-adjustment=1.5
--gas=auto
-y
artelad tx staking edit-validator
--moniker="moniker"
--identity=""
--details="I will go ahead "
--chain-id=artela_11822-1
--commission-rate=0.1
--from=wallet
--gas-prices=20000000000uart
--gas-adjustment=1.5
--gas=auto
-y
artelad q staking validators -oj --limit=3000 | jq '.validators[] | select(.status=="BOND_STATUS_BONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " \t " + .description.moniker' | sort -gr | nl
artelad q staking validators -oj --limit=3000 | jq '.validators[] | select(.status=="BOND_STATUS_UNBONDED" or .status=="BOND_STATUS_UNBONDING")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " \t " + .description.moniker' | sort -gr | nl
artelad q staking validator $(artelad keys show wallet --bech val -a)
artelad tx staking delegate $(artelad keys show wallet --bech val -a) 1000000000000000000uart --from wallet --chain-id artela_11822-1 --gas-adjustment 1.5 --gas auto --gas-prices 0.025uart -y
artelad query gov proposals
artelad tx gov vote 1 yes --from wallet --chain-id artela_11822-1 --gas-adjustment 1.5 --gas auto --gas-prices 0.025uart -y