EVMSEALEDEVM
●$□◇%╱░▪╳#*#□%^&~□^^*╲#*■#░$%╲?○●◇#~╳□@●●□&█!■░~╲%●?%▒■%@▫╱#&■█~
Transaction ID
Execution Fee
0.00086 FLOWTransaction Summary
EVMCalled FungibleToken, FlowToken, EVM
Contracts
Script Arguments
0rlpEncodedTransaction[UInt8]
[ "248", "201", "129", "234", "128", "132", "1", "0", "0", "0", "148", "43", "124", "254", "15", "36", "193", "134", "144", "164", "227", "74", "21", "78", "49", "56", "89", "183", "198", "227", "66", "128", "184", "100", "66", "132", "46", "14", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "49", "234", "209", "82", "19", "132", "204", "169", "57", "118", "184", "77", "58", "105", "187", "113", "160", "145", "158", "32", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "49", "234", "209", "82", "19", "132", "204", "169", "57", "118", "184", "77", "58", "105", "187", "113", "160", "145", "158", "32", "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", "226", "0", "0", "3", "132", "103", "130", "5", "250", "160", "33", "41", "18", "242", "3", "67", "67", "138", "43", "241", "66", "27", "119", "206", "76", "154", "14", "17", "231", "197", "6", "232", "254", "38", "44", "113", "239", "255", "151", "118", "99", "130", "160", "72", "27", "60", "57", "66", "132", "203", "141", "227", "18", "220", "250", "212", "220", "3", "86", "171", "235", "105", "255", "147", "151", "221", "152", "104", "22", "211", "212", "253", "63", "169", "128" ]
1coinbaseAddrString
Cadence Script
1// Flow Wallet Monorepo - mainnet Script - eoaCallContract - Extension - 3.1.11
2// Platform: extension - 3.1.11 - local
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}