diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 340bea64fd..03e5b9555b 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,3 +1,3 @@ -## 👉 [Please follow one of these issue templates](https://github.com/AleoHQ/snarkVM/issues/new/choose) 👈 +## 👉 [Please follow one of these issue templates](https://github.com/AleoNet/snarkVM/issues/new/choose) 👈 Note: to keep the backlog clean and actionable, issues may be immediately closed if they do not follow one of the above issue templates. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 6a38950155..142af6df75 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -17,7 +17,7 @@ diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b0233c6c71..ee6d42c75c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,8 +6,8 @@ Thank you for your interest in contributing to snarkVM! Below you can find some Please follow the instructions below when filing a pull request: -- ensure that your branch is forked from the current [master](https://github.com/AleoHQ/snarkVM/tree/master) branch -- run `cargo fmt` before you commit; we use the `nightly` version of `rustfmt` to format the code, so you'll need to have the `nightly` toolchain installed on your machine; there's a [git hook](https://git-scm.com/docs/githooks) that ensures proper formatting before any commits can be made, and [`.rustfmt.toml`](https://github.com/AleoHQ/snarkVM/blob/master/.rustfmt.toml) specifies some of the formatting conventions +- ensure that your branch is forked from the current [master](https://github.com/AleoNet/snarkVM/tree/master) branch +- run `cargo fmt` before you commit; we use the `nightly` version of `rustfmt` to format the code, so you'll need to have the `nightly` toolchain installed on your machine; there's a [git hook](https://git-scm.com/docs/githooks) that ensures proper formatting before any commits can be made, and [`.rustfmt.toml`](https://github.com/AleoNet/snarkVM/blob/master/.rustfmt.toml) specifies some of the formatting conventions - run `cargo clippy --all-targets --all-features` to ensure that popular correctness and performance pitfalls are avoided ## Coding conventions diff --git a/algorithms/Cargo.toml b/algorithms/Cargo.toml index fd8e78c5e1..4c6f9d26c0 100644 --- a/algorithms/Cargo.toml +++ b/algorithms/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "Algorithms for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/algorithms/cuda/Cargo.toml b/algorithms/cuda/Cargo.toml index 3c1ff3f252..32412acc13 100644 --- a/algorithms/cuda/Cargo.toml +++ b/algorithms/cuda/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "Cuda optimizations for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/algorithms/src/snark/varuna/varuna.rs b/algorithms/src/snark/varuna/varuna.rs index 6e9fcfbc34..76d0959033 100644 --- a/algorithms/src/snark/varuna/varuna.rs +++ b/algorithms/src/snark/varuna/varuna.rs @@ -333,7 +333,7 @@ where /// This is the main entrypoint for creating proofs. /// You can find a specification of the prover algorithm in: - /// https://github.com/AleoHQ/protocol-docs + /// https://github.com/AleoNet/protocol-docs fn prove_batch, R: Rng + CryptoRng>( universal_prover: &Self::UniversalProver, fs_parameters: &Self::FSParameters, @@ -622,7 +622,7 @@ where /// This is the main entrypoint for verifying proofs. /// You can find a specification of the verifier algorithm in: - /// https://github.com/AleoHQ/protocol-docs + /// https://github.com/AleoNet/protocol-docs fn verify_batch>( universal_verifier: &Self::UniversalVerifier, fs_parameters: &Self::FSParameters, diff --git a/circuit/Cargo.toml b/circuit/Cargo.toml index bfc0896c5f..10cbf1f459 100644 --- a/circuit/Cargo.toml +++ b/circuit/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "Circuits for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/circuit/account/Cargo.toml b/circuit/account/Cargo.toml index 8c493b19bc..9cf595ceac 100644 --- a/circuit/account/Cargo.toml +++ b/circuit/account/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-circuit-account" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Account circuit library for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/circuit/algorithms/Cargo.toml b/circuit/algorithms/Cargo.toml index 8749d46f84..f3de7bf569 100644 --- a/circuit/algorithms/Cargo.toml +++ b/circuit/algorithms/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-circuit-algorithms" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Algorithm circuit library for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/circuit/collections/Cargo.toml b/circuit/collections/Cargo.toml index 6cc949c5b9..f65be996e6 100644 --- a/circuit/collections/Cargo.toml +++ b/circuit/collections/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-circuit-collections" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Collections circuit library for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/circuit/environment/Cargo.toml b/circuit/environment/Cargo.toml index 894d81274c..85efe40cf5 100644 --- a/circuit/environment/Cargo.toml +++ b/circuit/environment/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-circuit-environment" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Circuit environment for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/circuit/environment/src/helpers/updatable_count.rs b/circuit/environment/src/helpers/updatable_count.rs index 06d1070de8..5c6842e5b4 100644 --- a/circuit/environment/src/helpers/updatable_count.rs +++ b/circuit/environment/src/helpers/updatable_count.rs @@ -33,7 +33,7 @@ static WORKSPACE_ROOT: OnceCell = OnceCell::new(); /// To update the arguments to `count_is!`, run cargo test with the `UPDATE_COUNT` flag set to the name of the file containing the macro invocation. /// e.g. `UPDATE_COUNT=boolean cargo test -/// See https://github.com/AleoHQ/snarkVM/pull/1688 for more details. +/// See https://github.com/AleoNet/snarkVM/pull/1688 for more details. #[macro_export] macro_rules! count_is { ($num_constants:literal, $num_public:literal, $num_private:literal, $num_constraints:literal) => { @@ -51,7 +51,7 @@ macro_rules! count_is { /// To update the arguments to `count_less_than!`, run cargo test with the `UPDATE_COUNT` flag set to the name of the file containing the macro invocation. /// e.g. `UPDATE_COUNT=boolean cargo test -/// See https://github.com/AleoHQ/snarkVM/pull/1688 for more details. +/// See https://github.com/AleoNet/snarkVM/pull/1688 for more details. #[macro_export] macro_rules! count_less_than { ($num_constants:literal, $num_public:literal, $num_private:literal, $num_constraints:literal) => { diff --git a/circuit/environment/witness/Cargo.toml b/circuit/environment/witness/Cargo.toml index a6660d0684..119bd793b4 100644 --- a/circuit/environment/witness/Cargo.toml +++ b/circuit/environment/witness/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-circuit-environment-witness" version = "0.16.19" authors = [ "The Aleo Team " ] description = "A procedural macro to construct a witness in an environment" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2018" diff --git a/circuit/network/Cargo.toml b/circuit/network/Cargo.toml index efd63a8cdc..55729d299e 100644 --- a/circuit/network/Cargo.toml +++ b/circuit/network/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-circuit-network" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Network circuit library for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/circuit/program/Cargo.toml b/circuit/program/Cargo.toml index 2a222e0093..b9f7bde75f 100644 --- a/circuit/program/Cargo.toml +++ b/circuit/program/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-circuit-program" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Program circuit library for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/circuit/types/Cargo.toml b/circuit/types/Cargo.toml index b2448c60b3..fd6fc5b962 100644 --- a/circuit/types/Cargo.toml +++ b/circuit/types/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-circuit-types" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Primitive circuit for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/circuit/types/address/Cargo.toml b/circuit/types/address/Cargo.toml index d859d594f7..c60b444158 100644 --- a/circuit/types/address/Cargo.toml +++ b/circuit/types/address/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-circuit-types-address" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Address circuit for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/circuit/types/boolean/Cargo.toml b/circuit/types/boolean/Cargo.toml index 6f9e9f2e3b..cf2c01f8e9 100644 --- a/circuit/types/boolean/Cargo.toml +++ b/circuit/types/boolean/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-circuit-types-boolean" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Boolean circuit for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/circuit/types/field/Cargo.toml b/circuit/types/field/Cargo.toml index acc1367886..f0806e18cc 100644 --- a/circuit/types/field/Cargo.toml +++ b/circuit/types/field/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-circuit-types-field" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Field circuit for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/circuit/types/group/Cargo.toml b/circuit/types/group/Cargo.toml index c633da70d9..4c510b2a8e 100644 --- a/circuit/types/group/Cargo.toml +++ b/circuit/types/group/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-circuit-types-group" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Group circuit for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/circuit/types/integers/Cargo.toml b/circuit/types/integers/Cargo.toml index 5903640f3f..fe976e9767 100644 --- a/circuit/types/integers/Cargo.toml +++ b/circuit/types/integers/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-circuit-types-integers" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Integer circuit for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/circuit/types/scalar/Cargo.toml b/circuit/types/scalar/Cargo.toml index 99e813f11b..47c27db3c0 100644 --- a/circuit/types/scalar/Cargo.toml +++ b/circuit/types/scalar/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-circuit-types-scalar" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Scalar circuit for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/circuit/types/string/Cargo.toml b/circuit/types/string/Cargo.toml index 716f2593c2..030b98f3d1 100644 --- a/circuit/types/string/Cargo.toml +++ b/circuit/types/string/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-circuit-types-string" version = "0.16.19" authors = [ "The Aleo Team " ] description = "String circuit for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/console/Cargo.toml b/console/Cargo.toml index a860213836..f2f8ea727b 100644 --- a/console/Cargo.toml +++ b/console/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-console" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Console environment for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/console/account/Cargo.toml b/console/account/Cargo.toml index 568551104a..ed86fa582e 100644 --- a/console/account/Cargo.toml +++ b/console/account/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-console-account" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Account operations for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/console/algorithms/Cargo.toml b/console/algorithms/Cargo.toml index 575d0c8173..378c343383 100644 --- a/console/algorithms/Cargo.toml +++ b/console/algorithms/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-console-algorithms" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Console algorithms for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/console/collections/Cargo.toml b/console/collections/Cargo.toml index c853649f27..1b3fc84018 100644 --- a/console/collections/Cargo.toml +++ b/console/collections/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-console-collections" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Collections for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/console/network/Cargo.toml b/console/network/Cargo.toml index 551bd13eee..d199107bc5 100644 --- a/console/network/Cargo.toml +++ b/console/network/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-console-network" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Network console library for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/console/network/environment/Cargo.toml b/console/network/environment/Cargo.toml index 63b459700f..34cd64b221 100644 --- a/console/network/environment/Cargo.toml +++ b/console/network/environment/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-console-network-environment" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Environment console library for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/console/program/Cargo.toml b/console/program/Cargo.toml index 8f20c2f8ee..72c634bc04 100644 --- a/console/program/Cargo.toml +++ b/console/program/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-console-program" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Program operations for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/console/types/Cargo.toml b/console/types/Cargo.toml index f2b0d934ed..78c8320de1 100644 --- a/console/types/Cargo.toml +++ b/console/types/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-console-types" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Console types for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/console/types/address/Cargo.toml b/console/types/address/Cargo.toml index 92fa744b6d..0ed77bd94c 100644 --- a/console/types/address/Cargo.toml +++ b/console/types/address/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-console-types-address" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Type operations for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/console/types/boolean/Cargo.toml b/console/types/boolean/Cargo.toml index 7403db92e6..bde92030e3 100644 --- a/console/types/boolean/Cargo.toml +++ b/console/types/boolean/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-console-types-boolean" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Type operations for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/console/types/field/Cargo.toml b/console/types/field/Cargo.toml index c8be7daf1d..32b87184ba 100644 --- a/console/types/field/Cargo.toml +++ b/console/types/field/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-console-types-field" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Type operations for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/console/types/group/Cargo.toml b/console/types/group/Cargo.toml index fd4bfc7611..d65b05c636 100644 --- a/console/types/group/Cargo.toml +++ b/console/types/group/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-console-types-group" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Type operations for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/console/types/integers/Cargo.toml b/console/types/integers/Cargo.toml index 1da2502c68..974401b106 100644 --- a/console/types/integers/Cargo.toml +++ b/console/types/integers/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-console-types-integers" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Type operations for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/console/types/scalar/Cargo.toml b/console/types/scalar/Cargo.toml index 944a20d5d4..cc76626783 100644 --- a/console/types/scalar/Cargo.toml +++ b/console/types/scalar/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-console-types-scalar" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Type operations for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/console/types/string/Cargo.toml b/console/types/string/Cargo.toml index aea2da4af3..59b9abf297 100644 --- a/console/types/string/Cargo.toml +++ b/console/types/string/Cargo.toml @@ -3,6 +3,8 @@ name = "snarkvm-console-types-string" version = "0.16.19" authors = [ "The Aleo Team " ] description = "Type operations for a decentralized virtual machine" +homepage = "https://aleo.org" +repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" diff --git a/curves/Cargo.toml b/curves/Cargo.toml index 8d4c7c3dd0..369960f0a0 100644 --- a/curves/Cargo.toml +++ b/curves/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "Curves for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/fields/Cargo.toml b/fields/Cargo.toml index df9474d09e..60914b7fc2 100644 --- a/fields/Cargo.toml +++ b/fields/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "Fields for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/ledger/Cargo.toml b/ledger/Cargo.toml index 4147716ef4..61668dbc2c 100644 --- a/ledger/Cargo.toml +++ b/ledger/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "A node ledger for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/ledger/authority/Cargo.toml b/ledger/authority/Cargo.toml index bf1ce00d77..d0d699121f 100644 --- a/ledger/authority/Cargo.toml +++ b/ledger/authority/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "Data structures for a block authority in a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/ledger/block/Cargo.toml b/ledger/block/Cargo.toml index 994a868944..afda47f922 100644 --- a/ledger/block/Cargo.toml +++ b/ledger/block/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "A block for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/ledger/committee/Cargo.toml b/ledger/committee/Cargo.toml index 00a8d55338..5fd7c456ab 100644 --- a/ledger/committee/Cargo.toml +++ b/ledger/committee/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "A committee for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/ledger/narwhal/Cargo.toml b/ledger/narwhal/Cargo.toml index f1b5238232..49845ebdf1 100644 --- a/ledger/narwhal/Cargo.toml +++ b/ledger/narwhal/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "Data structures for a Narwhal-style memory pool in a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/ledger/narwhal/batch-certificate/Cargo.toml b/ledger/narwhal/batch-certificate/Cargo.toml index 63d18a6237..799776ab84 100644 --- a/ledger/narwhal/batch-certificate/Cargo.toml +++ b/ledger/narwhal/batch-certificate/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "A batch certificate for a Narwhal-style memory pool in a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/ledger/narwhal/batch-header/Cargo.toml b/ledger/narwhal/batch-header/Cargo.toml index 56037b9b45..5642d135c6 100644 --- a/ledger/narwhal/batch-header/Cargo.toml +++ b/ledger/narwhal/batch-header/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "A batch header for a Narwhal-style memory pool in a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/ledger/narwhal/data/Cargo.toml b/ledger/narwhal/data/Cargo.toml index a8172b12d9..733978e9d8 100644 --- a/ledger/narwhal/data/Cargo.toml +++ b/ledger/narwhal/data/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "A batch certificate for a Narwhal-style memory pool in a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/ledger/narwhal/subdag/Cargo.toml b/ledger/narwhal/subdag/Cargo.toml index f91a199478..b81b71bc65 100644 --- a/ledger/narwhal/subdag/Cargo.toml +++ b/ledger/narwhal/subdag/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "A subdag for a Narwhal-style memory pool in a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/ledger/narwhal/transmission-id/Cargo.toml b/ledger/narwhal/transmission-id/Cargo.toml index abe68bf1ed..7fbaa3a006 100644 --- a/ledger/narwhal/transmission-id/Cargo.toml +++ b/ledger/narwhal/transmission-id/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "A transmission ID for a Narwhal-style memory pool in a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/ledger/narwhal/transmission/Cargo.toml b/ledger/narwhal/transmission/Cargo.toml index 44b3bb5705..f5edc7a49c 100644 --- a/ledger/narwhal/transmission/Cargo.toml +++ b/ledger/narwhal/transmission/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "A transmission for a Narwhal-style memory pool in a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/ledger/puzzle/Cargo.toml b/ledger/puzzle/Cargo.toml index 453cf8d8ed..c36d4b0dd0 100644 --- a/ledger/puzzle/Cargo.toml +++ b/ledger/puzzle/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "Puzzle for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/ledger/puzzle/epoch/Cargo.toml b/ledger/puzzle/epoch/Cargo.toml index f34a44da35..b2a30bf139 100644 --- a/ledger/puzzle/epoch/Cargo.toml +++ b/ledger/puzzle/epoch/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "Epoch puzzle for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/ledger/query/Cargo.toml b/ledger/query/Cargo.toml index 979555c7e4..7e10c5af65 100644 --- a/ledger/query/Cargo.toml +++ b/ledger/query/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "A query for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/ledger/store/Cargo.toml b/ledger/store/Cargo.toml index 898f21fa7a..73f0cb1f48 100644 --- a/ledger/store/Cargo.toml +++ b/ledger/store/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "A data store for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/ledger/test-helpers/Cargo.toml b/ledger/test-helpers/Cargo.toml index eba63ce2ee..e34649d7a4 100644 --- a/ledger/test-helpers/Cargo.toml +++ b/ledger/test-helpers/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "Test helpers for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/metrics/Cargo.toml b/metrics/Cargo.toml index 457d43f039..65d7eadeec 100644 --- a/metrics/Cargo.toml +++ b/metrics/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "Metrics for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/parameters/Cargo.toml b/parameters/Cargo.toml index a7ea78546e..f75e3322e9 100644 --- a/parameters/Cargo.toml +++ b/parameters/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "Parameters for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/synthesizer/Cargo.toml b/synthesizer/Cargo.toml index a60060fc81..d5ff3f1557 100644 --- a/synthesizer/Cargo.toml +++ b/synthesizer/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "Synthesizer for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/synthesizer/process/Cargo.toml b/synthesizer/process/Cargo.toml index f34193160a..0e007a2998 100644 --- a/synthesizer/process/Cargo.toml +++ b/synthesizer/process/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "A process for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/synthesizer/program/Cargo.toml b/synthesizer/program/Cargo.toml index 9c1515671c..47acd2cca1 100644 --- a/synthesizer/program/Cargo.toml +++ b/synthesizer/program/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "Program for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/synthesizer/snark/Cargo.toml b/synthesizer/snark/Cargo.toml index 1d63ac19fb..5c8071f21a 100644 --- a/synthesizer/snark/Cargo.toml +++ b/synthesizer/snark/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "SNARK wrappers for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/utilities/Cargo.toml b/utilities/Cargo.toml index 0614b4f1f9..d21f44151d 100644 --- a/utilities/Cargo.toml +++ b/utilities/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "Utilities for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/utilities/derives/Cargo.toml b/utilities/derives/Cargo.toml index 560b7cfdff..57d3dc04a1 100644 --- a/utilities/derives/Cargo.toml +++ b/utilities/derives/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "Canonical serialization for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography", diff --git a/vm/cli/helpers/updater.rs b/vm/cli/helpers/updater.rs index 3ec54ee7d6..35a0a02d51 100644 --- a/vm/cli/helpers/updater.rs +++ b/vm/cli/helpers/updater.rs @@ -25,7 +25,7 @@ pub struct Updater; impl Updater { const SNARKVM_BIN_NAME: &'static str = "snarkvm"; const SNARKVM_REPO_NAME: &'static str = "snarkvm"; - const SNARKVM_REPO_OWNER: &'static str = "AleoHQ"; + const SNARKVM_REPO_OWNER: &'static str = "AleoNet"; /// Show all available releases for `snarkvm`. #[allow(clippy::format_push_string)] diff --git a/wasm/Cargo.toml b/wasm/Cargo.toml index 4183bbf38c..836832c094 100644 --- a/wasm/Cargo.toml +++ b/wasm/Cargo.toml @@ -4,7 +4,7 @@ version = "0.16.19" authors = [ "The Aleo Team " ] description = "WASM for a decentralized virtual machine" homepage = "https://aleo.org" -repository = "https://github.com/AleoHQ/snarkVM" +repository = "https://github.com/AleoNet/snarkVM" keywords = [ "aleo", "cryptography",