Function createWriteToHolderAccountInstruction

  • Creates a transaction instruction to write data to a holder account.

    This function constructs a Solana transaction instruction that writes a part of a transaction payload into a holder account.

    Parameters

    • neonEvmProgram: PublicKey

      The public key of the Neon EVM program.

    • operator: PublicKey

      The public key of the operator executing the write operation - instance of the SolanaNeonAccount.

    • holderAddress: PublicKey

      The public key of the holder account where data will be written.

    • transactionHash: string

      The unique transaction hash associated with this write operation.

    • transactionPart: Buffer

      A chunk of transaction data to be stored in the holder account.

    • offset: number

      The byte offset at which the transaction part should be written.

    Returns TransactionInstruction

    A Solana TransactionInstruction to write data to the holder account.

    const instruction = createWriteToHolderAccountInstruction(
    neonEvmProgram,
    operator,
    holderAddress,
    "0xabcdef1234567890",
    Buffer.from("transaction data"),
    0
    );
    transaction.add(instruction);