EVMSEALEDEVM

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

Transaction ID

Timestamp

Feb 12, 2026, 03:08:50 PM UTC
2w ago

Block Height

141,987,232

Computation

0

Execution Fee

0.00218 FLOW

Authorizers

None

Transaction Summary

EVM

Called EVM

EVM Hashes
0xa26b6488d53c311fb743b653f9bad541cda6d5ad8b0aa62234af55fc0b5907ed
0xe68f3dbd5571e40a943a354b186fae12473286045ae33a36e5611b0eeac85671

Contracts

Script Arguments

0hexEncodedTxs[String]
[
  "f903508301147085047b208d008305b4b4946788f52439aca6bff597d3eec2dc9a44b8fee84280b902e4b143044b00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001500000000000000000000000002367325334447c5e1e0f1b3a6fb947b262f5831200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000698e415800000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000e40223536e0000000000000000000000000000000000000000000000000000000000000060894b683a51e40a0440840aec985555c60a4b5237641ea24d7122773c2443e1a5000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000510100000000000004b7000075950000000000000000000000006b8ad17795d89b283e6d0362a87a403f3544bb9d000076800000000000000000000000009d1b1669c73b033dfe47ae5a0164ab96df25b944000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000082235c9b7b783e550ade81030a3f4b0bac524cf2e7c6c5b4bc30807f19799beae65497680db0a6abcca4c095f2540f2a6cfadaf2a5fc1106f33f332ce8c161b1e81b4095d0f971b468682620af459b3ab63fa4e8b4017729f6bba53ee2e0a1105ed03ec077f2fe4cc2b4ed6eada76ebe646f583205f2f2adc403897c60cba80ebf391c0000000000000000000000000000000000000000000000000000000000008205faa08fa910896a6a96b0b3b9d267ded25e55cd5f2918d80acf971ff9acdb5113d6f5a0477885bcc2ec5f6eac8a5685e49b5ff30d8f348e6c0e3ceafb3b9f9145dc717f"
]

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}