Run Seeder
git clone https://github.com/radiusxyz/seedercd seeder cargo build --release./scripts/execute/01_init_seeder.sh./scripts/execute/02_run_seeder.sh./scripts/rpc-call/10_initialize.sh
Last updated
#!/bin/bash
# Used by the network owner to add sequencing information,
# including the RPC and WebSocket URLs for interacting with
# the liveness contract, the contract address itself, and
# the platform with the service provider.
SEEDER_INTERNAL_RPC_URL="http://127.0.0.1:6001" # Internal IP - Please change this IP.
# Used as parameters for registering liveness-related data
# through the internal RPC URL.
LIVENESS_PLATFORM="ethereum" # Option: [ethereum]
LIVENESS_SERVICE_PROVIDER="radius" # Option: [radius]
LIVENESS_RPC_URL="http://127.0.0.1:8545" # Please change this IP.
LIVENESS_WS_URL="ws://127.0.0.1:8545" # Please change this IP.
LIVENESS_CONTRACT_ADDRESS="0x0000000000000000000000000000000000000000" # Please change this liveness contract address.