Agere Auditor
Transfer GEB from EVM to Wasm
Transfer(EVM<-->Wasm)Auditor Overview
RelayAgereQuick Join RelayAgere
Recommended System: Ubuntu 22.04 LTS +
Preparation Work
Clone the repository
git clone https://github.com/GEBcore/RelayAgere.git && cd RelayAgere
Install the dependencies
bash install.sh
Activate the virtual environment
source .venv/bin/activate
Create Wallet
./wallet.sh <cold_wallet_name>
You need to import both your cold wallet and hot wallet into the BEVM Wallet for easier subsequent operations.
Register to the agere
Please deposit GEB token larger than register fee (at least 10 tokens ) to your cold wallet to register and join the agere.
After registration, you need to wait for the auditor permit
parameter to become yes
. The waiting time is one epoch, approximately 10 minutes.
./register.sh <cold_wallet_name>
Register as a delegate
After your registration, if you want to work as an auditor, you need to register as a delegate on GEB Wallet.
If you want to become an auditor, you'll also need to stake sufficient tokens in your hot address.
Router: Agere->User->Agere Participants->Delegate

The first option selects the cold address, and the second option selects the corresponding hot address.

Run an Auditor Progarm
Query your wallet balance
./get_balance.sh <cold_wallet_name>
Running as an Auditor
Stake your tokens to become an auditor
./stake.sh add <cold_wallet_name>
Run the auditor program
./auditor.sh -d <cold_wallet_name>
Check Auditor run status
tail auditor.log
The above code allows you to view the most recent auditor logs, but to ensure that the auditor program is truly running successfully on the agere, you need to wait until the auditor status parameter changes to active. This will probably take about 10-60 minutes.

Set Commission
Maximum value is 11796, calculate "commission = take/65535*100%"
Increase(required to be greater than previous)

Decrease(required to be less than previous)

Claiming Rewards
Except for agere creators, other users' BitAgere incentives are stored in stakes and need to be unstaked to receive actual tokens.
Using scripts to unstake
./stake.sh remove <cold_wallet_name>
Unstaking via BEVM Wallet
Router: Agere->User Dashboard->Agere Participants->Unstake

Last updated