interface ArkTransaction {
    amount: number;
    createdAt: number;
    key: TxKey;
    settled: boolean;
    type: TxType;
}

Properties

amount: number
createdAt: number
key: TxKey
settled: boolean
type: TxType