web3.js中estimateGas如何計算智慧合約消耗的gas量
我們可使用web3.js框架的estimateGas函式獲得一個以太坊智慧合約的Gas估計值 ,通過執行一個訊息呼叫或交易,該訊息呼叫或交易直接在節點的VM中執行,並未在區塊鏈中確認,函式會返回估算使用的gas量。
函式呼叫:
web3.eth.estimateGas(callObject [, callback])
引數:
在 web3.eth.sendTransaction 中, 引數大都是可選的。
1. Object
- 要傳送的交易物件:
from
:String
- 用來傳送的賬戶地址. 預設使用web3.eth.defaultAccount屬性。to
:String
- (可選) 目標地址,對於建立合同的交易沒有定義。value
:Number|String|BigNumber
- (可選) 為交易轉移的價值以Wei為單位,如果是合同建立交易,也是基金。gas
:Number|String|BigNumber
- (可選, 預設: 待定) 用於交易的gas量(未使用的gas已退還)。gasPrice
:Number|String|BigNumber
- (可選, 預設: 待定) 此交易的gas價格以wei為單位,預設為平均網路gas價格。data
:String
- (可選) Either 包含訊息關聯資料的位元組字串,或者建立合同事務的初始化程式碼。nonce
:Number
- (可選)一個隨機數的整數。 這允許覆蓋使用相同隨機數的您自己的未決事務。
2.Function
- (optional)如果傳遞迴調,則HTTP請求將變為非同步。詳細說明在這裡 this note .
返回值:
數字:模擬呼叫/交易的需要使用的gas值。
一個簡單示例:
var result = web3.eth.estimateGas({ to: "0xc4abd0339eb8d57087278718986382264244252f", data: "0xc6888fa10000000000000000000000000000000000000000000000000000000000000003" }); console.log(result); // "0x0000000000000000000000000000000000000000000000000000000000000015"
用web3js庫中可能遇到estimateGas方法出錯的問題。大多數情況下得到的錯誤是這個:“所需的gas超過允許值或總是交易失敗”。
首先要檢查的下交易是否有效。例如,如果正在估計將一定數量的通證傳送到另一個地址的gasAmount,那麼最主要的檢查兩件事:
1. 傳送地址中是否有足夠的以太。
2. 傳送地址中是否有足夠的通證/代幣。
這些似乎是顯而易見要檢查的,但是還是可能會犯這種低階錯誤,認為方法估計Gas只是用來計算估計值,其實不是。如果引數設定的實際條件不對,它在執行這個方法時不會真正執行任何程式碼就直接丟擲錯誤。
評估傳送通證的所需gas量的程式碼片段:
tokenContract.methods.transfer(recipientAddress,numtokens) .estimateGas({from:tokenHolderAddress},function(gasAmount){ console.log(gasAmount); });
官網在這裡https://github.com/ethereum/wiki/wiki/JavaScript-API#web3ethestimategas.
也可以在你的瀏覽器位址列輸入https://ethereum.github.io/browser-solidity,然後直接copy你的合約就可以獲得估計值。
這個程式碼中預設的一個示例是提案投票的程式碼如下:
pragma solidity ^0.4.0; contract Ballot { struct Voter { uint weight; bool voted; uint8 vote; address delegate; } struct Proposal { uint voteCount; } address chairperson; mapping(address => Voter) voters; Proposal[] proposals; /// Create a new ballot with $(_numProposals) different proposals. //為不同的提案建立一個新的投票合約 function Ballot(uint8 _numProposals) public { chairperson = msg.sender; voters[chairperson].weight = 1; proposals.length = _numProposals; } /// Give $(toVoter) the right to vote on this ballot.//授予投票權 /// May only be called by $(chairperson). //只能被主席呼叫 function giveRightToVote(address toVoter) public { if (msg.sender != chairperson || voters[toVoter].voted) return; voters[toVoter].weight = 1; } /// Delegate your vote to the voter $(to).//委託你的投票權 function delegate(address to) public { Voter storage sender = voters[msg.sender]; // assigns reference 指定引數 if (sender.voted) return; while (voters[to].delegate != address(0) && voters[to].delegate != msg.sender) to = voters[to].delegate; if (to == msg.sender) return; sender.voted = true; sender.delegate = to; Voter storage delegateTo = voters[to]; if (delegateTo.voted) proposals[delegateTo.vote].voteCount += sender.weight; else delegateTo.weight += sender.weight; } /// Give a single vote to proposal $(toProposal). //對某個提案投一票 function vote(uint8 toProposal) public { Voter storage sender = voters[msg.sender]; if (sender.voted || toProposal >= proposals.length) return; sender.voted = true; sender.vote = toProposal; proposals[toProposal].voteCount += sender.weight; } function winningProposal() public constant returns (uint8 _winningProposal) { uint256 winningVoteCount = 0; for (uint8 prop = 0; prop < proposals.length; prop++) if (proposals[prop].voteCount > winningVoteCount) { winningVoteCount = proposals[prop].voteCount; _winningProposal = prop; } } }
可以run下試試。
如果對以太坊開發有興趣,推薦兩個教程:
1.適合區塊鏈新手的以太坊DApp開發:
2.用區塊鏈、星際檔案系統(IPFS)、Node.js和MongoDB來構建以太坊DApp電商平臺:
如果想加入以太坊技術開發群可以加微信拉你入群。