EVMSEALEDEVM

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

Transaction ID

Timestamp

Oct 02, 2025, 07:36:52 AM UTC
4mo ago

Block Height

128,110,514

Computation

0

Execution Fee

0.00038263 FLOW

Authorizers

None

Transaction Summary

EVM

Called EVM

EVM Hashes
0xd6b4a9a91b3ff2c76d9dc3543240f51862d879cd2b4b09962591fe5d777e7646
0x3343afe616773f302ddd08310b4241de69ddae1bfbbc3864898169c3207245ee

Contracts

Script Arguments

0hexEncodedTxs[String]
[
  "f8ee83122b0b8405f5e100835b7eb9947e8dd69f0675e61efaefe3403f2037f85cc669dd80b884cb67d7ac0000000000000000000000000000000000000000000000a2a15d09519be000000000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008205faa0bfab58d767986a31f798b1fd9ecc46a0d9e31276b515de158c3fea3edaaa3aaba00d74b00d88d1ea07129e4eb3745703d4bd7241f43b8f454e1d4c370033055c83",
  "f8ee83122b0c8405f5e100835b7eb9947e8dd69f0675e61efaefe3403f2037f85cc669dd80b884cb67d7ac0000000000000000000000000000000000000000000000a2a15d09519be000000000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008205faa0342f8ca9642b19c6322826a4471ebd2c133f203f327e4d7e2a965f9e3306cad2a055a16a92e76aadeebcc12a8c4ea27153d965db310938844adb23102e6ffa7414"
]

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}