EVMSEALEDEVM

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

Transaction ID

Timestamp

Dec 27, 2025, 09:24:56 AM UTC
2mo ago

Block Height

137,372,348

Computation

0

Proposerseq:0 key:0

Authorizers

None

Transaction Summary

EVM

Called EVM

EVM Hashes
0x2e0fa7e077ee695870251cec67a9033c3f3739e15e4e3e5f7d6939e4eb0c3568
0x84763d8321713ed3c7c40f326a4480d7b7a67169b6c6330a656304ef8e187335

Contracts

Script Arguments

0hexEncodedTxs[String]
[
  "f9034f82e7ed85056c061b408305b4b4946788f52439aca6bff597d3eec2dc9a44b8fee84280b902e4b143044b00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001500000000000000000000000002367325334447c5e1e0f1b3a6fb947b262f5831200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000694ffa3600000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000e40223536e0000000000000000000000000000000000000000000000000000000000000060644b1f5bacf09769efd6ca80bdf5bb546b57e52f1effe89bba58cdf628f9fb8f000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000005101000000000000103b000075e80000000000000000000000005634c4a5fed09819e3c46d86a965dd9447d86e470000768000000000000000000000000045a01e4e04f14f7a4a6702c74187c5f6222033cd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008213312cd4c9cdeaed239c63ebbbf8f3348d601d8d24812b9b5f1ae6180719d3fc475770b70fe434f036f86c6b4fbf5902e5248682fd14c8aca7d625f1916aa1fa1c38c10d9c156d683b59c3ca242d15a0fafdb8c210ce31f3b6c5e451029a50eec15bc6b502a1d67dea3342f51600977b46a05f87db4111c064c3ae742d23e9c6301b0000000000000000000000000000000000000000000000000000000000008205f9a00ffa2720c4eec636dc7b0e14800e0d2aab1dfc64a06aa66d8283efc254e12758a033501470e6bfee037f0321bf37113df1a8adf01189d779ab7aff9f4751ed7e69"
]

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}