smart-contract to create multiple erc20 token
Audit Dao team
Total Award
Total 700,000 ADAO
(Be entitled to get tokens for each quest you submit. Answer more quests! )
Until January 31, 2022 at 23:59 UTC
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.9;
contract TokenFactory {
//Counting how many kind of created tokens
function tokensCount
//Creating new erc20 token
function createNewToken
//Requesting Each created token amount
function tokenTotalSupply
}