ETH Price: $2,787.23 (+3.63%)
Gas: 1.64 Gwei

Transaction Decoder

Block:
21880014 at Feb-19-2025 11:08:35 AM +UTC
Transaction Fee:
0.00002755321732806 ETH $0.08
Gas Used:
24,340 Gas / 1.132013859 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x07DDaCf3...7BDC9F847
(beaverbuild)
13.261959195499985399 Eth13.261971365499985399 Eth0.00001217
0x966c5496...9a02F4B9f
7.042914306894398933 Eth
Nonce: 12041
7.042886753677070873 Eth
Nonce: 12042
0.00002755321732806

Execution Trace

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