Parity

rinkeby 測試網的奇偶校驗配置

  • August 14, 2019

有人可以為我提供 Parity 客戶端的創世塊配置 json,這是我描述的設置:

我已經安裝了客戶端(版本:Parity/v1.6.8-beta-c396229-20170608/x86_64-linux-gnu/rustc1.17.0)。使用此作為輸入轉換我的 rinkeby 創世塊配置:www.rinkeby.io/rinkeby.json 並使用 github wiki 頁面上提到的此工具:https ://github.com/keorn/parity-spec 。這導致了這個配置文件:https ://gist.github.com/kgcorps/3b67338bc5ea204372f993ed25389e88

嘗試使用以下命令啟動奇偶校驗時:

parity --chain=res.json --bootnodes=enode://a24ac7c5484ef4ed0c5eb2d36620ba4e4aa13b8c84684e1b4aab0cebea2ae45cb4d375b77eab56516d34bfbd3c1a833fc51296ff084b770b94fb9028c4d25ccf@52.169.42.101:30303 --identity=foobar --datadir=$HOME/.rinkebyParity

我有預感我在配置轉換的某個地方犯了愚蠢的錯誤。源配置很好,因為我已經將它與 geth 一起使用,沒有任何問題。

感謝您的任何提示

編輯 據我了解,奇偶校驗不支持 ProofOfAuthority 算法,這是否意味著無法將奇偶校驗與 rinkeby 測試網一起使用?

Parity 很好地支持權威證明,但它沒有實現Clique加入 Rinkeby 測試網路所需的引擎。它只是行不通。

如果你想加入 PoA 測試網,你仍然可以使用Kovan

parity --chain kovan

您現在可以使用我的 parity 版本加入 rinkeby 奇偶校驗:https ://github.com/thefallentree/parity-clique ,只需下載、建構和執行 parity –chain rinkeby

引用自:https://ethereum.stackexchange.com/questions/21067