Transaction Hash:
Block:
20236416 at Jul-04-2024 11:26:47 PM +UTC
Transaction Fee:
0.0006536944110164 ETH
$1.72
Gas Used:
72,650 Gas / 8.997858376 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x07DDaCf3...7BDC9F847 | |||||
0x7D11aE26...ECF46249e |
0.067254424680180503 Eth
Nonce: 4
|
0.066600730269164103 Eth
Nonce: 5
| 0.0006536944110164 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 7.979323543410381123 Eth | 7.979463089530381123 Eth | 0.00013954612 |
Execution Trace
MOJO.CALL( )
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);