0

我正在尝试找出以太坊网络上正常交易的费用!

//Get Network Gas Price For singl unit
var GasPrice= await web3.Eth.GasPrice.SendRequestAsync();

//Assuming the number of major units is 21000
var TransactionLimit = new HexBigInteger(21000).Value;

var TransactionFee = GasPrice.Value * TransactionLimit;
  • 采取的步骤是否正确?
  • 在这种情况下,退款价值是多少,是 Wei 还是 Gwei 还是什么!
4

0 回答 0