Skip to content

Commit

Permalink
feat: Adding support for chrome extension development (0xPolygonMiden…
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-demox authored Oct 16, 2024
1 parent 9eba51c commit 9029693
Show file tree
Hide file tree
Showing 47 changed files with 2,202 additions and 655 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## 0.6.0 (TBD)

* Fixed WASM + added additional WASM models (#548)
* Added dedicated separate table for tracked tags (#535).
* [BREAKING] Added support for committed and discarded transactions (#531).
* [BREAKING] Refactored Client struct to use trait objects for inner struct fields (#539).
Expand Down
2 changes: 2 additions & 0 deletions crates/rust-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ miden-lib = { workspace = true, features = ["testing"] }
miden-objects = { workspace = true, default-features = false, features = ["testing"] }
uuid = { version = "1.10", features = ["serde", "v4"] }
tokio = { workspace = true }
web-sys = { version = "0.3", features = ["console"]}
console_error_panic_hook = "0.1.6"

[build-dependencies]
miden-rpc-proto = { git = "https://github.com/0xPolygonMiden/miden-node", branch = "next" }
Expand Down
1 change: 1 addition & 0 deletions crates/rust-client/src/store/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@ pub enum ChainMmrNodeFilter {
// ================================================================================================

/// Filters for narrowing the set of transactions returned by the client's store.
#[derive(Debug, Clone)]
pub enum TransactionFilter {
/// Return all transactions.
All,
Expand Down
2 changes: 2 additions & 0 deletions crates/rust-client/src/store/web_store/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
## Formatting for .js files
Please install the VSCode prettier extension and set as default formatter for js
Loading

0 comments on commit 9029693

Please sign in to comment.