fix: broken links

This commit is contained in:
gzuuus
2025-07-18 00:25:45 +02:00
parent 258841ce84
commit b98d733534
4 changed files with 4 additions and 4 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. - **Proxy & Gateway**: Explains how to use the bridging components.
- **Tutorials**: Provides practical, step-by-step examples. - **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 file: ../../assets/contextvm-logo.svg
actions: actions:
- text: Get Started - text: Get Started
link: getting-started/quick-overview/ link: /getting-started/quick-overview/
icon: right-arrow icon: right-arrow
- text: View on GitHub - text: View on GitHub
link: https://github.com/contextvm/ts-sdk 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 # 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`](/transport/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`](/transports/nostr-client-transport) and [`NostrServerTransport`](/transports/nostr-server-transport), handling the common logic for connecting to relays, managing subscriptions, and converting messages between the MCP and Nostr formats.
## Core Responsibilities ## Core Responsibilities

View File

@@ -16,7 +16,7 @@ We will build two separate scripts:
## Prerequisites ## 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. - 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.
--- ---