• Creates an instruction to initialize a holder account using a seeded address.

    This function generates a TransactionInstruction that initializes a new holder account by encoding the seed into the transaction data.

    Parameters

    Returns TransactionInstruction

    A Solana TransactionInstruction for creating the holder account.

    const instruction = createHolderAccountInstruction({
    solanaWallet: userWallet,
    seed: "unique-seed",
    holderAccountPK: derivedAccount,
    neonEvmProgram: neonProgram
    });
    transaction.add(instruction);