Transaction Hash:
Block:
22514457 at May-19-2025 03:53:35 AM +UTC
Transaction Fee:
0.000250818095169576 ETH
$0.64
Gas Used:
46,612 Gas / 5.380976898 Gwei
Emitted Events:
18 |
MOJO.Approval( owner=[Sender] 0x72ebe5c6a1a4e6ff65355ee94f20102fac855306, spender=0x3A10dC1A...ff11a981F, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x07DDaCf3...7BDC9F847 | |||||
0x1f9090aa...8e676c326
Miner
| 5.078232590380096867 Eth | 5.078465650380096867 Eth | 0.00023306 | ||
0x72eBE5C6...FAC855306 |
0.019745490873354678 Eth
Nonce: 1324
|
0.019494672778185102 Eth
Nonce: 1325
| 0.000250818095169576 |
Execution Trace
MOJO.approve( spender=0x3A10dC1A145dA500d5Fba38b9EC49C8ff11a981F, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
1234567891011121314151617181920212223242526// https://mojotheoriginal.com// https://t.me/MojoByMattFurie// https://x.com/MojoByMattFurie// SPDX-License-Identifier: Unlicensedpragma 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/2691return 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);