Transaction Hash:
Block:
21914663 at Feb-24-2025 07:22:11 AM +UTC
Transaction Fee:
0.000035123339999216 ETH
$0.15
Gas Used:
46,396 Gas / 0.757033796 Gwei
Emitted Events:
324 |
MOJO.Approval( owner=[Sender] 0x18ad72b9f727c34c896d5acd64c3f627ce5562c9, spender=0x11111112...73A960582, value=1199903741404382552237776876869 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x07DDaCf3...7BDC9F847 | |||||
0x18ad72B9...7cE5562C9 |
0.010559418792270274 Eth
Nonce: 65
|
0.010524295452271058 Eth
Nonce: 66
| 0.000035123339999216 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 15.642706713947791797 Eth | 15.642711353547791797 Eth | 0.0000046396 |
Execution Trace
MOJO.approve( spender=0x1111111254EEB25477B68fb85Ed929f73A960582, amount=1199903741404382552237776876869 ) => ( 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);