- Notifications
You must be signed in to change notification settings - Fork97
bokkypoobah/Tokens
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
A collection of token contracts, and how to deploy these contracts using Remix and MyEtherWallet.
- Mainnet Token Contracts
- BitFwd Token
- LEIA Save Princess Leia Peach Rainbow Vomit Cat ICO Token
- SEANTest Token On Ropsten
- Fixed Supply Token
- My Token
- How To Deploy Using Remix And MyEtherWallet Without Libraries
- How To Deploy Using Remix And MyEtherWallet With A Library
- Airdropping Tokens
- Registering Your Token Contract
- References
SeeMainnet-token-contracts-20180610 for a list of token contracts, where the addresses are from EtherDelta's token contract list @ June 10 2018, and the associated source code has been scraped from EtherScan's validated source code listing.
A token that is mintable by the owner, until thedisableMinting() is executed. This token contract requires theSafeMath libraryto be deployed before deploying the main token contract.
Deployed Nov 22 2017, and transferred ownership to 0x8f629ee1659E89958678F716a4f452B20fCbD8c5 .
- SafeMath library deployed to0x8a162Ee391Dc6103Da716c56C017D08391c48423
- BitFwdToken deployed to0xe199C41103020a325Ee17Fd87934dfe7Ac747AD4
A crowdsale/token contract that generates 1,000 tokens per ETH received, but all contributed ETH is returned to the calling account immediately.This crowdsale/token contract requires theSafeMath library to be deployed before deploying the main crowdsale/token contract.
- SafeMath library deployed to0x7c9801326a2A8394e45dBAcC115c975381A693aE
- SavePrincessLeiaPeachRainbowVomitCatICOToken.sol deployed to0x96E2fFDdd5aaB73dEf197df5fDC4653a72976837
A token contract that premines 100,000 tokens and assigns these tokens to a particular account. No library linking is requiredfor this token contract as thelibrary SafeMath has been converted tocontract SafeMath.
A fixed supply token contract that allocates 1,000,000 FIXED tokens to the token contract owner on deployment. No library linking is required.
See the instruction directly below to deploy this contract to the Ropsten Testnet.
A token contract that accepts ETH and generates 1,000 tokens per ETH with a 20% bonus in the first week. No library linking is requiredfor this token contract as thelibrary SafeMath has been converted tocontract SafeMath.
See the instruction directly below to deploy this contract to the Ropsten Testnet.
If deploying on Ropsten, select the Ropsten network in MEW, and use the Ropsten EtherScan
- Compile code in Remix
- Load code inhttp://remix.ethereum.org/
- In the Compile tab, select the token contract unit
- Click on Details
- Copy the Bytecode
- Deploy using MyEtherWallet
- Browsehttps://www.myetherwallet.com/
- Select the Contracts tab
- Click on Deploy Contract
- Paste the Bytecode into the Byte Code field
- Access your wallet, generate the transaction and send the transaction
- Verify in EtherScan
- Browsehttps://etherscan.io/
- Search for the latest transaction in your account
- Click on the address of the newly deployed contract
- Verify the source
- Make sure the compiler version matches the Remix compiler version
- Make sure the optimisation flag matches the Remix optimiser flag setting
- Perform the steps above initially for the SafeMath library unit
- Perform the steps above for the token contract, but
- Copy the bytecode from Remix, replace all occurrence of
__*__with the deployment address of the SafeMath library, without the0xprefix - Deploy the bytecode
- Copy the bytecode from Remix, replace all occurrence of
- When verifying in EtherScan
- Add the library
:SafeMathwith the address of the SafeMath library
- Add the library
A sample script is available inscripts/airdropLEIA.sh
The Parity registry is a do-it-yourself token registration. MEW and EtherScan requires someone to process your request, so restrict yourrequest to more important tokens.
- Parity (do-it-youself)
- MyEtherWallet
- EtherScan
- Remix - Solidity IDE
- Solidity
- Ethereum Smart Contract Security Best Practices
- Ethereum.StackExchange.com
Enjoy. (c) BokkyPooBah / Bok Consulting Pty Ltd 2017. The MIT Licence.
About
Tokens, Tokens, Tokens
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.