⚙️ 0G Da Client
🛠️ Hardware Requirements
Node Type | CPU | RAM | Bandwidth |
---|---|---|---|
Full (Requirements) | 2v CPU | 8 GB + | 100 MBps for Download / Upload |
📝 Manual installation
Installation packeges and dependencies
# Install dependencies for building from source
sudo apt update && sudo apt upgrade -y
sudo apt-get install screen
Install node
# Clone project repository
cd
git clone https://github.com/0glabs/0g-da-client.git
# Build binary
cd 0g-da-client
make build
## Change Value
## --chain.private-key YOUR_PRIVAT_KEY_VALIDATOR
## --encoder-socket IP_SERVER_DA_NODE:34000
# Run combined
cd disperser
screen
./bin/combined \
--chain.rpc https://evm-rpc.0gchain-testnet.unitynodes.com \
--chain.private-key YOUR_PRIVAT_KEY_VALIDATOR \
--chain.receipt-wait-rounds 180 \
--chain.receipt-wait-interval 1s \
--chain.gas-limit 2000000 \
--combined-server.use-memory-db \
--combined-server.storage.kv-db-path ./root/0g-storage-kv/run \
--combined-server.storage.time-to-expire 300 \
--disperser-server.grpc-port 51001 \
--batcher.da-entrance-contract 0xDFC8B84e3C98e8b550c7FEF00BCB2d8742d80a69 \
--batcher.da-signers-contract 0x0000000000000000000000000000000000001000 \
--batcher.finalizer-interval 20s \
--batcher.confirmer-num 3 \
--batcher.max-num-retries-for-sign 3 \
--batcher.finalized-block-count 50 \
--batcher.batch-size-limit 500 \
--batcher.encoding-interval 3s \
--batcher.encoding-request-queue-size 1 \
--batcher.pull-interval 10s \
--batcher.signing-interval 3s \
--batcher.signed-pull-interval 20s \
--encoder-socket IP_SERVER_DA_NODE:34000 \
--encoding-timeout 600s \
--signing-timeout 600s \
--chain-read-timeout 12s \
--chain-write-timeout 13s \
--combined-server.log.level-file trace \
--combined-server.log.level-std trace
Check Logs
screen -r DAClient
Last updated