□░░╳╳!▒◇*○▒◆◇&●*█~▓**%%●▓○@■*^▪^○$▒▪^#╲%■◇$▒*▓$▒◆▫&▪~*^█╱◇#$▪●*╱
Transaction ID
Execution Fee
0.00000974 FLOWExecution Error
assertion failed: evm_error=nonce too low: address 0x75413BE66939c3d9128298DaaCdB569c63652B2c, tx: 63870 state: 63871
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 }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: 63870 state: 63871 --> 5c3d1efb797272ef125c4dbc84edac7da93251eaf4f1bd76959b343e0894f7f0: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.
Script Arguments
[ "02f901148202eb82f97e8405f5e1008405f5e1028302544a94e381283c44091c018ad77e143e9928d5b394bee780b8a4d204c45e00000000000000000000000041a393d83ff52e672a81b6a0d0a8635ce0c72ca50000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f697066732e77656972646f67686f73742e636f6d2f6d65746164617461732f3030313031303030352e6a736f6e0000000000000000000000c001a00c45c8c95f0778d9dbafb16f7c45a29dd85508d0b95ec76ae8ff94eceefaa4f2a00fae73ca93c9c6ce6598207a6364df0931c8397bea72979beb69b5af3239ae39", "02f901148202eb82f97e8405f5e1008405f5e1028302544a94e381283c44091c018ad77e143e9928d5b394bee780b8a4d204c45e00000000000000000000000029ad02efb761bafd05cc21f76f2459540828d1ed0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f697066732e77656972646f67686f73742e636f6d2f6d65746164617461732f3030313030323030342e6a736f6e0000000000000000000000c080a0ee40ed730ccca2a9cd34998723e03fc633fb551b65db5a60543145adfa8db515a0038a5c1562d406f324f2196ecc16399604f253d39e410afc6ecd30fc45b5336b", "02f901138202eb82f97e8405f5e1008405f5e1028302544a94e381283c44091c018ad77e143e9928d5b394bee780b8a4d204c45e000000000000000000000000cbc72ebc71b2c07617ba155909f1a3fd9139dd550000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f697066732e77656972646f67686f73742e636f6d2f6d65746164617461732f3030313030313030362e6a736f6e0000000000000000000000c0019f905664bef25127c063493c08a999dc660c6b4c30f86e9664eab0c557214972a0124cdf1e0c2ac93663324981fdeea13dd89048a67a6d90b85d30201b5ace0f73", "02f901148202eb82f97e8405f5e1008405f5e1028302544a94e381283c44091c018ad77e143e9928d5b394bee780b8a4d204c45e0000000000000000000000001b18c9e9c7a4575888cf4283e18bafaa983dcd640000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f697066732e77656972646f67686f73742e636f6d2f6d65746164617461732f3030313030393030322e6a736f6e0000000000000000000000c001a0e1e5d5a63bc284704ffb829c365e34de10e3a76e2dff74d649d51b2d95e1e9efa07d0d81d8e95000dc8a76af28d3e98e253154fcefb074593c095a4c28cc05c6c1" ]
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}