TransactionSEALED

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

Transaction ID

Timestamp

Oct 09, 2025, 04:00:41 PM UTC
4mo ago

Block Height

128,903,601

Computation

0

Execution Fee

0.00000974 FLOW

Authorizers

None

Execution Error

Error Code: 1101

assertion failed: evm_error=nonce too low: address 0x75413BE66939c3d9128298DaaCdB569c63652B2c, tx: 38666 state: 38667

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: 38666 state: 38667 --> e778a3dc31de47545378aa798a4c7d69d53edf6804dafae5c30771f86056b8fa: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]
[
  "02f901148202eb82970a8405f5e1008405f5e1028302544a94e381283c44091c018ad77e143e9928d5b394bee780b8a4d204c45e000000000000000000000000f5c7df6c3ac845cde9e2a60c843d742ef343cde50000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f697066732e77656972646f67686f73742e636f6d2f6d65746164617461732f3030313031303030362e6a736f6e0000000000000000000000c080a0ae67814e968dfa7b50620b7b18c3e855be38b6bf1a86326cc38231056902705ea02866abf7c3b8e6c2e2daf0461c57a029f17a372dd3f55dc22797154e7d7cd525"
]

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}