Giter VIP home page Giter VIP logo

ido-launchpad's Introduction

IDO Launchpad Token Contract Code (ETH, BSC)

Currency token contract code for IDO Launchpad on Ethereum and Binance Smart Chain blockchain networks.

Instructions Before Deployment

Before deployment, make sure to replace the following values accordingly in the solidity files:

For example for ERC20 currency token deployment on Ethereum, replace the following with your desired values in ERC20 Token Ethereum.sol

  1. At line 180, replace "YourToken" with your token contract name, e-g IDOToken. So the line will become

     contract IDOToken is ERC20, Ownable {
    
  2. At line 181, replace "TokenName" with your token name and "TokenSymbol" with your currency symbol, e-g "IDO Launchpad" and "IDO". So the line will become

     constructor () ERC20("IDO Launchpad", "IDO") {
    
  3. At line 182, replace TokenSupply with your token maximum supply, e-g for the maximum supply of 500 million tokens, replace with 500000000. So the line will become

     _mint(msg.sender, 500000000 * 10 ** uint(decimals()));
    
  4. Deploy the contract with the name replaced at line 181. Like in the example above, the contract to be deployed on Ethereum blockchain will be IDOToken.

  5. Follow the same steps 1 to 4 for BEP20 currency token deployment on Binance Smart Chain, replace the desired values in BEP20 Token Binance Smart Chain.sol

ido-launchpad's People

Contributors

jawadlord avatar

Stargazers

 avatar  avatar  avatar Patavix avatar Kiko Uehara avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar Ben avatar

Forkers

saruultugs tur461

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.