mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-22 04:28:00 +00:00
13 lines
331 B
TypeScript
13 lines
331 B
TypeScript
// Copyright 2017-2023 @polkadot/ui-settings authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { Option } from '../types';
|
|
|
|
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];
|