Parsed market info on a wrapper. Accurate to the last sync.

interface UiWrapperMarketInfo {
    baseBalanceAtoms: bignum;
    lastUpdatedSlot: number;
    market: PublicKey;
    orders: UiWrapperOpenOrder[];
    quoteBalanceAtoms: bignum;
}

Properties

baseBalanceAtoms: bignum

Base balance in atoms.

lastUpdatedSlot: number

Last update slot number.

market: PublicKey

Public key for market.

Open orders.

quoteBalanceAtoms: bignum

Quote balance in atoms.