Skip to content

Commit 3711d58

Browse files
committed
Merge branch 'main' into production
2 parents f8da7c6 + 9e91759 commit 3711d58

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ rustup update
6464
Once everything is installed, clone the Namada Trusted Setup Ceremony GitHub repository and change directories into `namada-trusted-setup`:
6565
```
6666
git clone https://github.com/anoma/namada-trusted-setup.git
67-
cd namada-trusted-setup && git checkout v1.0.1
67+
cd namada-trusted-setup && git checkout v1.1.0
6868
```
6969

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

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

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

187187
# License
188188

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
set -u
99

10-
LAST_BINARY_VERSION="1.0.1"
10+
LAST_BINARY_VERSION="1.1.0"
1111
BINARY_NAME="namada-ts"
1212
BINARY_FOLDER="$HOME/.namada-ts"
1313
BINARY_PATH="$BINARY_FOLDER/$BINARY_NAME"

phase2-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ homepage = "https://github.com/AleoHQ/aleo-setup"
66
license = "MIT/Apache-2.0"
77
name = "phase2-cli"
88
repository = "https://github.com/AleoHQ/aleo-setup"
9-
version = "1.0.1"
9+
version = "1.1.0"
1010

1111
[dependencies]
1212
phase2 = {path = "../phase2"}

phase2-cli/src/bin/namada-ts.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ async fn main() {
878878
if let Some(path) = parameter_path {
879879
// Check hash of the parameters file
880880
let contribution = std::fs::read(path).expect(&format!("{}", "Failed to read file".red().bold()));
881-
let contribution_file_hash = calculate_hash(contribution.as_ref());
881+
let contribution_file_hash = calculate_hash(&contribution[64..]);
882882
if hex::encode(contribution_file_hash) != message {
883883
eprintln!("{}", "The computed hash of the file does not match the provided one".red().bold());
884884
process::exit(1);

phase2-coordinator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ homepage = "https://github.com/AleoHQ/aleo-setup"
66
license = "MIT/Apache-2.0"
77
name = "phase2-coordinator"
88
repository = "https://github.com/AleoHQ/aleo-setup"
9-
version = "1.0.1"
9+
version = "1.1.0"
1010

1111
[[bin]]
1212
name = "phase2-coordinator"

phase2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "phase2"
3-
version = "1.0.1"
3+
version = "1.1.0"
44
authors = ["Sean Bowe", "Alex Vlasov", "The Aleo Team <hello@aleo.org>"]
55
description = "Core logic for Phase 1"
66
homepage = "https://github.com/AleoHQ/aleo-setup"

setup-utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "setup-utils"
3-
version = "1.0.1"
3+
version = "1.1.0"
44
authors = ["Georgios Konstantopoulos <me@gakonst.com>", "The Aleo Team <hello@aleo.org>"]
55
edition = "2018"
66

0 commit comments

Comments
 (0)