Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:near/mpc-recovery into phuong/ch…
Browse files Browse the repository at this point in the history
…ore/condense-projects
  • Loading branch information
ChaoticTempest committed May 31, 2024
2 parents 02f1647 + 22c85cf commit a666981
Show file tree
Hide file tree
Showing 29 changed files with 1,576 additions and 296 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/target
**/target
.direnv
.DS_Store
.idea
Expand Down
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
"integration-tests/chain-signatures/Cargo.toml",
"integration-tests/fastauth/Cargo.toml",
"mpc-recovery/Cargo.toml",
"load-tests/Cargo.toml",
],
}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Changelog

## 0.3.0

- Payload hash scalars are now big endian. In general this means that clients of the contract should no longer reverse their hashed payload before sending it to the MPC contract.

69 changes: 43 additions & 26 deletions chain-signatures/Cargo.lock

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

2 changes: 2 additions & 0 deletions chain-signatures/contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ near-sdk = { version = "=5.1.0", features = ["legacy", "unit-testing"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
schemars = "0.8"
k256 = { version = "0.13.1", features = ["sha256", "ecdsa", "serde", "arithmetic", "expose-field"] }
crypto-shared = { path = "../../crypto-shared" }

[dev-dependencies]
near-workspaces = { git = "https://github.com/near/near-workspaces-rs.git", branch = "feat/upgrade-near-deps" }
Expand Down
Loading

0 comments on commit a666981

Please sign in to comment.