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

Implements

Properties

baseAtoms: BaseAtoms
baseMint: PublicKey
isMakerGlobal: boolean
maker: PublicKey
makerSequenceNumber: bignum
market: PublicKey
padding: number[]
quoteAtoms: QuoteAtoms
quoteMint: PublicKey
taker: PublicKey
takerIsBuy: boolean
takerSequenceNumber: bignum

Accessors

Methods

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

    Returns {
        baseAtoms: BaseAtoms;
        baseMint: string;
        isMakerGlobal: boolean;
        maker: string;
        makerSequenceNumber: number | {
            toNumber: (() => number);
        };
        market: string;
        padding: number[];
        price: QuoteAtomsPerBaseAtom;
        quoteAtoms: QuoteAtoms;
        quoteMint: string;
        taker: string;
        takerIsBuy: boolean;
        takerSequenceNumber: number | {
            toNumber: (() => number);
        };
    }

    • baseAtoms: BaseAtoms
    • baseMint: string
    • isMakerGlobal: boolean
    • maker: string
    • makerSequenceNumber: number | {
          toNumber: (() => number);
      }
    • market: string
    • padding: number[]
    • price: QuoteAtomsPerBaseAtom
    • quoteAtoms: QuoteAtoms
    • quoteMint: string
    • taker: string
    • takerIsBuy: boolean
    • takerSequenceNumber: number | {
          toNumber: (() => number);
      }
  • Retrieves the account info from the provided address and deserializes the FillLog from its data.

    Parameters

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

    Returns Promise<FillLog>

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

  • Deserializes the FillLog from the data of the provided web3.AccountInfo.

    Parameters

    • accountInfo: AccountInfo<Buffer>
    • offset: number = 0

    Returns [FillLog, number]

    a tuple of the account data and the offset up to which the buffer was read to obtain it.

  • Fetches the minimum balance needed to exempt an account holding FillLog 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;
        baseMint: any;
        isMakerGlobal: any;
        maker: any;
        makerSequenceNumber: any;
        market: any;
        padding: any;
        price: any;
        quoteAtoms: any;
        quoteMint: any;
        taker: any;
        takerIsBuy: any;
        takerSequenceNumber: any;
    }>