fix: broken links

This commit is contained in:
gzuuus
2025-07-18 00:13:40 +02:00
parent 945a72ca57
commit 005bdf9890
10 changed files with 5 additions and 1034 deletions

View File

@@ -42,4 +42,4 @@ This documentation is structured to guide you from initial setup to advanced imp
- **Proxy & Gateway**: Explains how to use the bridging components.
- **Tutorials**: Provides practical, step-by-step examples.
Let's begin by setting up your environment in the [Quick Overview](./getting-started/quick-overview/).
Let's begin by setting up your environment in the [Quick Overview](../getting-started/quick-overview/).

View File

@@ -8,7 +8,7 @@ hero:
file: ../../assets/contextvm-logo.svg
actions:
- text: Get Started
link: /getting-started/quick-overview/
link: ../getting-started/quick-overview/
icon: right-arrow
- text: View on GitHub
link: https://github.com/contextvm/ts-sdk

View File

@@ -5,7 +5,7 @@ description: An abstract class that provides the core functionality for all Nost
# Base Nostr Transport
The `BaseNostrTransport` is an abstract class that provides the core functionality for all Nostr-based transports in the `@contextvm/sdk`. It serves as the foundation for the [`NostrClientTransport`](./nostr-client-transport) and [`NostrServerTransport`](./nostr-server-transport), handling the common logic for connecting to relays, managing subscriptions, and converting messages between the MCP and Nostr formats.
The `BaseNostrTransport` is an abstract class that provides the core functionality for all Nostr-based transports in the `@contextvm/sdk`. It serves as the foundation for the [`NostrClientTransport`](../nostr-client-transport) and [`NostrServerTransport`](/transport/nostr-server-transport), handling the common logic for connecting to relays, managing subscriptions, and converting messages between the MCP and Nostr formats.
## Core Responsibilities

View File

@@ -16,7 +16,7 @@ We will build two separate scripts:
## Prerequisites
- You have completed the [Quick Overview](/getting-started/quick-overview/).
- You have completed the [Quick Overview](../getting-started/quick-overview/).
- You have two Nostr private keys (one for the server, one for the client). You can generate new keys using various tools, or by running `nostr-tools` commands.
---