TransactionSEALED

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

Transaction ID

Timestamp

Feb 12, 2026, 03:02:54 PM UTC
2w ago

Block Height

141,986,798

Computation

0

Execution Fee

0.0023 FLOW

Authorizers

None

Execution Error

Error Code: 1101

assertion failed: evm_error=nonce too high: address 0xe37f7c80ceD04c4F243C0Fd04A5510D663CB88b5, tx: 135061 state: 135052;evm_error_code=202

Error ContextLine 43
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    }
Call Stack
Raw Error

[Error Code: 1101] error caused by: 1 error occurred: * transaction execute failed: [Error Code: 1101] cadence runtime error: Execution failed: error: assertion failed: evm_error=nonce too high: address 0xe37f7c80ceD04c4F243C0Fd04A5510D663CB88b5, tx: 135061 state: 135052;evm_error_code=202 --> 283a26a8710203966f1b87802e49250781c3a337474aeefbbc46efc30b96b2f1:43:12 | 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 | ) | ^ Was this error unhelpful? Consider suggesting an improvement here: https://github.com/onflow/cadence/issues.

Transaction Summary

Contract Call

Called EVM

Contracts

Script Arguments

0hexEncodedTxs[String]
[
  "f8cf83020f9585047b208d0083056d109445a01e4e04f14f7a4a6702c74187c5f6222033cd80b8642b28b34e00000000000000000000000000000000000000000000000000000000000076090000000000000000000000000000000000000000000000000a3a145fe3d172230000000000000000000000000000000000000000000000005af3ebc52f3423558205f9a07e47567b6be8446cca0d8814fd660552dab0b2d5e718c0afd062dc7423b0cb37a0111c66f951912c657611cb6f34485a6346c020051e7f3ca7fbd9d981d105e8a6",
  "f8cf83020f9685047b208d0083056d109445a01e4e04f14f7a4a6702c74187c5f6222033cd80b8642b28b34e00000000000000000000000000000000000000000000000000000000000075e50000000000000000000000000000000000000000000000000a1c8cfbba59062a0000000000000000000000000000000000000000000000007e92174819fdef958205f9a09d47ec7439384991082b7df3d5ec3f8cbf95e34f56a4e244e9045fdfc5ca0a4ca04ce630c3365d134d72e0db3430f4293fb4b4bcc762a5a16a4643a48aeb80ecdb",
  "f8cf83020f9785047b208d0083056d109445a01e4e04f14f7a4a6702c74187c5f6222033cd80b8642b28b34e00000000000000000000000000000000000000000000000000000000000075c7000000000000000000000000000000000000000000000000074fe253b06f4717000000000000000000000000000000000000000000000000226a02acc636c54b8205f9a039b8dd6cf1da414fa3bb865d392f6d28795b50b3e2df91a5a5796b26665c5c77a05b8d06d3d214e1777be516c9bbfcdf76dd657cb638d88edebdbad4655afb333c",
  "f8cf83020f9985047b208d0083056d109445a01e4e04f14f7a4a6702c74187c5f6222033cd80b8642b28b34e000000000000000000000000000000000000000000000000000000000000759f00000000000000000000000000000000000000000000000005224700e3d1f3f00000000000000000000000000000000000000000000000001ad762e26a0974ce8205f9a09ad311a9364e42359b7d47b0320e2f007dc23c0823ecd222b6fddc588ccb99b6a024d48894bbd497ac635bf0fe804ac5e84fc7b127862f0eccfe1d6f3f21bb5975"
]

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}