Function deleteHolderAccountInstruction

  • Creates a transaction instruction to delete a holder account.

    The transaction requires the Solana wallet (operator) to sign the instruction to authorize the deletion.

    Parameters

    • neonEvmProgram: PublicKey

      The public key of the Neon EVM program.

    • solanaWallet: PublicKey

      The public key of the Solana wallet authorizing the deletion.

    • holderAddress: PublicKey

      The public key of the holder account to be deleted.

    Returns TransactionInstruction

    A Solana TransactionInstruction to delete the holder account.

    const instruction = deleteHolderAccountInstruction(
    neonEvmProgram,
    solanaWallet,
    holderAddress
    );
    transaction.add(instruction);