EVMSEALEDEVM

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

Transaction ID

Timestamp

Feb 18, 2026, 10:18:31 PM UTC
1w ago

Block Height

142,666,865

Computation

0

Execution Fee

0.00314 FLOW

Authorizers

None

Transaction Summary

EVM

Called EVM

EVM Hashes
0xe1aa5dc782d7811b1db7f9cf756ecef8b75dc5ee192d548427d2bd66b5620af5
0xbdad2439ba10742c6cb04e9f93415eacd3e22161edeab95717eb4c9906303fdf

Contracts

Script Arguments

0hexEncodedTxs[String]
[
  "f9036f82071f85046416c9a88309ebbb943cdcb4a8b1c15b07cc9b43274dbffe55ee0aa88b80b9030400000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000028000010000000000000000149fd43db2b7b0000000000000000000051de392874d5ef42c0b406ed7945a600446b888b7df95a6a4c06b22d3bf53dac106a0290b0483ecbc89d40fcc961f3e3cdcb4a8b1c15b07cc9b43274dbffe55ee0aa88b00000000000000000000000000000000000000000000000000a8cdae41bde110000000010000000000000000051de392874d5ef40000000000000000000000000000d8f55ef9d18e8d7764bd02fd8491fccbfc9323e5ea3e96943341663da3bdb36cd7099aac9bbbb36861893cdcb4a8b1c15b07cc9b43274dbffe55ee0aa88b0000000000000000000000000000000000000000000000000086b2dd8f1f0678000001010000000000000000000000000000d8f50000000000000000000bcdf0263417e5d4222d2d74da8a731ab4d3670599afbd836559d52aabea2058b5ac2d339b163c6ab6f2b6d53aabed3cdcb4a8b1c15b07cc9b43274dbffe55ee0aa88b0000000000000000000000000000000000000000ffffffffffffffffffffffffffff03010000000000000000000bcdf0263417e50000000000000001c78d5df1966cf1925f79e572c7b7f907faacee8806c1b3102dc3a91e00f4ce400130c9383115f3858f9ca5467742658375186a42db5a6c63095adb5cf5f1ea30cc57fda2a64833a00000000000000000000000000000000100000000000802f3d65eb8668000000000000000000000000000000000000000000000000000000014c863064171e39275186a42db5a6c63095adb5cf5f1ea30cc57fda2b73bf8e6a4477a952e0338e6cc00cc0ce5ad04ba3cdcb4a8b1c15b07cc9b43274dbffe55ee0aa88b000000000000000000000000000000000000000000000012b7f48d793c7b000000008205faa0237b996cd144e34eea067ce742fe0103c168172de6420977b5a3148a132782b0a03d1bf19bc652cc01384a1214438f951809a8874ceb3ac6e87781fd776024d4e0"
]

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}