0G KV Node

TLanderon
Feb 19, 2024

--

Github | Twitter | Keybase

Validator Information

  • Moniker: TLanderon
  • Specs: 24 vCPU, 128 GB RAM, 5 TB NVMe, 950 Mb/s bandwidth
  • Install Dependencies and Rust Follow the same steps as for the Storage Node.
  • Download Source Code
git clone -b v1.1.0-testnet https://github.com/0glabs/0g-storage-kv.git
cd 0g-storage-kv
git submodule update --init
cargo build --release
  • Configure Node Copy config_example.toml to config.toml and update parameters:
rpc_listen_address = "0.0.0.0:6789"
zgs_node_urls = "http://195.201.175.107:5678"
blockchain_rpc_endpoint = "http://195.201.175.107:28345"
log_contract_address = "0xContractAddress"
log_sync_start_block_number = 0
  • Run the KV Service
cd run ../target/release/zgs_kv --config config.toml
  • Monitoring and Maintenance
  • Check KV node status:
curl -s http://localhost:6789/status
  • View logs:
tail -f logs/kv_node.log

--

--