EVMSEALEDEVM

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

Transaction ID

Timestamp

Jul 24, 2025, 12:54:15 AM UTC
7mo ago

Block Height

120,632,528

Computation

0

Execution Fee

0.00026217 FLOW

Authorizers

None

Transaction Summary

EVM

Called EVM

EVM Hashes
0x7342d5acebcdd054973c25e0a560de3a61650e35e4f6a662f62c7a0c4a97e03f
0x8062e4106933a694163cd90b7d1554207d760a1c7a0fbdc693bd24191df1c84b

Contracts

Script Arguments

0hexEncodedTxString
f8ee8314a0ea8405f5e100833cfa3994398343f6a90469c30927af4377d564cc3ba3f10580b8842a3774a20000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008205faa0532fb0162aae0ec88af581a223fb9d983dcbcf2227123156e32610619ad007b4a01f8bae30e3b3b0bfba302e6df861b4fc78b09f340d0f455b16124c0e8385178e

Cadence Script

1import EVM from 0xe467b9dd11fa00df
2
3transaction(hexEncodedTx: String, coinbase: String) {
4    execute {
5        let txResult = EVM.run(
6            tx: hexEncodedTx.decodeHex(),
7            coinbase: EVM.addressFromString(coinbase)
8        )
9        assert(
10            txResult.status == EVM.Status.failed || txResult.status == EVM.Status.successful,
11            message: "evm_error=".concat(txResult.errorMessage).concat("\n")
12        )
13    }
14}