Files
pezkuwi-ui/packages/ui-settings/src/defaults/endpoints.ts
T
2023-01-01 10:21:18 +02:00

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];