From 92cb61b4842df158eea2dc52bb871691b723aa50 Mon Sep 17 00:00:00 2001 From: alelpoan <155192176+alelpoan@users.noreply.github.com> Date: Mon, 8 Jun 2026 22:32:14 +0300 Subject: [PATCH 1/3] fix(docs): fix broken miden_node_setup link in create_deploy_tutorial --- docs/src/rust-client/create_deploy_tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/rust-client/create_deploy_tutorial.md b/docs/src/rust-client/create_deploy_tutorial.md index 517a4f3b..28841374 100644 --- a/docs/src/rust-client/create_deploy_tutorial.md +++ b/docs/src/rust-client/create_deploy_tutorial.md @@ -20,7 +20,7 @@ In this tutorial, we will create a Miden account for _Alice_ and deploy a fungib ## Prerequisites -Before you begin, ensure that a Miden node is running locally in a separate terminal window. To get the Miden node running locally, you can follow the instructions on the [Miden Node Setup](../miden_node_setup.md) page. +Before you begin, ensure that a Miden node is running locally in a separate terminal window. To get the Miden node running locally, you can follow the instructions on the [Miden Node Setup](../miden_node_setup) page. ## Public vs. private accounts & notes From 7e1574456c8811651836281448065af47331c129 Mon Sep 17 00:00:00 2001 From: alelpoan <155192176+alelpoan@users.noreply.github.com> Date: Mon, 8 Jun 2026 22:49:50 +0300 Subject: [PATCH 2/3] fix(docs): fix broken batch-production link in unauthenticated_note_how_to --- docs/src/web-client/unauthenticated_note_how_to.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/web-client/unauthenticated_note_how_to.md b/docs/src/web-client/unauthenticated_note_how_to.md index 20fb7699..7263db8f 100644 --- a/docs/src/web-client/unauthenticated_note_how_to.md +++ b/docs/src/web-client/unauthenticated_note_how_to.md @@ -9,7 +9,7 @@ _Using unauthenticated notes for optimistic note consumption with the Miden clie ## Overview -In this tutorial, we will explore how to leverage unauthenticated notes on Miden to settle transactions faster than the blocktime using the Miden client. Unauthenticated notes are essentially UTXOs that have not yet been fully committed into a block. This feature allows the notes to be created and consumed within the same batch during [batch production](https://0xmiden.github.io/miden-docs/imported/miden-base/src/blockchain.html#batch-production). +In this tutorial, we will explore how to leverage unauthenticated notes on Miden to settle transactions faster than the blocktime using the Miden client. Unauthenticated notes are essentially UTXOs that have not yet been fully committed into a block. This feature allows the notes to be created and consumed within the same batch during [batch production](https://docs.miden.xyz/reference/protocol/blockchain#batch-production). When using unauthenticated notes, both the creation and consumption of notes can happen within the same batch, enabling faster-than-blocktime settlement. This is particularly powerful for applications requiring high-frequency transactions or optimistic settlement patterns. From 66efef72e2264d68a132b094a0e5b823361231c3 Mon Sep 17 00:00:00 2001 From: alelpoan <155192176+alelpoan@users.noreply.github.com> Date: Mon, 8 Jun 2026 22:51:21 +0300 Subject: [PATCH 3/3] fix(docs): fix broken react-sdk and docs links in react_wallet_tutorial --- docs/src/web-client/react_wallet_tutorial.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/web-client/react_wallet_tutorial.md b/docs/src/web-client/react_wallet_tutorial.md index d9d7ac69..6e811f8d 100644 --- a/docs/src/web-client/react_wallet_tutorial.md +++ b/docs/src/web-client/react_wallet_tutorial.md @@ -932,5 +932,5 @@ The `SignerContextValue` interface requires: Now that you've built a React wallet, explore these related topics: - [Creating Multiple Notes in a Single Transaction](./creating_multiple_notes_tutorial.md) - Learn about batch operations -- [Miden React SDK Reference](https://github.com/0xMiden/miden-client/tree/main/packages/react-sdk) - Full API documentation -- [Miden Documentation](https://docs.miden.io/) - Core Miden concepts +- [Miden React SDK Reference](https://docs.miden.xyz/builder/tools/clients/react-sdk/) - Full API documentation +- [Miden Documentation](https://docs.miden.xyz/) - Core Miden concepts