add eth token material

This commit is contained in:
yuanjunjie 2020-02-17 11:24:33 +08:00
parent 561721a01f
commit fb1f96f740

View File

@ -11,50 +11,49 @@ The blockchain is an incorruptible digital ledger of economic transactions that
## Contents
<details><summary>Click to expand</summary>
- [Awesome Blockchain](#Awesome-Blockchain)
- [Contents](#Contents)
- [Frequently Asked Questions (F.A.Q.s) & Answers](#Frequently-Asked-Questions-FAQs--Answers)
- [Basic Introduction](#Basic-Introduction)
- [Encryption knowledge](#Encryption-knowledge)
- [Consensus](#Consensus)
- [Account and transaction model](#Account-and-transaction-model)
- [Exchange](#Exchange)
- [Applications](#Applications)
- [Governance](#Governance)
- [Digital currency ranking](#Digital-currency-ranking)
- [Development Tutorial](#Development-Tutorial)
- [BitCoin](#BitCoin)
- [Ethereum](#Ethereum)
- [Consortium Blockchain](#Consortium-Blockchain)
- [Fabric](#Fabric)
- [FISCO-BCOS](#FISCO-BCOS)
- [Releated Tools](#Releated-Tools)
- [Solidity](#Solidity)
- [Awesome Blockchain](#awesome-blockchain)
- [Contents](#contents)
- [Frequently Asked Questions (F.A.Q.s) & Answers](#frequently-asked-questions-faqs--answers)
- [Basic Introduction](#basic-introduction)
- [Consensus](#consensus)
- [Account and transaction model](#account-and-transaction-model)
- [Exchange](#exchange)
- [Applications](#applications)
- [Governance](#governance)
- [Digital currency ranking](#digital-currency-ranking)
- [Development Tutorial](#development-tutorial)
- [BitCoin](#bitcoin)
- [Ethereum](#ethereum)
- [Consortium Blockchain](#consortium-blockchain)
- [Fabric](#fabric)
- [FISCO-BCOS](#fisco-bcos)
- [Releated Tools](#releated-tools)
- [Solidity](#solidity)
- [truffle](#truffle)
- [web3.js](#web3js)
- [Implementation of Blockchain](#Implementation-of-Blockchain)
- [Projects and Applications](#Projects-and-Applications)
- [Quorum](#Quorum)
- [Monero](#Monero)
- [IOTA](#IOTA)
- [EOS](#EOS)
- [IPFS](#IPFS)
- [Filecoin](#Filecoin)
- [BigchainDB](#BigchainDB)
- [BitShares](#BitShares)
- [Further Extension](#Further-Extension)
- [Papers](#Papers)
- [Books](#Books)
- [Applications](#Applications-1)
- [Identity Applications](#Identity-Applications)
- [Public Blockchain Identity](#Public-Blockchain-Identity)
- [Blockchain as a collateral](#Blockchain-as-a-collateral)
- [Unclear](#Unclear)
- [Guidance](#Guidance)
- [Internet of Things Applications](#Internet-of-Things-Applications)
- [Energy Applications](#Energy-Applications)
- [Media and Journalism](#Media-and-Journalism)
- [Contribute](#Contribute)
- [Implementation of Blockchain](#implementation-of-blockchain)
- [Projects and Applications](#projects-and-applications)
- [Quorum](#quorum)
- [Monero](#monero)
- [IOTA](#iota)
- [EOS](#eos)
- [IPFS](#ipfs)
- [Filecoin](#filecoin)
- [BigchainDB](#bigchaindb)
- [BitShares](#bitshares)
- [Further Extension](#further-extension)
- [Papers](#papers)
- [Books](#books)
- [Applications](#applications-1)
- [Identity Applications](#identity-applications)
- [Public Blockchain Identity](#public-blockchain-identity)
- [Blockchain as a collateral](#blockchain-as-a-collateral)
- [Unclear](#unclear)
- [Guidance](#guidance)
- [Internet of Things Applications](#internet-of-things-applications)
- [Energy Applications](#energy-applications)
- [Media and Journalism](#media-and-journalism)
- [Contribute](#contribute)
</details>
@ -233,15 +232,17 @@ These apps run on a custom built **blockchain, an enormously powerful shared glo
- [Ethash C API Example Usage](https://github.com/ethereum/wiki/wiki/Ethash-C-API)
- [Accounts, Transactions, Gas, and Block Gas Limits in Ethereum](https://hudsonjameson.com/2017-06-27-accounts-transactions-gas-ethereum/)
- [Ethereum Improvement Proposals](https://eips.ethereum.org/)
- [Important EIPs and ERCs](https://github.com/ethereumbook/ethereumbook/blob/develop/appdx-standards-eip-erc.asciidoc#table-of-most-important-eips-and-ercs)
- [Important EIPs and ERCs](https://github.com/ethereumbook/ethereumbook/blob/develop/appdx-standards-eip-erc.asciidoc#table-of-most-important-eips-and-ercs) / [EIP list](https://github.com/ethereum/EIPs)
- Security
- [Ethereum Smart Contract Security Best Practices](https://consensys.github.io/smart-contract-best-practices/) / [Chinese version](https://github.com/ConsenSys/smart-contract-best-practices/blob/master/README-zh.md)
- [Onward with Ethereum Smart Contract Security](https://blog.zeppelin.solutions/onward-with-ethereum-smart-contract-security-97a827e47702)
- [The Hitchhiker's Guide to Smart Contracts in Ethereum](https://blog.zeppelin.solutions/the-hitchhikers-guide-to-smart-contracts-in-ethereum-848f08001f05)
- [**OpenZeppelin**](https://openzeppelin.org/)
- [**ZeppelinOS**](https://zeppelinos.org/)
- [**OpenZeppelin**](https://docs.openzeppelin.com/openzeppelin/)
- [**openzeppelin contracts**](https://github.com/OpenZeppelin/openzeppelin-contracts) / [doc](https://docs.openzeppelin.com/contracts/2.x/)
- [openzepplin sdk](https://github.com/OpenZeppelin/openzeppelin-sdk)
- Token
- [ERC20](https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md)
- [ERC20](https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md) / [impl](https://github.com/OpenZeppelin/openzeppelin-contracts/tree/master/contracts/token/ERC20)
- [ERC721](https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md) / [impl](https://github.com/OpenZeppelin/openzeppelin-contracts/tree/master/contracts/token/ERC721)
+ Utils
+ [Ethereum Blockchain Explorer](https://etherscan.io/)