Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ethtoken.py

This is a tiny library leveraging web3.py to make an interface for
working with [EIP20](https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md)
working with [EIP20](https://eips.ethereum.org/EIPS/eip-20)
tokens on Ethereum. (formerly ERC20)

**It is currently in Alpha, with 0 automated tests**
Expand Down
2 changes: 1 addition & 1 deletion ethtoken/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def eip20_tokenBalanceOf(token, address):
def eip20_token(address, w3=None, **kwargs):
'''
:param address: `EIP20
<https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md>`_
<https://eips.ethereum.org/EIPS/eip-20>`_
token contract
:type address: ENS name or hex str
:param `Web3 <http://web3py.readthedocs.io/en/latest/quickstart.html#using-web3>`_ w3:
Expand Down