Skip to main content
PulseScanner.io

Address

0xbcd7254a1d759efa08ec7c3291b2e85c5dcc12ce
Current Holdings
$0.0682
TXs sent
not counted
First Active
2023-05-18
block 17,296,156
Last Active
279 days ago
block 25,235,003
Funded By
not identified

Net worth historyi

15 snapshots · to block 25,235,199
exact matchFeeSharingSystemsolc 0.8.7+commit.e28d00a7runtime exact · creation exact
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";

interface ILooksRareToken is IERC20 {
    function SUPPLY_CAP() external view returns (uint256);

    function mint(address account, uint256 amount) external returns (bool);
}