-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 3b56b8b
Showing
32 changed files
with
2,362 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
TokenFactory | ||
Issuing your own cryptocurrency token on the Ethereum,Binance and all EVM Blockchain with One-Click. | ||
Support Mintable,Pausable,Capped,Burnable,USDT and multi Function ERC20 Tokens,BEP20 token.Create Token,Generate Token Defi DAPP | ||
|
||
Support All the EVM-compatible blockchains: | ||
You can deploy these token to any Ethereum Virtual Machine Blockchain, like: Ethereum,Binance,Polygon,Fantom,Avalanche,Thundercore,avax,Harmony,Moonriver,Ubiq,Arbitrum,Theta,Wegochain,Akroma,moonriver,Moonbeam,telos,cronos,celo... | ||
And you could also deploy these token to any test network,like: Ropsten,Kovan,Rinkby and Binance testnet... | ||
|
||
|
||
<img src="https://github.com/AlgoCryptoDapp/Token-Factory/blob/main/website.png?raw=true"> | ||
|
||
|
||
Website1: https://erc20tokenfactory.netlify.app<br> | ||
Website2:https://algocryptodapp.github.io/Token-Factory/<br> | ||
Website3:https://dapp404.com/Token-Factory<br> | ||
|
||
|
||
Tutorial Video:<br> | ||
https://youtu.be/37eDqbnDKhI<br> | ||
|
||
|
||
|
||
Support network: | ||
https://algocryptodapp.github.io/Blockchain-To-Metamask/ | ||
|
||
イーサリアムERC20トークンのワンクリック発行<br> | ||
การออกโทเค็น Ethereum ERC20 เพียงคลิกเดียว<br> | ||
以太坊/以太坊相似 ERC20代币一键发币<br> | ||
صدور نشانه های Ethereum ERC20 با یک کلیک | ||
|
||
ERC20 token | ||
### Support Language: | ||
English | ||
简体中文 | ||
русский | ||
한국어 | ||
日本語 | ||
ไทย | ||
|
||
فارسی | ||
|
||
### Need Earn cryptocurrency? | ||
1.Download this project,put to any web server.<br> | ||
2.Open js/config.js<br> | ||
3.Change the address to your own address,customize fee you will recieve. then start earn cryptocurrency!<br> | ||
|
||
Tips<br> | ||
After modifying the address, please refresh the website to visit after more than ten minutes, because the github cache or website may not have been changed, so the charging address is still the previous address.<br> | ||
You can also Deploy to your github page | ||
https://github.com/AlgoCryptoDapp/Page | ||
|
||
You can deployed this source to any server and change the brand name without my approve. | ||
Buy Cryptocurrency: | ||
https://www.mimi.exchange/ | ||
|
||
Token Airdop: | ||
https://github.com/AlgoCryptoDapp/Bee-Sender | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||
// 1.change this address to your own address | ||
// 2.set how much fee you will recieve,for example:0.01 | ||
// 3.client total fee= contract small fee + your setting fee | ||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||
|
||
var FeeReciever = "0xEAc8555E83919Cedc065849b0FDc843bC03EFd4d"; | ||
|
||
|
||
var BinanceFee=0.01; | ||
var PolygonFee=0.1; | ||
var FantomFee=0.12; | ||
var RopstenFee=0.001; | ||
var HuobiFee=0.01; | ||
var AvalancheFee=0.1; | ||
var EthereumFee=0.01; | ||
var CronosFee=3; | ||
var PhoenixFee=0.1; | ||
var CandleFee=1; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
var FixGenerateContractABI = [ | ||
{ | ||
"constant": false, | ||
"inputs": [ | ||
{ | ||
"internalType": "string", | ||
"name": "_name", | ||
"type": "string" | ||
}, | ||
{ | ||
"internalType": "string", | ||
"name": "_symbol", | ||
"type": "string" | ||
}, | ||
{ | ||
"internalType": "uint8", | ||
"name": "_decimals", | ||
"type": "uint8" | ||
}, | ||
{ | ||
"internalType": "uint256", | ||
"name": "_supplyAmount", | ||
"type": "uint256" | ||
}, | ||
{ | ||
"internalType": "uint256", | ||
"name": "_cap", | ||
"type": "uint256" | ||
} | ||
], | ||
"name": "generate", | ||
"outputs": [], | ||
"payable": true, | ||
"stateMutability": "payable", | ||
"type": "function" | ||
}, | ||
{ | ||
"inputs": [], | ||
"payable": false, | ||
"stateMutability": "nonpayable", | ||
"type": "constructor" | ||
}, | ||
{ | ||
"anonymous": false, | ||
"inputs": [ | ||
{ | ||
"indexed": false, | ||
"internalType": "string", | ||
"name": "item", | ||
"type": "string" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "address", | ||
"name": "addr", | ||
"type": "address" | ||
} | ||
], | ||
"name": "LogAddress", | ||
"type": "event" | ||
}, | ||
{ | ||
"constant": false, | ||
"inputs": [ | ||
{ | ||
"internalType": "uint256", | ||
"name": "_fee", | ||
"type": "uint256" | ||
} | ||
], | ||
"name": "setFee", | ||
"outputs": [], | ||
"payable": false, | ||
"stateMutability": "nonpayable", | ||
"type": "function" | ||
}, | ||
{ | ||
"constant": true, | ||
"inputs": [], | ||
"name": "fee", | ||
"outputs": [ | ||
{ | ||
"internalType": "uint256", | ||
"name": "", | ||
"type": "uint256" | ||
} | ||
], | ||
"payable": false, | ||
"stateMutability": "view", | ||
"type": "function" | ||
} | ||
] ; | ||
|
||
var FixGenerateContractAddress = "0xc55B277eba555f5a251eD736c943c2ba7a6FD2E9"; |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
var ScanInfo = { | ||
"1": "https://etherscan.io", | ||
"3": "https://ropsten.etherscan.io", | ||
"4": "https://rinkeby.etherscan.io", | ||
"5": "https://goerli.etherscan.io", | ||
|
||
|
||
|
||
|
||
|
||
}; | ||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.