joy-storage.ts 311 B

1234567891011121314151617
  1. import { Routes } from './types';
  2. import Storage from '@polkadot/joy-storage/index';
  3. export default [
  4. {
  5. Component: Storage,
  6. display: {
  7. needsApi: ['query.actors.actorAccountIds']
  8. },
  9. i18n: {
  10. defaultValue: 'Storage'
  11. },
  12. icon: 'database',
  13. name: 'storage'
  14. }
  15. ] as Routes;