The Solana connection instance to interact with the blockchain.
The Neon EVM program managing the scheduled transaction.
The Solana account signing and funding the transaction associated with the Neon wallet.
The public key of the holder account where transaction data is stored.
The Neon transaction to be written into the holder account.
A promise resolving once the transaction is fully written.
keccak256
.await writeTransactionToHoldAccount(
connection,
neonEvmProgram,
solanaUser,
holderAddress,
scheduledTransaction
);
Writes a scheduled Neon EVM transaction into a Solana holder account by splitting it into chunks.
Since Solana transactions have a size limit, this function splits a scheduled Neon transaction into smaller chunks and sequentially writes them into the holder account.