TransactionRequest constructor
TransactionRequest({
- String? to,
- BigInt? value,
- Uint8List? data,
- BigInt? gasLimit,
- BigInt? gasPrice,
- BigInt? maxFeePerGas,
- BigInt? maxPriorityFeePerGas,
- BigInt? nonce,
- int? chainId,
- TransactionType type = TransactionType.eip1559,
- List<
AccessListEntry> ? accessList, - List<
String> ? blobVersionedHashes, - BigInt? maxFeePerBlobGas,
- 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,
});