Coda by Ian Macalinao
    Preparing search index...

    Interface ParsedDeletePositionBundleInstruction<TProgram, TAccountMetas>

    interface ParsedDeletePositionBundleInstruction<
        TProgram extends string = typeof WHIRLPOOL_PROGRAM_ADDRESS,
        TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[],
    > {
        accounts: {
            positionBundle: TAccountMetas[0];
            positionBundleMint: TAccountMetas[1];
            positionBundleOwner: TAccountMetas[3];
            positionBundleTokenAccount: TAccountMetas[2];
            receiver: TAccountMetas[4];
            tokenProgram: TAccountMetas[5];
        };
        data: DeletePositionBundleInstructionData;
        programAddress: Address<TProgram>;
    }

    Type Parameters

    • TProgram extends string = typeof WHIRLPOOL_PROGRAM_ADDRESS
    • TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]
    Index

    Properties

    accounts: {
        positionBundle: TAccountMetas[0];
        positionBundleMint: TAccountMetas[1];
        positionBundleOwner: TAccountMetas[3];
        positionBundleTokenAccount: TAccountMetas[2];
        receiver: TAccountMetas[4];
        tokenProgram: TAccountMetas[5];
    }
    programAddress: Address<TProgram>