ETH Price: $2,516.18 (+0.53%)

Transaction Decoder

Block:
21948747 at Mar-01-2025 01:31:35 AM +UTC
Transaction Fee:
0.000057001838158204 ETH $0.14
Gas Used:
46,324 Gas / 1.230503371 Gwei

Emitted Events:

352 MOJO.Approval( owner=[Sender] 0x81c17a87e07d1ce5e67e1e5b2a9c06d89a46b1d9, spender=0x00000000...43aC78BA3, value=1775927999534410200000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x07DDaCf3...7BDC9F847
0x81c17A87...89a46B1d9
0.158508822489071162 Eth
Nonce: 1043
0.158451820650912958 Eth
Nonce: 1044
0.000057001838158204
(beaverbuild)
14.344098101240267604 Eth14.344121263240267604 Eth0.000023162

Execution Trace

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