EVMSEALEDEVM

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

Transaction ID

Timestamp

Feb 12, 2026, 09:20:47 AM UTC
2w ago

Block Height

141,961,160

Computation

0

Execution Fee

0.00086 FLOW

Transaction Summary

EVM

Called FungibleToken, FlowToken, EVM

EVM Hash
0x4e660a7eae3a49d4857dd60f078d09fe836d4d3c73dd261657512c594350e489

Script Arguments

0rlpEncodedTransaction[UInt8]
[
  "248",
  "169",
  "129",
  "142",
  "128",
  "132",
  "1",
  "0",
  "0",
  "0",
  "148",
  "42",
  "171",
  "234",
  "32",
  "88",
  "181",
  "172",
  "45",
  "51",
  "155",
  "22",
  "60",
  "106",
  "182",
  "242",
  "182",
  "213",
  "58",
  "171",
  "237",
  "128",
  "184",
  "68",
  "169",
  "5",
  "156",
  "187",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "96",
  "194",
  "243",
  "79",
  "247",
  "28",
  "184",
  "230",
  "172",
  "99",
  "13",
  "123",
  "34",
  "198",
  "183",
  "169",
  "29",
  "178",
  "62",
  "199",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "0",
  "107",
  "56",
  "30",
  "37",
  "130",
  "5",
  "250",
  "160",
  "133",
  "16",
  "57",
  "97",
  "119",
  "212",
  "106",
  "204",
  "54",
  "103",
  "158",
  "180",
  "72",
  "143",
  "113",
  "48",
  "93",
  "111",
  "9",
  "61",
  "232",
  "209",
  "4",
  "49",
  "191",
  "190",
  "13",
  "17",
  "188",
  "254",
  "240",
  "50",
  "160",
  "54",
  "146",
  "206",
  "63",
  "233",
  "84",
  "28",
  "17",
  "85",
  "96",
  "151",
  "127",
  "183",
  "228",
  "23",
  "10",
  "159",
  "80",
  "37",
  "59",
  "242",
  "122",
  "47",
  "232",
  "95",
  "122",
  "245",
  "151",
  "55",
  "108",
  "142",
  "69"
]

Cadence Script

1// Flow Wallet Monorepo - mainnet Script - eoaCallContract - Extension - 3.1.10
2// Platform: extension - 3.1.10 - 2477
3
4import FungibleToken from 0xf233dcee88fe0abe
5import FlowToken from 0x1654653399040a61
6import EVM from 0xe467b9dd11fa00df
7
8transaction(rlpEncodedTransaction: [UInt8],  coinbaseAddr: String) {
9
10    prepare(signer: auth(Storage, EVM.Withdraw) &Account) {
11        let coinbase = EVM.addressFromString(coinbaseAddr)
12
13        let runResult = EVM.run(tx: rlpEncodedTransaction, coinbase: coinbase)
14        assert(
15            runResult.status == EVM.Status.successful,
16            message: "evm tx was not executed successfully."
17        )
18    }
19    
20    execute {
21    }
22}