Infura

乙太坊經典 API 是否有任何工作提供者?

  • April 9, 2022

用於乙太坊的提供商是 Infura,但沒有任何乙太坊經典的提供商。

以前測試過 Ethercluster 端點以訪問 Ethereum Classic 的 API,但無法與 Kotti 端點連接。

您可以使用以下 curl 命令輕鬆獲得 Ethercluster for ETC 的響應:

curl --data '{"method":"eth_getBlockByNumber","params":["0x7B98A0", false],"id":1,"jsonrpc":"2.0"}' -H "Content-Type: application/json" -X POST https://www.ethercluster.com/etc

您也可以對 Kotti 執行相同操作並檢查其奇偶校驗節點狀態:

curl --data '{"method":"parity_nodeStatus","params":[],"id":1,"jsonrpc":"2.0"}' -H "Content-Type: application/json" -X POST https://www.ethercluster.com/kotti

您還可以按照 ethercluster 的文件來建構您自己的 Infura 版本:https ://docs.ethercluster.com/

請使用https://rivet.cloud/。您可以在此處獲取 rpc 網址

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