// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; import Component from '@polkadot/app-rpc'; export default function create (t: TFunction): Route { return { Component, display: { needsApi: [] }, group: 'developer', icon: 'network-wired', name: 'rpc', text: t('nav.rpc', 'RPC calls', { ns: 'apps-routing' }) }; }