Add protocol pages

This commit is contained in:
Ben van Hartingsveldt 2025-07-18 20:12:01 +02:00
parent b75e114c79
commit 35d0ef20b3
No known key found for this signature in database
GPG key ID: 261AA214130CE7AB
5 changed files with 25 additions and 0 deletions

View file

@ -23,6 +23,11 @@ export default currentUrl => {
title: "LBRY overview",
url: "/overview"
},
{
name: "Protocols",
title: "LBRY Protocols",
url: "/protocols"
},
{
name: "Playground",
title: "Experience LBRY",

8
documents/protocols.md Normal file
View file

@ -0,0 +1,8 @@
---
title: Protocols
description: Understand how LBRY works low level and build your own implementations.
---
- [Content Protocol](/protocols/content)
- [DHT Protocol](/protocols/dht)
- [Reflector Protocol](/protocols/reflector)

View file

@ -0,0 +1,4 @@
---
title: Content Protocol
description: The protocol used to download blobs.
---

View file

@ -0,0 +1,4 @@
---
title: DHT Protocol
description: The protocol used to find other nodes.
---

View file

@ -0,0 +1,4 @@
---
title: Reflector Protocol
description: The protocol used to upload blobs.
---