Type Alias AccountTx

AccountTx: {
    amount: Amount;
    block_height: number;
    counterparty: Address;
    direction: "in" | "out";
    fee: Amount;
    hash: HashHex;
    status: "pending" | "confirmed";
    timestamp: Timestamp;
    token_address?: Address;
    type: InstructionType;
}

Account-centric transaction view used by address activity endpoint.