Function createPartialCallOrContinueFromRawEthereumInstruction

  • Creates a Solana transaction instruction 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.

    • operator: PublicKey

      The Solana account (operator) initiating the transaction.

    • balanceAddress: PublicKey

      The public key of the balance program address for the Neon wallet used for gas and execution fees.

    • holderAddress: PublicKey

      The public key of the holder account storing the transaction.

    • treasuryPoolAddress: TreasuryPoolAddress

      The address of the treasury pool used for transaction fees.

    • additionalAccounts: PublicKey[]

      An array of additional accounts required for execution.

    • instruction: string

      The raw transaction data for the specific execution step.

    • Optionaltype: number = InstructionTag.TransactionStepFromInstruction

      The instruction type (defaults to 0x34).

    • OptionalsystemProgram: PublicKey = SystemProgram.programId

      The public key of the Solana system program.

    Returns TransactionInstruction

    A Solana TransactionInstruction object, ready to be included in a transaction.

    const instruction = createPartialCallOrContinueFromRawEthereumInstruction(
    0, // First step
    100, // Total steps
    neonEvmProgram,
    solanaUser.publicKey,
    balanceAddress,
    holderAddress,
    treasuryPoolAddress,
    [],
    "0xTransactionPart"
    );