Ethereum gas
eip-1559提案更新了以太坊的奖励机制,新增了 maxFeePerGas
和 maxPriorityFeePerGas
;区块打包时,使用区块中小费(priorityFee)最少的区块作为基础费用(baseFeePerGas);小费用于支付给矿工,基础费则销毁。
maxFeePerGas
: 每笔gas最大费用
maxPriorityFeePerGas
: 给矿工的小费
公式:
TransactionFee
:(fee)交易实际支付的费用
MaxFeePerGas
:(maxFee) 每笔gas最大的费用
GasUsed
: 燃料
GasPrice
: 燃料价格
BaseFeePerGas
: (baseFee)基础费用
MaxPriorityFeePerGas
:(tip)支付的小费
BurntFees
:销毁的费用
TxnSavings
: 返回给账户的费用
fee = GasUsed * (baseFee+tip)
TxnSavings = GasUsed*(maxFee-(baseFee+tip))
BurntFees = GasUsed * baseFee
GasPrice = tip + baseFee
与以太坊浏览器数据比对文章来源:https://www.toymoban.com/news/detail-815466.html
参考文章来源地址https://www.toymoban.com/news/detail-815466.html
到了这里,关于以太坊gas的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!