!shan

Results 69 issues of !shan

### Description Manage node to sync legacy blocks in the start of the node (can be disabled with a flag within legacy). Disable block processing (maybe a flag on receiving...

framework

### Description - Create a new `DB_KEY_LEGACY_BRACKETS` for storing legacy chain brackets - Each bracket is identified by `Buffer.concat([DB_KEY_LEGACY_BRACKETS, bracket.snapshotBlockID])` with value as ```ts interface LegacyChainBracketInfo { startHeight: number; snapshotBlockHeight:...

framework

### Description Introduce `length` property in schema - Update [`validate()`](https://github.com/LiskHQ/lisk-sdk/blob/adc3720804c2640b5ccc6ef0cbef365ec26efa85/elements/lisk-validator/src/keywords/data_type.ts#L62) function to handle `length` property. - Update [`errorFormatterMap`](https://github.com/LiskHQ/lisk-sdk/blob/adc3720804c2640b5ccc6ef0cbef365ec26efa85/elements/lisk-validator/src/errors.ts#L54) - Update all over SDK to update schema where we use `minLength`...

framework
elements/validator

### Description Chain was managing networkID because it comes from genesis block, but now we can remove from chain package. This doesn't change the public interface in general. https://github.com/LiskHQ/lisk-sdk/pull/7513#discussion_r967239983 ###...

framework
elements/chain

### Description Implement `syncHandler` method which is being called after receiving `getLegacyBlocksFromId ` RPC request 1. Call `addRateLimit` function on network 2. Unwrap and decode `data` field coming from the...

framework

### Description Chain connector plugin maintains all the data and create a CCU that is used to post updates from Sidechain to mainchain. But we need to post CCU from...

framework-plugins/chain_connector

### Description Currently we generate CCU params in the chain connector plugin. - We can create a method named, `sendCCU(ccuParams)` that will take CCU params and sign the transaction with...

framework-plugins/chain_connector

### Description Add a mechanism to check for max CCU size that is accepted by the network and based on that we create a CCU with number of CCMs it...

framework-plugins/chain_connector

### What was the problem? This PR resolves #9194 ### How was it solved? - Add config to take keepInclusionProofsForHeights and inclusionProofKeys - Add DB update to get/set/delete inclusionProofs -...

### What was the problem? This PR resolves #9195 ### How was it solved? - [x] Improve storage to retrieve by key/val and delete efficiently instead of managing full array...