Holds the data for the PlaceOrderLog Account and provides de/serialization functionality for that data

Implements

Properties

baseAtoms: BaseAtoms
isBid: boolean
lastValidSlot: number
market: PublicKey
orderIndex: number
orderSequenceNumber: bignum
orderType: OrderType
padding: number[]
trader: PublicKey

Accessors

Methods

  • Returns a readable version of PlaceOrderLog properties and can be used to convert to JSON and/or logging

    Returns {
        baseAtoms: BaseAtoms;
        isBid: boolean;
        lastValidSlot: number;
        market: string;
        orderIndex: number;
        orderSequenceNumber: number | {
            toNumber: (() => number);
        };
        orderType: string;
        padding: number[];
        price: QuoteAtomsPerBaseAtom;
        trader: string;
    }

    • baseAtoms: BaseAtoms
    • isBid: boolean
    • lastValidSlot: number
    • market: string
    • orderIndex: number
    • orderSequenceNumber: number | {
          toNumber: (() => number);
      }
    • orderType: string
    • padding: number[]
    • price: QuoteAtomsPerBaseAtom
    • trader: string
  • Retrieves the account info from the provided address and deserializes the PlaceOrderLog from its data.

    Parameters

    • connection: Connection
    • address: PublicKey
    • OptionalcommitmentOrConfig: Commitment | GetAccountInfoConfig

    Returns Promise<PlaceOrderLog>

    Error if no account info is found at the address or if deserialization fails

  • Fetches the minimum balance needed to exempt an account holding PlaceOrderLog data from rent

    Parameters

    • connection: Connection

      used to retrieve the rent exemption information

    • Optionalcommitment: Commitment

    Returns Promise<number>

  • Provides a web3.Connection.getProgramAccounts config builder, to fetch accounts matching filters that can be specified via that builder.

    Parameters

    • programId: PublicKey = ...

      the program that owns the accounts we are filtering

    Returns GpaBuilder<{
        baseAtoms: any;
        isBid: any;
        lastValidSlot: any;
        market: any;
        orderIndex: any;
        orderSequenceNumber: any;
        orderType: any;
        padding: any;
        price: any;
        trader: any;
    }>