Coda by Ian Macalinao
    Preparing search index...

    Interface ParsedSetFundingAuthorityInstruction<TProgram, TAccountMetas>

    interface ParsedSetFundingAuthorityInstruction<
        TProgram extends string = typeof SPL_STAKE_POOL_PROGRAM_ADDRESS,
        TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[],
    > {
        accounts: {
            manager: TAccountMetas[1];
            newAuthorityPubkey: TAccountMetas[2];
            stakePool: TAccountMetas[0];
        };
        data: SetFundingAuthorityInstructionData;
        programAddress: Address<TProgram>;
    }

    Type Parameters

    Index

    Properties

    accounts: {
        manager: TAccountMetas[1];
        newAuthorityPubkey: TAccountMetas[2];
        stakePool: TAccountMetas[0];
    }

    Type Declaration

    programAddress: Address<TProgram>