Interface RawAccount

Token account as stored by the program

interface RawAccount {
    amount: bigint;
    closeAuthority: PublicKey;
    closeAuthorityOption: 0 | 1;
    delegate: PublicKey;
    delegateOption: 0 | 1;
    delegatedAmount: bigint;
    isNative: bigint;
    isNativeOption: 0 | 1;
    mint: PublicKey;
    owner: PublicKey;
    state: AccountState;
}

Properties

amount: bigint
closeAuthority: PublicKey
closeAuthorityOption: 0 | 1
delegate: PublicKey
delegateOption: 0 | 1
delegatedAmount: bigint
isNative: bigint
isNativeOption: 0 | 1
mint: PublicKey
owner: PublicKey

Generated using TypeDoc