Registering to the Rewards Program - beta

To register your relay to the rewards program and set up the Anon Relay service to be claimable in the Relay Dashboard, you can follow these manual steps.

The Rewards Program and Relay Dashboard are currently in beta on the Ethereum Sepolia Test Network. An updated Relay Dashboard will be announced soon. Join our Discord or Telegram community for more information. Community and Customer Support

Installation and Configuration

Start by installing the Anon package and configuring the relay with your desired settings. This includes providing a nickname for your relay, contact information, family fingerprints (if applicable) and ORPort. Follow the instructions provided in the Installation section to get started.

Adding Ethereum Wallet Address

After configuring the relay, append your crypto wallet address to the end of the Contactinfo line in the /etc/anon/anonrc configuration file. This step makes sure that your relay can be associated with your wallet for receiving contribution rewards.

Open the anonrc file in a text editor.

sudo nano /etc/anon/anonrc

Alternatively, you can use another text editor like vim or gedit.

sudo vim /etc/anon/anonrc
sudo gedit /etc/anon/anonrc

Adding wallet address to your anonrc configuration.

Locate the ContactInfo line by scrolling through the file to find the line that starts with ContactInfo and add your wallet address to the end of this line prefixed with "@anon: ".

For example, if the line originally looks like this:

ContactInfo <e-mail@example.com>

Modify it to look like this:

ContactInfo <e-mail@example.com> @anon: 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF

Save the changes and exit the text editor

  • For nano, press Ctrl + X, then type y and press Enter to confirm. Press Ctrl + X then type n and press Enter to cancel changes.

  • For vim, press Esc, then type :wq and press Enter to save and quit.

  • For gedit, simply click Save and then close the window.

Restart the Anon service to apply the changes:

sudo systemctl restart anon.service

[Optional] Verify the changes

You can verify the anonrc configuration file to ensure that your changes were saved correctly

sudo /usr/bin/anon -f /etc/anon/anonrc --verify-config

Last updated