Skip to content
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'
};