-
Notifications
You must be signed in to change notification settings - Fork 162
feat: chainSpec based controller config; Types from apps-config #351
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
ae1de13
feat: chainSpec based controller config; Types from apps-config
emostov 5d254dd
Update mock api to include derive getBlock - specs work
emostov 7072fdc
Update to reflect TS 4.1
emostov c682665
Clean up comments
emostov 4ab1b2d
Save
emostov cc9a962
Merge origin master
emostov ede1787
feat: Token query param for non-native token balance-info
emostov 39e1a1a
Revert package.json
emostov be66056
Initial reply david review
emostov e465092
Update src/main.ts
emostov 19a66e7
Remove kulupu controller
emostov 0ac5573
Merge branch 'types-package' of https://github.com/paritytech/substra…
emostov c5e9284
Add chain builder integration guide
emostov 0c57ecd
Patch CHAIN_INTEGRATION.md
emostov 6692e50
Apply suggestions from code review
emostov 4b4d9a2
Update CHAIN_INTEGRATION.md
emostov b81c0d1
Bump deps
emostov 46f067d
Merge remote-tracking branch 'origin' into types-package
emostov 92a8856
Use whole options object for controller creation
emostov 8451309
Apply suggestions from code review
emostov 87572a9
Respond to maciej feedback
emostov c38c105
Merge branch 'types-package' of https://github.com/paritytech/substra…
emostov a1a988a
Update chain integration guide
emostov 79f9eb8
Remove excessive nullish colescing operators
emostov cf84d63
Merge origin master
emostov b34cca2
Fix merge issue
emostov a16235a
Update CHAIN_INTEGRATION.md
emostov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,77 @@ | ||
| # Substrate Api Sidecar chain integration guide | ||
|
|
||
| This guide aims to help chain builders integrate their Substrate FRAME based chain with Substrate API Sidecar. | ||
|
|
||
| ## Table of contents | ||
|
|
||
| - [Polkadot-js API type definition support](#polkadot-js-API-type-definition-support) | ||
| - [Controller configuration](controller-configuration) | ||
|
|
||
| ## Polkadot-js API type definition support | ||
|
|
||
| In order decode the SCALE encoded data from a substrate based node, polkadot-js needs to have a registry of type definitions. Sidecar pulls in chain type definitions from the [@polkadot/apps-config package hosted on NPM](https://www.npmjs.com/package/@polkadot/apps-config). | ||
|
|
||
| If the chain's type definitions do not already exist in [@polkadot/apps-config](https://github.com/polkadot-js/apps/tree/master/packages/apps-config) they will need to be added via PR to polkadot-js/apps by following their [instructions for API config](https://github.com/polkadot-js/apps/tree/master/packages/apps-config#api). | ||
|
|
||
| Before taking any other steps to integrate a chain with Sidecar, a chain's up-to-date type definitions must be included in a published version of @polkadot/apps-config. | ||
|
|
||
| ## Controller configuration | ||
|
|
||
| Sidecar offers the ability to configure which controllers to mount. Sidecar uses a chain's spec name to determine which controller config to use, and if no config is linked to a spec name, then the [default config](/src/chains-config/defaultControllers.ts) is used. | ||
|
|
||
| A chain builder can follow the steps below and submit a chain's controller config via PR, where it will be reviewed and merged once deemed ready by the maintainers. | ||
|
|
||
| #### 1) Create a controller config | ||
|
|
||
| Create a controller config for your chain. The shape of the controller config is specified [here](/src/chains-config/ControllerConfig.ts). The `controller` property has keys from the [controller export](/src/controllers/index.ts), which is an exhaustive collection of the available controller classes. In order to see the path(s) associated with a controller one must look in the controller source code. | ||
|
|
||
| The easiest way to start creating a controller config would be to copy [defaultControllers.ts](/src/chains-config/ControllerConfig.ts) and name the file and export `{specName}Controllers`. Then change the boolean values to indicate wether or not to mount a controller and its paths. Ensure to export the controller config from `chains-config` by adding `export * from './{specName}Controllers.ts'` in [/src/chains-config/index.ts](/src/chains-config/index.ts). | ||
|
|
||
| To determine what controllers to include, one must consider the runtime logic, specifically what pallets the chain uses. It is important to keep in mind the assumptions the service's logic makes and what exact pallets the service queries. | ||
|
|
||
| An example is in order. If we want to use [`PalletsStakingProgressController`](/src/controllers/pallets/PalletsStakingProgressController.ts), first check [`PalletsStakingProgressService.ts`](/src/services/pallets/PalletsStakingProgressService.ts); here we see it queries `staking`, `sessions`, `babe` pallets and makes certain assumptions about how the pallets are used together in the runtime. If we determine that both have all storage items queried, and the assumptions made about the staking system are correct, we can then declare in `{specName}Controllers` (the controller config object) that we want to mount the controller by giving `PalletsStakingProgressController` property `true` as the value (`{ PalletsStakingProgressController: true }`). Finally, we can test it out by starting up Sidecar against our chain and accessing the `pallets/staking/progress` endpoint, verifying that the information returned is correct. | ||
|
|
||
| In some circumstances, a chain may need a new path, modify a path or alter business logic for a path. Path changes that help a chain support wallets will be given priority. Breaking changes to paths are usually rejected. | ||
|
|
||
| ##### Basic balance transfer support | ||
|
|
||
| In order to support traditional balance transfers the chain's Sidecar endpoints should support account balance lookup, transaction submission, transaction material retrieval, and block queries. | ||
|
|
||
| To support these features the following endpoints are necessary: | ||
|
|
||
| | Path | Controller | Description | | ||
| |:----------------------------------------:|:-----------------------------:|:--------------------------------------------------------------------------:| | ||
| | GET `/transaction/material` | TransactionMaterialController | Get all the network information needed to construct a transaction offline. | | ||
| | POST `/transaction` | TransactionSubmitController | Submit a transaction to the node's transaction pool. | | ||
| | GET `/blocks/head` & `/blocks/{number}` | BlocksController | Get a block. | | ||
| | GET `accounts/{accountId}/balance-info` | AccountsBalanceInfoController | Get balance information for an account. | | ||
|
|
||
| #### 2) Update `specToControllerMap` | ||
|
|
||
| In order for Sidecar to use your controller config, the `specToControllerMap` in [/src/chains-config/index.ts](/src/chains-config/index.ts) must be updated with the chain's `specName` and controller config by adding them as a property to `specToControllerMap`: | ||
|
|
||
| ```javascript | ||
| const specToControllerMap = { | ||
| kulupu: kulupuControllers, | ||
| mandala: mandalaControllers, | ||
| {specName}: {specName}Controllers, | ||
| }; | ||
| ``` | ||
|
|
||
| #### 3) Test | ||
|
|
||
| Run it against a node running your chain in archive mode: | ||
|
|
||
| - Ensure all the expected paths work, including the root path, preferably with tests | ||
| - Exercise each query param of every path | ||
| - Make sure transaction submission works | ||
| - Try out historic queries across runtimes where types might change | ||
|
|
||
| #### 4) Submit your PR | ||
|
|
||
| Make sure it passes lint with `yarn lint --fix` and tests with `yarn test`. Then submit a PR for review. | ||
|
|
||
| #### 5) Maintenance | ||
|
|
||
| - Keep types up-to-date in `@polkadot/apps-config` | ||
| - If the business logic or storage of a chain's pallet queried by a Sidecar endpoint is changed, ensure that the corresponding service logic is updated in Sidecar as well | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| import { ControllerConfig } from '../types/chains-config'; | ||
|
|
||
| /** | ||
| * Controllers that Sidecar will always default to. This will always be | ||
| * the optimal controller selection for Polkadot and Kusama. | ||
| */ | ||
| export const defaultControllers: ControllerConfig = { | ||
| controllers: { | ||
| Blocks: true, | ||
| AccountsStakingPayouts: true, | ||
| AccountsBalanceInfo: true, | ||
| AccountsStakingInfo: true, | ||
| AccountsVestingInfo: true, | ||
| NodeNetwork: true, | ||
| NodeVersion: true, | ||
| NodeTransactionPool: true, | ||
| RuntimeCode: true, | ||
| RuntimeSpec: true, | ||
| RuntimeMetadata: true, | ||
| TransactionDryRun: true, | ||
| TransactionMaterial: true, | ||
| TransactionFeeEstimate: true, | ||
| TransactionSubmit: true, | ||
| PalletsStakingProgress: true, | ||
| PalletsStorage: true, | ||
| }, | ||
| options: { | ||
| finalizes: true, | ||
| }, | ||
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| import { ApiPromise } from '@polkadot/api'; | ||
| import AbstractController from 'src/controllers/AbstractController'; | ||
| import { AbstractService } from 'src/services/AbstractService'; | ||
|
|
||
| import { controllers } from '../controllers'; | ||
| import { ControllerConfig } from '../types/chains-config'; | ||
| import { defaultControllers } from './defaultControllers'; | ||
| import { kulupuControllers } from './kulupuControllers'; | ||
| import { mandalaControllers } from './mandalaControllers'; | ||
|
|
||
| const specToControllerMap = { | ||
| kulupu: kulupuControllers, | ||
| mandala: mandalaControllers, | ||
| }; | ||
|
|
||
| /** | ||
| * Return an array of instantiated controller instances based off of a `specName`. | ||
| * | ||
| * @param api ApiPromise to inject into controllers | ||
| * @param implName | ||
| */ | ||
| export function getControllersForSpec( | ||
| api: ApiPromise, | ||
| specName: string | ||
| ): AbstractController<AbstractService>[] { | ||
| if (specToControllerMap[specName]) { | ||
| return getControllersFromConfig(api, specToControllerMap[specName]); | ||
| } | ||
|
|
||
| // If we don't have the specName in the specToControllerMap we use the default | ||
| // contoller config | ||
| return getControllersFromConfig(api, defaultControllers); | ||
| } | ||
|
|
||
| /** | ||
| * Return an array of instantiated controller instances based off of a | ||
| * `ControllerConfig`. | ||
| * | ||
| * @param api ApiPromise to inject into controllers | ||
| * @param config controller mount configuration object | ||
| */ | ||
| function getControllersFromConfig(api: ApiPromise, config: ControllerConfig) { | ||
| // If we don't typecast here, tsc thinks its just [string, any][] | ||
| const controllersToInclude = Object.entries(config.controllers) as [ | ||
| keyof typeof controllers, | ||
| boolean | ||
| ][]; | ||
|
|
||
| return controllersToInclude.reduce((acc, [controllerName, shouldMount]) => { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. One day JavaScript will get |
||
| if (shouldMount) { | ||
| acc.push(new controllers[controllerName](api, config.options)); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
| } | ||
|
|
||
| return acc; | ||
| }, [] as AbstractController<AbstractService>[]); | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| import { ControllerConfig } from '../types/chains-config'; | ||
|
|
||
| export const kulupuControllers: ControllerConfig = { | ||
| controllers: { | ||
| Blocks: true, | ||
| AccountsStakingPayouts: false, | ||
| AccountsBalanceInfo: true, | ||
| AccountsStakingInfo: false, | ||
| AccountsVestingInfo: false, | ||
| NodeNetwork: true, | ||
| NodeVersion: true, | ||
| NodeTransactionPool: true, | ||
| RuntimeCode: true, | ||
| RuntimeSpec: true, | ||
| RuntimeMetadata: true, | ||
| TransactionDryRun: true, | ||
| TransactionMaterial: true, | ||
| TransactionFeeEstimate: true, | ||
| TransactionSubmit: true, | ||
| PalletsStakingProgress: false, | ||
| PalletsStorage: true, | ||
| }, | ||
| options: { | ||
| finalizes: false, | ||
| }, | ||
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| import { ControllerConfig } from '../types/chains-config'; | ||
|
|
||
| /** | ||
| * Controllers for mandala, acala's test network. | ||
| */ | ||
| export const mandalaControllers: ControllerConfig = { | ||
| controllers: { | ||
| Blocks: true, | ||
| AccountsStakingPayouts: true, | ||
| AccountsBalanceInfo: true, | ||
| AccountsStakingInfo: true, | ||
| AccountsVestingInfo: true, | ||
| NodeNetwork: true, | ||
| NodeVersion: true, | ||
| NodeTransactionPool: true, | ||
| RuntimeCode: true, | ||
| RuntimeSpec: true, | ||
| RuntimeMetadata: true, | ||
| TransactionDryRun: true, | ||
| TransactionMaterial: true, | ||
| TransactionFeeEstimate: true, | ||
| TransactionSubmit: true, | ||
| PalletsStakingProgress: true, | ||
| PalletsStorage: true, | ||
| }, | ||
| options: { | ||
| finalizes: true, | ||
| }, | ||
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice. Even if we haven't decided the exact token standard, good to start somewhere.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could be good to link to examples of how each of these look like.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dvdplm - what exactly do you have in mind for examples? My idea here was essentially to say "make sure to add the relevant controllers for these endpoints".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah maybe it's dumb but my thinking was to link to example implementations of the existing Polkadot/Kusama endpoints; a dev adding sidecar for their chain might want to peek at how you did those endpoints as theirs will likely be fairly similar?