Transaction Hash:
Block:
22514448 at May-19-2025 03:51:47 AM +UTC
Transaction Fee:
0.000160008811932384 ETH
$0.40
Gas Used:
46,624 Gas / 3.431897991 Gwei
Emitted Events:
259 |
MOJO.Approval( owner=[Sender] 0x38c2527031c96a4c28bd009ea12c939db3c824f8, spender=0x80a64c6D...c1FCd5d9e, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x07DDaCf3...7BDC9F847 | |||||
0x38c25270...db3C824F8 |
0.58641261843087187 Eth
Nonce: 3970
|
0.586252609618939486 Eth
Nonce: 3971
| 0.000160008811932384 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 8.147846699967807998 Eth | 8.147986571967807998 Eth | 0.000139872 |
Execution Trace
MOJO.approve( spender=0x80a64c6D7f12C47B7c66c5B4E20E72bc1FCd5d9e, 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);