EVMSEALEDEVM

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

Transaction ID

Timestamp

Oct 16, 2025, 06:56:50 AM UTC
4mo ago

Block Height

129,617,178

Computation

0

Execution Fee

0.00026492 FLOW

Authorizers

None

Transaction Summary

EVM

Called EVM

EVM Hashes
0xa76db51db137700442aef88e700d66ef1ec4d17a173846bed871d94d9a8e0efc
0x5e4d85de51f02c962c2560f8aa729b4f7fccae633b176cb5f45a2c8a45e38de3

Contracts

Script Arguments

0hexEncodedTxs[String]
[
  "f8ee8318c2b58405f5e100835b7eb994398343f6a90469c30927af4377d564cc3ba3f10580b8842a3774a20000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008205faa0ea01004fc43610ca38640e8283c3f5d67ec70b0cfcd974be1dbb6019f2203819a03720e11c63bf51e714ad4802a20c7a38cc6d97dc4861a956720186a0a570406b",
  "f8ee8318c2b58405f5e100835b7eb994398343f6a90469c30927af4377d564cc3ba3f10580b8842a3774a20000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008205faa0ea01004fc43610ca38640e8283c3f5d67ec70b0cfcd974be1dbb6019f2203819a03720e11c63bf51e714ad4802a20c7a38cc6d97dc4861a956720186a0a570406b"
]

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}