Rpc
如何在 Geth 節點上啟動 HTTP JSON-RPC?
我想使用 RPC 來訪問 Geth 節點。我是否必須
admin.StartRPC
在節點上執行才能啟動 RPC 伺服器?
而不是
admin.startRPC(addr, port)
,當您啟動節點時(如果您使用的是 geth),您可以使用 rpc 標誌
geth --rpc
- 這預設為 localhost:8545您還可以使用以下選項定義自己的地址和埠號:
geth --rpc --rpcaddr <ip> --rpcport <portnumber>
geth --rpc --rpccorsdomain "http://localhost:3000"
我使用這樣的東西:
geth --rpcapi eth,net,web3 --rpccorsdomain * --rpc --rpcaddr 0.0.0.0