The Neon EVM program ID managing the execution of the transaction.
The Solana account (operator) responsible for executing the transaction.
The public key of the balance account associated with the transaction.
The public key of the holder account storing the scheduled transaction.
The public key of the transaction tree account used in execution.
The transaction index in the scheduled transaction queue.
Optional
additionAccounts: PublicKey[] = []An optional array of additional accounts required for execution.
A Solana Transaction
object, ready to be signed and sent.
256 KB
to allocate enough memory for processing.const transaction = createScheduledTransactionStartFromAccountTransaction(
neonEvmProgram,
operator,
balanceAddress,
holderAddress,
treeAddress,
0 // First transaction index
);
Creates a Solana transaction to start the execution of a scheduled Neon EVM transaction from a Solana holder account.
This function prepares and returns a Solana transaction that initiates a scheduled Neon transaction, enabling step-by-step execution.