From 70d407230be1162330c2c64a866ce367dc20bd37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20=C5=A0kvorc?= Date: Mon, 15 Oct 2018 13:02:03 +0200 Subject: [PATCH] Old link to StandardToken is dead (#1451) * Old link to StandardToken is dead OpenZeppelin removed StandardToken. It is now all in `ERC20.sol`, with the interface having been moved into `IERC20.sol` * Changed links to be readable + to link to commits --- EIPS/eip-20.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EIPS/eip-20.md b/EIPS/eip-20.md index 29f5796e..12943e60 100644 --- a/EIPS/eip-20.md +++ b/EIPS/eip-20.md @@ -173,8 +173,8 @@ There are already plenty of ERC20-compliant tokens deployed on the Ethereum netw Different implementations have been written by various teams that have different trade-offs: from gas saving to improved security. #### Example implementations are available at -- https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/token/ERC20/ERC20.sol -- https://github.com/ConsenSys/Tokens/blob/master/contracts/eip20/EIP20.sol +- [OpenZeppelin implementation](https://github.com/OpenZeppelin/openzeppelin-solidity/blob/9b3710465583284b8c4c5d2245749246bb2e0094/contracts/token/ERC20/ERC20.sol) +- [ConsenSys implementation](https://github.com/ConsenSys/Tokens/blob/fdf687c69d998266a95f15216b1955a4965a0a6d/contracts/eip20/EIP20.sol)