EthTxDataRaw constructor

EthTxDataRaw({
  1. required int nonce,
  2. required int gasLimit,
  3. int maxPriorityFeePerGas = 0,
  4. int maxFeePerGas = 0,
  5. int gasPrice = 0,
  6. String to = '',
  7. required BigInt value,
  8. String data = '',
  9. int? v,
  10. BigInt? r,
  11. BigInt? s,
})

Implementation

EthTxDataRaw(
    {required this.nonce,
    required this.gasLimit,
    this.maxPriorityFeePerGas = 0,
    this.maxFeePerGas = 0,
    this.gasPrice = 0,
    this.to = '',
    required this.value,
    this.data = '',
    this.v,
    this.r,
    this.s});