关于ERC20的Token学习Demo
https://github.com/ConsenSys/Tokens

maurelian e4e78a929c Update truffle and tests to error on Revert 6 éve
contracts 4aeb3b27e4 Update link to final ERC-20 6 éve
migrations e4e78a929c Update truffle and tests to error on Revert 6 éve
test b0231f3a8c Bumped to Truffle 4.0.5 and removed comment. 6 éve
.eslintrc.json ef4f7d2594 Improve eslint config, and some linting 6 éve
.gitignore 2d7a81c1ee Merge upstream repo here 6 éve
.solhint.json d091794a5d Float pragmas, clean up comments 6 éve
LICENSE 1c402f2ea1 Add explicit LICENSE file 8 éve
README.md 44690deef8 Fixing badge for issues 6 éve
ethpm.json 0bd7a7077e Bump to 1.0.0 6 éve
package-lock.json e4e78a929c Update truffle and tests to error on Revert 6 éve
package.json e4e78a929c Update truffle and tests to error on Revert 6 éve
truffle.js 413b9a8b52 Properly remove Babel. 6 éve

README.md

Tokens

Codeship Status for ConsenSys/Tokens license David [npm]() AirBNB GitHub issues

This repo contains Solidity smart contract code for simple, standards-compliant tokens on Ethereum. Adhering to standards allows other contract developers to easily incorporate your token into their applications.

The repo currently implements EIP20 tokens, and more may be added in the future.

Initialize

The only environmental dependency you need is Node. Presently we can guarantee this all works with Node 8.

npm install
npm run compile

Tests

The repo has a comprehensive test suite. You can run it with npm run test.

ethpm

The contracts in this repo are published under tokens on EPM. EPM is the recommended means of consuming token contracts in this repo. Copy-pasting code is highly discouraged.

Contributing

Pull requests are welcome! Please keep standards discussions to the EIP repos.

When submitting a pull request, please do so to the staging branch. For a pull request to be accepted, they must pass the test suite. If a pull request adds features, it should add test coverage for those features.