ETH Price: $2,660.95 (+3.26%)

Transaction Decoder

Block:
19402338 at Mar-10-2024 04:34:11 AM +UTC
Transaction Fee:
0.002373985739846824 ETH $6.32
Gas Used:
47,224 Gas / 50.270746651 Gwei

Emitted Events:

96 QorpoToken.Approval( owner=[Sender] 0x046a2b551796123687a1e8a144960334fdfe205b, spender=0x881D4023...dC08D300C, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
(Fee Recipient: 0x003a...1a2)
1,026.243801568888973128 Eth1,026.24380566206260772 Eth0.000004093173634592
0x046A2b55...4fdFe205b
0.031985973458488362 Eth
Nonce: 120
0.029611987718641538 Eth
Nonce: 121
0.002373985739846824
0x22514fFb...179FAA940

Execution Trace

QorpoToken.approve( spender=0x881D40237659C251811CEC9c364ef91dC08D300C, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//SPDX-License-Identifier: MIT
pragma solidity 0.8.22;
struct SetConfigParam {
uint32 eid;
uint32 configType;
bytes config;
}
interface IMessageLibManager {
struct Timeout {
address lib;
uint256 expiry;
}
event LibraryRegistered(address newLib);
event DefaultSendLibrarySet(uint32 eid, address newLib);
event DefaultReceiveLibrarySet(uint32 eid, address newLib);
event DefaultReceiveLibraryTimeoutSet(
uint32 eid,
address oldLib,
uint256 expiry
);
event SendLibrarySet(address sender, uint32 eid, address newLib);
event ReceiveLibrarySet(address receiver, uint32 eid, address newLib);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX