EVMSEALEDEVM

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

Transaction ID

Timestamp

Oct 16, 2025, 02:48:52 AM UTC
4mo ago

Block Height

129,598,601

Computation

0

Execution Fee

0.00026642 FLOW

Authorizers

None

Transaction Summary

EVM

Called EVM

EVM Hashes
0x823f9c4af3d9e10b4858242ca3c4d166974cc8a1c6a980e2ef3b9e255fa03354
0x1947a7cf7e13dcb4c3b89badf265554869fe966203e0575d7db53e4e77a0a687

Contracts

Script Arguments

0hexEncodedTxs[String]
[
  "f8ee8318baf98405f5e100835b7eb994398343f6a90469c30927af4377d564cc3ba3f10580b8842a3774a20000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008205faa027c8c687d2584118a25d569dd2aebe2e40f322a1e7e16b41b88412962c4e79bca03158954ba5a6a4cbe88ff074c975eb0aaf11af0c882aff4129ac6862dd13b991",
  "f8ee8318baf98405f5e100835b7eb994398343f6a90469c30927af4377d564cc3ba3f10580b8842a3774a20000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008205faa027c8c687d2584118a25d569dd2aebe2e40f322a1e7e16b41b88412962c4e79bca03158954ba5a6a4cbe88ff074c975eb0aaf11af0c882aff4129ac6862dd13b991",
  "f8ee8318bafa8405f5e100835b7eb994398343f6a90469c30927af4377d564cc3ba3f10580b8842a3774a20000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008205f9a0a125c2d09cfd3b8d68dffee635c17e978de282c5581887e0274325a658cbe1e8a064d71d0e4590f591e88fefe020889c889f028fec3ee07178b7efe642c729babe"
]

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}