37 breaking releases

0.48.0 Jan 29, 2025
0.45.0 Sep 26, 2024
0.44.0 Jul 18, 2024
0.37.0 Mar 18, 2024
0.9.0 Feb 10, 2021

#111 in #handler

Download history 1463/week @ 2024-12-01 1763/week @ 2024-12-08 2070/week @ 2024-12-15 846/week @ 2024-12-22 978/week @ 2024-12-29 1294/week @ 2025-01-05 1652/week @ 2025-01-12 1474/week @ 2025-01-19 1481/week @ 2025-01-26 1446/week @ 2025-02-02 1564/week @ 2025-02-09 1597/week @ 2025-02-16 1407/week @ 2025-02-23 1607/week @ 2025-03-02 1498/week @ 2025-03-09 1593/week @ 2025-03-16

6,254 downloads per month
Used in 21 crates (3 directly)

Apache-2.0 and GPL-3.0-or-later…

2MB
28K SLoC

Release

Polkadot SDK Stable 2412


lib.rs:

A RPC handler to create sync states for light clients.

Currently only usable with BABE + GRANDPA.

Usage

To use the light sync state, it needs to be added as an extension to the chain spec:

use sc_sync_state_rpc::LightSyncStateExtension;

#[derive(Default, Clone, serde::Serialize, serde::Deserialize, sc_chain_spec::ChainSpecExtension)]
#[serde(rename_all = "camelCase")]
pub struct Extensions {
   light_sync_state: LightSyncStateExtension,
}

type ChainSpec = sc_chain_spec::GenericChainSpec<(), Extensions>;

If the LightSyncStateExtension is not added as an extension to the chain spec, the SyncState will fail at instantiation.

Dependencies

~79–115MB
~2M SLoC