ETH Price: $3,751.00 (-3.49%)

Transaction Decoder

Block:
20926645 at Oct-09-2024 07:49:23 AM +UTC
Transaction Fee:
0.00046391447153337 ETH $1.74
Gas Used:
46,371 Gas / 10.00440947 Gwei

Emitted Events:

409 Contract.Approval( owner=[Sender] 0x5d2fcf5de2f9e78849b803045bbaf4c7482fe1ec, spender=0x40aA958d...a374bcD7f, value=1901335816163865021951711 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
9.668978656021666001 Eth9.669025490731666001 Eth0.00004683471
0x5d2fcf5d...7482fE1eC
0.00900186784734198 Eth
Nonce: 232
0.00853795337580861 Eth
Nonce: 233
0.00046391447153337
0x7E6AC186...5955db245

Execution Trace

Contract.approve( spender=0x40aA958dd87FC8305b97f2BA922CDdCa374bcD7f, amount=1901335816163865021951711 ) => ( 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
/*
https://github.com/petertodd/mobilecoin?tab=readme-ov-file
t.me/MobileCoinERC
*/
pragma solidity 0.8.27;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
interface IUniswapV2Pair {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX