I am trying to find out the fee for a normal transaction on the Ethereum network !!
//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;
- Are the steps taken correct?
- And what is the refund value in this case, is it Wei or Gwei or what!!