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.13; | |
| import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; | |
| /** | |
| * @dev ASM Genome Mining - PermissionControl contract | |
| */ |
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
| import ethers from 'ethers' | |
| import _ from 'underscore' | |
| import dotenv from 'dotenv' | |
| dotenv.config() | |
| const delay = (time) => { | |
| return new Promise((resolve) => setTimeout(resolve, time)) | |
| } |
OlderNewer