Skip to content

Commit

Permalink
Merge branch 'new-state-sync' into tomyrd-sync-component-alt
Browse files Browse the repository at this point in the history
  • Loading branch information
tomyrd committed Mar 5, 2025
2 parents 54b277f + 8bac3f0 commit 02eb0de
Show file tree
Hide file tree
Showing 124 changed files with 2,127 additions and 1,750 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,23 @@
### Features

* Added support to import public accounts to `Client` (#733).
* [BREAKING] Merged `TonicRpcClient` with `WebTonicRpcClient` and added missing endpoints (#744).

### Changes

* Added wallet generation from seed & import from seed on web SDK (#710)
* Add check for empty pay to id notes (#714).
* [BREAKING] Refactored authentication out of the `Client` and added new separate authenticators (#718).
* Added import/export for web client db (#740).
* Re-exported RemoteTransactionProver in `rust-client` (#752).
* Moved error handling to the `TransactionRequestBuilder::build()` (#750).
* [BREAKING] Added starting block number parameter to `CheckNullifiersByPrefix` and removed nullifiers from `SyncState` (#758).
* Added `ClientBuilder` for client initialization (#741).

### Fixes

* [BREAKING] Changed Snake Case Variables to Camel Case in JS/TS Files (#767).

## 0.7.0 (2025-01-28)

### Features
Expand Down
27 changes: 16 additions & 11 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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ fix-wasm: ## Run Fix for the miden-client-web package

.PHONY: format
format: ## Run format using nightly toolchain
cargo +nightly fmt --all && yarn prettier . --write
cargo +nightly fmt --all && yarn prettier . --write && yarn eslint . --fix

.PHONY: format-check
format-check: ## Run format using nightly toolchain but only in check mode
cargo +nightly fmt --all --check && yarn prettier . --check
cargo +nightly fmt --all --check && yarn prettier . --check && yarn eslint .

.PHONY: lint
lint: format fix clippy fix-wasm clippy-wasm ## Run all linting tasks at once (clippy, fixing, formatting)
Expand Down
Loading

0 comments on commit 02eb0de

Please sign in to comment.