|
14 | 14 | [](https://zenodo.org/badge/latestdoi/298646404) |
15 | 15 |
|
16 | 16 |
|
17 | | -A minimal, yet complete, Python API for[Etherscan.io](https://etherscan.io/). All standard and pro endpoints are provided. |
| 17 | +A minimal, yet complete, Python API for[Etherscan.io](https://etherscan.io/). All standard and pro endpoints are provided. Görli, Kovan, Rinkeby and Ropsten endpoints are supported. |
18 | 18 |
|
19 | 19 | Available on[PyPI](https://pypi.org/project/etherscan-python/). Powered by[Etherscan.io APIs](https://etherscan.io/apis#misc). |
20 | 20 |
|
@@ -193,6 +193,10 @@ eth.get_eth_balance(address="0xddbd2b932c763ba5b1b7ae3b362eac3e8d40121a") |
193 | 193 |
|
194 | 194 | >'40891631566070000000000' |
195 | 195 | ``` |
| 196 | +You can also choose one of the other testnets: |
| 197 | +``` python |
| 198 | +eth = Etherscan(YOUR_API_KEY, net="ropsten")# net name is case-insensitive, default is main |
| 199 | +``` |
196 | 200 |
|
197 | 201 | ## Examples |
198 | 202 |
|
|