Documentation
    Preparing search index...

    Type Alias InitializePositionBundleParams

    Parameters to initialize a PositionBundle account.

    PublicKey for the wallet that will host the minted position bundle token.

    PDA for the derived position bundle address.

    Keypair for the mint for the position bundle token.

    The associated token address for the position bundle token in the owners wallet.

    The account that would fund the creation of this account

    type InitializePositionBundleParams = {
        funder: PublicKey;
        owner: PublicKey;
        positionBundleMintKeypair: Keypair;
        positionBundlePda: PDA;
        positionBundleTokenAccount: PublicKey;
    }
    Index

    Properties

    funder: PublicKey
    owner: PublicKey
    positionBundleMintKeypair: Keypair
    positionBundlePda: PDA
    positionBundleTokenAccount: PublicKey