mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-06-14 07:51:01 +00:00
971df8edba
- Remove all 3rd party parachain configurations from endpoints: - productionRelayPolkadot.ts: Keep only system parachains - productionRelayDicle.ts: Keep only system parachains - testingRelayZagros.ts: Keep only system parachains - testingRelayTeyrChain.ts: Keep only system parachains - Update domain references: - polkadot.js.org → pezkuwichain.app - wiki.polkadot.network → wiki.pezkuwichain.io - dotapps.io → pezkuwichain.app - statement.polkadot.network → docs.pezkuwichain.io/statement - support.polkadot.network → docs.pezkuwichain.io - Update repository references: - github.com/pezkuwi-js/apps → github.com/pezkuwichain/pwap - Rename system parachains to Pezkuwi ecosystem: - PolkadotAssetHub → PezkuwiAssetHub - polkadotBridgeHub → pezkuwiBridgeHub - polkadotCollectives → pezkuwiCollectives - polkadotCoretime → pezkuwiCoretime - polkadotPeople → pezkuwiPeople - Update network name in claims utility: - Polkadot → Pezkuwi
68 lines
2.2 KiB
TypeScript
68 lines
2.2 KiB
TypeScript
// Copyright 2017-2026 @pezkuwi/apps authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import queryString from 'query-string';
|
|
import store from 'store';
|
|
|
|
import { createWsEndpoints } from '@pezkuwi/apps-config';
|
|
import { extractIpfsDetails } from '@pezkuwi/react-hooks/useIpfs';
|
|
import { settings } from '@pezkuwi/ui-settings';
|
|
import { assert } from '@pezkuwi/util';
|
|
|
|
function networkOrUrl (apiUrl: string): void {
|
|
if (apiUrl.startsWith('light://')) {
|
|
console.log('Light endpoint=', apiUrl.replace('light://', ''));
|
|
} else {
|
|
console.log('WS endpoint=', apiUrl);
|
|
}
|
|
}
|
|
|
|
function getApiUrl (): string {
|
|
// we split here so that both these forms are allowed
|
|
// - http://localhost:3000/?rpc=wss://substrate-rpc.parity.io/#/explorer
|
|
// - http://localhost:3000/#/explorer?rpc=wss://substrate-rpc.parity.io
|
|
const urlOptions = queryString.parse(location.href.split('?')[1]);
|
|
|
|
// if specified, this takes priority
|
|
if (urlOptions.rpc) {
|
|
assert(!Array.isArray(urlOptions.rpc), 'Invalid WS endpoint specified');
|
|
|
|
// https://pezkuwichain.app/?rpc=ws://127.0.0.1:9944#/explorer;
|
|
const url = decodeURIComponent(urlOptions.rpc.split('#')[0]);
|
|
|
|
assert(url.startsWith('ws://') || url.startsWith('wss://') || url.startsWith('light://'), 'Non-prefixed ws/wss/light url');
|
|
|
|
return url;
|
|
}
|
|
|
|
const endpoints = createWsEndpoints(<T = string>(): T => ('' as unknown as T));
|
|
const { ipnsChain } = extractIpfsDetails();
|
|
|
|
// check against ipns domains (could be expanded to others)
|
|
if (ipnsChain) {
|
|
const option = endpoints.find(({ dnslink }) => dnslink === ipnsChain);
|
|
|
|
if (option) {
|
|
return option.value;
|
|
}
|
|
}
|
|
|
|
const stored = store.get('settings') as Record<string, unknown> || {};
|
|
const fallbackUrl = endpoints.find(({ value }) => !!value);
|
|
|
|
// via settings, or the default chain
|
|
return [stored.apiUrl, process.env.WS_URL].includes(settings.apiUrl)
|
|
? settings.apiUrl // keep as-is
|
|
: fallbackUrl
|
|
? fallbackUrl.value // grab the fallback
|
|
: 'ws://127.0.0.1:9944'; // nothing found, go local
|
|
}
|
|
|
|
// There cannot be a Bizinikiwi Connect light client default (expect only jrpc EndpointType)
|
|
const apiUrl = getApiUrl();
|
|
|
|
// set the default as retrieved here
|
|
settings.set({ apiUrl });
|
|
|
|
networkOrUrl(apiUrl);
|