Function createScheduledTransactionStartFromAccountTransaction

  • 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.

    Parameters

    • neonEvmProgram: PublicKey

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

    • operator: PublicKey

      The Solana account (operator) responsible for executing the transaction.

    • balanceAddress: PublicKey

      The public key of the balance account associated with the transaction.

    • holderAddress: PublicKey

      The public key of the holder account storing the scheduled transaction.

    • treeAddress: PublicKey

      The public key of the transaction tree account used in execution.

    • index: number

      The transaction index in the scheduled transaction queue.

    • 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 initiate the scheduled Neon transaction from the Solana holder account.
    4. Returns the constructed transaction ready for submission.
    const transaction = createScheduledTransactionStartFromAccountTransaction(
    neonEvmProgram,
    operator,
    balanceAddress,
    holderAddress,
    treeAddress,
    0 // First transaction index
    );