Mainnet

Chain ID: xstaxy-1 | Node Version: v0.7.2

Node Installation Guide

Update system and install build tools

sudo apt update

sudo apt-get install git curl build-essential make jq gcc snapd chrony lz4 tmux unzip bc -y

Install Go

rm -rf $HOME/go
sudo rm -rf /usr/local/go
cd $HOME
curl https://dl.google.com/go/go1.19.5.linux-amd64.tar.gz | sudo tar -C/usr/local -zxvf -
cat <<'EOF' >>$HOME/.profile
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export GO111MODULE=on
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
EOF
source $HOME/.profile
go version

Install Node

cd $HOME

rm -rf aura

git clone https://github.com/aura-nw/aura.git

cd aura

git checkout v0.7.2

make install

aurad version

Initialize Node

Replace NodeName with your own moniker.

aurad init NodeName --chain-id=xstaxy-1

Download Genesis

curl -Ls https://ss.aura.nodestake.top/genesis.json > $HOME/.aura/config/genesis.json 

Download addrbook

curl -Ls https://ss.aura.nodestake.top/addrbook.json > $HOME/.aura/config/addrbook.json

Create Service

sudo tee /etc/systemd/system/aurad.service > /dev/null <<EOF
[Unit]
Description=aurad Daemon
After=network-online.target
[Service]
User=$USER
ExecStart=$(which aurad) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable aurad

Download Snapshot(optional)

