TransferTxData

A transaction data object describes a transaction that is to be sent to the network or otherwise processed.

from
string
required

The address this transaction is from (sender)

Example:
0xEC0c6441cAc4EBC8d9CD12dF6FFB19829e9c427A
to
string
required

The address (or ENS name) this transaction it to

Example:
0x1111111254fb6c44bac0bed2854e76f90643097d
data
string
required

The raw transaction data to be sent to the network

Example:
0x2e95b6c8...2386f26fc1...d3b668f0adb6fd56...3b6d034026aad2da94c59524ac0d93f6d6cbf9071d7086f2cfee7c08
value
string

The amount (in wei) this transaction is sending.

Example:
10000000000000000
gas
string

The maximum amount of gas this transaction is permitted to use. If left unspecified, the provider may use estimateGas() to determine the value to use. For transactions with unpredicatable gas estimates, this may be required to specify explicitly.

Example:
143340
txId
string
nonce
number

The nonce for this transaction. This should be set to the number of transactions ever sent from this address.

meta
object

Additional metadata that might be helpful. For ibc transfers, this will include the denom value.

Example
preparing...