EVMSEALEDEVM

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

Transaction ID

Timestamp

Feb 12, 2026, 11:05:27 AM UTC
2w ago

Block Height

141,969,008

Computation

0

Execution Fee

0.00218 FLOW

Authorizers

None

Transaction Summary

EVM

Called EVM

EVM Hashes
0x4829e353927d0f02d656c3330a72fa45c32b1544b9b0b9e4692c3b03aec83a07
0x7f53800ee31a9e2079973fbd6a9b61d702037dbccfa839471d39b60f9544ee06

Contracts

Script Arguments

0hexEncodedTxs[String]
[
  "f903508301141785047b208d008305b4b4946788f52439aca6bff597d3eec2dc9a44b8fee84280b902e4b143044b00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001500000000000000000000000002367325334447c5e1e0f1b3a6fb947b262f5831200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000698e084b00000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000e40223536e000000000000000000000000000000000000000000000000000000000000006001d062c0370dc9f9bbee39d442e144abe08748ebbc284479f5ad24b1cd1c12b9000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000510100000000000000d600007674000000000000000000000000c0bdf9152e5fe7e29ac2de8072fa42a3565df751000076800000000000000000000000009d1b1669c73b033dfe47ae5a0164ab96df25b9440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000821a8e96c829948783e5925aea871c443432468f654e7609b52c31ccb5da6b4f0415300d4ea40ad5784cd8c0c17a5d377355acb0faba1f47e4b4d251a781e569841c463b709fa1c668e7ccce0494197ec9fc3b8a5c856c9c27c77386bc264eba48703d716c16a8a571ac5006372680e2a7eead518340f9d2d25dd57b2306a07414db1b0000000000000000000000000000000000000000000000000000000000008205f9a058476f626c0d284575cd9dcbca194c60fde1f9b0ef4e4014370151c134033a4aa01fd0da1bb91c1bc65066120eed935f4f44c6b182d3c8446c8c9afb4ef174c697"
]

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        // If there's only one tx, use `EVM.run`.
11        // If there are more, then use `EVM.batchRun`
12        if txs.length == 1 {
13            let txResult = EVM.run(
14                tx: txs[0],
15                coinbase: EVM.addressFromString(coinbase)
16            )
17            assert(
18                txResult.status == EVM.Status.failed || txResult.status == EVM.Status.successful,
19                message: "evm_error=\(txResult.errorMessage);evm_error_code=\(txResult.errorCode)"
20            )
21            return
22        }
23
24        let txResults = EVM.batchRun(
25            txs: txs,
26            coinbase: EVM.addressFromString(coinbase)
27        )
28
29        // If at least one of the EVM transactions in the batch is either
30        // failed or successful, in other words not invalid, we let the
31        // Cadence transaction succeed.
32        for txResult in txResults {
33            if txResult.status == EVM.Status.failed || txResult.status == EVM.Status.successful {
34                return
35            }
36        }
37
38        // Otherwise, all EVM transactions are invalid txs and can't be
39        // executed (such as nonce too low).
40        // In this case, we fail the Cadence transaction with the error
41        // message from the first EVM transaction.
42        for txResult in txResults {
43            assert(
44                txResult.status == EVM.Status.failed || txResult.status == EVM.Status.successful,
45                message: "evm_error=\(txResult.errorMessage);evm_error_code=\(txResult.errorCode)"
46            )
47        }
48    }
49}