Saxonberg Server API
    Preparing search index...
    interface LedgerEntryFields {
        actor?: string;
        amount: number;
        at?: number;
        category?: PnlCategory;
        fromAccount: string;
        kind: LedgerKind;
        locality?: string | null;
        memo?: string;
        realAt?: number;
        toAccount: string;
        txId?: string;
    }
    Index

    Properties

    actor?: string

    Durable key of the acting principal (from execution context).

    amount: number

    Positive minor units moved by this leg.

    at?: number

    Game-time SECONDS magnitude (world clock).

    category?: PnlCategory

    The P&L line this row rolls up into.

    fromAccount: string

    Debited account (or a sentinel — issuance / cash bridge).

    locality?: string | null

    Address-prefix scope where it happened, or null = global.

    memo?: string

    Free-text note for the row.

    realAt?: number

    Real-time epoch MILLISECONDS (wall clock).

    toAccount: string

    Credited account (or a sentinel).

    txId?: string

    Shared id grouping the legs of one multi-leg transaction.