mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-05-01 06:37:59 +00:00
24 lines
580 B
TypeScript
24 lines
580 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-preimages';
|
|
|
|
export default function create (t: TFunction): Route {
|
|
return {
|
|
Component,
|
|
display: {
|
|
needsAccounts: true,
|
|
needsApi: [
|
|
'query.preimage.statusFor',
|
|
'tx.preimage.notePreimage'
|
|
]
|
|
},
|
|
group: 'governance',
|
|
icon: 'panorama',
|
|
name: 'preimages',
|
|
text: t('nav.preimages', 'Preimages', { ns: 'apps-routing' })
|
|
};
|
|
}
|