@arkade-os/sdk Documentation - v0.4.21
    Preparing search index...

    Interface ArkTransaction

    Wallet transaction history entry.

    • TxKey
    • TxType
    interface ArkTransaction {
        amount: number;
        assets?: Asset[];
        createdAt: number;
        key: TxKey;
        settled: boolean;
        type: TxType;
    }
    Index

    Properties

    amount: number

    Net transaction amount in satoshis.

    assets?: Asset[]

    Assets sent or received by this transaction, if any.

    createdAt: number

    Creation timestamp in milliseconds since epoch.

    key: TxKey

    Composite key referencing the related transaction ids.

    settled: boolean

    Whether the transaction is finalized.

    type: TxType

    Transaction direction.