index.ts 939 B

123456789101112131415161718192021222324252627
  1. // Copyright 2017-2020 @polkadot/apps-config authors & contributors
  2. // This software may be modified and distributed under the terms
  3. // of the Apache-2.0 license. See the LICENSE file for details.
  4. import acala from './acala';
  5. import centrifugeChain from './centrifuge-chain';
  6. import edgeware from './edgeware';
  7. import encointerNodeNotee from './encointer-node-notee';
  8. import encointerNodeTeeproxy from './encointer-node-teeproxy';
  9. import kulupu from './kulupu';
  10. import nodeTemplate from './node-template';
  11. import stablePoc from './stable-poc';
  12. import joystreamNode from './joystream-node';
  13. export default {
  14. acala,
  15. 'centrifuge-chain': centrifugeChain,
  16. edgeware,
  17. 'encointer-node': encointerNodeNotee,
  18. 'encointer-node-notee': encointerNodeNotee,
  19. 'encointer-node-teeproxy': encointerNodeTeeproxy,
  20. kulupu,
  21. 'node-template': nodeTemplate,
  22. 'stable-poc': stablePoc,
  23. stable_poc: stablePoc,
  24. 'joystream-node': joystreamNode
  25. };