Created
October 4, 2023 02:21
-
-
Save Violet-Bora-Lee/ac4aea969ad3fbef8a917b0e3637316c to your computer and use it in GitHub Desktop.
솔리디티 매핑 연습
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.10; | |
contract Whitelist { | |
// 화이트 리스트에 등록된 사람을 관리하는 용도의 map작성 | |
// mapping 변수 선언 | |
// 화이트 리스트에 특정 주소를 등록시키는 함수 선언 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment