EVMSEALEDEVM

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

Transaction ID

Timestamp

Oct 13, 2025, 06:50:00 AM UTC
4mo ago

Block Height

129,293,613

Computation

0

Execution Fee

0.00040512 FLOW

Authorizers

None

Transaction Summary

EVM

Called EVM

EVM Hashes
0x1c54d78c37c2b9cafe1971c47c443ed4e98c7874131866915c33bd7326318e4a
0x388f1600b0c627200d189447338de2a925532f4dfbe2144eea51471f37608792

Contracts

Script Arguments

0hexEncodedTxs[String]
[
  "f8ee831419258405f5e100835b7eb9947e8dd69f0675e61efaefe3403f2037f85cc669dd80b884cb67d7ac0000000000000000000000000000000000000000000000a2a15d09519be000000000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008205faa0f2c473502d3f49f0a765df4896bd796e060eb52d817dcfd8480196ccda51cb91a0410d897c7b85c8bdef90827f3c448cc6630aae3af5bcb88faa9327d705210de1",
  "f8ee831419268405f5e100835b7eb9947e8dd69f0675e61efaefe3403f2037f85cc669dd80b884cb67d7ac0000000000000000000000000000000000000000000000a2a15d09519be000000000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008205f9a0358ff5c493297ff23d2b68b7d9ef12044b3c979829263c971bee114090dfcbfba065f5b848913002d1f4a089e9633979c3dab64c770adaeb8cc49280b4b7753eb0",
  "f8ee831419268405f5e100835b7eb9947e8dd69f0675e61efaefe3403f2037f85cc669dd80b884cb67d7ac0000000000000000000000000000000000000000000000a2a15d09519be000000000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008205f9a0358ff5c493297ff23d2b68b7d9ef12044b3c979829263c971bee114090dfcbfba065f5b848913002d1f4a089e9633979c3dab64c770adaeb8cc49280b4b7753eb0",
  "f8ee831419268405f5e100835b7eb9947e8dd69f0675e61efaefe3403f2037f85cc669dd80b884cb67d7ac0000000000000000000000000000000000000000000000a2a15d09519be000000000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008205f9a0358ff5c493297ff23d2b68b7d9ef12044b3c979829263c971bee114090dfcbfba065f5b848913002d1f4a089e9633979c3dab64c770adaeb8cc49280b4b7753eb0"
]

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}