informalsystems / tendermint-rs

Client libraries for Tendermint/CometBFT in Rust!
Apache License 2.0
589 stars 215 forks source link

Add `/genesis_chunked` RPC endpoint #1438

Open ljoss17 opened 5 days ago

ljoss17 commented 5 days ago

Description

Current version of tendermint-rs v0.37.0 only has the /genesis endpoint, https://github.com/informalsystems/tendermint-rs/blob/v0.37.0/rpc/src/method.rs#L58. If the genesis data is too big this will result in a error, see https://github.com/informalsystems/hermes/issues/3589.

By adding the /genesis_chunked endpoint it will be possible to retrieve the data from multiple chunks.

Definition of "done"