Transaction Hash:
Block:
21509398 at Dec-29-2024 04:43:47 PM +UTC
Transaction Fee:
0.00030209998201152 ETH
$0.78
Gas Used:
46,312 Gas / 6.52314696 Gwei
Emitted Events:
369 |
MOJO.Approval( owner=[Sender] 0x13cc8f37f749b5078090a42aebef09d569888cc6, spender=0x00000000...072C22734, value=101171095903521620000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x07DDaCf3...7BDC9F847 | |||||
0x13CC8F37...569888CC6 |
0.007886826474109119 Eth
Nonce: 520
|
0.007584726492097599 Eth
Nonce: 521
| 0.00030209998201152 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 11.221046289268078556 Eth | 11.221050920468078556 Eth | 0.0000046312 |
Execution Trace
MOJO.approve( spender=0x0000000000001fF3684f28c67538d4D072C22734, amount=101171095903521620000000000000 ) => ( 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);