EVMSEALEDEVM

▓╲╲○░▓□?●○╳%#◆╳▫*$╳*▓■▫!▓▪░&?╱#?○$%@▒▪^##○██□@●?▒@■○$^▒▪%@^╳░●!▒

Transaction ID

Timestamp

Sep 08, 2025, 06:47:28 AM UTC
5mo ago

Block Height

125,569,978

Computation

0

Execution Fee

0.00019644 FLOW

Authorizers

None

Transaction Summary

EVM

Called EVM

EVM Hashes
0x86e8bf271dd34545fd0bf6e3a2af4adf8238af73566b93782b0f6f2c0bda975f
0xcd48e50499c1a3b67feab8893d07f19b4fc7e63c6226f5f3ba0c1f1bbb4b1557

Contracts

Script Arguments

0hexEncodedTxs[String]
[
  "f8ee831382608405f5e100835b7eb994f19fd4347cafadd409a9fa090b3ad068272035a180b8845148e0ba00000000000000000000000000000000000000000000006c6b935b8bbd4000000000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008205f9a081811ffc27479917a59410053b41200787889d3e6d2aece988b6b9e7b1d43934a067987ead4c8b3c50eacd5e808ac09a9153d87bc9a99cabd3dd34401f4fee3abb",
  "f8ee831382608405f5e100835b7eb994f19fd4347cafadd409a9fa090b3ad068272035a180b8845148e0ba00000000000000000000000000000000000000000000006c6b935b8bbd4000000000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008205f9a081811ffc27479917a59410053b41200787889d3e6d2aece988b6b9e7b1d43934a067987ead4c8b3c50eacd5e808ac09a9153d87bc9a99cabd3dd34401f4fee3abb",
  "f8ee831382608405f5e100833cfa3994f19fd4347cafadd409a9fa090b3ad068272035a180b8845148e0ba00000000000000000000000000000000000000000000006c6b935b8bbd4000000000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008205f9a0da6398f00cbbb7640bf3b88bf329bcd76f47b7edd0e88d8b17e5c2c22afaebd2a031d2091d53ef66de8c73df350f58742129bf0e55ee40bbe630833656ecd4ebde",
  "f8ee831382618405f5e100835b7eb994f19fd4347cafadd409a9fa090b3ad068272035a180b8845148e0ba00000000000000000000000000000000000000000000006c6b935b8bbd4000000000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008205faa0d8f6d3d2726bca53242288ddd848e918cf4965e59b67238366a9b0edc21bf329a07d8879d16694fbd74539c8bbe78404cfee0aed833b260f390abf191116e036f0"
]

Cadence Script

1import EVM from 0xe467b9dd11fa00df
2
3transaction(hexEncodedTxs: [String], coinbase: String) {
4    execute {
5        let txs: [[UInt8]] = []
6        for tx in hexEncodedTxs {
7            txs.append(tx.decodeHex())
8        }
9
10        let txResults = EVM.batchRun(
11            txs: txs,
12            coinbase: EVM.addressFromString(coinbase)
13        )
14
15        // If at least one of the EVM transactions in the batch is either
16        // failed or successful, in other words not invalid, we let the
17        // Cadence transaction succeed.
18        for txResult in txResults {
19            if txResult.status == EVM.Status.failed || txResult.status == EVM.Status.successful {
20                return
21            }
22        }
23
24        // Otherwise, all EVM transactions are invalid txs and can't be
25        // executed (such as nonce too low).
26        // In this case, we fail the Cadence transaction with the error
27        // message from the first EVM transaction.
28        for txResult in txResults {
29            assert(
30                txResult.status == EVM.Status.failed || txResult.status == EVM.Status.successful,
31                message: "evm_error=".concat(txResult.errorMessage).concat("\n")
32            )
33        }
34    }
35}