Transaction Hash:
Block:
22516519 at May-19-2025 10:49:23 AM +UTC
Transaction Fee:
0.00008313322485728 ETH
$0.21
Gas Used:
46,624 Gas / 1.78305647 Gwei
Emitted Events:
127 |
MOJO.Approval( owner=[Sender] 0xeb4f7ae6c22b9a2792655a4605f364db9c4638c7, spender=0x881D4023...dC08D300C, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x07DDaCf3...7BDC9F847 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 9.374012784678404094 Eth | 9.37405940867859059 Eth | 0.000046624000186496 | |
0xEB4F7aE6...B9c4638c7 |
0.046827314826598831 Eth
Nonce: 620
|
0.046744181601741551 Eth
Nonce: 621
| 0.00008313322485728 |
Execution Trace
MOJO.approve( spender=0x881D40237659C251811CEC9c364ef91dC08D300C, 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);