Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove parallel #1675

Merged
merged 1 commit into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions src/config/relay-chains.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { AstarAdapter } from '@interlay/bridge/build/adapters/astar';
import { BifrostKusamaAdapter, BifrostPolkadotAdapter } from '@interlay/bridge/build/adapters/bifrost';
import { HydraAdapter } from '@interlay/bridge/build/adapters/hydradx';
import { InterlayAdapter, KintsugiAdapter } from '@interlay/bridge/build/adapters/interlay';
import { HeikoAdapter, ParallelAdapter } from '@interlay/bridge/build/adapters/parallel';
import { KusamaAdapter, PolkadotAdapter } from '@interlay/bridge/build/adapters/polkadot';
import { StatemineAdapter, StatemintAdapter } from '@interlay/bridge/build/adapters/statemint';
import { BaseCrossChainAdapter } from '@interlay/bridge/build/base-chain-adapter';
Expand Down Expand Up @@ -168,7 +167,6 @@ switch (process.env.REACT_APP_RELAY_CHAIN_NAME) {
bifrost_polkadot: new BifrostPolkadotAdapter(),
astar: new AstarAdapter(),
hydra: new HydraAdapter(),
parallel: new ParallelAdapter(),
polkadot: new PolkadotAdapter(),
statemint: new StatemintAdapter()
};
Expand Down Expand Up @@ -216,7 +214,6 @@ switch (process.env.REACT_APP_RELAY_CHAIN_NAME) {
karura: new KaruraAdapter(),
statemine: new StatemineAdapter(),
bifrost: new BifrostKusamaAdapter(),
heiko: new HeikoAdapter()
};
SS58_PREFIX = 2;
break;
Expand Down
2 changes: 0 additions & 2 deletions src/hooks/api/xcm/xcm-endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const XCMEndpoints: XCMEndpointsRecord = {
'wss://bifrost-polkadot-rpc.dwellir.com',
'wss://eu.bifrost-polkadot-rpc.liebi.com/ws'
],
heiko: ['wss://heiko-rpc.parallel.fi'],
hydra: ['wss://rpc.hydradx.cloud', 'wss://hydradx-rpc.dwellir.com'],
interlay: ['wss://api.interlay.io/parachain'],
karura: [
Expand All @@ -22,7 +21,6 @@ const XCMEndpoints: XCMEndpointsRecord = {
],
kintsugi: ['wss://api-kusama.interlay.io/parachain'],
kusama: ['wss://kusama-rpc.dwellir.com', 'wss://rpc.ibp.network/kusama', 'wss://rpc-kusama.luckyfriday.io'],
parallel: ['wss://polkadot-parallel-rpc.parallel.fi', 'wss://parallel-rpc.dwellir.com'],
phala: ['wss://api.phala.network/ws', 'wss://phala-rpc.dwellir.com'],
polkadot: ['wss://polkadot-rpc.dwellir.com', 'wss://rpc.ibp.network/polkadot', 'wss://rpc-polkadot.luckyfriday.io'],
statemine: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,11 @@ import {
ASTAR,
BIFROST,
BIFROST_POLKADOT,
HEIKO,
HYDRA,
INTERLAY,
KARURA,
KINTSUGI,
KUSAMA,
PARALLEL,
POLKADOT,
STATEMINE,
STATEMINT
Expand All @@ -27,13 +25,11 @@ const chainsIcon: Record<string, ChainComponent> = {
ASTAR,
BIFROST,
BIFROST_POLKADOT,
HEIKO,
HYDRA,
INTERLAY,
KARURA,
KINTSUGI,
KUSAMA,
PARALLEL,
POLKADOT,
STATEMINE,
STATEMINT
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@ export { ACALA } from './Acala';
export { ASTAR } from './Astar';
export { BIFROST } from './Bifrost';
export { BIFROST_POLKADOT } from './BifrostPolkadot';
export { HEIKO } from './Heiko';
export { HYDRA } from './Hydra';
export { INTERLAY } from './Interlay';
export { KARURA } from './Karura';
export { KINTSUGI } from './Kintsugi';
export { KUSAMA } from './Kusama';
export { PARALLEL } from './Parallel';
export { POLKADOT } from './Polkadot';
export { STATEMINE } from './Statemine';
export { STATEMINT } from './Statemint';
Loading