Parity
想要執行 Ropsten 的本地分支
我想執行 Ropsten 的本地分支來與一些智能合約進行互動,而無需從水龍頭中填充。
我的計劃是啟動一個輕型奇偶校驗節點,如下所示:
parity --chain ropsten --light --no-serve-light
但是,當我嘗試執行本地
ganache-cli
分叉時,這效果很好:ganache-cli --fork <here I copy-pasted my enode:// URL>
它崩潰並出現以下錯誤:
Error: CONNECTION ERROR: Couldn't connect to node <my enode://>
Parity 應該在 RPC 模式下執行,如下所示:
parity --chain ropsten --light --no-serve-light --jsonrpc-port=8545
然後以下命令用於發出分叉:
ganache-cli --fork http://localhost:8545
Ganache 需要一個 JSON-RPC 節點。像這樣的東西應該工作
ganache-cli --fork http://localhost:8545