mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-06-12 20:01:02 +00:00
d1cd13072f
- Updated all package references - Fixed react-identicon and related packages - Version 3.16.8
15 lines
345 B
TypeScript
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];
|