From 282ed2012b0f0155bdfbc49c788adb6033acf05a Mon Sep 17 00:00:00 2001 From: Pauan Date: Tue, 24 Sep 2024 10:11:15 -0700 Subject: [PATCH] Fixing some URLs from provable.com -> aleo.org --- .github/ISSUE_TEMPLATE/bug.md | 2 +- README.md | 6 +++--- create-leo-app/template-react-leo/README.md | 2 +- create-leo-app/template-react-ts/README.md | 2 +- sdk/README.md | 8 ++++---- wasm/README.md | 2 +- wasm/src/lib.rs | 2 +- website/src/pages/Homepage.jsx | 2 +- website/src/pages/TermsOfUse.jsx | 8 ++++---- 9 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.md b/.github/ISSUE_TEMPLATE/bug.md index 86c5e4328..032dfbb64 100644 --- a/.github/ISSUE_TEMPLATE/bug.md +++ b/.github/ISSUE_TEMPLATE/bug.md @@ -11,7 +11,7 @@ labels: bug What's the bug in the Aleo SDK that you found? How serious is this bug and what is affected? - To report a security issue in the Aleo SDK, please email security@provable.com. + To report a security issue in the Aleo SDK, please email security@aleo.org. --> (Write your description here) diff --git a/README.md b/README.md index e1d902b0f..12e3fbd2c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- Website + Website @@ -61,9 +61,9 @@ Source: [Aleo Wasm](https://www.npmjs.com/package/@provablehq/wasm) ## đź“š Documentation -#### [API Documentation](https://developer.provable.com/sdk/typescript/overview) +#### [API Documentation](https://developer.aleo.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.provable.com/sdk/typescript/overview) page. +be found on the [Aleo Developer Docs](https://developer.aleo.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 diff --git a/create-leo-app/template-react-leo/README.md b/create-leo-app/template-react-leo/README.md index c4b4ded5b..2b7d4c1f9 100644 --- a/create-leo-app/template-react-leo/README.md +++ b/create-leo-app/template-react-leo/README.md @@ -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.provable.com/testnet/getting_started/deploy_execute_demo +if you are unfamiliar: https://developer.aleo.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. diff --git a/create-leo-app/template-react-ts/README.md b/create-leo-app/template-react-ts/README.md index e36647b70..58eaffffc 100644 --- a/create-leo-app/template-react-ts/README.md +++ b/create-leo-app/template-react-ts/README.md @@ -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.provable.com/testnet/getting_started/deploy_execute_demo +if you are unfamiliar: https://developer.aleo.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. diff --git a/sdk/README.md b/sdk/README.md index c169f2c98..e1df1ba3c 100644 --- a/sdk/README.md +++ b/sdk/README.md @@ -4,7 +4,7 @@

- Website + Website @@ -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.provable.com/aleo) into WebAssembly +them. Under the hood it uses cryptographic code compiled from [SnarkVM](https://developer.aleo.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. @@ -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.provable.com/testnet/getting_started/deploy_execute/#scan) for a record and passing it as a +by [scanning](https://developer.aleo.org/testnet/getting_started/deploy_execute/#scan) for a record and passing it as a string. ```typescript @@ -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.provable.com/sdk/typescript/aleo_network_client). +[Network Client API documentation](https://developer.aleo.org/sdk/typescript/aleo_network_client). ## Further Documentation diff --git a/wasm/README.md b/wasm/README.md index ea3123d85..d05a7869e 100644 --- a/wasm/README.md +++ b/wasm/README.md @@ -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.provable.com/concepts). +More information on these concepts can be found at the [Aleo Developer Hub](https://developer.aleo.org/concepts). ## Usage diff --git a/wasm/src/lib.rs b/wasm/src/lib.rs index c821c112c..986cd2653 100644 --- a/wasm/src/lib.rs +++ b/wasm/src/lib.rs @@ -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.provable.com/concepts). +//! More information on these concepts can be found at the [Aleo Developer Hub](https://developer.aleo.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 diff --git a/website/src/pages/Homepage.jsx b/website/src/pages/Homepage.jsx index 57682e8a9..44e51f674 100644 --- a/website/src/pages/Homepage.jsx +++ b/website/src/pages/Homepage.jsx @@ -32,7 +32,7 @@ const Homepage = () => {