最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

互助開發(fā)丨互助系統(tǒng)開發(fā)(FDF開發(fā))丨互助源碼模式

2023-02-26 10:29 作者:bili_16249894763  | 我要投稿

  智能合約是部署在區(qū)塊鏈的代碼,區(qū)塊鏈本身不能執(zhí)行代碼,代碼的執(zhí)行是在本地的EVM中,實際上,部署在區(qū)塊鏈上代碼是能夠在本地產(chǎn)生原智能合約代碼的代碼,可以理解區(qū)塊鏈為一個數(shù)據(jù)庫,而客戶端從數(shù)據(jù)庫中讀取了存儲的運行代碼,并在本地運行后,將結果寫入到了區(qū)塊鏈這個數(shù)據(jù)庫中。


  Smart contracts are only programs stored on the blockchain,which will run when the predetermined conditions are met.They are often used to automate the execution of the agreement so that all participants can immediately determine the results without any middleman and without wasting time.They can also automatically complete the workflow and trigger the next operation when the conditions are met.


  在區(qū)塊鏈網(wǎng)絡上部署智能合約


  a)創(chuàng)建項目:


  mkdir pythonDapp


  cd pythonDapp


  truffle init


  成功初始化項目后,轉到您的文件夾并在/contracts目錄中創(chuàng)建greeter.sol文件。在網(wǎng)絡上部署合約之前,我們必須編譯它并構建工件。


  b)智能合約的編譯:開發(fā)方案I35合約7O98系統(tǒng)O7I8


  因此,對于編譯,我們將使用Truffle solc編譯器。在您的主目錄中,運行以下命令:


  truffle compile


  (or)


  truffle.cmd compile#(for windows only)


  上面的命令將在/contracts目錄中編譯你的合約,并在/build目錄中創(chuàng)建二進制工件文件greeter.json。


  c)部署合約:詳細需求:MrsFu123


  打開您的Python IDLE編輯器,并在主目錄deploy.py中使用以下代碼創(chuàng)建一個新文件,然后在您的目錄中運行py deploy.py。


  import json


  from web3 importWeb3,HTTPProvider


  from web3.contract importConciseContract


  #web3.py instance


  w3=Web3(HTTPProvider("https://ropsten.infura.io/v3/<API key>"))


  print(w3.isConnected())


  key="<Private Key here with 0x prefix>"


  acct=w3.eth.account.privateKeyToAccount(key)


  #compile your smart contract with truffle first


  truffleFile=json.load(open('./build/contracts/greeter.json'))


  abi=truffleFile['abi']


  bytecode=truffleFile['bytecode']


  contract=w3.eth.contract(bytecode=bytecode,abi=abi)


  #building transaction


  construct_txn=contract.constructor().buildTransaction({


  'from':acct.address,


  'nonce':w3.eth.getTransactionCount(acct.address),


  'gas':1728712,


  'gasPrice':w3.toWei('21','gwei')})


  signed=acct.signTransaction(construct_txn)


  tx_hash=w3.eth.sendRawTransaction(signed.rawTransaction)


  print(tx_hash.hex())


  tx_receipt=w3.eth.waitForTransactionReceipt(tx_hash)


  print("Contract Deployed At:",tx_receipt['contractAddress'])


互助開發(fā)丨互助系統(tǒng)開發(fā)(FDF開發(fā))丨互助源碼模式的評論 (共 條)

分享到微博請遵守國家法律
万荣县| 曲阜市| 定日县| 林甸县| 咸阳市| 永安市| 东乡族自治县| 田阳县| 东城区| 福安市| 惠州市| 志丹县| 迁西县| 遵化市| 罗山县| 沈阳市| 仁寿县| 运城市| 安丘市| 荥阳市| 大英县| 乐昌市| 禹州市| 新河县| 乐平市| 获嘉县| 海丰县| 梁河县| 卓尼县| 乌鲁木齐市| 修文县| 驻马店市| 洪江市| 济源市| 西林县| 仪征市| 宽甸| 达州市| 平乡县| 左云县| 扶绥县|