Result of a decoded account fetch.

1.1.0

interface DecodedAccountResult<T> {
    decoded: T;
    raw: RawAccountInfo;
    slot: number;
}

Type Parameters

  • T

    The decoded account type.

Hierarchy (view full)

Properties

Properties

decoded: T

Decoded account data.

raw: RawAccountInfo

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

slot: number

Slot at which the data was fetched.