Function executeTransactionStepsFromAccount

  • Executes a scheduled Neon EVM transaction step-by-step from a Solana holder account.

    This function iteratively processes a large Ethereum-like transaction by breaking it into smaller execution steps (EVM steps) and executing them sequentially on Solana. It ensures that each step is confirmed before proceeding to the next one.

    Parameters

    • connection: Connection

      The Solana connection instance to interact with the blockchain.

    • neonEvmProgram: PublicKey

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

    • solanaUser: SolanaNeonAccount

      The Solana account that will execute the transaction.

    • holderAddress: PublicKey

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

    • treasuryPoolAddress: TreasuryPoolAddress

      The address of the treasury pool used for transaction fees.

    • storageAccount: PublicKey

      The public key of the storage account linked to transaction execution.

    • OptionaladditionalAccounts: PublicKey[] = []

      An optional array of additional accounts required for execution.

    Returns Promise<any>

    A promise resolving with the receipt of the executed transaction.

    1. Creates a transaction step-by-step, executing the Ethereum-like transaction in smaller EVM steps.
    2. Sends each step to the Solana blockchain until the transaction is fully executed.
    3. Waits for confirmation of each step before proceeding to the next step.
    4. Logs and returns the final transaction receipt after full execution.