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