TransactionRequest constructor

TransactionRequest({
  1. String? to,
  2. BigInt? value,
  3. Uint8List? data,
  4. BigInt? gasLimit,
  5. BigInt? gasPrice,
  6. BigInt? maxFeePerGas,
  7. BigInt? maxPriorityFeePerGas,
  8. BigInt? nonce,
  9. int? chainId,
  10. TransactionType type = TransactionType.eip1559,
  11. List<AccessListEntry>? accessList,
  12. List<String>? blobVersionedHashes,
  13. BigInt? maxFeePerBlobGas,
  14. List<Authorization>? authorizationList,
})

Implementation

TransactionRequest({
  this.to,
  this.value,
  this.data,
  this.gasLimit,
  this.gasPrice,
  this.maxFeePerGas,
  this.maxPriorityFeePerGas,
  this.nonce,
  this.chainId,
  this.type = TransactionType.eip1559,
  this.accessList,
  this.blobVersionedHashes,
  this.maxFeePerBlobGas,
  this.authorizationList,
});