TEthSendTransactionBody class

Constructors

TEthSendTransactionBody({String? timestampMs, String? organizationId, required String from, bool? sponsor, required String caip2, required String to, String? value, String? data, String? nonce, String? gasLimit, String? maxFeePerGas, String? maxPriorityFeePerGas, String? gasStationNonce})
const
TEthSendTransactionBody.fromJson(Map<String, dynamic> json)
factory

Properties

caip2 String
CAIP-2 chain ID (e.g., 'eip155:1' for Ethereum mainnet).
final
data String?
Hex-encoded call data for contract interactions.
final
from String
A wallet or private key address to sign with. This does not support private key IDs.
final
gasLimit String?
Maximum amount of gas to use for this transaction, for EIP-1559 transactions.
final
gasStationNonce String?
The gas station delegate contract nonce. Only used when sponsor=true. Include this if you want maximal security posture.
final
hashCode int
The hash code for this object.
no setterinherited
maxFeePerGas String?
Maximum total fee per gas unit (base fee + priority fee) in wei. Required for non-sponsored (EIP-1559) transactions. Not used for sponsored transactions.
final
maxPriorityFeePerGas String?
Maximum priority fee (tip) per gas unit in wei. Required for non-sponsored (EIP-1559) transactions. Not used for sponsored transactions.
final
nonce String?
Transaction nonce, for EIP-1559 and Turnkey Gas Station authorizations.
final
organizationId String?
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
Whether to sponsor this transaction via Gas Station.
final
timestampMs String?
final
to String
Recipient address as a hex string with 0x prefix.
final
value String?
Amount of native asset to send in wei.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited