From 91f3b23ef84b9c9d5dd5bf5cb58e8feb52a5ccfc Mon Sep 17 00:00:00 2001 From: "lightclient@protonmail.com" Date: Tue, 22 Nov 2022 14:45:31 -0700 Subject: [PATCH 1/2] eip-1: add devp2p repo as accepted external resource --- EIPS/eip-1.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/EIPS/eip-1.md b/EIPS/eip-1.md index 3e95aded11e27..7a21cf8cf2548 100644 --- a/EIPS/eip-1.md +++ b/EIPS/eip-1.md @@ -212,6 +212,24 @@ Permitted Consensus Layer Specifications URLs must anchor to a specific commit, ^https://github.com/ethereum/consensus-specs/blob/[0-9a-f]{40}/.*$ ``` +### Networking Specifications + +Links to the Ethereum Networking Specifications may be included using normal markdown syntax, such as: + +```markdown +[Ethereum Wire Protocol](https://github.com/ethereum/devp2p/blob/40ab248bf7e017e83cc9812a4e048446709623e8/caps/eth.md) +``` + +Which renders to: + +[Ethereum Wire Protocol](https://github.com/ethereum/devp2p/blob/40ab248bf7e017e83cc9812a4e048446709623e8/caps/eth.md) + +Permitted Networking Specifications URLs must anchor to a specific commit, and so must match this regular expression: + +```regex +^https://github.com/ethereum/devp2p/blob/[0-9a-f]{40}/.*$ +``` + ### Digital Object Identifier System Links qualified with a Digital Object Identifier (DOI) may be included using the following syntax: From 4a54c6c609acdc1de8bee84f579ca7425197ca83 Mon Sep 17 00:00:00 2001 From: Pandapip1 <45835846+Pandapip1@users.noreply.github.com> Date: Wed, 23 Nov 2022 10:45:41 -0500 Subject: [PATCH 2/2] Fix minor grammatical error --- EIPS/eip-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EIPS/eip-1.md b/EIPS/eip-1.md index 7a21cf8cf2548..f5a96deb32280 100644 --- a/EIPS/eip-1.md +++ b/EIPS/eip-1.md @@ -220,7 +220,7 @@ Links to the Ethereum Networking Specifications may be included using normal mar [Ethereum Wire Protocol](https://github.com/ethereum/devp2p/blob/40ab248bf7e017e83cc9812a4e048446709623e8/caps/eth.md) ``` -Which renders to: +Which renders as: [Ethereum Wire Protocol](https://github.com/ethereum/devp2p/blob/40ab248bf7e017e83cc9812a4e048446709623e8/caps/eth.md)