Skip to content

Commit

Permalink
Merge pull request #942 from ProvableHQ/fix/update-docs-links
Browse files Browse the repository at this point in the history
replace developer docs links
  • Loading branch information
christianwwwwwwww authored Nov 5, 2024
2 parents 7bfd193 + b79979b commit c55fab8
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<a href="https://developer.aleo.org"> <img alt="Website" src="https://img.shields.io/badge/Developer_Docs-online-blue"></a>
<a href="https://docs.leo-lang.org"> <img alt="Website" src="https://img.shields.io/badge/Developer_Docs-online-blue"></a>
<a href="https://circleci.com/gh/ProvableHQ/sdk"><img src="https://circleci.com/gh/ProvableHQ/sdk.svg?style=svg"></a>
<a href="https://discord.com/invite/aleo"><img src="https://img.shields.io/discord/700454073459015690?logo=discord"/></a>
<a href="https://github.com/ProvableHQ/sdk#%EF%B8%8F-contributors"><img src="https://img.shields.io/badge/contributors-23-ee8449"/></a>
Expand Down Expand Up @@ -61,9 +61,9 @@ Source: [Aleo Wasm](https://www.npmjs.com/package/@provablehq/wasm)

## 📚 Documentation

#### [API Documentation](https://developer.aleo.org/sdk/typescript/overview)
#### [API Documentation](https://docs.leo-lang.org/sdk/typescript/overview)
API Documentation, tutorials for the Aleo SDK, and documentation on how to build Leo and Aleo Instructions programs can
be found on the [Aleo Developer Docs](https://developer.aleo.org/sdk/typescript/overview) page.
be found on the [Leo Developer Docs](https://docs.leo-lang.org/sdk/typescript/overview) page.

#### [SDK Readme](https://github.com/ProvableHQ/sdk/tree/testnet3/sdk#readme)
The SDK readme provides concepts core to executing zero-knowledge programs in the web and several detailed examples of
Expand Down
2 changes: 1 addition & 1 deletion create-leo-app/template-react-leo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Your app should be running on http://localhost:5173/
> should avoid building a public facing web app with private key information
Information on generating a private key, seeding a wallet with funds, and finding a spendable record can be found here
if you are unfamiliar: https://developer.aleo.org/testnet/getting_started/deploy_execute_demo
if you are unfamiliar: https://docs.leo-lang.org/testnet/getting_started/deploy_execute_demo

Aleo programs deployed require unique names, make sure to edit the program's name to something unique in `helloworld/src/main.leo`, `helloworld/program.json`, rename `helloworld/inputs/helloworld.in` and rebuild.

Expand Down
2 changes: 1 addition & 1 deletion create-leo-app/template-react-ts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Your app should be running on http://localhost:5173/
> should avoid building a public facing web app with private key information
Information on generating a private key, seeding a wallet with funds, and finding a spendable record can be found here
if you are unfamiliar: https://developer.aleo.org/testnet/getting_started/deploy_execute_demo
if you are unfamiliar: https://docs.leo-lang.org/testnet/getting_started/deploy_execute_demo

Aleo programs deployed require unique names, make sure to edit the program's name to something unique in `helloworld/src/main.leo`, `helloworld/program.json`, rename `helloworld/inputs/helloworld.in` and rebuild.

Expand Down
8 changes: 4 additions & 4 deletions sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
</p>

<p align="center">
<a href="https://developer.aleo.org"> <img alt="Website" src="https://img.shields.io/badge/Developer_Docs-online-blue"></a>
<a href="https://docs.leo-lang.org"> <img alt="Website" src="https://img.shields.io/badge/Developer_Docs-online-blue"></a>
<a href="https://circleci.com/gh/ProvableHQ/sdk"><img src="https://circleci.com/gh/ProvableHQ/sdk.svg?style=svg"></a>
<a href="https://discord.com/invite/aleo"><img src="https://img.shields.io/discord/700454073459015690?logo=discord"/></a>
<a href="https://github.com/ProvableHQ/sdk#%EF%B8%8F-contributors"><img src="https://img.shields.io/badge/contributors-23-ee8449"/></a>
Expand Down Expand Up @@ -182,7 +182,7 @@ function hello:
The SDK provides the ability to execute Aleo programs 100% client-side within the browser.

The `ProgramManager` object encapsulates the functionality for executing programs and making zero-knowledge proofs about
them. Under the hood it uses cryptographic code compiled from [SnarkVM](https://developer.aleo.org/aleo) into WebAssembly
them. Under the hood it uses cryptographic code compiled from [SnarkVM](https://docs.leo-lang.org/aleo) into WebAssembly
with JavaScript bindings that allow for the execution of Aleo programs fully within the browser. Users interested in lower-level
details on how this is achieved can visit the [aleo-wasm](https://www.npmjs.com/package/@provablehq/wasm) crate.

Expand Down Expand Up @@ -395,7 +395,7 @@ const transaction = await programManager.networkClient.getTransaction(tx_id);

The `NetworkRecordProvider` will attempt to scan the network for a fee record for the account provided. Doing a recent
public transfer to the deploying account will ensure a record is found quickly, or you can provide a fee record manually
by [scanning](https://developer.aleo.org/testnet/getting_started/deploy_execute/#scan) for a record and passing it as a
by [scanning](https://docs.leo-lang.org/testnet/getting_started/deploy_execute/#scan) for a record and passing it as a
string.

```typescript
Expand Down Expand Up @@ -930,7 +930,7 @@ Communication with the Aleo network is done through the `AleoNetworkClient` clas
data from Aleo network nodes and submit transactions to the Aleo network.

A full list of methods provided by the `AleoNetworkClient` class and usage examples can be found in the
[Network Client API documentation](https://developer.aleo.org/sdk/typescript/aleo_network_client).
[Network Client API documentation](https://docs.leo-lang.org/sdk/typescript/aleo_network_client).

## Further Documentation

Expand Down
2 changes: 1 addition & 1 deletion wasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion wasm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Functionality exposed by this crate includes:
* Aleo primitives such as `Records`, `Programs`, and `Transactions` and their associated helper methods
* A `ProgramManager` object that contains methods for authoring, deploying, and interacting with Aleo programs

More information on these concepts can be found at the [Aleo Developer Hub](https://developer.aleo.org/concepts).
More information on these concepts can be found at the [Aleo Developer Hub](https://docs.leo-lang.org/concepts).

## Usage

Expand Down
2 changes: 1 addition & 1 deletion wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
//! * Aleo primitives such as `Records`, `Programs`, and `Transactions` and their associated helper methods
//! * A `ProgramManager` object that contains methods for authoring, deploying, and interacting with Aleo programs
//!
//! More information on these concepts can be found at the [Aleo Developer Hub](https://developer.aleo.org/concepts).
//! More information on these concepts can be found at the [Aleo Developer Hub](https://docs.leo-lang.org/concepts).
//!
//! ## Usage
//! The [wasm-pack](https://crates.io/crates/wasm-pack) tool is used to compile the Rust code in this crate into JavaScript
Expand Down
2 changes: 1 addition & 1 deletion website/src/pages/Homepage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const Homepage = () => {
<Link
target="_blank"
rel="noopener noreferrer"
to="https://developer.aleo.org/sdk/"
to="https://docs.leo-lang.org/sdk"
>
<button className="button">
{" "}
Expand Down

0 comments on commit c55fab8

Please sign in to comment.