ETH Price: $2,763.87 (+8.53%)

Transaction Decoder

Block:
22514475 at May-19-2025 03:57:11 AM +UTC
Transaction Fee:
0.000115140193223648 ETH $0.32
Gas Used:
46,624 Gas / 2.469547727 Gwei

Emitted Events:

207 MOJO.Approval( owner=[Sender] 0x42a3e43af681d9e60599ff1800d97a48f8fc9f31, spender=0xC465CC50...42A8e1873, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x07DDaCf3...7BDC9F847
0x42a3E43a...8F8FC9f31
1.553986691024384646 Eth
Nonce: 165
1.553871550831160998 Eth
Nonce: 166
0.000115140193223648
(Titan Builder)
6.585905755468829021 Eth6.585999003468829021 Eth0.000093248

Execution Trace

MOJO.approve( spender=0xC465CC50B7D5A29b9308968f870a4B242A8e1873, 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
// https://mojotheoriginal.com
// https://t.me/MojoByMattFurie
// https://x.com/MojoByMattFurie
// SPDX-License-Identifier: Unlicensed
pragma solidity 0.8.21;
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);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX