Transaction Hash:
Block:
21948007 at Feb-28-2025 11:03:11 PM +UTC
Transaction Fee:
0.000037688002858735 ETH
$0.10
Gas Used:
55,039 Gas / 0.684750865 Gwei
Emitted Events:
2011 |
MOJO.Transfer( from=[Sender] 0xaeaf749ac3e3e9a4cadbade1e8f4d73b6bf31d7f, to=0x81c17A87e07D1cE5e67e1e5B2A9C06D89a46B1d9, value=1308946707651239128908006654287 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x07DDaCf3...7BDC9F847 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 12.53762571999732188 Eth | 12.53762588928407652 Eth | 0.00000016928675464 | |
0xAEaF749A...B6Bf31d7F |
0.248631762649047611 Eth
Nonce: 188
|
0.248594074646188876 Eth
Nonce: 189
| 0.000037688002858735 |
Execution Trace
MOJO.transfer( recipient=0x81c17A87e07D1cE5e67e1e5B2A9C06D89a46B1d9, amount=1308946707651239128908006654287 ) => ( 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);