From 803aa15a9c55d918278aa6a6044566caf810ff39 Mon Sep 17 00:00:00 2001 From: aidan46 Date: Wed, 4 Dec 2024 15:42:11 +0800 Subject: [PATCH] fix: Add some links to RFC --- RFCs/polka-index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RFCs/polka-index.md b/RFCs/polka-index.md index 5e56578f..2ebe0ec2 100644 --- a/RFCs/polka-index.md +++ b/RFCs/polka-index.md @@ -26,9 +26,9 @@ This document explains how the system works, detailing how users, the Polka-Inde Bootstrap nodes are predefined, well-known, persistent nodes in a libp2p network. They serve as the initial points of contact for peers attempting to join the network. Unlike other peers, they are expected to have a stable presence and consistent availability. Bootstrap nodes help new peers find other peers in the network by providing information about existing nodes. -Bootstrap nodes are typically defined by their [multiaddrs (multi-protocol addresses)](https://github.com/libp2p/specs/blob/master/addressing/README.md#multiaddr-in-libp2p). These are made available through configuration files. +Bootstrap nodes are defined by their [multiaddrs (multi-protocol addresses)](https://github.com/libp2p/specs/blob/master/addressing/README.md#multiaddr-in-libp2p). These are made available through configuration files. -When a new peer joins, they attempt to establish a connection to one or more bootstrap nodes using their multiaddrs. The bootstrap node responds by sharing the addresses of other peers it knows about. The new peer uses the addresses provided by the bootstrap node to connect to additional peers. Over time, the new peer's routing table or peer store is populated, allowing it to interact with the network without relying exclusively on the bootstrap nodes. +When a new peer joins, they attempt to establish a connection to one or more bootstrap nodes using their [multiaddrs](https://github.com/libp2p/specs/blob/master/addressing/README.md#multiaddr-in-libp2p). The bootstrap node responds by sharing the addresses of other peers it knows about. The new peer uses the addresses provided by the bootstrap node to connect to additional peers. Over time, the new peer's routing table is populated, allowing it to interact with the network without relying exclusively on the bootstrap nodes. ### Peer Discovery