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

Implements

Properties

evictee: PublicKey
evicteeAtoms: GlobalAtoms
evictor: PublicKey
evictorAtoms: GlobalAtoms

Accessors

Methods

  • Retrieves the account info from the provided address and deserializes the GlobalEvictLog from its data.

    Parameters

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

    Returns Promise<GlobalEvictLog>

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

  • Fetches the minimum balance needed to exempt an account holding GlobalEvictLog 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<{
        evictee: any;
        evicteeAtoms: any;
        evictor: any;
        evictorAtoms: any;
    }>