mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-24 15:47:59 +00:00
23 lines
601 B
TypeScript
23 lines
601 B
TypeScript
// Copyright 2017-2026 @pezkuwi/apps-routing authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { Route, TFunction } from './types.js';
|
|
|
|
import Component from '@pezkuwi/app-teyrchains';
|
|
|
|
export default function create (t: TFunction): Route {
|
|
return {
|
|
Component,
|
|
display: {
|
|
needsApi: [
|
|
// children - teyrchainInfo.arachainId / teyrchainUpgrade.didSetValidationCode
|
|
['query.paras.teyrchains']
|
|
]
|
|
},
|
|
group: 'network',
|
|
icon: 'link',
|
|
name: 'teyrchains',
|
|
text: t('nav.teyrchains', 'Teyrchains', { ns: 'apps-routing' })
|
|
};
|
|
}
|