The current step index in the transaction execution.
The total number of execution steps to be processed.
The Neon EVM program ID managing the execution of the transaction.
The Solana account (operator) initiating the transaction.
The public key of the balance program address for the Neon wallet used for gas and execution fees.
The public key of the holder account storing the transaction.
The address of the treasury pool used for transaction fees.
An array of additional accounts required for execution.
The raw transaction data for the specific execution step.
Optional
type: number = InstructionTag.TransactionStepFromInstructionThe instruction type (defaults to 0x34).
Optional
systemProgram: PublicKey = SystemProgram.programIdThe public key of the Solana system program.
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"
);
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.