Skip to content

Instantly share code, notes, and snippets.

View Elradave's full-sized avatar
💭
On a Road of Development

Elradave Elradave

💭
On a Road of Development
View GitHub Profile
@Elradave
Elradave / contracts...Whitelists.sol
Created November 2, 2025 14:14
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.30+commit.73712a01.js&optimize=false&runs=200&gist=
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;
contract Whitelist {
uint public wlCount;
mapping(address => bool) public checkWhiteList;
mapping(address => uint) nftCount;
uint public totalSupply = 10;
uint private mintPrice = 2 ether;