Files
pezkuwi-ui/packages/ui-settings/src/defaults/endpoints.ts
T
pezkuwichain d1cd13072f Rebrand: polkadot → pezkuwi
- Updated all package references
- Fixed react-identicon and related packages
- Version 3.16.8
2026-01-07 02:35:24 +03:00

15 lines
345 B
TypeScript

// Copyright 2017-2025 @pezkuwi/ui-settings authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { Option } from '../types.js';
export const ENDPOINTS: Option[] = [
{
info: 'local',
text: 'Local Node (Own, 127.0.0.1:9944)',
value: 'ws://127.0.0.1:9944/'
}
];
export const ENDPOINT_DEFAULT = ENDPOINTS[0];