Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

STAGING -> MASTER #4935

Merged
merged 35 commits into from
Apr 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
ffcde0e
updating level db version to 6.1.1 (#4894)
patnir Apr 17, 2024
1ec3e61
Update to the latest version of ironfish-frost
andiflabs Apr 17, 2024
60beae3
fix(ironfish): Use CLI flag option for name (#4903)
rohanjadvani Apr 17, 2024
ed6f98f
Implement `wallet/multisig/dkg/round3` RPC
andiflabs Apr 16, 2024
522cd38
feat(cli,ironfish): Add `wallet:multisig:dkg:round3` (#4905)
rohanjadvani Apr 18, 2024
b3a2e42
Update Cargo dependencies to fix dependabot alerts
andiflabs Apr 17, 2024
5451d00
add option to force full account rescan from genesis (#4901)
hughy Apr 18, 2024
0fcacc9
Rahul/ifl 2471 normalize confirm message in cli in a helper function …
patnir Apr 18, 2024
1735b1f
Always honor the `name` parameter passed to `importAccount`
andiflabs Apr 18, 2024
de196db
Add integration tests for multisig with distributed key generation (DKG)
andiflabs Apr 18, 2024
695087c
Remove unused trusted setup code (#4896)
dguenther Apr 18, 2024
4c54d96
Standardizing post CLI command (#4911)
patnir Apr 18, 2024
45a973e
feat(cli,ironfish): Add flag to override name in round3 (#4912)
rohanjadvani Apr 18, 2024
3defd8b
Move ironfish-mpc to a new repository (#4914)
dguenther Apr 20, 2024
036bdaa
Add transaction summary to wallet:post (#4910)
dguenther Apr 20, 2024
3fb06a9
Batch accounts when decrypting transaction notes (#4727)
dguenther Apr 22, 2024
4ed09db
Show the correct decimal amount in wallet:transactions command (#4913)
danield9tqh Apr 22, 2024
a90ee45
select secret name from list in dkg commands (#4916)
hughy Apr 22, 2024
307c88a
feat(cli): Improve prompt in round3 to indicate which packages (#4917)
rohanjadvani Apr 22, 2024
ef0e28d
Multisig DKG Round 3: add an option to rescan the imported account
andiflabs Apr 22, 2024
0da75f2
removes 'next step' from participant:create output (#4921)
hughy Apr 22, 2024
4ab45df
Multisig: fetch participant identities from the public key package
andiflabs Apr 22, 2024
17b9d68
Multisig DKG: test that, at the end of round 3, participant identitie…
andiflabs Apr 22, 2024
424bbef
Fix `wallet.test.slow.ts` and `round3.test.ts`
andiflabs Apr 23, 2024
e249009
Multisig DKG: use the round 2 "combined" public packages
andiflabs Apr 23, 2024
f465b4e
Multisig DKG: prefix every occurrence of "package" with the round number
andiflabs Apr 23, 2024
87dd9a4
Remove unused renderIron function (#4925)
danield9tqh Apr 23, 2024
c65d64c
renames wallet:multisig:participants to wallet:multisig:account:parti…
hughy Apr 23, 2024
9d923a7
feat(cli): Add CLI command to list identities (#4928)
rohanjadvani Apr 23, 2024
4761f24
Use ironfish/custom decimal parsing function (#4929)
danield9tqh Apr 23, 2024
0e36ea0
renames secretName to participantName (#4927)
hughy Apr 23, 2024
5e5b55a
updates text of identities prompts (#4930)
hughy Apr 24, 2024
bf03a96
feat(cli): Unhide multisig commands (#4932)
rohanjadvani Apr 25, 2024
976c058
adds cli command to view details for raw, unsigned transactions (#4931)
hughy Apr 25, 2024
4e5fff0
v2.3.0 (#4934)
rohanjadvani Apr 25, 2024
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
167 changes: 37 additions & 130 deletions Cargo.lock

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

5 changes: 0 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ resolver = "2"

members = [
"benchmarks",
"ironfish-mpc",
"ironfish-phase2",
"ironfish-rust",
"ironfish-rust-nodejs",
"ironfish-zkp",
Expand All @@ -16,8 +14,5 @@ edition = "2021"
homepage = "https://ironfish.network/"
repository = "https://github.com/iron-fish/ironfish"

[patch.crates-io]
bellman = { git = "https://github.com/iron-fish/bellman", rev = "1cc52ca33e6db14233f1cbc0c9c5b7c822b229ec" }

[profile.release]
debug = true
6 changes: 3 additions & 3 deletions ironfish-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ironfish",
"version": "2.2.0",
"version": "2.3.0",
"description": "CLI for running and interacting with an Iron Fish node",
"author": "Iron Fish <[email protected]> (https://ironfish.network)",
"main": "build/src/index.js",
Expand Down Expand Up @@ -62,8 +62,8 @@
"@aws-sdk/client-s3": "3",
"@aws-sdk/client-secrets-manager": "3",
"@aws-sdk/s3-request-presigner": "3",
"@ironfish/rust-nodejs": "2.2.0",
"@ironfish/sdk": "2.2.0",
"@ironfish/rust-nodejs": "2.3.0",
"@ironfish/sdk": "2.3.0",
"@oclif/core": "1.23.1",
"@oclif/plugin-help": "5.1.12",
"@oclif/plugin-not-found": "2.3.1",
Expand Down
Loading
Loading