Gnosis setup

Last updated: 2024-02-15

The guide below is for running a node on Gnosis chain only.

As of February 2024, Gnosis chain is the only chain that supports delegated staking. Delegated staking is expected to come on NeuroWebAI shortly after.

Step 1 - Add Gnosis Network to MetaMask

Begin by adding the Gnosis network to your Metamask extension by either connecting MetaMask to this link or manually

Network nameGnosis

RPC URL

Chain ID

100

Currency symbol

XDAI

Add xTRAC on MetaMask by importing the contract address below

0xEddd81E0792E764501AaE206EB432399a0268DB5

Step 2 - Fund your wallet

Begin by obtaining xDAI for operations on Gnosis chain through their faucet.

If you require more xDAI, you can use Jumper to swap any assets to xDAI on Gnosis.

Gnosis is EVM compatible. Therefore, you can use your Ethereum wallet on MetaMask or Ledger for all operations.

If you want to delegate to your own node, bridge your ERC-20 TRAC from Ethereum to Gnosis by using the Omnibridge.

A node can be fully operational with delegated stake only as long as the total stake amount is 50k TRAC or above.

Step 3 - Install your node

In order to deploy your OriginTrail V6 node on Gnosis, you will need a Linux (Ubuntu) server with the following minimum recommended hardware:

  • 4GB RAM

  • 2CPUs

  • 50GB HDD space

Log into the server as root. You cannot use sudo and run this script.

Gather the following information:

ValueDescription

EVM_OPERATIONAL_WALLET

Public address of your operational wallet Example: MetaMask wallet

EVM_OPERATIONAL_PRIVATE_KEY

Private key of your operational wallet

EVM_MANAGEMENT_WALLET

Public address of your management wallet Example: Ledger wallet

SHARES_TOKEN_NAME

Your choice of token name

SHARES_TOKEN_SYMBOL

The token symbol of your token name

Archival RPC Endpoint

For a free Archival RPC Endpoint, try out BlockPi or OnFinality.

Run the one-liner installer script and select the appropriate prompts

cd /root/ && curl -k -o installer.sh https://raw.githubusercontent.com/OriginTrail/ot-node/v6/develop/installer/installer.sh && chmod +x installer.sh && ./installer.sh

You must choose an SQL password for the installer to work. Do not leave that field empty.

Reminder:

In order to use aliases to quickly check node logs, start/stop/restart node, change node config, you must execute the following script after the installation:

source ~/.bashrc

Once the sourcing is done, try the following: otnode-logs

otnode-start

otnode-stop

otnode-restart

otnode-config

You have now successfully completed your node installation! You can check the logs by using the alias otnode-logs.

Step 4 - Set node ask

The default ask is set to 0.01 in the script below. Please change it to your desired ask price.

Find an rpcEndpoint by going to this link.

npm -C /root/ot-node/current run set-ask -- --rpcEndpoint=https://<desired_rpc_endpoint> --ask=0.01 --privateKey=$(jq -r '.modules.blockchain.implementation.otp.config.evmOperationalWalletPrivateKey' /root/ot-node/.origintrail_noderc) --hubContractAddress=0x5fA7916c48Fe6D5F1738d12Ad234b78c90B4cAdA

Step 5 - Add stake

Visit Houston and connect your admin wallet. Head to Service Tokenomics and follow the on screen instructions to set up node operator fee, node ask and node stake!

You can then visit the staking dashboard to find your node.

Done!

Last updated