Skip to content

Commit

Permalink
fix: dead gaia links.
Browse files Browse the repository at this point in the history
  • Loading branch information
diwakergupta committed Feb 8, 2024
1 parent bf89e70 commit e89d6ef
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/build-apps/data-storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import StacksjsStartersNote from '../includes/\_stacks.js-starters-note.mdx';

<StacksjsStartersNote/>

This guide explains how to save and retrieve data for users with [Gaia](https://docs.stacks.co/build-apps/references/gaia) by implementing the [`connect`](https://github.com/hirosystems/connect/) and [`storage`](https://stacks.js.org/modules/storage.html) packages of Stacks.js.
This guide explains how to save and retrieve data for users with [Gaia](https://docs.stacks.co/stacks-in-depth/gaia) by implementing the [`connect`](https://github.com/hirosystems/connect/) and [`storage`](https://stacks.js.org/modules/storage.html) packages of Stacks.js.

Data storage provides a way for users to save both public and private data off-chain while retaining complete control over it.

Expand Down
2 changes: 1 addition & 1 deletion docs/build-apps/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Three main integrations are available:

- **Authentication**: Register and sign users in with identities on the Stacks blockchain
- **Transaction signing**: Prompt users to sign and broadcast transactions to the Stacks blockchain
- **Data storage**: Save and retrieve data for users with [Gaia](https://docs.stacks.co/build-apps/references/gaia)
- **Data storage**: Save and retrieve data for users with [Gaia](https://docs.stacks.co/stacks-in-depth/gaia)

All three of these integrations can be used together to create powerful new user experiences that rival or exceed those of traditional apps—all while protecting your users' digital rights.

Expand Down
4 changes: 2 additions & 2 deletions docs/get-started/gaia-storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ title: Storing data with Gaia
The Gaia storage system allows you to store private app data off the blockchain and still access it securely
with Stacks applications. Where possible, apps should only store critical transactional metadata directly to
the Stacks blockchain, while keeping app and user data in the Gaia storage system. For more information about
the Gaia storage system, see the [Gaia protocol reference](https://docs.stacks.co/build-apps/references/gaia).
the Gaia storage system, see the [Gaia protocol reference](https://docs.stacks.co/stacks-in-depth/gaia).

A [Gaia hub](https://docs.stacks.co/build-apps/references/gaia#user-control-or-how-is-gaia-decentralized) consists of a service and a storage
A [Gaia hub](https://docs.stacks.co/stacks-in-depth/gaia) consists of a service and a storage
resource, generally hosted on the same cloud compute provider. The hub service requires an authentication token from a
storage requester, and writes key-value pairs to the associated storage resource. Storage user can choose a Gaia
hub provider. This documentation provides an overview of how to set up and operate a Gaia hub.
4 changes: 2 additions & 2 deletions docs/stacks-blockchain-api/feature-guides/gaia-storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ title: Storing data with Gaia
The Gaia storage system allows you to store private app data off the blockchain and still access it securely
with Stacks applications. Where possible, apps should only store critical transactional metadata directly on
the Stacks blockchain, while keeping app and user data in the Gaia storage system. For more information about
the Gaia storage system, see the [Gaia protocol reference](https://docs.stacks.co/build-apps/references/gaia).
the Gaia storage system, see the [Gaia protocol reference](https://docs.stacks.co/stacks-in-depth/gaia).

A [Gaia hub](https://docs.stacks.co/build-apps/references/gaia#user-control-or-how-is-gaia-decentralized) consists of a service and a storage
A [Gaia hub](https://docs.stacks.co/stacks-in-depth/gaia) consists of a service and a storage
resource, generally hosted on the same cloud compute provider. The hub service requires an authentication token from a
storage requester, and writes key-value pairs to the associated storage resource. Individual storage users can choose their Gaia
hub provider. The linked documentation provides an overview of how to set up and operate a Gaia hub.
2 changes: 1 addition & 1 deletion docs/stacks.js/guides/store-data-securely.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import StacksjsStartersNote from '../../includes/\_stacks.js-starters-note.mdx';

<StacksjsStartersNote/>

This guide explains how to save and retrieve data for users with [Gaia](https://docs.stacks.co/build-apps/references/gaia) by implementing the [`connect`](https://github.com/hirosystems/connect/) and [`storage`](https://stacks.js.org/modules/storage.html) packages of Stacks.js.
This guide explains how to save and retrieve data for users with [Gaia](https://docs.stacks.co/stacks-in-depth/gaia) by implementing the [`connect`](https://github.com/hirosystems/connect/) and [`storage`](https://stacks.js.org/modules/storage.html) packages of Stacks.js.

Data storage provides a way for users to save both public and private data off-chain while retaining complete control over it.

Expand Down

0 comments on commit e89d6ef

Please sign in to comment.