Cpp-Ethereum

我怎麼能用 Python 寫“sendrawtransaction”?

  • June 11, 2018

由於我正在使用web3 = Web3(HTTPProvider('https://mainnet.infura.io/root@123'))

這就是為什麼我必須使用 sendrawtransaction 進行 ether transaction 。現在sendrawtransaction在 PYTHON 中寫入的過程是什麼?

如果Httpprovider在 pythhon 中有任何其他使用它的交易過程,請提及。

如果我理解正確,您只是想弄清楚如何使用web3.py發送交易。如果是這樣,這樣的事情應該可以工作:

web3.eth.sendTransaction({
   'from': '0x...',
   'to': '0x...',
   'value': web3.toWei(1, 'ether'),
})

您可以與 pyethereum 簽署交易。在此處查看 pyethereum 答案: 創建和簽署離線原始交易?

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