Variable PlayerWalletSchemaConst

PlayerWalletSchema: ZodObject<{
    balanceUsd: ZodNumber;
    currency: ZodLiteral<"USD">;
    playerId: ZodString;
    powerUps: ZodDefault<ZodNumber>;
    updatedAt: ZodString;
}, "strip", ZodTypeAny, {
    balanceUsd: number;
    currency: "USD";
    playerId: string;
    powerUps: number;
    updatedAt: string;
}, {
    balanceUsd: number;
    currency: "USD";
    playerId: string;
    powerUps?: number;
    updatedAt: string;
}> = ...

Per-player wallet.

Stored at agent-play:${hostId}:player:${playerId}:wallet. Mutated atomically by the purchase RPC (decrement) and by the optional AQL SET WALLET statement.