From 52758c29cd0e440fe168e792af06decee4f07f23 Mon Sep 17 00:00:00 2001 From: Maximiliano Duthey Date: Fri, 13 Mar 2026 13:08:13 -0300 Subject: [PATCH] fix: some docs links --- docs/content/index.mdx | 6 +++--- docs/content/integrations/blaze.mdx | 2 +- docs/content/integrations/tx3.mdx | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/content/index.mdx b/docs/content/index.mdx index 394eff80..3aaea82f 100644 --- a/docs/content/index.mdx +++ b/docs/content/index.mdx @@ -42,7 +42,7 @@ In this guide we're going to learn how to go from zero to a running Dolos instan - For more detailed information on how to install Dolos, check the [installation section](./installation) + For more detailed information on how to install Dolos, check the [installation section](./dolos/installation) 2. ### Configuration & Bootstrap @@ -52,7 +52,7 @@ In this guide we're going to learn how to go from zero to a running Dolos instan dolos init ``` - For more detailed information on how to configure Dolos, check the [configuration section](./configuration) + For more detailed information on how to configure Dolos, check the [configuration section](./dolos/configuration) 3. ### Running @@ -62,7 +62,7 @@ In this guide we're going to learn how to go from zero to a running Dolos instan dolos daemon ``` - For more detailed information on different ways to run _Dolos_, check the [operations section](./operations/modes) + For more detailed information on different ways to run _Dolos_, check the [operations section](./dolos/operations/modes) {/* ### That's it! diff --git a/docs/content/integrations/blaze.mdx b/docs/content/integrations/blaze.mdx index 11795a92..e900f508 100644 --- a/docs/content/integrations/blaze.mdx +++ b/docs/content/integrations/blaze.mdx @@ -42,7 +42,7 @@ import { U5C } from "@utxorpc/blaze-provider"; ``` ### Step 2: Create a New U5C Provider with Dolos -Now this is where we can utilize our local Dolos node and use it for our UTxORPC provider. We can initiliaze our node through this [link](/quickstart). +Now this is where we can utilize our local Dolos node and use it for our UTxORPC provider. We can initiliaze our node through this [link](/dolos). Here's how to create the U5C Provider: ```javascript diff --git a/docs/content/integrations/tx3.mdx b/docs/content/integrations/tx3.mdx index 2e0da6e3..e1728747 100644 --- a/docs/content/integrations/tx3.mdx +++ b/docs/content/integrations/tx3.mdx @@ -5,7 +5,7 @@ sidebar: --- import { Aside } from '@astrojs/starlight/components'; -Tx3 is a toolkit for authoring and interacting with UTxO protocols on Cardano. It provides a DSL for declaring protocol interfaces using transaction templates — reusable patterns that generate concrete transactions from runtime parameters. You can learn more about Tx3 in the [official documentation](https://docs.txpipe.io/tx3). +Tx3 is a toolkit for authoring and interacting with UTxO protocols on Cardano. It provides a DSL for declaring protocol interfaces using transaction templates — reusable patterns that generate concrete transactions from runtime parameters. You can learn more about Tx3 in the [official documentation](/tx3). Tx3 relies on a TRP (Transaction Resolver Protocol) server to resolve transaction templates into concrete, signable transactions. Dolos includes a built-in TRP server, making it a natural backend for Tx3 workflows.