▪◆■~□$░!!%╲#◆@$@*░$$○○░&^○▫^^▓░?▓●█^●*!▪▫○●╱^○□○▒╲?$~%□□~◇$╳□╱╱●
Transaction ID
Execution Fee
0.00166 FLOWExecution Error
assertion failed: evm_error=nonce too high: address 0xB8FF877ed78Ba520Ece21B1de7843A8a57cA47Cb, tx: 70707 state: 70706;evm_error_code=202
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 }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 0xB8FF877ed78Ba520Ece21B1de7843A8a57cA47Cb, tx: 70707 state: 70706;evm_error_code=202 --> f52fe55252e4e54d12f4e5d1c592e612399fbb933cb515772df5fe096d4b5e05:17:12 | 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 | ) | ^ Was this error unhelpful? Consider suggesting an improvement here: https://github.com/onflow/cadence/issues.
Script Arguments
[ "f903508301143385047b208d008305b4b4946788f52439aca6bff597d3eec2dc9a44b8fee84280b902e4b143044b00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001500000000000000000000000002367325334447c5e1e0f1b3a6fb947b262f5831200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000698e18b400000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000e40223536e0000000000000000000000000000000000000000000000000000000000000060c161c393296867b4701b97f39f8b23098ab9c6748bd70e43f93e97009276e718000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000510100000000000011cd000075e80000000000000000000000005634c4a5fed09819e3c46d86a965dd9447d86e470000768000000000000000000000000045a01e4e04f14f7a4a6702c74187c5f6222033cd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000828d0b4cb41add087b40436a3c240d1acddac18bdd29aef3bd433aefc039ce5cf221e443d18cfaeddaca7ab8a3f147f20469d095c3b7de8163296e5ccc0307479f1c793a3d7cd2077d8e188490af2170dfc264a4a6b3aabef1cfd142b22e006d953e3c5af62df3b6af5c83e0ff76326e3dd5acb34b1dcaf2c6de808a857a5c078a7a1b0000000000000000000000000000000000000000000000000000000000008205f9a04303f96fbf16c013a26fc9346d23001e0098e5a948e5a3e2fbea2e84a7fed8f9a034c36be0bce7582d6f294802584afe9b1048500811a0e313bec72ecd0019fed7" ]
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}