ETH Price: $3,563.87 (+2.25%)

Transaction Decoder

Block:
18819593 at Dec-19-2023 11:07:11 AM +UTC
Transaction Fee:
0.00755413617460848 ETH $26.92
Gas Used:
137,504 Gas / 54.937573995 Gwei

Emitted Events:

166 Molly.Transfer( from=[Receiver] Molly, to=[Sender] 0xd01777f28cbbb8b8bad19a99bb133b1af356490f, value=1303506249999999901368320 )

Account State Difference:

  Address   Before After State Difference Code
0x24289e2F...8045bC9B2
(Lido: Execution Layer Rewards Vault)
270.722588374213808328 Eth270.722602124613808328 Eth0.0000137504
0xd01777F2...Af356490f
0.183502786055343051 Eth
Nonce: 221
0.175948649880734571 Eth
Nonce: 222
0.00755413617460848

Execution Trace

Molly.claimPrivateSale( )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable2Step.sol";
/**
* @title Molly ERC20 Contract
*/
pragma solidity ^0.8.19;
interface IUniswapV2Factory {
event PairCreated(
address indexed token0,
address indexed token1,
address pair,
uint256
);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(
address tokenA,
address tokenB
) external view returns (address pair);
function allPairs(uint256) external view returns (address pair);
function allPairsLength() external view returns (uint256);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX