Commit 63b3791
rpc: Implement
* rpc/chain_head: Add event structure for serialization
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Add tests for events
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Add API trait for `chainHead`
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Add RPC errors
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Manage subscription ID tracking for pinned blocks
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Add tests for subscription management
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Constructor for the API
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Placeholders for API implementation
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Accept RPC subscription sink
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Generate the runtime API event
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Implement the `follow` method
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Implement the `body` method
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Implement the `header` method
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Implement the `storage` method
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Implement the `call` method
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Implement the `unpin` method
Signed-off-by: Alexandru Vasile <[email protected]>
* Update `Cargo.lock`
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Implement `getGenesis` method
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Fix clippy
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Parse params from hex string
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Constuct API with genesis hash
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Add the finalized block to reported tree route
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Export the API and events for better ergonomics
Signed-off-by: Alexandru Vasile <[email protected]>
* chain_head/tests: Add test module with helper functions
Signed-off-by: Alexandru Vasile <[email protected]>
* chain_head/tests: Test block events from the `follow` pubsub
Signed-off-by: Alexandru Vasile <[email protected]>
* chain_head/tests: Test `genesisHash` getter
Signed-off-by: Alexandru Vasile <[email protected]>
* chain_head/tests: Test `header` method
Signed-off-by: Alexandru Vasile <[email protected]>
* chain_head/tests: Test `body` method
Signed-off-by: Alexandru Vasile <[email protected]>
* chain_head/tests: Test calling into the runtime API
Signed-off-by: Alexandru Vasile <[email protected]>
* chain_head/tests: Test runtime for the `follow` method
Signed-off-by: Alexandru Vasile <[email protected]>
* chain_head/tests: Add runtime code changes for `follow` method
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Remove space from rustdoc
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Use the `child_key` for storage queries
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Test `storage` method
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Test child trie query for `storage` method
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Event serialization typo
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Remove subscription aliases
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Add `NetworkConfig` parameter
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Named parameters as camelCase if present
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Implement From<ApiError> for RuntimeEvents
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Handle pruning of the best block in finalization window
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Generate initial block events
Signed-off-by: Alexandru Vasile <[email protected]>
* chain_head/tests: Verify that initial in-memory blocks are reported
Signed-off-by: Alexandru Vasile <[email protected]>
* chain_head/tests: Verify the finalized event with forks and pruned blocks
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Fix clippy
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Separate logic for generating initial events
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Handle stopping a subscription ID
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Submit events until the "Stop" event is triggered
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Separate logic for handling new and finalized blocks
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Extend subscription logic with subId handle
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Adjust to the new subscription mngmt API
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Refuse RuntimeAPI calls without the runtime flag
Signed-off-by: Alexandru Vasile <[email protected]>
* chain_head/tests: Verify RuntimeAPI calls without runtime flag
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Add best block per subscription
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Check storage keys for prefixes
Signed-off-by: Alexandru Vasile <[email protected]>
* chain_head/tests: Check storage queries with invalid prefixes
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Allow maximum number of pinned blocks
Signed-off-by: Alexandru Vasile <[email protected]>
* chain_head/tests: Test the maximum number of pinned blocks
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Adjust to origin/master and apply clippy
Signed-off-by: Alexandru Vasile <[email protected]>
* client/service: Enable the `chainHead` API
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Stop subscription on client disconnect and add debug logs
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Fix sending `Stop` on subscription exit
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Check best block is descendent of latest finalized
Signed-off-by: Alexandru Vasile <[email protected]>
* chain_head/tests: Report events before pruning the best block
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Nonrecursive initial block generation
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Generate initial events on subscription executor
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Reduce dev-dependencies for tokio
Signed-off-by: Alexandru Vasile <[email protected]>
* Apply suggestions from code review
Co-authored-by: Sebastian Kunert <[email protected]>
* rpc/chain_head: Accept empty parameters
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Use debug of `HexDisplay` for full format
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Enable subscription ID
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Use jsonrpsee 16.2 camelCase feature for paramaters
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Use `NonZeroUsize` for `NetworkConfig` param
Signed-off-by: Alexandru Vasile <[email protected]>
* rpc/chain_head: Rename `runtime_updates` to `has_runtime_updates`
Signed-off-by: Alexandru Vasile <[email protected]>
Signed-off-by: Alexandru Vasile <[email protected]>
Co-authored-by: Sebastian Kunert <[email protected]>chainHead RPC API (paritytech#12544)1 parent 033e7e9 commit 63b3791
File tree
11 files changed
+2885
-9
lines changed- client
- rpc-spec-v2
- src
- chain_head
- service/src
11 files changed
+2885
-9
lines changedSome generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
| 25 | + | |
| 26 | + | |
25 | 27 | | |
26 | 28 | | |
27 | 29 | | |
28 | 30 | | |
29 | 31 | | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
30 | 37 | | |
31 | 38 | | |
32 | 39 | | |
33 | 40 | | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
0 commit comments