ETH Price: $3,797.19 (-1.40%)

Transaction Decoder

Block:
21214727 at Nov-18-2024 12:53:11 PM +UTC
Transaction Fee:
0.0005941233746784 ETH $2.26
Gas Used:
46,564 Gas / 12.7592856 Gwei

Emitted Events:

347 MOJO.Approval( owner=[Sender] 0xec53bef70b636d75290eeaa416b7e1f7fb0271ab, spender=0x00000000...43aC78BA3, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x07DDaCf3...7BDC9F847
(Titan Builder)
14.392568896186811265 Eth14.392665126751905201 Eth0.000096230565093936
0xEc53beF7...7FB0271ab
0.01837459675196079 Eth
Nonce: 340
0.01778047337728239 Eth
Nonce: 341
0.0005941233746784

Execution Trace

MOJO.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, 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