Geliştirici Araç Kutusu
Mainnet ve Spicy Testnet RPC parametreleri, ücretsiz CHZ testnet faucet'leri, sözleşme dağıtımı ve doğrulama kılavuzları ve Docker ile node başlatma komutları.
Son güncelleme
Bu yararlı oldu mu?
Bu yararlı oldu mu?
docker run \
-v $(pwd)/my-datadir:/datadir \
--name ccv2-node \
-p 8545:8545 \
-p 8546:8546 \
chilizchain/ccv2-geth:latest \
--chiliz \ # for Chiliz Mainnet. Use --spicy for Spicy Testnet.
--datadir=/datadir \
--ipcdisable \
--http \
--http.addr=0.0.0.0 \
--http.api=eth,net,web3,debug,txpool \
--http.port=8545 \
--http.corsdomain="*" \
--http.vhosts="*" \
--ws \
--ws.addr=0.0.0.0 \
--ws.api=eth,net,web3,debug,txpool \
--ws.port=8546 \
--ws.origins="*" \