python中geth如何使用?
1、安裝命令
pipinstallpy-geth
2、快速啟動運行連接到mainnet的geth
>>>fromgethimportLiveGethProcess
>>>geth=LiveGethProcess()
>>>geth.start()
3、或者是用于測試的私人本地區塊鏈。
>>>fromgethimportDevGethProcess
>>>geth=DevGethProcess('testing')
>>>geth.start()
默認情況下,DevGethProcess在geth使用的默認datadir設置測試鏈。如果要更改這些測試鏈的位置,可以指定替代base_dir。
以上就是python中geth的使用,希望能對大家有所幫助。如果想要了解更多Python相關知識,請關注IT培訓機構:千鋒教育。