Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devnet/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ run_installation() {
git pull origin $BRANCH
else
# The workspace directory doesn't exist, clone the repository
git clone https://github.com/AleoHQ/snarkOS.git \$WORKSPACE
git clone https://github.com/AleoNet/snarkOS.git \$WORKSPACE
cd \$WORKSPACE
git checkout $BRANCH # Checkout the specified branch
fi
Expand Down
4 changes: 2 additions & 2 deletions .devnet/reinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ run_installation() {
if [ -d "\$WORKSPACE" ]; then
# The workspace directory exists, update the existing repository
# rm -rf \$WORKSPACE
# git clone https://github.com/AleoHQ/snarkOS.git \$WORKSPACE
# git clone https://github.com/AleoNet/snarkOS.git \$WORKSPACE
cd \$WORKSPACE
git pull # If we are switching branches, this will find the new branch
git checkout $BRANCH # Checkout the specified branch
git pull origin $BRANCH
else
# The workspace directory doesn't exist, clone the repository
git clone https://github.com/AleoHQ/snarkOS.git \$WORKSPACE
git clone https://github.com/AleoNet/snarkOS.git \$WORKSPACE
cd \$WORKSPACE
git checkout $BRANCH # Checkout the specified branch
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## 👉 [Please follow one of these issue templates](https://github.com/AleoHQ/snarkOS/issues/new/choose) 👈
## 👉 [Please follow one of these issue templates](https://github.com/AleoNet/snarkOS/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.
2 changes: 1 addition & 1 deletion .integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "2.2.7"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "A integration testing suite for a decentralized operating system"
homepage = "https://aleo.org"
repository = "https://github.com/AleoHQ/snarkOS"
repository = "https://github.com/AleoNet/snarkOS"
keywords = [
"aleo",
"cryptography",
Expand Down
3 changes: 2 additions & 1 deletion .integration/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkOS library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
3 changes: 2 additions & 1 deletion .resources/license_header
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkOS library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
Expand Down
Loading