An onchain transaction.

Export

Transaction

interface Transaction {
    block_hash?: string;
    block_height?: string;
    content?: EthereumTransaction;
    from_address_id: string;
    network_id: string;
    signed_payload?: string;
    status: TransactionStatusEnum;
    to_address_id?: string;
    transaction_hash?: string;
    transaction_link?: string;
    unsigned_payload: string;
}

Properties

block_hash?: string

The hash of the block at which the transaction was recorded.

Memberof

Transaction

block_height?: string

The block height at which the transaction was recorded.

Memberof

Transaction

Memberof

Transaction

from_address_id: string

The onchain address of the sender.

Memberof

Transaction

network_id: string

The ID of the blockchain network.

Memberof

Transaction

signed_payload?: string

The signed payload of the transaction. This is the payload that has been signed by the sender.

Memberof

Transaction

The status of the transaction.

Memberof

Transaction

to_address_id?: string

The onchain address of the recipient.

Memberof

Transaction

transaction_hash?: string

The hash of the transaction.

Memberof

Transaction

transaction_link?: string

The link to view the transaction on a block explorer. This is optional and may not be present for all transactions.

Memberof

Transaction

unsigned_payload: string

The unsigned payload of the transaction. This is the payload that needs to be signed by the sender.

Memberof

Transaction