Audit dao logo

TokenFactory

smart-contract to create multiple erc20 token

Audit dao logo

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


Licence:
SPDX-License-Identifier: GPL-3.0-or-later
Environment:
Version: Solidity v0.8.9

Question: Submit smart-contract to create multiple erc20 token.

Constraints:
* Contract name -> TokenFactory
* function name ->
* tokensCount
* createNewToken
* tokenTotalSupply

BaseCode:
// 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
}
Open Remix

or your favorite editer


Input Your solidity code