Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
f8e3119
refactor(sdk): collapse per-network min_protocol_version into a singl…
lklimek Jun 15, 2026
59b17f4
refactor(sdk): floor at per-network min_protocol_version in build(), …
lklimek Jun 15, 2026
8b03937
chore: use version 10 for all networks
lklimek Jun 15, 2026
42f75e0
refactor(sdk): unify protocol-version pin flag as `version_pinned`
lklimek Jun 15, 2026
3f9fda2
chore: change min protocol version logic
lklimek Jun 15, 2026
21ea0d9
Merge remote-tracking branch 'origin/refactor/sdk-collapse-protocol-v…
lklimek Jun 15, 2026
f7d9154
test(sdk): reconcile PV-floor assertions with flat PROTOCOL_VERSION_10
lklimek Jun 15, 2026
0771206
chore: initial version 11
lklimek Jun 15, 2026
1976b6b
test(sdk): track actual floor in default-seed assertion; refresh stal…
lklimek Jun 15, 2026
02b63c5
fix(sdk): restore per-network protocol-version floor
lklimek Jun 16, 2026
23832dc
Merge branch 'v3.1-dev' into refactor/sdk-collapse-protocol-version-f…
lklimek Jun 16, 2026
2dc43e1
Merge branch 'v3.1-dev' into refactor/sdk-collapse-protocol-version-f…
lklimek Jun 17, 2026
5b0f41d
doc: fix comment
lklimek Jun 17, 2026
0d7697b
docs(rs-sdk): correct min_protocol_version/with_initial_version rustd…
lklimek Jun 17, 2026
54b8cc7
Merge branch 'v3.1-dev' into refactor/sdk-collapse-protocol-version-f…
lklimek Jun 17, 2026
33a69c6
fix(rs-sdk): guard refresh_protocol_version against panic on proofs-d…
lklimek Jun 17, 2026
ec3d164
Merge branch 'v3.1-dev' into refactor/sdk-collapse-protocol-version-f…
lklimek Jun 17, 2026
c4b795d
Merge branch 'v3.1-dev' into refactor/sdk-collapse-protocol-version-f…
QuantumExplorer Jun 19, 2026
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
2 changes: 1 addition & 1 deletion packages/rs-sdk/src/platform/fetch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ where
) -> Result<(Option<Self>, ResponseMetadata, Proof), Error> {
let settings = sdk.query_settings();
let owned_rich: <Self as Fetch>::Query = query.query(&settings)?;
// INTENTIONAL(CMT-008, #3711): For the common case `Self::Query = Self::Request`,
// INTENTIONAL(#3711): For the common case `Self::Query = Self::Request`,
// the blanket `Query<T> for T` impl turns the `query.query(settings)` step into a
// pure clone of the same owned request. Real but micro-cost (~63 impls hit
// this path). Specializing via a `fn encode_request_owned()` default method on
Expand Down
Loading
Loading