Function createPartialCallOrContinueFromRawEthereumTransaction

  • Creates a Solana transaction to execute a partial call or continue execution of a Neon EVM transaction.

    This function is responsible for processing large Ethereum-like transactions on Neon EVM by breaking them down into smaller execution steps (EVM steps) and handling partial execution.

    Parameters

    • index: number

      The current step index in the transaction execution.

    • stepCount: number

      The total number of execution steps to be processed.

    • neonEvmProgram: PublicKey

      The Neon EVM program ID managing the execution of the transaction.

    • solanaUser: SolanaNeonAccount

      The Solana account executing the transaction.

    • holderAddress: PublicKey

      The public key of the holder account storing the transaction.

    • treasuryPoolAddress: TreasuryPoolAddress

      The address of the treasury pool used for transaction fees.

    • transactionPart: string

      The raw transaction data for the specific execution step.

    • OptionaladditionAccounts: PublicKey[] = []

      An optional array of additional accounts required for execution.

    Returns Transaction

    A Solana Transaction object, ready to be signed and sent.

    1. Requests a compute heap frame of 256 KB to allocate enough memory for processing.
    2. Sets the compute unit price to ensure priority execution.
    3. Adds an instruction to execute the partial call or continue processing from the last step.
    4. Returns the constructed transaction ready for submission.