Rebrand: Remove 3rd party chains, update domains to PezkuwiChain

- 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
This commit is contained in:
2026-01-09 03:08:11 +03:00
parent 12b5976838
commit 971df8edba
3348 changed files with 4629 additions and 7040 deletions
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { HexString } from '@pezkuwi/util/types';
@@ -16,14 +16,14 @@ export function getGenesis (name: string): HexString {
export const KULUPU_GENESIS = getGenesis('kulupu');
export const KUSAMA_GENESIS = getGenesis('kusama');
export const KUSAMA_GENESIS = getGenesis('dicle');
export const POLKADOT_GENESIS = getGenesis('polkadot');
export const POLKADOT_GENESIS = getGenesis('pezkuwi');
export const POLKADOT_DENOM_BLOCK = new BN(1248328);
export const PASEO_GENESIS = '0x77afd6190f1554ad45fd0d31aee62aacc33c6db0ea801129acb813f913e0764f';
export const WESTEND_GENESIS = getGenesis('westend');
export const WESTEND_GENESIS = getGenesis('zagros');
export const NEATCOIN_GENESIS = '0xfbb541421d30423c9a753ffa844b64fd44d823f513bf49e3b73b3a656309a595';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition, OverrideBundleType } from '@pezkuwi/types/types';
@@ -11,11 +11,11 @@ import mangata from './spec/mangata.js';
import subspace from './spec/subspace.js';
const mapping: [OverrideBundleDefinition, string[]][] = [
[equilibrium, ['Equilibrium', 'Equilibrium-parachain']],
[genshiro, ['Genshiro', 'Gens-parachain']],
[interbtc, ['interbtc-parachain', 'interbtc-standalone', 'interlay-parachain', 'kintsugi-parachain', 'testnet-kintsugi', 'testnet-interlay']],
[equilibrium, ['Equilibrium', 'Equilibrium-teyrchain']],
[genshiro, ['Genshiro', 'Gens-teyrchain']],
[interbtc, ['interbtc-teyrchain', 'interbtc-standalone', 'interlay-teyrchain', 'kintsugi-teyrchain', 'testnet-kintsugi', 'testnet-interlay']],
[subspace, ['subspace']],
[mangata, ['mangata', 'mangata-parachain']]
[mangata, ['mangata', 'mangata-teyrchain']]
];
const specMappings: [OverrideBundleDefinition, string[]][] = [
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import { applyDerives } from './derives.js';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
export * from './inflation.js';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { ApiPromise } from '@pezkuwi/api';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { ApiPromise } from '@pezkuwi/api';
@@ -1,11 +1,11 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { ApiPromise } from '@pezkuwi/api';
import { KUSAMA_GENESIS } from '../constants.js';
// 4 * BaseXcmWeight on Kusama
// 4 * BaseXcmWeight on Dicle
const KUSAMA_WEIGHT = 4 * 1_000_000_000;
const DEFAULT_WEIGHT = KUSAMA_WEIGHT;
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { ApiPromise } from '@pezkuwi/api';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { TrackInfo } from './types.js';
@@ -37,21 +37,21 @@ export const kusama: Record<string, TrackInfo[]> = {
id: 0,
name: 'candidates',
origin: { Origins: 'FellowshipInitiates' },
text: 'Origin commanded by any members of the Polkadot Fellowship (no Dan grade needed)'
text: 'Origin commanded by any members of the Pezkuwi Fellowship (no Dan grade needed)'
},
{
compare: compareFellowshipRank(1),
id: 1,
name: 'members',
origin: { Origins: 'Fellowship1Dan' },
text: 'Origin commanded by rank 1 of the Polkadot Fellowship and with a success of 1'
text: 'Origin commanded by rank 1 of the Pezkuwi Fellowship and with a success of 1'
},
{
compare: compareFellowshipRank(2),
id: 2,
name: 'proficients',
origin: { Origins: 'Fellowship2Dan' },
text: 'Origin commanded by rank 2 of the Polkadot Fellowship and with a success of 2'
text: 'Origin commanded by rank 2 of the Pezkuwi Fellowship and with a success of 2'
},
{
@@ -69,7 +69,7 @@ export const kusama: Record<string, TrackInfo[]> = {
id: 4,
name: 'senior fellows',
origin: { Origins: 'Fellowship4Dan' },
text: 'Origin commanded by rank 4 of the Polkadot Fellowship and with a success of 4'
text: 'Origin commanded by rank 4 of the Pezkuwi Fellowship and with a success of 4'
},
{
compare: compareFellowshipRank(5),
@@ -86,7 +86,7 @@ export const kusama: Record<string, TrackInfo[]> = {
id: 6,
name: 'senior experts',
origin: { Origins: 'Fellowship6Dan' },
text: 'Origin commanded by rank 6 of the Polkadot Fellowship and with a success of 6'
text: 'Origin commanded by rank 6 of the Pezkuwi Fellowship and with a success of 6'
},
{
compare: compareFellowshipRank(7),
@@ -103,14 +103,14 @@ export const kusama: Record<string, TrackInfo[]> = {
id: 8,
name: 'senior masters',
origin: { Origins: 'Fellowship8Dan' },
text: 'Origin commanded by rank 8 of the Polkadot Fellowship and with a success of 8'
text: 'Origin commanded by rank 8 of the Pezkuwi Fellowship and with a success of 8'
},
{
compare: compareFellowshipRank(9),
id: 9,
name: 'grand masters',
origin: { Origins: 'Fellowship9Dan' },
text: 'Origin commanded by rank 9 of the Polkadot Fellowship and with a success of 9'
text: 'Origin commanded by rank 9 of the Pezkuwi Fellowship and with a success of 9'
}
],
referenda: [
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { TrackInfo } from './types.js';
@@ -37,21 +37,21 @@ export const polkadot: Record<string, TrackInfo[]> = {
id: 0,
name: 'candidates',
origin: { Origins: 'FellowshipInitiates' },
text: 'Origin commanded by any members of the Polkadot Fellowship (no Dan grade needed)'
text: 'Origin commanded by any members of the Pezkuwi Fellowship (no Dan grade needed)'
},
{
compare: compareFellowshipRank(1),
id: 1,
name: 'members',
origin: { Origins: 'Fellowship1Dan' },
text: 'Origin commanded by rank 1 of the Polkadot Fellowship and with a success of 1'
text: 'Origin commanded by rank 1 of the Pezkuwi Fellowship and with a success of 1'
},
{
compare: compareFellowshipRank(2),
id: 2,
name: 'proficients',
origin: { Origins: 'Fellowship2Dan' },
text: 'Origin commanded by rank 2 of the Polkadot Fellowship and with a success of 2'
text: 'Origin commanded by rank 2 of the Pezkuwi Fellowship and with a success of 2'
},
{
@@ -69,7 +69,7 @@ export const polkadot: Record<string, TrackInfo[]> = {
id: 4,
name: 'senior fellows',
origin: { Origins: 'Fellowship4Dan' },
text: 'Origin commanded by rank 4 of the Polkadot Fellowship and with a success of 4'
text: 'Origin commanded by rank 4 of the Pezkuwi Fellowship and with a success of 4'
},
{
compare: compareFellowshipRank(5),
@@ -86,7 +86,7 @@ export const polkadot: Record<string, TrackInfo[]> = {
id: 6,
name: 'senior experts',
origin: { Origins: 'Fellowship6Dan' },
text: 'Origin commanded by rank 6 of the Polkadot Fellowship and with a success of 6'
text: 'Origin commanded by rank 6 of the Pezkuwi Fellowship and with a success of 6'
},
{
compare: compareFellowshipRank(7),
@@ -103,14 +103,14 @@ export const polkadot: Record<string, TrackInfo[]> = {
id: 8,
name: 'senior masters',
origin: { Origins: 'Fellowship8Dan' },
text: 'Origin commanded by rank 8 of the Polkadot Fellowship and with a success of 8'
text: 'Origin commanded by rank 8 of the Pezkuwi Fellowship and with a success of 8'
},
{
compare: compareFellowshipRank(9),
id: 9,
name: 'grand masters',
origin: { Origins: 'Fellowship9Dan' },
text: 'Origin commanded by rank 9 of the Polkadot Fellowship and with a success of 9'
text: 'Origin commanded by rank 9 of the Pezkuwi Fellowship and with a success of 9'
}
],
referenda: [
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { BN } from '@pezkuwi/util';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { BN } from '@pezkuwi/util';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import { typesBundleForPolkadot } from '@acala-network/type-definitions';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -11,7 +11,7 @@ const definitions: OverrideBundleDefinition = {
// on all versions
minmax: [0, undefined],
types: {
ParachainAccountIdOf: 'AccountId',
TeyrChainAccountIdOf: 'AccountId',
Proof: {
leafHash: 'Hash',
sortedHashes: 'Vec<Hash>'
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import { types } from '@metaverse-network-sdk/type-definitions';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -87,7 +87,7 @@ const definitions: OverrideBundleDefinition = {
Any: 'Null',
Named: 'Vec<u8>',
Polkadot: 'Null',
Kusama: 'Null'
Dicle: 'Null'
}
},
CurrencyId: {
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -23,7 +23,7 @@ const definitions: OverrideBundleDefinition = {
key: 'Hash',
price: 'Balance'
},
ParachainAccountIdOf: 'AccountId',
TeyrChainAccountIdOf: 'AccountId',
PreCommitData: {
signingRoot: 'Hash',
identity: 'AccountId',
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -18,7 +18,7 @@ const definitions: OverrideBundleDefinition = {
}
},
{
// updated to Substrate master
// updated to Bizinikiwi master
minmax: [9, undefined],
types: {
Keys: 'SessionKeys2'
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { ApiInterfaceRx } from '@pezkuwi/api/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
// structs need to be in order
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,7 +1,7 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
// Not used/included in index.ts as of https://github.com/polkadot-js/apps/pull/9243
// Not used/included in index.ts as of https://github.com/pezkuwi-js/apps/pull/9243
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -8,7 +8,7 @@ import ajuna from './ajuna.js';
import altair from './altair.js';
import apron from './apron.js';
import aresGladios from './ares-gladios.js';
import aresParachain from './ares-parachain.js';
import aresTeyrChain from './ares-parachain.js';
import argon from './argon.js';
import astar from './astar.js';
import bajun from './bajun.js';
@@ -16,16 +16,16 @@ import basilisk from './basilisk.js';
import beresheet from './beresheet.js';
import bifrost from './bifrost.js';
import bifrostAsgard from './bifrost-asgard.js';
import bifrostParachain from './bifrost-parachain.js';
import bifrostTeyrChain from './bifrost-parachain.js';
import bitcountry from './bitcountry.js';
import bitcountryPioneer from './bitcountry-pioneer.js';
import bitcountryParachain from './bitcountry-rococo.js';
import bitcountryTeyrChain from './bitcountry-rococo.js';
import bittensor from './bittensor.js';
import centrifuge from './centrifuge.js';
import centrifugeChain from './centrifuge-chain.js';
import chainx from './chainx.js';
import clover from './clover.js';
import cloverRococo from './clover-rococo.js';
import cloverPezkuwiChain from './clover-rococo.js';
import coinversation from './coinversation.js';
import communeai from './communeai.js';
import competitorsClub from './competitors-club.js';
@@ -34,7 +34,7 @@ import crownSterlingChain from './crown-sterling.js';
import crust from './crust.js';
import testPara from './cumulus-test-parachain.js';
import curio from './curio.js';
import datahighwayParachain from './datahighway.js';
import datahighwayTeyrChain from './datahighway.js';
import dockMainnet from './dock-mainnet.js';
import dockTestnet from './dock-testnet.js';
import dotmog from './dotmog.js';
@@ -46,12 +46,12 @@ import encointerNodeTeeproxy from './encointer-node-teeproxy.js';
import encointerPara from './encointer-para.js';
import equilibrium from './equilibrium.js';
import fantour from './fantour.js';
// See https://github.com/polkadot-js/apps/pull/9243
// See https://github.com/pezkuwi-js/apps/pull/9243
// import fragnova from './fragnova.js';
import ferrum from './ferrum.js';
import frequency from './frequency.js';
import galital from './galital.js';
import galitalParachain from './galital-parachain.js';
import galitalTeyrChain from './galital-parachain.js';
import galois from './galois.js';
import gamepower from './gamepower.js';
import genshiro from './genshiro.js';
@@ -66,7 +66,7 @@ import interbtc from './interbtc.js';
import ipse from './ipse.js';
import jamton from './jamton.js';
import jupiter from './jupiter.js';
import jupiterRococo from './jupiter-rococo.js';
import jupiterPezkuwiChain from './jupiter-rococo.js';
import jur from './jur.js';
import khala from './khala.js';
import kilt from './kilt.js';
@@ -77,7 +77,7 @@ import kusari from './kusari.js';
import kylin from './kylin.js';
import laminar from './laminar.js';
import logion from './logion.js';
import logionParachain from './logion-parachain.js';
import logionTeyrChain from './logion-parachain.js';
import mangata from './mangata.js';
import manta from './manta.js';
import mathchain from './mathchain.js';
@@ -155,8 +155,8 @@ const spec: Record<string, OverrideBundleDefinition> = {
amplitude: pendulum,
apron,
'ares-gladios': aresGladios,
'ares-mars': aresParachain,
'ares-odyssey': aresParachain,
'ares-mars': aresTeyrChain,
'ares-odyssey': aresTeyrChain,
argon,
asgard: bifrostAsgard,
astar,
@@ -164,16 +164,16 @@ const spec: Record<string, OverrideBundleDefinition> = {
basilisk,
beresheet,
bifrost,
'bifrost-parachain': bifrostParachain,
'bifrost-parachain': bifrostTeyrChain,
'bitcountry-node': bitcountry,
'bitcountry-parachain': bitcountryParachain,
'bitcountry-teyrchain': bitcountryTeyrChain,
bittensor,
centrifuge,
'centrifuge-chain': centrifugeChain,
chainx,
'chainx-parachain': chainx,
'chainx-teyrchain': chainx,
clover,
'clover-rococo': cloverRococo,
'clover-rococo': cloverPezkuwiChain,
coinversation,
communeai,
'competitors-club': competitorsClub,
@@ -181,14 +181,14 @@ const spec: Record<string, OverrideBundleDefinition> = {
contracts,
'crown-sterling': crownSterlingChain,
crust,
'crust-parachain': crust,
'crust-teyrchain': crust,
'cumulus-test-parachain': testPara,
'curio-mainnet': curio,
'curio-testnet': curio,
datahighway: westlake,
'datahighway-parachain': datahighwayParachain,
'datahighway-teyrchain': datahighwayTeyrChain,
dawn: eave,
'dev-parachain': zenlink,
'dev-teyrchain': zenlink,
'dock-pos-main-runtime': dockMainnet,
'dock-pos-test-runtime': dockTestnet,
'dotmog-node': dotmog,
@@ -196,17 +196,17 @@ const spec: Record<string, OverrideBundleDefinition> = {
elysium,
'encointer-node-notee': encointerNodeNotee,
'encointer-node-teeproxy': encointerNodeTeeproxy,
'encointer-parachain': encointerPara,
'encointer-teyrchain': encointerPara,
fantour,
// See https://github.com/polkadot-js/apps/pull/9243
// See https://github.com/pezkuwi-js/apps/pull/9243
// fragnova,
// 'fragnova-testnet': fragnova,
'ferrum-parachain': ferrum,
'ferrum-teyrchain': ferrum,
foucoco: pendulum,
frequency,
'frequency-testnet': frequency,
galital,
'galital-collator': galitalParachain,
'galital-collator': galitalTeyrChain,
gamepower,
gargantua: hyperbridge,
'hack-hydra-dx': hydrate,
@@ -218,20 +218,20 @@ const spec: Record<string, OverrideBundleDefinition> = {
hyperbridge,
idavoll,
imbue,
'integritee-parachain': integritee,
'interbtc-parachain': interbtc as OverrideBundleDefinition,
'integritee-teyrchain': integritee,
'interbtc-teyrchain': interbtc as OverrideBundleDefinition,
'interbtc-standalone': interbtc as OverrideBundleDefinition,
'interlay-parachain': interbtc as OverrideBundleDefinition,
'interlay-teyrchain': interbtc as OverrideBundleDefinition,
'ipse-node': ipse,
'jamton-runtime': jamton,
'jupiter-prep': jupiter,
'jupiter-rococo': jupiterRococo,
'jupiter-rococo': jupiterPezkuwiChain,
'jur-chain': jur,
'jur-node': jur,
kerria: parallel,
khala,
...kilt,
'kintsugi-parachain': interbtc as OverrideBundleDefinition,
'kintsugi-teyrchain': interbtc as OverrideBundleDefinition,
konomi,
kpron,
kulupu,
@@ -239,9 +239,9 @@ const spec: Record<string, OverrideBundleDefinition> = {
kylin,
laminar,
logion: logion as OverrideBundleDefinition,
'logion-parachain': logionParachain as OverrideBundleDefinition,
'logion-parachain': logionTeyrChain as OverrideBundleDefinition,
mangata: mangata as OverrideBundleDefinition,
'mangata-parachain': mangata as OverrideBundleDefinition,
'mangata-teyrchain': mangata as OverrideBundleDefinition,
'manta-node': manta,
mathchain,
'mathchain-galois': galois,
@@ -271,14 +271,14 @@ const spec: Record<string, OverrideBundleDefinition> = {
peerplays,
pendulum,
'phoenix-node': phoenix,
'phoenix-parachain': phoenix,
'phoenix-teyrchain': phoenix,
pichiu,
'pioneer-runtime': bitcountryPioneer,
polymesh_mainnet: polymeshMainnet,
polymesh_testnet: polymeshTestnet,
'pontem-node': pontem as OverrideBundleDefinition,
prism,
'quantum-portal-network-parachain': ferrum,
'quantum-portal-network-teyrchain': ferrum,
quartz: quartz as OverrideBundleDefinition,
realis,
'riochain-runtime': riochain,
@@ -312,9 +312,9 @@ const spec: Record<string, OverrideBundleDefinition> = {
uart,
unique: unique as OverrideBundleDefinition,
'unit-node': unitv,
'unit-parachain': unitv,
'unit-teyrchain': unitv,
'unitnetwork-node': unitnetwork,
'unitnetwork-parachain': unitnetwork,
'unitnetwork-teyrchain': unitnetwork,
unorthodox: standard,
vanilla: parallel,
vara: standard,
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
/* eslint-disable @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-assignment */
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import { typesBundle } from '@kiltprotocol/type-definitions';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
// structs need to be in order
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
// structs need to be in order
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import { moonbeamDefinitions } from '@moonbeam-network/types-bundle';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';

Some files were not shown because too many files have changed in this diff Show More