EVMSEALEDEVM

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

Transaction ID

Timestamp

Oct 09, 2025, 05:24:12 AM UTC
4mo ago

Block Height

128,855,921

Computation

0

Execution Fee

0.00026317 FLOW

Authorizers

None

Transaction Summary

EVM

Called EVM

EVM Hashes
0x57bb3c5765b0698625a9064f0fe3ccfcdc8f25ff2a85e8f0a3aaeaa4f1697b8f
0x3217cb200f9eaa54c34ffb90fecd27d519c7e1f37a8e14a18dfd065400aa1411

Contracts

Script Arguments

0hexEncodedTxs[String]
[
  "f8ee831785908405f5e100835b7eb994398343f6a90469c30927af4377d564cc3ba3f10580b8842a3774a20000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008205faa0c2249dc3f420c98a116fb02568f1a082de5454598c41cb1c7c4fc33ec73d9ef7a0473e63cb1196f23f2df67d5baafdd3b3e5b5e00a22c89ac63a463bb013466635",
  "f8ee831785908405f5e100835b7eb994398343f6a90469c30927af4377d564cc3ba3f10580b8842a3774a20000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008205faa0c2249dc3f420c98a116fb02568f1a082de5454598c41cb1c7c4fc33ec73d9ef7a0473e63cb1196f23f2df67d5baafdd3b3e5b5e00a22c89ac63a463bb013466635"
]

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}