Function createHolderAccountInstruction

  • Creates a transaction instruction to initialize a new holder account.

    This function constructs a Solana transaction instruction that creates a holder account using a specific seed. The holder account is used to store intermediate transaction data

    Parameters

    • neonEvmProgram: PublicKey

      The public key of the Neon EVM program.

    • operator: PublicKey

      The public key of the operator responsible for creating the holder account - instance of the SolanaNeonAccount.

    • holderAddress: PublicKey

      The public key of the holder account to be created.

    • seed: string

      The seed used to derive the holder account address.

    Returns TransactionInstruction

    A Solana TransactionInstruction to create the holder account.

    const instruction = createHolderAccountInstruction(
    neonEvmProgram,
    operator,
    holderAddress,
    "unique-seed-value"
    );
    transaction.add(instruction);