Coda by Ian Macalinao
    Preparing search index...

    Interface ParsedSetRealmAuthorityInstruction<TProgram, TAccountMetas>

    interface ParsedSetRealmAuthorityInstruction<
        TProgram extends string = typeof SPL_GOVERNANCE_PROGRAM_ADDRESS,
        TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[],
    > {
        accounts: {
            newRealmAuthority?: TAccountMetas[2];
            realmAccount: TAccountMetas[0];
            realmAuthority: TAccountMetas[1];
        };
        data: SetRealmAuthorityInstructionData;
        programAddress: Address<TProgram>;
    }

    Type Parameters

    Index

    Properties

    accounts: {
        newRealmAuthority?: TAccountMetas[2];
        realmAccount: TAccountMetas[0];
        realmAuthority: TAccountMetas[1];
    }

    Type Declaration

    programAddress: Address<TProgram>