• 返回介绍

    12.3. 交易

    发布于 2023-06-19 14:14:32 字数 1063 浏览 0 评论 0 收藏 0

    12.3. 交易

    12.3.1. 发送 ETH

    			
    from web3 import Web3
    web3 = Web3(Web3.IPCProvider("~/Library/Ethereum/geth.ipc"))	
    
    fromAddress = '0xf56b81a2bcb964D2806071e9Be4289A5559BB0fA'
    toAddress = '0x997e5CA600E19447D0B82aFBf9c7F00De2B39B16'
    value = 0.0001
    
    web3.personal.unlockAccount(fromAddress, '12345678')
    web3.eth.sendTransaction({'to': toAddress, 'from': fromAddress, 'value': value})
    			
    			

    12.3.2. 签名发送 ETH

    			
    from web3 import Web3
    web3 = Web3(Web3.HTTPProvider("https://ropsten.infura.io/CsS9shwaAab0z7B4LP2d"))	
    
    privateKey = '8D16063C3F665A6FB37195D18968E63CC04CEE4BFB1B98C184121D4C31D9875E'
    fromAddress = "0xb3cedc76e75fcd278c988b22963c2f35c99c10b7"
    toAddress = '0x997e5CA600E19447D0B82aFBf9c7F00De2B39B16'
    amount = 0.0001
    
    signed_txn = web3.eth.account.signTransaction(dict(
        nonce=web3.eth.getTransactionCount(fromAddress),
        gasPrice=web3.eth.gasPrice,
        gas=21000,
        to=toAddress,
        value=amount,
        data=b'',
      ),
      private_key,
    )
    web3.eth.sendRawTransaction(signed_txn.rawTransaction)
    			
    			

    如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

    扫码二维码加入Web技术交流群

    发布评论

    需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
    列表为空,暂无数据
      我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
      原文