EVMSEALEDEVM
╲~■%░*!□●^▒╱●!◆$!*╱▫■~○█■?▒■□◇▪?*%╳╳◆╱~╳&%@&▫^╳?▫■▓█^█●@◆●◆◇^*╳@
Transaction ID
Execution Fee
0.00218 FLOWTransaction Summary
EVMCalled EVM
EVM Hashes
Contracts
Script Arguments
0hexEncodedTxs[String]
[ "f903508301143385056c061b408305b4b4946788f52439aca6bff597d3eec2dc9a44b8fee84280b902e4b143044b00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001500000000000000000000000002367325334447c5e1e0f1b3a6fb947b262f5831200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000698e18b400000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000e40223536e0000000000000000000000000000000000000000000000000000000000000060c161c393296867b4701b97f39f8b23098ab9c6748bd70e43f93e97009276e718000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000510100000000000011cd000075e80000000000000000000000005634c4a5fed09819e3c46d86a965dd9447d86e470000768000000000000000000000000045a01e4e04f14f7a4a6702c74187c5f6222033cd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000828d0b4cb41add087b40436a3c240d1acddac18bdd29aef3bd433aefc039ce5cf221e443d18cfaeddaca7ab8a3f147f20469d095c3b7de8163296e5ccc0307479f1c793a3d7cd2077d8e188490af2170dfc264a4a6b3aabef1cfd142b22e006d953e3c5af62df3b6af5c83e0ff76326e3dd5acb34b1dcaf2c6de808a857a5c078a7a1b0000000000000000000000000000000000000000000000000000000000008205f9a084f2cc61acc4917d98958cd11be66dc120a02d95dccbfcf7049a78948ec304f4a048a8a772043f0b44d9237e2efc53df2559762ef24dcdb5bb7e311c0384ed7845" ]
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}