123456789101112131415161718192021222324 |
- // 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 TransferModal from '@polkadot/app-accounts/Accounts/modals/Transfer';
- export default function create (t: <T = string> (key: string, text: string, options: { ns: string }) => T): Route {
- return {
- Component: TransferModal,
- Modal: TransferModal,
- display: {
- isHidden: false,
- needsAccounts: true,
- needsApi: [
- 'tx.balances.transfer'
- ]
- },
- icon: 'paper-plane',
- name: 'transfer',
- text: t<string>('nav.transfer', 'Transfer', { ns: 'apps-routing' })
- };
- }
|