123456789101112131415161718192021 |
- // Copyright 2017-2020 @polkadot/apps-routing authors & contributors
- // This software may be modified and distributed under the terms
- // of the Apache-2.0 license. See the LICENSE file for details.
- import { Route } from './types';
- import Component from '@polkadot/app-staking';
- export default function create (t: <T = string> (key: string, text: string, options: { ns: string }) => T): Route {
- return {
- Component,
- display: {
- needsApi: [
- ['tx.staking.bond']
- ]
- },
- icon: 'certificate',
- name: 'staking',
- text: t<string>('nav.staking', 'Validators', { ns: 'apps-routing' })
- };
- }
|