TransactionSEALED

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

Transaction ID

Timestamp

Oct 01, 2025, 05:51:06 AM UTC
5mo ago

Block Height

127,994,811

Computation

0

Execution Fee

0.00001024 FLOW

Authorizers

None

Execution Error

Error Code: 1101

assertion failed: evm_error=nonce too low: address 0xba9A3c0a22bAebE8c4926227BdE32d6EdC0D5d28, tx: 74521 state: 74522

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 0xba9A3c0a22bAebE8c4926227BdE32d6EdC0D5d28, tx: 74521 state: 74522 --> 6b8b8397721f1f6c32db1a9faaafc695f503d1239cb3a8f3483b77d183739495: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]
[
  "02f901558202eb830123198408f0d1808408f0d1818303a4c7942aabea2058b5ac2d339b163c6ab6f2b6d53aabed80b8e4d505accf000000000000000000000000c1409d5742fcb3106a725f67c9ffeb498d8a7f9500000000000000000000000069b263cb0e6ad41caef238670695d6c109738394ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000068e0b5c5000000000000000000000000000000000000000000000000000000000000001b7a5d159e243db45046fc4e02796257e835039d24e1598da41af4eec18ed3bd123ddbd02977d247195df2165e77695c6df66885a2aee1616907c60ed6dfd13b29c080a0b385b8ce9116f9c069d3a7d6ed837234f2e9655c57863bf1274d6d4116e39467a0764ca6c705be5bdf07cf389d494ba3427377e9897f9effd0227d112728f5e0fc",
  "02f901558202eb830123198408f0d1808408f0d1818303a4c7942aabea2058b5ac2d339b163c6ab6f2b6d53aabed80b8e4d505accf000000000000000000000000c1409d5742fcb3106a725f67c9ffeb498d8a7f9500000000000000000000000069b263cb0e6ad41caef238670695d6c109738394ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000068e0b5c5000000000000000000000000000000000000000000000000000000000000001b7a5d159e243db45046fc4e02796257e835039d24e1598da41af4eec18ed3bd123ddbd02977d247195df2165e77695c6df66885a2aee1616907c60ed6dfd13b29c080a0b385b8ce9116f9c069d3a7d6ed837234f2e9655c57863bf1274d6d4116e39467a0764ca6c705be5bdf07cf389d494ba3427377e9897f9effd0227d112728f5e0fc"
]

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}