您好,登錄后才能下訂單哦!
如何解析web3.js調用智能合約,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
小編將用web3.js走一個簡單調用智能合約流程。
代碼參考。按照自動化生成的框架進行簡單的修改如下:
contracts\Migrations0.sol pragma solidity ^0.4.23; contract Migrations0 { //編寫一個函數,來完成兩個數的相加操作 function aAndb(uint a,uint b) public constant returns (uint) { return a+b; } } migrations\1_initial_migration0.js var Migrations = artifacts.require("./Migrations0.sol"); module.exports = function(deployer) { deployer.deploy(Migrations); };
在truffle develop編譯一下
在./build/contracts文件中生成json文件
其中:
"abi": [ { "constant": true, "inputs": [ { "name": "a", "type": "uint256" }, { "name": "b", "type": "uint256" } ], "name": "aAndb", "outputs": [ { "name": "", "type": "uint256" } ], "payable": false, "stateMutability": "view", "type": "function" } ]
壓縮后的abi:
[{"constant":true,"inputs":[{"name":"a","type":"uint256"},{"name":"b","type":"uint256"}],"name":"aAndb","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"}]
Migrations0的合約地址:0x345ca3e014aaf5dca488057592ee47305d9b3e10
web3.eth.contract:
web3.eth.contract(abiArray)
創建一個Solidity的合約對象,用來在某個地址上初始化合約。
參數:
Array - 一到多個描述合約的函數,事件的ABI對象。
返回值:
Object - 一個合約對象。
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。