Guide

Download

Download the SDK from Unibase Release.

Explorer

Faucet

  • Gas token: request Holesky ETH first, then send it to L1StandardBridgeProxy: 0x07205FEfD61E11C7AE3aeeb1656451Bad7896a84 , you can claim Holesky ETH from the following faucet websites: Google Faucet.

  • It is advisable to have at least 1 holesky ETH available for transaction sending.

  • Token Claim: Upon binary startup, the client automatically claims 100 UB tokens from the server.

  • Transaction Costs: Each transaction costs 0.003 gas tokens; adding a piece costs 0.00017 gas tokens; adding a replica costs between 0.003 to 0.005 gas tokens.

Stream Node

Initialize, defaults to ~/.stream directory, create account with password aidemo123

./stream init

Start daemon, defaults to port 8083, port 8083 must be accessible from the internet

./stream daemon run -b <BIND_PORT> -e <EXPOSE_URL>

Example with external IP 1.2.3.4

./stream daemon run -b 0.0.0.0:8083 -e http://1.2.3.4:8083

Check balance

./stream chain balance 

Check revenue

./stream chain stream revenue

Withdraw revenue

./stream chain stream withdraw

Storage Node

Initialize, defaults to ~/.store directory, create account with password aidemo123

./store-edge init

Start daemon, defaults to port 8082

./store-edge daemon run -b <BIND_PORT> -e <EXPOSE_URL>

Example with external IP 1.2.3.4, port 8082 accessible from the internet

./store-edge daemon run -b 0.0.0.0:8082 -e http://1.2.3.4:8082

Example: No external IP, port 8082 not accessible from the internet

./store-edge daemon run -b 127.0.0.1:8082

Check balance

./stream chain balance

Check revenue information

./store-edge chain store revenue

Withdraw storage revenue, updates available rewards

./store-edge chain store withdraw

Update storage rewards

./store-edge chain store updateReward

Withdraw storage rewards

./store-edge chain store withdrawReward

Validator Node

Initialize, defaults to ~/.validator directory, create account with password aidemo123

./validator init

Start daemon, defaults to port 8085

./validator daemon run -b <BIND_PORT>

Example

./validator daemon run -b 127.0.0.1:8085

Check Balance

./validator chain balance

Last updated