Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 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 benchmarks/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 e2e-tests/Cargo.lock

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

2 changes: 1 addition & 1 deletion e2e-tests/js/package-lock.json

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

2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "smoldot"
version = "1.1.3"
version = "1.2.0"
description = "Primitives to build a client for Substrate-based blockchains"
documentation = "https://docs.rs/smoldot"
keywords = ["blockchain", "peer-to-peer"]
Expand Down
2 changes: 1 addition & 1 deletion light-base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "smoldot-light"
version = "1.1.4"
version = "1.2.0"
description = "Browser bindings to a light client for Substrate-based blockchains"
documentation = "https://docs.rs/smoldot-light"
authors.workspace = true
Expand Down
7 changes: 5 additions & 2 deletions wasm-node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@

## Unreleased

## 3.2.0 - 2026-06-02

### Added

- Implement the `ext_trie_blake2_256_verify_proof_version_1` and `ext_trie_blake2_256_verify_proof_version_2` host functions. The verifier handles Substrate's compact proof format (as produced by `sp_trie::generate_trie_proof`): path children are replaced by an empty inline placeholder and the target leaf's value is reconstructed from the caller-supplied expected value (hashed for state version V1 values of 33 bytes or more, matching `sp_trie`'s threshold).
- `chainHead_v1_storage` can now read child-trie storage (the default child trie), letting callers read e.g. contract storage directly without going through a runtime call. ([#3278](https://github.com/paritytech/smoldot/pull/3278))
- Implement the `ext_trie_blake2_256_verify_proof_version_1` and `ext_trie_blake2_256_verify_proof_version_2` host functions. The verifier handles Substrate's compact proof format (as produced by `sp_trie::generate_trie_proof`): path children are replaced by an empty inline placeholder and the target leaf's value is reconstructed from the caller-supplied expected value (hashed for state version V1 values of 33 bytes or more, matching `sp_trie`'s threshold). ([#3263](https://github.com/paritytech/smoldot/pull/3263))

### Fixed

- `ext_transaction_index_index_version_1` and `ext_transaction_index_renew_version_1` now consume their parameters with the correct wasm value types (3xI32 and 2xI32 respectively). The previous code read the first parameter as a packed pointer-size (I64), which crashed the wasm executor as soon as a substrate runtime actually called either function (e.g. `pallet-transaction-storage::store` / `renew`). Behavior remains a no-op since smoldot is a light client and has no offchain transaction index to update.
- `ext_transaction_index_index_version_1` and `ext_transaction_index_renew_version_1` now consume their parameters with the correct wasm value types (3xI32 and 2xI32 respectively). The previous code read the first parameter as a packed pointer-size (I64), which crashed the wasm executor as soon as a substrate runtime actually called either function (e.g. `pallet-transaction-storage::store` / `renew`). Behavior remains a no-op since smoldot is a light client and has no offchain transaction index to update. ([#3263](https://github.com/paritytech/smoldot/pull/3263))

## 3.1.4 - 2026-05-29

Expand Down
4 changes: 2 additions & 2 deletions wasm-node/javascript/package-lock.json

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

2 changes: 1 addition & 1 deletion wasm-node/javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "smoldot",
"version": "3.1.4",
"version": "3.2.0",
"description": "Light client that connects to Polkadot and Substrate-based blockchains",
"contributors": [
"Parity Technologies <admin@parity.io>",
Expand Down
2 changes: 1 addition & 1 deletion wasm-node/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "smoldot-light-wasm"
version = "3.1.4"
version = "3.2.0"
description = "Browser bindings to a light client for Substrate-based blockchains"
authors.workspace = true
license.workspace = true
Expand Down
Loading