Skip to content

Commit

Permalink
feat: copy updates (#1449)
Browse files Browse the repository at this point in the history
  • Loading branch information
dprats authored Feb 22, 2025
1 parent c5a2d74 commit 1580856
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ A high-performance command-line interface for contributing proofs to the Nexus n
The [Nexus Network](https://docs.nexus.xyz/network) is a global distributed prover network that unites the world's computers to power a new and better Internet: the Verifiable Internet.

There have been two testnets so far:
- First testnet: [October 08 – 28, 2024](https://blog.nexus.xyz/nexus-launches-worlds-first-open-prover-network/)
- Second testnet: [December 9 – 13, 2024](https://blog.nexus.xyz/the-new-nexus-testnet-is-live/)
- Testnet 0: [October 08 – 28, 2024](https://blog.nexus.xyz/nexus-launches-worlds-first-open-prover-network/)
- Testnet I: [December 9 – 13, 2024](https://blog.nexus.xyz/the-new-nexus-testnet-is-live/)
- Testnet II: February 18 – 22, 2025

---

Expand Down
6 changes: 3 additions & 3 deletions clients/cli/src/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ pub async fn run_initial_setup() -> SetupResult {
}

println!("\nThis node is not connected to any account.\n");
println!("[1] Enter '1' to start proving without earning NEX");
println!("[2] Enter '2' to start earning NEX by connecting adding your node ID");
println!("[1] Enter '1' Anonymous mode: start proving without earning Devnet points");
println!("[2] Enter '2' Authenticated mode: start proving and earning Devnet points");

let mut option = String::new();
std::io::stdin().read_line(&mut option).unwrap();
Expand All @@ -129,7 +129,7 @@ pub async fn run_initial_setup() -> SetupResult {
.underline()
.bright_cyan()
);
println!("You chose to start earning NEX by connecting your node ID\n");
println!("You chose to start earning Devnet points by connecting your node ID\n");
println!("If you don't have a node ID, you can get it by following these steps:\n");
println!("1. Go to https://app.nexus.xyz/nodes");
println!("2. Sign in");
Expand Down
2 changes: 1 addition & 1 deletion public/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ NC='\033[0m' # No Color
# -----------------------------------------------------------------------------
if [ -z "$NONINTERACTIVE" ] && [ "${#NODE_ID}" -ne "28" ]; then
echo ""
echo "${ORANGE}The Nexus network is currently in Testnet II. You can now earn Nexus Points.${NC}"
echo "${ORANGE}Testnet II is over. The Nexus network is currently in Devnet.${NC}"
echo ""
fi

Expand Down

0 comments on commit 1580856

Please sign in to comment.