TransactionSEALED

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

Transaction ID

Timestamp

Oct 13, 2025, 06:31:01 AM UTC
4mo ago

Block Height

129,292,190

Computation

0

Execution Fee

0.00001024 FLOW

Authorizers

None

Execution Error

Error Code: 1101

assertion failed: evm_error=nonce too low: address 0x75413BE66939c3d9128298DaaCdB569c63652B2c, tx: 83499 state: 83500

Error ContextLine 29
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    }
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 low: address 0x75413BE66939c3d9128298DaaCdB569c63652B2c, tx: 83499 state: 83500 --> b5a18d89c5de1397297ba87058249c59787ab150736e9035f77c8b80b0e0c0a3:29:12 | 29 | assert( 30 | txResult.status == EVM.Status.failed || txResult.status == EVM.Status.successful, 31 | message: "evm_error=".concat(txResult.errorMessage).concat("\n") 32 | ) | ^ 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]
[
  "02f901158202eb8301462b8405f5e1008405f5e1028302544a94e381283c44091c018ad77e143e9928d5b394bee780b8a4d204c45e000000000000000000000000392abb757d384e12763b904b40a37130c80c1c4a0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f697066732e77656972646f67686f73742e636f6d2f6d65746164617461732f3030313031323030342e6a736f6e0000000000000000000000c080a0ce8acda3e0b9bfc9c6e74689a9c3a4fece5ee4b7d09e8f71918baae9040b0fe4a0644a9e30a4070f5c8637fd5831727eca1f72aa331b43382926d71ff372c3964c",
  "02f901158202eb8301462b8405f5e1008405f5e1028302544a94e381283c44091c018ad77e143e9928d5b394bee780b8a4d204c45e0000000000000000000000002ecf20645b99f533a86a4f3586816c1f4d28a4560000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f697066732e77656972646f67686f73742e636f6d2f6d65746164617461732f3030313031333031312e6a736f6e0000000000000000000000c001a041b7d2109ea39f14e1caf55fcaf06b64d71a23514854275470e03ec8b967de85a0632ee3e6997e11148fc0351b699219ca3ca16ce05df9bdf095a74fad2d189781",
  "02f901158202eb8301462b8405f5e1008405f5e1028302544a94e381283c44091c018ad77e143e9928d5b394bee780b8a4d204c45e000000000000000000000000c6c18f94ffa6720f26293cf340d40bda059b22be0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f697066732e77656972646f67686f73742e636f6d2f6d65746164617461732f3030313030323032312e6a736f6e0000000000000000000000c001a076b90dd9290bafebbce7a5e9f8a4815cd8c7bc2906e92a11fde61636d6e37ce1a043f58dc82b0d342d239fb36750033c980792ca454f692e3e5a7b768f15d8e728"
]

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}