Giter Club home page Giter Club logo

awesome-tokens's Introduction

Token sales! Initial coin offerings (ICOs)! Free easy money!

Awesome (Get-Rich-Quick) Tokens

A collection on how to build / run / issue / mint / print your own awesome (get-rich-quick) tokens in five / twenty / ninety minutes.

Contributions welcome. Anything missing? Send in a pull request. Thanks.

Ethereum Standard #20 Token

ERC20 = Ethereum Request for Comments (ERC) #20 - Fungible Tokens

Intro

To create your very own token in five minutes you need four pieces:

Example
1. Name of the token Your Krypto Token
2. Token symbol (like a stock ticker) YOU
3. Token decimal places (making the token divisible) 2
4. Total number of tokens in circulation 2 100 000 000

That's it.

contract YourToken is StandardToken {
    string public constant name    = 'Your Krypto Token';
    string public constant symbol  = 'YOU';
    uint8 public constant decimals = 2;
    uint constant _initial_supply  = 2100000000;

    function YourToken() public {
        totalSupply_         = _initial_supply;
        balances[msg.sender] = _initial_supply;
        Transfer(address(0), msg.sender, _initial_supply);
    }
}

How-To Articles

How to deploy an ERC20 token in 20 minutes by Mason Fischer, November 2017

How to build your own Ethereum based ERC20 Token and launch an initial coin offering (ICO) in next 20 minutes by Sandeep Panda, December 2017

How to issue your own token on Ethereum in less than 20 minutes by Moritz Neto, December 2017

How to Launch an initial coin offering (ICO) Token on Ethereum in 90 Minutes by Joseph Raczynski, February 2018

How to do an initial coin offering (ICO) on Ethereum in less than 20 minutes by Moritz Neto, March 2018

The 2018 guide to writing (and testing) real world crowdsale contracts by Sandeep Panda, January 2018

Mastering Ethereum Book

Tokens by Andreas M. Antonopoulos, Gavin Wood, 2018

Official Ethereum Getting Started Guides

Token - Create your own Cryto Currency with Ethereum The Coin - Minimum Viable Token • The code • Understanding the code • Noticed the comments? • How to deploy ++ Improve your token - More basic functions • Centralized Administrator • Central Mint • Freezing of assets • Automatic selling and buying • Autorefill • Proof of Work ++ Improved Coin - Full coin code • Deploying ++ Now what?

Crowdsale - Create your own Crowdsale - Raising funds from friends without a third party Crowdfund your idea - Tokens and DAOs • The code • Code highlights • How to use • Raise funds ++ Extending the crowdsale - What if the crowdsale overshoots its target? • Unlimited crowdsale

Official Ethereum Standards

ERC-20 Token Standard, (Source) by Fabian Vogelsteller, Vitalik Buterin, 2015

Ethereum Standard #721 Token

ERC721 = Ethereum Request for Comments (ERC) #721 - Non Fungible Tokens (NFTs) / Unique Bits & Bytes (on the Blockchain)

See the Awesome CryptoCollectibles (& CryptoAssets) page »

More Articles / Books

Get Rich Quick "Business Blockchain" Bible - The Secrets of Free Easy Money - FREE (Online Version) - From Zero to Twenty Million in Three Weeks - 500 000+% Return on Investment (ROI) - Hot Air Token Sales - HODL! HODL! HODL! - To the Moon 📈📈📈 - To the Beach -- Step 1: Sell hot air. How? ++ Step 2: Pump up your tokens. How? ++ Step 3: Revolutionize the World. How? ++ Fast Exit Case Studies

Blockchain White Papers - The Art of the Deal / Steal - Scam Alert! Scam Alert! Scam Alert!

Welcome greater fools! Thanks for your money and HODLing the bag!

Blockchain Whitepapers includes Savedroid ($SVD) - Frankfurt (Germany)

Austrian Blockchain Whitepapers - the art of the steal / deal made in Austria - collection of token white papers on the blockchain includes Hero / Herocoin ($PLAY) by Byte Heroes; Lancer ($LNC) by Blocklancer; Rotharium ($RTH) by Crypto Future Pantos ($PAN) by Bitpanda Crowd ($CRWD) by Conda Cultural Coin ($CC) by Cultural Places / Oroundo Mobile

Awesome Awesomeness

A curated list of awesome lists.

  • Awesome Token Sale -- a curated list of token sale resources / (initial coin offerings) ICO resources

Meta

License

The awesome list is dedicated to the public domain. Use it as you please with no restrictions whatsoever.

awesome-tokens's People

Contributors

geraldb avatar

Watchers

 avatar

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.