Skip to content
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

Add types for Substrate node template #2364

Merged
merged 1 commit into from
Mar 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/apps-config/src/api/spec/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@
import centrifugeChain from './centrifuge-chain';
import edgeware from './edgeware';
import kulupu from './kulupu';
import nodeTemplate from './node-template';

export default {
'centrifuge-chain': centrifugeChain,
edgeware,
kulupu
kulupu,
'node-template': nodeTemplate
};
8 changes: 8 additions & 0 deletions packages/apps-config/src/api/spec/node-template.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Copyright 2017-2020 @polkadot/apps-config authors & contributors
// This software may be modified and distributed under the terms
// of the Apache-2.0 license. See the LICENSE file for details.

export default {
Address: 'AccountId',
LookupSource: 'AccountId'
};