Fetched mint with owner program metadata.

1.1.0

interface FetchedMint {
    address: never;
    decoded: DecodedMint;
    program: "token" | "token-2022";
    raw: RawAccountInfo;
    slot: number;
}

Hierarchy (view full)

Properties

address: never

Mint public key.

decoded: DecodedMint

Decoded account data.

program: "token" | "token-2022"

The token program that owns this mint ('token' or 'token-2022').

raw: RawAccountInfo

Raw account info as returned by the RPC (base64 encoding).

slot: number

Slot at which the data was fetched.