Coda by Ian Macalinao
    Preparing search index...

    Interface ParsedSetGovernanceDelegateInstruction<TProgram, TAccountMetas>

    interface ParsedSetGovernanceDelegateInstruction<
        TProgram extends string = typeof SPL_GOVERNANCE_PROGRAM_ADDRESS,
        TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[],
    > {
        accounts: {
            currentDelegateOrOwner: TAccountMetas[0];
            tokenOwnerRecord: TAccountMetas[1];
        };
        data: SetGovernanceDelegateInstructionData;
        programAddress: Address<TProgram>;
    }

    Type Parameters

    Index

    Properties

    accounts: {
        currentDelegateOrOwner: TAccountMetas[0];
        tokenOwnerRecord: TAccountMetas[1];
    }

    Type Declaration

    programAddress: Address<TProgram>