Coda by Ian Macalinao
    Preparing search index...

    Interface ParsedSetShareAllocatorInstruction<TProgram, TAccountMetas>

    interface ParsedSetShareAllocatorInstruction<
        TProgram extends string = typeof QUARRY_OPERATOR_PROGRAM_ADDRESS,
        TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[],
    > {
        accounts: {
            admin: TAccountMetas[1];
            delegate: TAccountMetas[2];
            operator: TAccountMetas[0];
        };
        data: SetShareAllocatorInstructionData;
        programAddress: Address<TProgram>;
    }

    Type Parameters

    Index

    Properties

    accounts: {
        admin: TAccountMetas[1];
        delegate: TAccountMetas[2];
        operator: TAccountMetas[0];
    }
    programAddress: Address<TProgram>