SNAP_NAME=$(curl -s https://ss.aura.nodestake.top/ | egrep -o ">20.*\.tar.lz4" | tr -d ">")

curl -o - -L https://ss.aura.nodestake.top/${SNAP_NAME}  | lz4 -c -d - | tar -x -C $HOME/.aura

Launch Node

sudo systemctl restart aurad
journalctl -u aurad -f

If you have any questions, please reach out to our Discord

 

https://rpc.aura.nodestake.top

 

https://api.aura.nodestake.top

 

https://grpc.aura.nodestake.top

https://ss.aura.nodestake.top/genesis.json

Download Genesis File

curl -Ls https://ss.aura.nodestake.top/genesis.json > $HOME/.aura/config/genesis.json 

https://ss.aura.nodestake.top/addrbook.json

Download Addrbook

curl -Ls https://ss.aura.nodestake.top/addrbook.json > $HOME/.aura/config/addrbook.json 

Restart Node

sudo systemctl restart aurad
journalctl -u aurad -f

Set Peers

peers=$(curl -s https://ss.aura.nodestake.top/peers.txt)
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" ~/.aura/config/config.toml

Restart Node

sudo systemctl restart aurad
journalctl -u aurad -f

Stop Node And Reset

sudo systemctl stop aurad

aurad tendermint unsafe-reset-all --home ~/.aura/ --keep-addr-book

Configure State Sync

SNAP_RPC="https://rpc.aura.nodestake.top: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.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ; \

s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$SNAP_RPC,$SNAP_RPC\"| ; \

s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$BLOCK_HEIGHT| ; \

s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH\"| ; \

s|^(seeds[[:space:]]+=[[:space:]]+).*$|\1\"\"|" ~/.aura/config/config.toml

more ~/.aura/config/config.toml | grep 'rpc_servers'

more ~/.aura/config/config.toml | grep 'trust_height'

more ~/.aura/config/config.toml | grep 'trust_hash'

Download Wasm

rm -rf ~/.aura/wasm

curl -o - -L https://snapshots.nodestake.top/aura/wasm.tar.lz4 | lz4 -dc - | tar -xf - -C $HOME/.aura

Restart Node

sudo systemctl restart aurad
journalctl -u aurad -f

We make the node snapshot every day at 02:00 UTC+0

Install lz4

sudo apt update

sudo apt-get install snapd lz4 -y

Off State Sync

sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1false|" ~/.aura/config/config.toml

Stop Node and Reset Date

sudo systemctl stop aurad

cp $HOME/.aura/data/priv_validator_state.json $HOME/.aura/priv_validator_state.json.backup

rm -rf ~/.aura/data

rm -rf ~/.aura/wasm

aurad tendermint unsafe-reset-all --home ~/.aura/ --keep-addr-book

Download Snapshot

SNAP_NAME=$(curl -s https://ss.aura.nodestake.top/ | egrep -o ">20.*\.tar.lz4" | tr -d ">")

curl -o - -L https://ss.aura.nodestake.top/${SNAP_NAME}  | lz4 -c -d - | tar -x -C $HOME/.aura

mv $HOME/.aura/priv_validator_state.json.backup $HOME/.aura/data/priv_validator_state.json

Restart Node

sudo systemctl restart aurad
journalctl -u aurad -f

If you have any questions, please reach out to our Discord

Testnet

Chain ID: euphoria-2 | Node Version: euphoria_v0.4.4

Node Installation Guide

Update system and install build tools

sudo apt update

sudo apt-get install git curl build-essential make jq gcc snapd chrony lz4 tmux unzip bc -y

Install Go

rm -rf $HOME/go
sudo rm -rf /usr/local/go
cd $HOME
curl https://dl.google.com/go/go1.19.5.linux-amd64.tar.gz | sudo tar -C/usr/local -zxvf -
cat <<'EOF' >>$HOME/.profile
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export GO111MODULE=on
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
EOF
source $HOME/.profile
go version

Install Node

cd $HOME

rm -rf aura

git clone https://github.com/aura-nw/aura

cd aura

git checkout euphoria_v0.4.4

make

aurad version

Initialize Node

Replace NodeName with your own moniker.

aurad init NodeName --chain-id=euphoria-2

Download Genesis

curl -Ls https://ss-t.aura.nodestake.top/genesis.json > $HOME/.aura/config/genesis.json 

Download addrbook

curl -Ls https://ss-t.aura.nodestake.top/addrbook.json > $HOME/.aura/config/addrbook.json

Create Service

sudo tee /etc/systemd/system/aurad.service > /dev/null <<EOF
[Unit]
Description=aurad Daemon
After=network-online.target
[Service]
User=$USER
ExecStart=$(which aurad) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable aurad

Download Snapshot(optional)

SNAP_NAME=$(curl -s https://ss-t.aura.nodestake.top/ | egrep -o ">20.*\.tar.lz4" | tr -d ">")

curl -o - -L https://ss-t.aura.nodestake.top/${SNAP_NAME}  | lz4 -c -d - | tar -x -C $HOME/.aura

Launch Node

sudo systemctl restart aurad
journalctl -u aurad -f

If you have any questions, please reach out to our Discord

 

https://rpc-t.aura.nodestake.top

 

https://api-t.aura.nodestake.top

 

https://grpc-t.aura.nodestake.top

https://ss-t.aura.nodestake.top/genesis.json

Download Genesis File

curl -Ls https://ss-t.aura.nodestake.top/genesis.json > $HOME/.aura/config/genesis.json 

https://ss-t.aura.nodestake.top/addrbook.json

Download Addrbook

curl -Ls https://ss-t.aura.nodestake.top/addrbook.json > $HOME/.aura/config/addrbook.json 

Restart Node

sudo systemctl restart aurad
journalctl -u aurad -f

Set Peers

peers=$(curl -s https://ss-t.aura.nodestake.top/peers.txt)
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" ~/.aura/config/config.toml

Restart Node

sudo systemctl restart aurad
journalctl -u aurad -f

Stop Node And Reset

sudo systemctl stop aurad

aurad tendermint unsafe-reset-all --home ~/.aura/ --keep-addr-book

Configure State Sync

SNAP_RPC="https://rpc-t.aura.nodestake.top: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.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ; \

s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$SNAP_RPC,$SNAP_RPC\"| ; \

s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$BLOCK_HEIGHT| ; \

s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH\"| ; \

s|^(seeds[[:space:]]+=[[:space:]]+).*$|\1\"\"|" ~/.aura/config/config.toml

more ~/.aura/config/config.toml | grep 'rpc_servers'

more ~/.aura/config/config.toml | grep 'trust_height'

more ~/.aura/config/config.toml | grep 'trust_hash'

Restart Node

sudo systemctl restart aurad
journalctl -u aurad -f

We make the node snapshot every 6h

Install lz4

sudo apt update

sudo apt-get install snapd lz4 -y

Off State Sync

sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1false|" ~/.aura/config/config.toml

Stop Node and Reset Date

sudo systemctl stop aurad

rm -rf ~/.aura/data

aurad tendermint unsafe-reset-all --home ~/.aura/ --keep-addr-book

Download Snapshot

SNAP_NAME=$(curl -s https://ss-t.aura.nodestake.top/ | egrep -o ">20.*\.tar.lz4" | tr -d ">")

curl -o - -L https://ss-t.aura.nodestake.top/${SNAP_NAME}  | lz4 -c -d - | tar -x -C $HOME/.aura

Restart Node

sudo systemctl restart aurad
journalctl -u aurad -f

If you have any questions, please reach out to our Discord