Variable ScannerTxRecordSchemaConst

ScannerTxRecordSchema: ZodObject<{
    amenityKind: ZodEnum<["shop", "supermarket", "car_wash", "parking", "house", "talk_time", "wallet_bundle", "apu_credit", "apu_debit"]>;
    at: ZodString;
    counterpartyNodeId: ZodOptional<ZodString>;
    creditSource: ZodOptional<ZodString>;
    debitSource: ZodOptional<ZodString>;
    detail: ZodOptional<ZodString>;
    id: ZodString;
    itemRef: ZodObject<{
        id: ZodString;
        kind: ZodEnum<["shop", "supermarket", "carwash", "parking", "house", "game", "apu", "talk", "bundle"]>;
    }, "strip", ZodTypeAny, {
        id: string;
        kind:
            | "supermarket"
            | "shop"
            | "parking"
            | "house"
            | "carwash"
            | "game"
            | "apu"
            | "talk"
            | "bundle";
    }, {
        id: string;
        kind:
            | "supermarket"
            | "shop"
            | "parking"
            | "house"
            | "carwash"
            | "game"
            | "apu"
            | "talk"
            | "bundle";
    }>;
    playerId: ZodString;
    powerUpsDelta: ZodOptional<ZodNumber>;
    powerUpsEarned: ZodOptional<ZodNumber>;
    powerUpsSpent: ZodOptional<ZodNumber>;
    priceUsd: ZodOptional<ZodNumber>;
    spaceId: ZodString;
    token: ZodOptional<ZodLiteral<"APU">>;
} & {
    blockRev: ZodOptional<ZodNumber>;
    hostId: ZodString;
    indexedAt: ZodString;
    merkleRootHex: ZodOptional<ZodString>;
    op: ZodEnum<["purchase", "redeemWalletBundle", "applyGameOutcome", "talkTick", "talkStop", "talkStart", "walletSeeded"]>;
}, "strip", ZodTypeAny, {
    amenityKind:
        | "supermarket"
        | "shop"
        | "car_wash"
        | "parking"
        | "house"
        | "talk_time"
        | "wallet_bundle"
        | "apu_credit"
        | "apu_debit";
    at: string;
    blockRev?: number;
    counterpartyNodeId?: string;
    creditSource?: string;
    debitSource?: string;
    detail?: string;
    hostId: string;
    id: string;
    indexedAt: string;
    itemRef: {
        id: string;
        kind:
            | "supermarket"
            | "shop"
            | "parking"
            | "house"
            | "carwash"
            | "game"
            | "apu"
            | "talk"
            | "bundle";
    };
    merkleRootHex?: string;
    op:
        | "purchase"
        | "redeemWalletBundle"
        | "applyGameOutcome"
        | "talkTick"
        | "talkStop"
        | "talkStart"
        | "walletSeeded";
    playerId: string;
    powerUpsDelta?: number;
    powerUpsEarned?: number;
    powerUpsSpent?: number;
    priceUsd?: number;
    spaceId: string;
    token?: "APU";
}, {
    amenityKind:
        | "supermarket"
        | "shop"
        | "car_wash"
        | "parking"
        | "house"
        | "talk_time"
        | "wallet_bundle"
        | "apu_credit"
        | "apu_debit";
    at: string;
    blockRev?: number;
    counterpartyNodeId?: string;
    creditSource?: string;
    debitSource?: string;
    detail?: string;
    hostId: string;
    id: string;
    indexedAt: string;
    itemRef: {
        id: string;
        kind:
            | "supermarket"
            | "shop"
            | "parking"
            | "house"
            | "carwash"
            | "game"
            | "apu"
            | "talk"
            | "bundle";
    };
    merkleRootHex?: string;
    op:
        | "purchase"
        | "redeemWalletBundle"
        | "applyGameOutcome"
        | "talkTick"
        | "talkStop"
        | "talkStart"
        | "walletSeeded";
    playerId: string;
    powerUpsDelta?: number;
    powerUpsEarned?: number;
    powerUpsSpent?: number;
    priceUsd?: number;
    spaceId: string;
    token?: "APU";
}> = ...

Explorer row for a wallet / APU transaction indexed globally.