Skip to content

Commit

Permalink
Merge branch 'main' into production
Browse files Browse the repository at this point in the history
  • Loading branch information
grarco committed Nov 19, 2022
2 parents f8da7c6 + 9e91759 commit 3711d58
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ rustup update
Once everything is installed, clone the Namada Trusted Setup Ceremony GitHub repository and change directories into `namada-trusted-setup`:
```
git clone https://github.com/anoma/namada-trusted-setup.git
cd namada-trusted-setup && git checkout v1.0.1
cd namada-trusted-setup && git checkout v1.1.0
```

Build the binary:
Expand Down Expand Up @@ -182,7 +182,7 @@ This repository contains several Rust crates that implement the different buildi

The original implementation of the coordinator for the [Aleo Trusted Setup](https://github.com/AleoHQ/aleo-setup) was audited by:

- [Least Authority](https://leastauthority.com/blog/audit-of-aleo-trusted-setup-phase-1/)
- [Least Authority](https://leastauthority.com/blog/audits/audit-of-aleo-trusted-setup-phase-1/)

# License

Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

set -u

LAST_BINARY_VERSION="1.0.1"
LAST_BINARY_VERSION="1.1.0"
BINARY_NAME="namada-ts"
BINARY_FOLDER="$HOME/.namada-ts"
BINARY_PATH="$BINARY_FOLDER/$BINARY_NAME"
Expand Down
2 changes: 1 addition & 1 deletion phase2-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ homepage = "https://github.com/AleoHQ/aleo-setup"
license = "MIT/Apache-2.0"
name = "phase2-cli"
repository = "https://github.com/AleoHQ/aleo-setup"
version = "1.0.1"
version = "1.1.0"

[dependencies]
phase2 = {path = "../phase2"}
Expand Down
2 changes: 1 addition & 1 deletion phase2-cli/src/bin/namada-ts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ async fn main() {
if let Some(path) = parameter_path {
// Check hash of the parameters file
let contribution = std::fs::read(path).expect(&format!("{}", "Failed to read file".red().bold()));
let contribution_file_hash = calculate_hash(contribution.as_ref());
let contribution_file_hash = calculate_hash(&contribution[64..]);
if hex::encode(contribution_file_hash) != message {
eprintln!("{}", "The computed hash of the file does not match the provided one".red().bold());
process::exit(1);
Expand Down
2 changes: 1 addition & 1 deletion phase2-coordinator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ homepage = "https://github.com/AleoHQ/aleo-setup"
license = "MIT/Apache-2.0"
name = "phase2-coordinator"
repository = "https://github.com/AleoHQ/aleo-setup"
version = "1.0.1"
version = "1.1.0"

[[bin]]
name = "phase2-coordinator"
Expand Down
2 changes: 1 addition & 1 deletion phase2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "phase2"
version = "1.0.1"
version = "1.1.0"
authors = ["Sean Bowe", "Alex Vlasov", "The Aleo Team <[email protected]>"]
description = "Core logic for Phase 1"
homepage = "https://github.com/AleoHQ/aleo-setup"
Expand Down
2 changes: 1 addition & 1 deletion setup-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "setup-utils"
version = "1.0.1"
version = "1.1.0"
authors = ["Georgios Konstantopoulos <[email protected]>", "The Aleo Team <[email protected]>"]
edition = "2018"

Expand Down

0 comments on commit 3711d58

Please sign in to comment.