Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
CryptoDappRun authored Jan 15, 2023
0 parents commit 3b56b8b
Show file tree
Hide file tree
Showing 32 changed files with 2,362 additions and 0 deletions.
58 changes: 58 additions & 0 deletions README.md
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

6 changes: 6 additions & 0 deletions css/bootstrap.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions css/bootstrap.min.css.map

Large diffs are not rendered by default.

Binary file added favicon.ico
Binary file not shown.
Binary file added fonts/glyphicons-halflings-regular.eot
Binary file not shown.
288 changes: 288 additions & 0 deletions fonts/glyphicons-halflings-regular.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fonts/glyphicons-halflings-regular.ttf
Binary file not shown.
Binary file added fonts/glyphicons-halflings-regular.woff
Binary file not shown.
Binary file added fonts/glyphicons-halflings-regular.woff2
Binary file not shown.
Binary file added img/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/lang.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
865 changes: 865 additions & 0 deletions index.html

Large diffs are not rendered by default.

96 changes: 96 additions & 0 deletions js/AllTokens.js

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions js/bootstrap.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions js/bootstrap.min.css.map

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions js/bootstrap.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions js/bootstrap.min.js.map

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions js/config.js
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;
94 changes: 94 additions & 0 deletions js/contract.js
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";
2 changes: 2 additions & 0 deletions js/jquery.min.js

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions js/scan.js
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",





};


2 changes: 2 additions & 0 deletions js/sweetAlert.js

Large diffs are not rendered by default.

Loading

0 comments on commit 3b56b8b

Please sign in to comment.