STEP 1 Update your server to get the latest version
sudo apt update && sudo apt upgrade -y
Aura Network is a scalable, agile and effortless Layer-1 blockchain with a comprehensive ecosystem built to accelerate global NFTs adoption.
sudo apt update && sudo apt upgrade -y
sudo apt install git curl wget tar lz4 unzip jq build-essential pkg-config clang bsdmainutils make ncdu -y
Go is a programming language allowing each node of the Cosmos ecosystem to operate.
Go is a compiled and concurrent programming language inspired by C and Pascal.
This language was developed by Google from an initial concept by Robert Griesemer, Rob Pike and Ken Thompson.
cd $HOME
version="1.19.6"
wget "https://golang.org/dl/go$version.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$version.linux-amd64.tar.gz"
rm "go$version.linux-amd64.tar.gz"
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile
source $HOME/.bash_profile
Check GO version, it must return : go version go1.19.6 linux/amd64
go version
Top page
Here we will install the node for Aura with this binary version : v0.8.0-euphoria
Please be sure to install the latest version one last minute version can be published ! Please check by yourself here...
cd $HOME
git clone https://github.com/aura-nw/aura.git
cd aura
git checkout v0.8.0-euphoria
make install
Check if the binary "aurad" version v0.8.0-euphoria has been correctly installed
aurad version
Top page
What does moniker mean?
A personal name or nickname. This name (moniker) will appear in the blockchain explorer.
SPACE in your moniker will create errors
AURA_MONIKER="Replace_AVIAONE_by_your_name"
Top page
We are now ready to initialze the node
aurad init $AURA_MONIKER --chain-id euphoria-2
Top page
Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0ueaura\"|" $HOME/.aura/config/app.toml
Download genesis
wget -O $HOME/.aura/config/genesis.json ""
Download addrbook
wget -O $HOME/.aura/config/addrbook.json ""
Add Seeds
SEEDS="258f523c96efde50d5fe0a9faeea8a3e83be22ca@seed.euphoria-2.aura.aviaone.com:20062,705e3c2b2b554586976ed88bb27f68e4c4176a33@13.250.223.114:26656,b9243524f659f2ff56691a4b2919c3060b2bb824@13.214.5.1:26656"
sed -i -e "s|^seeds *=.*|seeds = \"$SEEDS\"|" $HOME/.aura/config/config.toml
Change ports
Advanced users ONLY !
Clear Data
aurad tendermint unsafe-reset-all $HOME/.aura --keep-addr-book
Top page
This will let you start and stop your node with /etc/systemd/system
sudo tee /etc/systemd/system/aurad.service > /dev/null <<EOF
[Unit]
Description=AURA\n
After=network.target
[Service]
Type=simple
User=$USER
ExecStart=$(which aurad) start
Restart=on-failure
RestartSec=10
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl enable aurad
sudo systemctl daemon-reload
This command will start your node
Do not use it now if you are going to use below : Snapshot | State Sync (because your node shouldn't start now... but after the Snapshot | State Sync)
sudo systemctl restart aurad && journalctl -u aurad -f --no-hostname -o cat
Top page
Please be sure to use the latest binary version : v0.8.0-euphoria
sed -i "/\[statesync\]/, /^enable =/ s/=.*/= false/;\
/^rpc_servers =/ s|=.*|= \"\"|;\
/^trust_height =/ s/=.*/= 0/;\
/^trust_hash =/ s/=.*/= \"\"/" $HOME/.aura/config/config.toml
sudo systemctl stop aurad
SNAP_RPC="https://rpc.euphoria.aura.network/:443"
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 1000)); \
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash)
echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH
sed -i "/\[statesync\]/, /^enable =/ s/=.*/= true/;\
/^rpc_servers =/ s|=.*|= \"$SNAP_RPC,$SNAP_RPC\"|;\
/^trust_height =/ s/=.*/= $BLOCK_HEIGHT/;\
/^trust_hash =/ s/=.*/= \"$TRUST_HASH\"/" $HOME/.aura/config/config.toml
sudo systemctl stop aurad && aurad tendermint unsafe-reset-all --home $HOME/.aura --keep-addr-book
sudo systemctl start aurad && journalctl -u aurad -f --no-hostname -o cat
Watch your logs and be patient it can take 5 minutes.... !!
With the command used just above, your node just started, now BE PATIENT your node has started to work and will need time to get synced on the last block.
First check your logs and have a look at what's going on !
You should see some output like this which confirm that your node is indexing blocks
### indexed block exents height=10132048 module=txindex
How to check if your node is already fully synced? ?
aurad status 2>&1 | jq .SyncInfo
The current block number is :10132048 and the last block app hash is :wjpXq3kpKhOEgMgs5KFbjpMkrbG8CaO8LdOwC2L2oi8=
true mean syncing on the way, and true is NOT SYNCED
You will see an output with :
"catching_up": false
If you get true instead of false, please wait... it's not done yet, it's on the way...
true mean syncing on the way, and true is NOT SYNCED
The current block number is :10132048 and the last block app hash is :wjpXq3kpKhOEgMgs5KFbjpMkrbG8CaO8LdOwC2L2oi8=
Top pageWhy it's better to get synced before to create or recover a wallet ?
Because when your wallet will be created or recovered, if you are not synced, you will not be able to check the balance !
Create Wallet
aurad keys add name_wallet
Recover Wallet
aurad keys add name_wallet --recover
Top page
Create your validator if you are not synced, you will get some troubles...
aurad tx staking create-validator \
--amount=1000000ueaura \
--pubkey=$(aurad tendermint show-validator) \
--moniker="YOUR_NICKNAME" \
--chain-id=euphoria-2 \
--commission-rate=0.05 \
--commission-max-rate=0.2 \
--commission-max-change-rate=0.02 \
--min-self-delegation=1 \
--website="https://your-website.com" \
--identity="keyBASE_id" \
--details="This is will be display in the blockchain explorer. Write here something about you"\
--gas-prices=0.1ueaura \
--gas-adjustment=1.5 \
--gas=auto \
--from=WRITE_HERE_YOUR_WALLET_ADDRESS
Top page
Congratulations, your made all the steps above necessary to setup the node for AURA (chain-id=euphoria-2) with success and your node is already online now.
aurad q bank balances YOUR_WALLET_NUMBER
Must return false to get synced
aurad status 2>&1 | jq .SyncInfo
journalctl -u aurad -f --no-hostname -o cat
(In some case that's necessary to add "fees" or --gas=auto)
aurad tx gov vote 14 yes --from YOUR_WALLET_NUMBER --chain-id euphoria-2
(In some case that's necessary to add "fees" or --gas=auto)
aurad tx slashing unjail --chain-id=euphoria-2 --from YOUR_WALLET_NUMBER -y
sudo systemctl restart aurad && journalctl -u aurad -f --no-hostname -o cat
aurad q bank balances YOUR_WALLET_NUMBER
aurad keys add YOUR_WALLER_NAME
aurad keys add YOUR_WALLET_NUMBER --recover
aurad keys list
aurad keys delete YOUR_WALLET_NUMBER
(In some case that's necessary to add "fees" or --gas=auto)
aurad tx gov vote 14 yes --from YOUR_WALLET_NUMBER --chain-id euphoria-2
(In some case that's necessary to add "fees" or --gas=auto)
aurad tx gov vote 14 no --from YOUR_WALLET_NUMBER --chain-id euphoria-2
(In some case that's necessary to add "fees" or --gas=auto)
aurad tx gov vote 14 no_with_veto --from YOUR_WALLET_NUMBER --chain-id euphoria-2
(In some case that's necessary to add "fees" or --gas=auto)
aurad tx gov vote 14 abstain --from YOUR_WALLET_NUMBER --chain-id euphoria-2
(In some case that's necessary to add "fees" or --gas=auto)
aurad query gov proposals
(In some case that's necessary to add "fees" or --gas=auto)
aurad query gov proposal 14
(In some case that's necessary to adjust : "deposit" or "fees" or --gas=auto)
aurad tx gov submit-proposal \
--from YOUR_WALLET_NUMBER \
--chain-id euphoria-2 \
--deposit=100000000ueaura \
--type="Text" \
--title="Write here the title of your proposal for Aura" \
--description="Describe here with details your proposal for Aura" \
--fees=10000ueaura \
--gas=auto \
-y
(In some case that's necessary to add "fees" or --gas=auto)
aurad tx slashing unjail --chain-id=euphoria-2 --from YOUR_WALLET_NUMBER -y
aurad keys show YOUR_WALLET_NUMBER --bech val -a
aurad query staking validator YOUR_VALIDATOR_VALOPER --output json
aurad q staking validator $(aurad keys show YOUR_WALLET_NUMBER --bech val -a)
aurad query slashing signing-info $(aurad tendermint show-validator)
aurad status 2>&1 | jq .ValidatorInfo
aurad 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
aurad q staking validators -oj --limit=3000 | jq '.validators[] | select(.status=="BOND_STATUS_UNBONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " \t " + .description.moniker' | sort -gr | nl
aurad tx staking edit-validator \
--new-moniker="Replace AVIAONE by your name" \
--identity=YOUR_KEYBASE_ID \
--details="This is will be display in the blockchain explorer. Write here something about you" \
--chain-id=euphoria-2 \
--commission-rate=0.1 \
--from=YOUR_WALLET_NUMBER \
--gas-prices=0.1ueaura \
--gas-adjustment=1.5 \
--gas=auto \
-y
(NEVER DO IT if you are not already synced with the latest block)
aurad tx staking create-validator \
--amount=1000000ueaura \
--pubkey=$(euphoria-2 tendermint show-validator) \
--moniker="Replace AVIAONE by your name" \
--identity=YOUR_KEYBASE_ID \
--details="This is will be display in the blockchain explorer. Write here something about you" \
--chain-id=euphoria-2 \
--commission-rate=0.10 \
--commission-max-rate=0.20 \
--commission-max-change-rate=0.01 \
--min-self-delegation=1 \
--from=YOUR_WALLET_NUMBER \
--gas-prices=0.1ueaura \
--gas-adjustment=1.5 \
--gas=auto \
-y
(In some case that's necessary to add "fees" or --gas=auto)
aurad tx bank send WALLET_SENDER WALLET_RECEIVER 1000000ueaura --chain-id=euphoria-2
(In some case that's necessary to add "fees" or --gas=auto)
aurad tx staking delegate WALLET_NUMBER_WHERE_YOU_WANT_DELEGATE 1000000ueaura --from YOUR_WALLET_NUMBER --chain-id=euphoria-2
(In some case that's necessary to add "fees" or --gas=auto)
aurad tx staking delegate YOUR_VALIDATOR_NUMBER 1000000ueaura --from YOUR_WALLET_NUMBER --chain-id=euphoria-2
aurad tx distribution withdraw-all-rewards --from YOUR_WALLET_NUMBER
aurad tx distribution withdraw-rewards YOUR_VALIDATOR_NUMBER --from YOUR_WALLET_NUMBER --commission
Under contruction
Under contruction
Under contruction
sed -i -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0ueaura\"/" $HOME/.aura/config/app.toml
sed -i -e 's|^indexer *=.*|indexer = "null"|' $HOME/.aura/config/config.toml
sed -i -e 's|^indexer *=.*|indexer = "kv"|' $HOME/.aura/config/config.toml
echo $(aurad tendermint show-node-id)'@'$(curl -s ifconfig.me)':'$(cat $HOME/.aura/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')
curl -sS https://rpc.euphoria-1.aura.aviaone.com/net_info | jq -r '.result.peers[] | "\(.node_info.id)@\(.remote_ip):\(.node_info.listen_addr)"' | awk -F ':' '{print $1":"$(NF)}'
YOU ARE GOING TO DELETE EVERYTHING WITHOUT ANY POSSIBILITY TO RECOVER, be sure that's really you are looking for...
BEFORE BE SURE TO SAVE $HOME/.aura/config/priv_validator_key.json
This file $HOME/.aura/config/priv_validator_key.json will let you create a new node with the same validator
cd $HOME
sudo systemctl stop aurad
sudo systemctl disable aurad
sudo rm /etc/systemd/system/aurad.service
sudo systemctl daemon-reload
rm -f $(which aurad)
rm -rf $HOME/.aura
rm -rf $HOME/aura
curl -sS https://rpc.euphoria-1.aura.aviaone.com/net_info | jq -r '.result.peers[] | "\(.node_info.id)@\(.remote_ip):\(.node_info.listen_addr)"' | awk -F ':' '{print $1":"$(NF)}'
PEERS="5b2758dfcbcbc19b9a0ee04c09008b67c98cd7d9@162.244.35.40:24656,d5519e378247dfb61dfe90652d1fe3e2b3005a5b@65.109.68.190:17656,0770c2687cc34d59ca62270960d3ffcad6e42cf8@65.108.233.44:21656,b130852645cc3d7925cfccd14d97425a2260e7ec@65.109.82.106:19656,31f11907b83ab12d86910ad0c9217ca62a5b8d5d@35.239.82.160:26656,6ef01ca6714aa8127d1b21b5339909ca6319dae0@144.76.97.251:26776,9b2633621f2c19270dd305b2d4bc478059183c85@91.194.30.203:32656,7cad1bcb2ad777dba21840832341f2ce14bae1a5@5.75.174.126:26656,f512fd7db32cf2e0005d8c05f07ebd79475e69d0@49.12.236.218:26656,7bc01325a59434dffaeef624c1c5f5f7b9fc826b@135.181.215.116:27656,e874935eee84c8313dbb52ba497aed2d8d1f1245@65.108.237.231:27656,c53157159e7cea010b86e44786831f792d852e1f@65.108.76.44:11023,9df9e8307e3e671c9bcd1a23f0b73b45f2b8003d@65.109.88.251:35656,3d6b07bdb11754c8c8512525dac109d8bdee3857@65.21.53.39:7656,8a6395266826a32be2171459c7fe9d42119f2830@38.242.203.13:36656,38b49491b5eb8e4edb31e81acbadc42d50047a9e@66.206.2.162:27656,19e7064636dbc002c644c77860b72536448e5436@65.108.124.57:26626,9380ba6310e2fc37a9c6e6d8c17ddb59c4d42f52@38.242.144.81:26656,1c7c36a652aa9757a224ccbb4e7c6524284471b9@27.76.111.222:26656,d74774b137ce78a61ccbe9c30ff8ec8cb969247d@89.58.59.10:26656,a98484ac9cb8235bd6a65cdf7648107e3d14dab4@116.202.231.58:17656,e3dbeeeb2dea9912610b92a436dfe3cb831a94e4@65.108.195.29:36126,bbb958be20d917718c62a59ff01e58c200848674@3.237.196.11:26656"
sed -i -e "s|^persistent_peers *=.*|persistent_peers = \"$PEERS\"|" $HOME/.aura/config/config.toml
SEEDS="258f523c96efde50d5fe0a9faeea8a3e83be22ca@seed.euphoria-2.aura.aviaone.com:20062,705e3c2b2b554586976ed88bb27f68e4c4176a33@13.250.223.114:26656,b9243524f659f2ff56691a4b2919c3060b2bb824@13.214.5.1:26656"
sed -i -e "s|^seeds *=.*|seeds = \"$SEEDS\"|" $HOME/.aura/config/config.toml
(updated every 4 hours)
curl -Ls > $HOME/.aura/config/addrbook.json
(updated every 4 hours)
curl -Ls > $HOME/.aura/config/genesis.json
Please be sure to use the latest binary version.
One last minute version can be published ! Please check by yourself here... and compare with your node aurad version
sudo systemctl stop aurad
cp $HOME/.aura/data/priv_validator_state.json $HOME/.aura/priv_validator_state.json.backup
aurad tendermint unsafe-reset-all --home $HOME/.aura --keep-addr-book
wget -c 2024-05-02.tar.gz -O - | tar -xz -C $HOME/.aura
mv $HOME/.aura/priv_validator_state.json.backup $HOME/.aura/data/priv_validator_state.json
sudo systemctl start aurad && sudo journalctl -u aurad -f --no-hostname -o cat
Please be sure to use the latest binary version : v0.8.0-euphoria
sed -i "/\[statesync\]/, /^enable =/ s/=.*/= false/;\
/^rpc_servers =/ s|=.*|= \"\"|;\
/^trust_height =/ s/=.*/= 0/;\
/^trust_hash =/ s/=.*/= \"\"/" $HOME/.aura/config/config.toml
sudo systemctl stop aurad
SNAP_RPC="https://rpc.euphoria.aura.network/:443"
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 1000)); \
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash)
echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH
sed -i "/\[statesync\]/, /^enable =/ s/=.*/= true/;\
/^rpc_servers =/ s|=.*|= \"$SNAP_RPC,$SNAP_RPC\"|;\
/^trust_height =/ s/=.*/= $BLOCK_HEIGHT/;\
/^trust_hash =/ s/=.*/= \"$TRUST_HASH\"/" $HOME/.aura/config/config.toml
sudo systemctl stop aurad && aurad tendermint unsafe-reset-all --home $HOME/.aura --keep-addr-book
sudo systemctl start aurad && journalctl -u aurad -f --no-hostname -o cat
Watch your logs and be patient it can take 5 minutes.... !!
That's an easy process, just click and follow the instructions...it will be done in 10 seconds !
Our platform offers a secure link that allows you to effortlessly connect your KEPLR wallet. The process is quick and easy. Adding a new chain to your wallet is a standard procedure that doesn't involve any transaction. It simply requires your approval. To get started, click on the button below to add this chain to your wallet and start interacting with the blockchain.