Skip to content

Commit 3e6c3f3

Browse files
author
pacrob
committed
remove rinkeby refs and replace with goerli where appropriate
1 parent 93a7af5 commit 3e6c3f3

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

docs/ethpm.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,8 @@ way through the EIP process)
243243
- ``chain_id``: Chain ID of the chain on which the registry lives. Defaults to Mainnet. Supported chains include...
244244

245245
- 1: Mainnet
246-
- 4: Rinkeby
247246
- 5: Goerli
247+
- 11155111: Sepolia
248248

249249
- ``package-name``: Must conform to the package-name as specified in
250250
the

docs/examples.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ like so:
683683
:code: python
684684
:start-line: 1
685685

686-
Using Infura Rinkeby Node
686+
Using Infura Goerli Node
687687
-------------------------
688688
Import your required libraries
689689

@@ -695,7 +695,7 @@ Initialize a web3 instance with an Infura node
695695

696696
.. code-block:: python
697697
698-
w3 = Web3(Web3.HTTPProvider("https://rinkeby.infura.io/v3/YOUR_INFURA_KEY"))
698+
w3 = Web3(Web3.HTTPProvider("https://goerli.infura.io/v3/YOUR_INFURA_KEY"))
699699
700700
701701
Inject the middleware into the middleware onion
@@ -728,7 +728,7 @@ And finally, send the transaction
728728
729729
Tip : afterwards you can use the value stored in ``txn_hash``, in an explorer like `etherscan`_ to view the transaction's details
730730

731-
.. _etherscan: https://rinkeby.etherscan.io
731+
.. _etherscan: https://goerli.etherscan.io
732732

733733

734734
Adjusting log levels

docs/middleware.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ Proof of Authority
373373
It's important to inject the middleware at the 0th layer of the middleware onion:
374374
`w3.middleware_onion.inject(geth_poa_middleware, layer=0)`
375375

376-
The ``geth_poa_middleware`` is required to connect to ``geth --dev`` or the Rinkeby
376+
The ``geth_poa_middleware`` is required to connect to ``geth --dev`` or the Goerli
377377
public network. It may also be needed for other EVM compatible blockchains like Polygon
378378
or BNB Chain (Binance Smart Chain).
379379

@@ -421,7 +421,7 @@ Why is ``geth_poa_middleware`` necessary?
421421

422422
There is no strong community consensus on a single Proof-of-Authority (PoA) standard yet.
423423
Some nodes have successful experiments running, though. One is go-ethereum (geth),
424-
which uses a prototype PoA for it's development mode and the Rinkeby test network.
424+
which uses a prototype PoA for it's development mode and the Goerli test network.
425425

426426
Unfortunately, it does deviate from the yellow paper specification, which constrains the
427427
``extraData`` field in each block to a maximum of 32-bytes. Geth's PoA uses more than

docs/troubleshooting.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ Faucet mechanisms tend to come and go, so if any information here is
111111
out of date, try the `Ethereum Stackexchange <https://ethereum.stackexchange.com/>`_.
112112
Here are some links to testnet ether instructions (in no particular order):
113113

114-
- `Rinkeby <https://www.rinkeby.io/#faucet>`_
115114
- `Goerli <https://goerli.net>`_ (different faucet links on top menu bar)
116115
- `Sepolia <https://faucet.sepolia.dev>`_
117116

ethpm/constants.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
SUPPORTED_CHAIN_IDS = {
1414
1: "mainnet",
15-
4: "rinkeby",
1615
5: "goerli",
1716
11155111: "sepolia",
1817
}

ethpm/validation/uri.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def validate_registry_uri_authority(auth: str) -> None:
103103
if not is_supported_chain_id(to_int(text=chain_id)):
104104
raise EthPMValidationError(
105105
f"Chain ID: {chain_id} is not supported. Supported chain ids include: "
106-
"1 (mainnet), 4 (rinkeby), 5 (goerli), and 11155111 (sepolia)."
106+
"1 (mainnet), 5 (goerli), and 11155111 (sepolia)."
107107
"Please try again with a valid registry URI."
108108
)
109109

newsfragments/2815.breaking.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
removed Rinkeby from list of allowed chains in EthPM

newsfragments/2815.doc.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
remove references to Rinkeby or replace with Goerli

0 commit comments

Comments
 (0)