zoukankan      html  css  js  c++  java
  • 区块链学习之-发布合约

           最近慢慢开始接触区块链的项目,最近开始发布合约,记录一下。

    命令行编译,发布合约
    1. 编译合约,编译不了
    curl --data '{"jsonrpc":"2.0","method": "eth_compileSolidity", "params": ["替换为你的合约文件"]}' localhost:8545

    2. 通过bytecode 计算 gas, data 参数填写 合约编译后的bytecode
    curl --data '{"jsonrpc":"2.0","method": "eth_estimateGas", "params": [{"from": "替换为挖矿钱包地址", "data": "替换为编译后的合约二进制码"}], "id": 5}' localhost:8545

    3. 发布合约 gas 为上面获取到的数据,data 参数填写 合约编译后的bytecode
    curl --data '{"jsonrpc":"2.0","method": "eth_sendTransaction", "params": [{"from": "替换为挖矿钱包地址", "gas": "替换为上面eth_estimateGas获取到的值", "data": "替换为编译后的合约二进制码"}], "id": 6}' localhost:8545

    4. 获取合约地址, params 参数填写 上面的交易 hash
    curl --data '{"jsonrpc":"2.0","method": "eth_getTransactionReceipt", "params": ["替换为上面eth_sendTransaction的交易hash值"], "id": 7}' localhost:8545

    5.在线编译合约
    http://remix.ethereum.org

    我不是一个技术狂人,但是我对技术有一种执着,我喜欢在键盘上噼噼啪啪的敲打,我喜欢项目完成那一刻的感觉。能力有限,如有不足之处,欢迎大家提出意见,一起成长!!!
  • 相关阅读:
    P2764 最小路径覆盖问题
    P2598 [ZJOI2009]狼和羊的故事
    P2472 [SCOI2007]蜥蜴
    P2057 [SHOI2007]善意的投票 / [JLOI2010]冠军调查
    P2050 [NOI2012]美食节
    P1345 [USACO5.4]奶牛的电信Telecowmunication
    P1251 餐巾计划问题
    hihocoder 1584 Bounce
    [CF132C] Logo Turtle
    CF1110D Jongmah
  • 原文地址:https://www.cnblogs.com/hayyah/p/9081816.html
Copyright © 2011-2022 走看看