Transaction Hash:
Block:
21141910 at Nov-08-2024 09:05:11 AM +UTC
Transaction Fee:
0.000783508429262647 ETH
$2.31
Gas Used:
72,139 Gas / 10.861093573 Gwei
Emitted Events:
77 |
MOJO.Transfer( from=[Sender] 0x447044d52feb0b5cce0b87fd63073894b4e0713e, to=0xF6Be27Ed1EE33760487081CD1970e3C868a2d1Ef, value=1000000256167329718555757619187 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x07DDaCf3...7BDC9F847 | |||||
0x447044d5...4B4E0713E |
0.007151661971480931 Eth
Nonce: 101
|
0.006368153542218284 Eth
Nonce: 102
| 0.000783508429262647 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 6.415817491239599236 Eth | 6.415961769239599236 Eth | 0.000144278 |
Execution Trace
MOJO.transfer( recipient=0xF6Be27Ed1EE33760487081CD1970e3C868a2d1Ef, amount=1000000256167329718555757619187 ) => ( 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);