diff --git a/eslint.config.js b/eslint.config.js index 5b0ba68..5a94f22 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -7,9 +7,17 @@ export default [ ...baseConfig, { rules: { - // add override for any (a metric ton of them, initial conversion) + // Polkadot/Substrate APIs are highly dynamic with runtime-determined types. + // These rules conflict with no-explicit-any being off and the ecosystem's nature. + // Original polkadot-apps also has 3600+ of these errors unfixed. + // Keys must be in alphabetical order (sort-keys rule). '@typescript-eslint/no-explicit-any': 'off', - // we generally use this in isFunction, not via calling + '@typescript-eslint/no-redundant-type-constituents': 'off', + '@typescript-eslint/no-unsafe-argument': 'off', + '@typescript-eslint/no-unsafe-assignment': 'off', + '@typescript-eslint/no-unsafe-call': 'off', + '@typescript-eslint/no-unsafe-member-access': 'off', + '@typescript-eslint/no-unsafe-return': 'off', '@typescript-eslint/unbound-method': 'off' } } diff --git a/package.json b/package.json index 9f4431a..e5c6ab1 100644 --- a/package.json +++ b/package.json @@ -69,6 +69,7 @@ "devDependencies": { "@crustio/crust-pin": "^1.0.0", "@pezkuwi/dev": "^0.85.3", + "@pezkuwi/extension-inject": "^0.62.13", "@pinata/sdk": "^1.2.1", "@types/chart.js": "^2.9.41", "@types/file-saver": "^2.0.7", diff --git a/packages/apps-config/src/api/spec/acala.ts b/packages/apps-config/src/api/spec/acala.ts index 90083d4..ecfe02a 100644 --- a/packages/apps-config/src/api/spec/acala.ts +++ b/packages/apps-config/src/api/spec/acala.ts @@ -1,7 +1,10 @@ // Copyright 2017-2026 @pezkuwi/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 -import { typesBundleForPezkuwi } from '@acala-network/type-definitions'; +import type { OverrideBundleDefinition } from '@pezkuwi/types/types'; +import { typesBundleForPolkadot as typesBundleForPezkuwi } from '@acala-network/type-definitions'; + +// External package types, cast to proper type for compatibility // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access -export default (typesBundleForPezkuwi as Record).spec; +export default ((typesBundleForPezkuwi as Record).spec || {}) as Record; diff --git a/packages/apps-config/src/api/spec/bifrost-asgard.ts b/packages/apps-config/src/api/spec/bifrost-asgard.ts index 8465498..f123983 100644 --- a/packages/apps-config/src/api/spec/bifrost-asgard.ts +++ b/packages/apps-config/src/api/spec/bifrost-asgard.ts @@ -3,6 +3,6 @@ import type { OverrideBundleDefinition } from '@pezkuwi/types/types'; -import { typesBundleForPezkuwi } from '@bifrost-finance/type-definitions'; +import { typesBundleForPolkadot as typesBundleForPezkuwi } from '@bifrost-finance/type-definitions'; export default (typesBundleForPezkuwi as { spec: { asgard: OverrideBundleDefinition } }).spec.asgard; diff --git a/packages/apps-config/src/api/spec/bifrost-parachain.ts b/packages/apps-config/src/api/spec/bifrost-parachain.ts index 97690a8..b035093 100644 --- a/packages/apps-config/src/api/spec/bifrost-parachain.ts +++ b/packages/apps-config/src/api/spec/bifrost-parachain.ts @@ -3,6 +3,6 @@ import type { OverrideBundleDefinition } from '@pezkuwi/types/types'; -import { typesBundleForPezkuwi } from '@bifrost-finance/type-definitions'; +import { typesBundleForPolkadot as typesBundleForPezkuwi } from '@bifrost-finance/type-definitions'; export default (typesBundleForPezkuwi as { spec: { bifrost: OverrideBundleDefinition } }).spec.bifrost; diff --git a/packages/apps-config/src/api/spec/bifrost.ts b/packages/apps-config/src/api/spec/bifrost.ts index 97690a8..b035093 100644 --- a/packages/apps-config/src/api/spec/bifrost.ts +++ b/packages/apps-config/src/api/spec/bifrost.ts @@ -3,6 +3,6 @@ import type { OverrideBundleDefinition } from '@pezkuwi/types/types'; -import { typesBundleForPezkuwi } from '@bifrost-finance/type-definitions'; +import { typesBundleForPolkadot as typesBundleForPezkuwi } from '@bifrost-finance/type-definitions'; export default (typesBundleForPezkuwi as { spec: { bifrost: OverrideBundleDefinition } }).spec.bifrost; diff --git a/packages/apps-config/src/api/spec/crust.ts b/packages/apps-config/src/api/spec/crust.ts index 632bb72..08933ab 100644 --- a/packages/apps-config/src/api/spec/crust.ts +++ b/packages/apps-config/src/api/spec/crust.ts @@ -3,7 +3,7 @@ import type { OverrideBundleDefinition } from '@pezkuwi/types/types'; -import { typesBundleForPezkuwi } from '@crustio/type-definitions'; +import { typesBundleForPolkadot as typesBundleForPezkuwi } from '@crustio/type-definitions'; // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access export default (typesBundleForPezkuwi as Record>).spec.crust as OverrideBundleDefinition; diff --git a/packages/apps-config/src/api/spec/interbtc.ts b/packages/apps-config/src/api/spec/interbtc.ts index 6d7e7be..3135ba8 100644 --- a/packages/apps-config/src/api/spec/interbtc.ts +++ b/packages/apps-config/src/api/spec/interbtc.ts @@ -6,8 +6,7 @@ import type { Observable } from 'rxjs'; import type { ApiInterfaceRx } from '@pezkuwi/api/types'; import type { DeriveBalancesAll } from '@pezkuwi/api-derive/types'; -import type { Balance } from '@pezkuwi/types/interfaces'; -import type { FrameSystemAccountInfo } from '@pezkuwi/types/lookup'; +import type { AccountInfo, Balance } from '@pezkuwi/types/interfaces'; import type { OverrideBundleDefinition } from '@pezkuwi/types/types'; import interbtc from '@interlay/interbtc-types'; @@ -51,7 +50,7 @@ export function getBalance ( instanceId, (account: string): Observable => combineLatest<[any, any]>([api.query.tokens.accounts(account, { Token: nativeToken }), api.query.system.account(account)]).pipe( - map(([data, systemAccount]: [OrmlAccountData, FrameSystemAccountInfo]): DeriveBalancesAll => { + map(([data, systemAccount]: [OrmlAccountData, AccountInfo]): DeriveBalancesAll => { return { ...defaultAccountBalance(), accountId: api.registry.createType('AccountId', account), diff --git a/packages/apps-config/src/api/spec/laminar.ts b/packages/apps-config/src/api/spec/laminar.ts index eb77e35..374724e 100644 --- a/packages/apps-config/src/api/spec/laminar.ts +++ b/packages/apps-config/src/api/spec/laminar.ts @@ -3,7 +3,7 @@ import type { OverrideBundleDefinition } from '@pezkuwi/types/types'; -import { typesBundleForPezkuwi } from '@laminar/type-definitions'; +import { typesBundleForPolkadot as typesBundleForPezkuwi } from '@laminar/type-definitions'; // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access export default (typesBundleForPezkuwi as Record>).spec.laminar as OverrideBundleDefinition; diff --git a/packages/apps-config/src/api/spec/mangata.ts b/packages/apps-config/src/api/spec/mangata.ts index 316a5b4..2e9a887 100644 --- a/packages/apps-config/src/api/spec/mangata.ts +++ b/packages/apps-config/src/api/spec/mangata.ts @@ -7,8 +7,7 @@ import type { Observable } from 'rxjs'; import type { ApiInterfaceRx } from '@pezkuwi/api/types'; import type { DeriveBalancesAll } from '@pezkuwi/api-derive/types'; -import type { Balance } from '@pezkuwi/types/interfaces'; -import type { FrameSystemAccountInfo } from '@pezkuwi/types/lookup'; +import type { AccountInfo, Balance } from '@pezkuwi/types/interfaces'; import type { OverrideBundleDefinition } from '@pezkuwi/types/types'; import { mangataTypesBundleForPolkadotApps } from '@mangata-finance/type-definitions'; @@ -51,7 +50,7 @@ export function getBalance ( instanceId, (account: string): Observable => combineLatest<[any, any]>([api.query.tokens.accounts(account, 0), api.query.system.account(account)]).pipe( - map(([data, systemAccount]: [OrmlAccountData, FrameSystemAccountInfo]): DeriveBalancesAll => { + map(([data, systemAccount]: [OrmlAccountData, AccountInfo]): DeriveBalancesAll => { return { ...defaultAccountBalance(), accountId: api.registry.createType('AccountId', account), @@ -67,7 +66,8 @@ export function getBalance ( ); } -const definitions: OverrideBundleDefinition = { +// External package types from @mangata-finance use @polkadot types, cast to any for compatibility +const definitions = { derives: { balances: { account: getBalance, @@ -75,6 +75,6 @@ const definitions: OverrideBundleDefinition = { } }, ...mangataTypesBundleForPolkadotApps -}; +} as OverrideBundleDefinition; export default definitions; diff --git a/packages/apps-config/src/api/spec/moonbeam.ts b/packages/apps-config/src/api/spec/moonbeam.ts index e54291b..c6d95c7 100644 --- a/packages/apps-config/src/api/spec/moonbeam.ts +++ b/packages/apps-config/src/api/spec/moonbeam.ts @@ -1,6 +1,9 @@ // Copyright 2017-2026 @pezkuwi/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 +import type { OverrideBundleDefinition } from '@pezkuwi/types/types'; + import { moonbeamDefinitions } from '@moonbeam-network/types-bundle'; -export default moonbeamDefinitions; +// External package types, cast to proper type for compatibility +export default moonbeamDefinitions as OverrideBundleDefinition; diff --git a/packages/apps-config/src/api/spec/parallel.ts b/packages/apps-config/src/api/spec/parallel.ts index c462445..59c5566 100644 --- a/packages/apps-config/src/api/spec/parallel.ts +++ b/packages/apps-config/src/api/spec/parallel.ts @@ -1,7 +1,10 @@ // Copyright 2017-2026 @pezkuwi/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 -import { typesBundleForPezkuwi } from '@parallel-finance/type-definitions'; +import type { OverrideBundleDefinition } from '@pezkuwi/types/types'; +import { typesBundleForPolkadot as typesBundleForPezkuwi } from '@parallel-finance/type-definitions'; + +// External package types, cast to proper type for compatibility // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access -export default (typesBundleForPezkuwi as Record).spec; +export default ((typesBundleForPezkuwi as Record).spec || {}) as Record; diff --git a/packages/apps-config/src/api/spec/peaq.ts b/packages/apps-config/src/api/spec/peaq.ts index c02e5a3..5521b20 100644 --- a/packages/apps-config/src/api/spec/peaq.ts +++ b/packages/apps-config/src/api/spec/peaq.ts @@ -3,6 +3,6 @@ import type { OverrideBundleDefinition } from '@pezkuwi/types/types'; -import { typesBundleForPezkuwi } from '@peaqnetwork/type-definitions'; +import { typesBundleForPolkadot as typesBundleForPezkuwi } from '@peaqnetwork/type-definitions'; export default (typesBundleForPezkuwi as { spec: { peaq: OverrideBundleDefinition } }).spec.peaq; diff --git a/packages/apps-config/src/api/spec/pendulum.ts b/packages/apps-config/src/api/spec/pendulum.ts index cf402da..3e66dfd 100644 --- a/packages/apps-config/src/api/spec/pendulum.ts +++ b/packages/apps-config/src/api/spec/pendulum.ts @@ -3,6 +3,6 @@ import type { OverrideBundleDefinition } from '@pezkuwi/types/types'; -import { typesBundleForPezkuwi } from '@pendulum-chain/type-definitions'; +import { typesBundleForPolkadot as typesBundleForPezkuwi } from '@pendulum-chain/type-definitions'; export default (typesBundleForPezkuwi as { spec: { pendulum: OverrideBundleDefinition } }).spec.pendulum; diff --git a/packages/apps-config/src/api/spec/subspace.ts b/packages/apps-config/src/api/spec/subspace.ts index 4348506..d97e7ba 100644 --- a/packages/apps-config/src/api/spec/subspace.ts +++ b/packages/apps-config/src/api/spec/subspace.ts @@ -51,9 +51,11 @@ function createHeaderExtended ( header: Header, api: ApiInterfaceRx ): HeaderExtended { - const HeaderBase = registry.createClass('Header'); + // HeaderBase is dynamically created at runtime, so we need type assertions + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const HeaderBase = registry.createClass('Header') as any; - class SubHeaderExtended extends HeaderBase implements HeaderExtended { + class SubHeaderExtended extends HeaderBase { readonly #author?: AccountId32; constructor (registry: Registry, header: Header, api: ApiInterfaceRx) { @@ -67,7 +69,7 @@ function createHeaderExtended ( } } - return new SubHeaderExtended(registry, header, api); + return new SubHeaderExtended(registry, header, api) as HeaderExtended; } function subscribeNewHeads ( diff --git a/packages/apps-config/src/api/spec/zero.ts b/packages/apps-config/src/api/spec/zero.ts index c44608a..727c163 100644 --- a/packages/apps-config/src/api/spec/zero.ts +++ b/packages/apps-config/src/api/spec/zero.ts @@ -3,6 +3,6 @@ import type { OverrideBundleDefinition } from '@pezkuwi/types/types'; -import { typeBundleForPezkuwi } from '@zeroio/type-definitions'; +import { typeBundleForPolkadot as typeBundleForPezkuwi } from '@zeroio/type-definitions'; export default typeBundleForPezkuwi as unknown as OverrideBundleDefinition; diff --git a/packages/apps-config/src/api/typesBundle.ts b/packages/apps-config/src/api/typesBundle.ts index 0a39ca1..4e4c283 100644 --- a/packages/apps-config/src/api/typesBundle.ts +++ b/packages/apps-config/src/api/typesBundle.ts @@ -398,7 +398,7 @@ export const typesBundle = { "_enum": [ "ACA", "AUSD", - "HEZ", + "DOT", "XBTC", "LDOT", "RENBTC" @@ -776,8 +776,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -815,7 +815,7 @@ export const typesBundle = { "_enum": [ "ACA", "AUSD", - "HEZ", + "DOT", "XBTC", "LDOT", "RENBTC" @@ -1193,8 +1193,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -1232,7 +1232,7 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "XBTC": 4, "RENBTC": 5, @@ -1243,7 +1243,7 @@ export const typesBundle = { "BCG": 11, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "SDN": 135, "KILT": 138 @@ -1618,8 +1618,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -1657,7 +1657,7 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "XBTC": 4, "RENBTC": 5, @@ -1668,7 +1668,7 @@ export const typesBundle = { "BCG": 11, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "SDN": 135, "KILT": 138 @@ -2044,8 +2044,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -2088,12 +2088,12 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "RENBTC": 4, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "CASH": 140 } @@ -2471,8 +2471,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -2515,13 +2515,13 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "RENBTC": 20, "CASH": 21, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131 } }, @@ -2898,8 +2898,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -2942,13 +2942,13 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "RENBTC": 20, "CASH": 21, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "BNC": 168, "VSKSM": 169, @@ -3330,8 +3330,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -3374,13 +3374,13 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "RENBTC": 20, "CASH": 21, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "BNC": 168, "VSKSM": 169, @@ -3759,8 +3759,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -3798,13 +3798,13 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "RENBTC": 20, "CASH": 21, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "BNC": 168, "VSKSM": 169, @@ -4183,8 +4183,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -4222,13 +4222,13 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "RENBTC": 20, "CASH": 21, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "BNC": 168, "VSKSM": 169, @@ -4607,8 +4607,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -4785,7 +4785,7 @@ export const typesBundle = { "_enum": [ "ACA", "AUSD", - "HEZ", + "DOT", "XBTC", "LDOT", "RENBTC" @@ -5163,8 +5163,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -5202,7 +5202,7 @@ export const typesBundle = { "_enum": [ "ACA", "AUSD", - "HEZ", + "DOT", "XBTC", "LDOT", "RENBTC" @@ -5580,8 +5580,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -5619,7 +5619,7 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "XBTC": 4, "RENBTC": 5, @@ -5630,7 +5630,7 @@ export const typesBundle = { "BCG": 11, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "SDN": 135, "KILT": 138 @@ -6005,8 +6005,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -6044,7 +6044,7 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "XBTC": 4, "RENBTC": 5, @@ -6055,7 +6055,7 @@ export const typesBundle = { "BCG": 11, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "SDN": 135, "KILT": 138 @@ -6431,8 +6431,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -6475,12 +6475,12 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "RENBTC": 4, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "CASH": 140 } @@ -6858,8 +6858,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -6902,13 +6902,13 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "RENBTC": 20, "CASH": 21, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131 } }, @@ -7285,8 +7285,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -7329,13 +7329,13 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "RENBTC": 20, "CASH": 21, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "BNC": 168, "VSKSM": 169, @@ -7717,8 +7717,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -7761,13 +7761,13 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "RENBTC": 20, "CASH": 21, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "BNC": 168, "VSKSM": 169, @@ -8146,8 +8146,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -8185,13 +8185,13 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "RENBTC": 20, "CASH": 21, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "BNC": 168, "VSKSM": 169, @@ -8570,8 +8570,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -8609,13 +8609,13 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "RENBTC": 20, "CASH": 21, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "BNC": 168, "VSKSM": 169, @@ -8994,8 +8994,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -9172,7 +9172,7 @@ export const typesBundle = { "_enum": [ "ACA", "AUSD", - "HEZ", + "DOT", "XBTC", "LDOT", "RENBTC" @@ -9550,8 +9550,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -9589,7 +9589,7 @@ export const typesBundle = { "_enum": [ "ACA", "AUSD", - "HEZ", + "DOT", "XBTC", "LDOT", "RENBTC" @@ -9967,8 +9967,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -10006,7 +10006,7 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "XBTC": 4, "RENBTC": 5, @@ -10017,7 +10017,7 @@ export const typesBundle = { "BCG": 11, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "SDN": 135, "KILT": 138 @@ -10392,8 +10392,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -10431,7 +10431,7 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "XBTC": 4, "RENBTC": 5, @@ -10442,7 +10442,7 @@ export const typesBundle = { "BCG": 11, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "SDN": 135, "KILT": 138 @@ -10818,8 +10818,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -10862,12 +10862,12 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "RENBTC": 4, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "CASH": 140 } @@ -11245,8 +11245,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -11289,13 +11289,13 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "RENBTC": 20, "CASH": 21, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131 } }, @@ -11672,8 +11672,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -11716,13 +11716,13 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "RENBTC": 20, "CASH": 21, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "BNC": 168, "VSKSM": 169, @@ -12104,8 +12104,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -12148,13 +12148,13 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "RENBTC": 20, "CASH": 21, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "BNC": 168, "VSKSM": 169, @@ -12533,8 +12533,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -12572,13 +12572,13 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "RENBTC": 20, "CASH": 21, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "BNC": 168, "VSKSM": 169, @@ -12957,8 +12957,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -12996,13 +12996,13 @@ export const typesBundle = { "_enum": { "ACA": 0, "AUSD": 1, - "HEZ": 2, + "DOT": 2, "LDOT": 3, "RENBTC": 20, "CASH": 21, "KAR": 128, "KUSD": 129, - "DCL": 130, + "KSM": 130, "LKSM": 131, "BNC": 168, "VSKSM": 169, @@ -13381,8 +13381,8 @@ export const typesBundle = { "BalanceInfo": { "amount": "Balance" }, - "PezkuwiAccountId": "AccountId", - "PezkuwiAccountIdOf": "PezkuwiAccountId", + "PolkadotAccountId": "AccountId", + "PolkadotAccountIdOf": "PolkadotAccountId", "ExchangeRate": "FixedU128", "Rate": "FixedU128", "Ratio": "FixedU128", @@ -14887,7 +14887,7 @@ export const typesBundle = { "section": "zenlinkProtocol" }, "getSovereignsInfo": { - "description": "Get the ownership of a certain currency for each teyrchain.", + "description": "Get the ownership of a certain currency for each parachain.", "params": [ { "name": "asset_id", @@ -15375,9 +15375,9 @@ export const typesBundle = { "IsExtended": "bool", "SystemPalletId": "PalletId", "ledger": { - "Bizinikiwi": "BizinikiwiLedger" + "Substrate": "SubstrateLedger" }, - "BizinikiwiLedger": { + "SubstrateLedger": { "account": "AccountId", "total": "Balance", "active": "Balance", @@ -15451,20 +15451,20 @@ export const typesBundle = { "Withdraw": "Withdraw" } }, - "TeyrchainTransactProxyType": { + "ParachainTransactProxyType": { "_enum": { "Primary": 0, "Derived": 1 } }, - "TeyrchainDerivedProxyAccountType": { + "ParachainDerivedProxyAccountType": { "_enum": { "Salp": 0, "Staking": 1 } }, "Keys": "SessionKeys1", - "TeyrchainTransactType": { + "ParachainTransactType": { "_enum": { "Xcm": 0, "Proxy": 1 @@ -15562,8 +15562,8 @@ export const typesBundle = { "ASG": 0, "BNC": 1, "KUSD": 2, - "HEZ": 3, - "DCL": 4, + "DOT": 3, + "KSM": 4, "ETH": 5, "KAR": 6, "ZLK": 7, @@ -15951,9 +15951,9 @@ export const typesBundle = { "IsExtended": "bool", "SystemPalletId": "PalletId", "ledger": { - "Bizinikiwi": "BizinikiwiLedger" + "Substrate": "SubstrateLedger" }, - "BizinikiwiLedger": { + "SubstrateLedger": { "account": "AccountId", "total": "Balance", "active": "Balance", @@ -16027,20 +16027,20 @@ export const typesBundle = { "Withdraw": "Withdraw" } }, - "TeyrchainTransactProxyType": { + "ParachainTransactProxyType": { "_enum": { "Primary": 0, "Derived": 1 } }, - "TeyrchainDerivedProxyAccountType": { + "ParachainDerivedProxyAccountType": { "_enum": { "Salp": 0, "Staking": 1 } }, "Keys": "SessionKeys1", - "TeyrchainTransactType": { + "ParachainTransactType": { "_enum": { "Xcm": 0, "Proxy": 1 @@ -16138,8 +16138,8 @@ export const typesBundle = { "ASG": 0, "BNC": 1, "KUSD": 2, - "HEZ": 3, - "DCL": 4, + "DOT": 3, + "KSM": 4, "ETH": 5, "KAR": 6, "ZLK": 7, @@ -17145,7 +17145,7 @@ export const typesBundle = { "section": "zenlinkProtocol" }, "getSovereignsInfo": { - "description": "Get the ownership of a certain currency for each teyrchain.", + "description": "Get the ownership of a certain currency for each parachain.", "params": [ { "name": "asset_id", @@ -17633,9 +17633,9 @@ export const typesBundle = { "IsExtended": "bool", "SystemPalletId": "PalletId", "ledger": { - "Bizinikiwi": "BizinikiwiLedger" + "Substrate": "SubstrateLedger" }, - "BizinikiwiLedger": { + "SubstrateLedger": { "account": "AccountId", "total": "Balance", "active": "Balance", @@ -17709,20 +17709,20 @@ export const typesBundle = { "Withdraw": "Withdraw" } }, - "TeyrchainTransactProxyType": { + "ParachainTransactProxyType": { "_enum": { "Primary": 0, "Derived": 1 } }, - "TeyrchainDerivedProxyAccountType": { + "ParachainDerivedProxyAccountType": { "_enum": { "Salp": 0, "Staking": 1 } }, "Keys": "SessionKeys1", - "TeyrchainTransactType": { + "ParachainTransactType": { "_enum": { "Xcm": 0, "Proxy": 1 @@ -17820,8 +17820,8 @@ export const typesBundle = { "ASG": 0, "BNC": 1, "KUSD": 2, - "HEZ": 3, - "DCL": 4, + "DOT": 3, + "KSM": 4, "KAR": 6, "ZLK": 7, "PHA": 8, @@ -18208,9 +18208,9 @@ export const typesBundle = { "IsExtended": "bool", "SystemPalletId": "PalletId", "ledger": { - "Bizinikiwi": "BizinikiwiLedger" + "Substrate": "SubstrateLedger" }, - "BizinikiwiLedger": { + "SubstrateLedger": { "account": "AccountId", "total": "Balance", "active": "Balance", @@ -18284,20 +18284,20 @@ export const typesBundle = { "Withdraw": "Withdraw" } }, - "TeyrchainTransactProxyType": { + "ParachainTransactProxyType": { "_enum": { "Primary": 0, "Derived": 1 } }, - "TeyrchainDerivedProxyAccountType": { + "ParachainDerivedProxyAccountType": { "_enum": { "Salp": 0, "Staking": 1 } }, "Keys": "SessionKeys1", - "TeyrchainTransactType": { + "ParachainTransactType": { "_enum": { "Xcm": 0, "Proxy": 1 @@ -18395,8 +18395,8 @@ export const typesBundle = { "ASG": 0, "BNC": 1, "KUSD": 2, - "HEZ": 3, - "DCL": 4, + "DOT": 3, + "KSM": 4, "KAR": 6, "ZLK": 7, "PHA": 8, @@ -18722,7 +18722,7 @@ export const typesBundle = { "section": "zenlinkProtocol" }, "getSovereignsInfo": { - "description": "Get the ownership of a certain currency for each teyrchain.", + "description": "Get the ownership of a certain currency for each parachain.", "params": [ { "name": "asset_id", @@ -19210,9 +19210,9 @@ export const typesBundle = { "IsExtended": "bool", "SystemPalletId": "PalletId", "ledger": { - "Bizinikiwi": "BizinikiwiLedger" + "Substrate": "SubstrateLedger" }, - "BizinikiwiLedger": { + "SubstrateLedger": { "account": "AccountId", "total": "Balance", "active": "Balance", @@ -19286,20 +19286,20 @@ export const typesBundle = { "Withdraw": "Withdraw" } }, - "TeyrchainTransactProxyType": { + "ParachainTransactProxyType": { "_enum": { "Primary": 0, "Derived": 1 } }, - "TeyrchainDerivedProxyAccountType": { + "ParachainDerivedProxyAccountType": { "_enum": { "Salp": 0, "Staking": 1 } }, "Keys": "SessionKeys1", - "TeyrchainTransactType": { + "ParachainTransactType": { "_enum": { "Xcm": 0, "Proxy": 1 @@ -19397,8 +19397,8 @@ export const typesBundle = { "ASG": 0, "BNC": 1, "KUSD": 2, - "HEZ": 3, - "DCL": 4, + "DOT": 3, + "KSM": 4, "KAR": 6, "ZLK": 7, "PHA": 8, @@ -19785,9 +19785,9 @@ export const typesBundle = { "IsExtended": "bool", "SystemPalletId": "PalletId", "ledger": { - "Bizinikiwi": "BizinikiwiLedger" + "Substrate": "SubstrateLedger" }, - "BizinikiwiLedger": { + "SubstrateLedger": { "account": "AccountId", "total": "Balance", "active": "Balance", @@ -19861,20 +19861,20 @@ export const typesBundle = { "Withdraw": "Withdraw" } }, - "TeyrchainTransactProxyType": { + "ParachainTransactProxyType": { "_enum": { "Primary": 0, "Derived": 1 } }, - "TeyrchainDerivedProxyAccountType": { + "ParachainDerivedProxyAccountType": { "_enum": { "Salp": 0, "Staking": 1 } }, "Keys": "SessionKeys1", - "TeyrchainTransactType": { + "ParachainTransactType": { "_enum": { "Xcm": 0, "Proxy": 1 @@ -19972,8 +19972,8 @@ export const typesBundle = { "ASG": 0, "BNC": 1, "KUSD": 2, - "HEZ": 3, - "DCL": 4, + "DOT": 3, + "KSM": 4, "KAR": 6, "ZLK": 7, "PHA": 8, @@ -20307,6 +20307,19 @@ export const typesBundle = { } ] }, + "bizinikiwi-contracts-node": { + "types": [ + { + "minmax": [ + 0, + null + ], + "types": { + "Keys": "SessionKeys2" + } + } + ] + }, "centrifuge": { "types": [ { @@ -21691,8 +21704,8 @@ export const typesBundle = { "_enum": { "Any": "Null", "Named": "Vec", - "Pezkuwi": "Null", - "Dicle": "Null" + "Polkadot": "Null", + "Kusama": "Null" } }, "CollectionType": { @@ -21708,7 +21721,7 @@ export const typesBundle = { "NUUM", "AUSD", "ACA", - "HEZ" + "DOT" ] }, "CountryCurrencyId": "u32", @@ -21754,7 +21767,7 @@ export const typesBundle = { "BlindBoxId": "u64", "BlindBoxType": { "_enum": [ - "DCL", + "KSM", "NUUM", "MainnetNFTHat", "MainnetNFTJacket", @@ -27759,442 +27772,444 @@ export const typesBundle = { ] }, "heiko": { - "rpc": { - "oracle": { - "getValue": { - "description": "Retrieves the oracle value for a given key.", - "params": [ - { - "name": "providerId", - "type": "RpcDataProviderId" - }, - { - "name": "key", - "type": "OracleKey" - }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "Option", - "isSubscription": false, - "jsonrpc": "oracle_getValue", - "method": "getValue", - "section": "oracle" + "parallel": { + "rpc": { + "oracle": { + "getValue": { + "description": "Retrieves the oracle value for a given key.", + "params": [ + { + "name": "providerId", + "type": "RpcDataProviderId" + }, + { + "name": "key", + "type": "OracleKey" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "Option", + "isSubscription": false, + "jsonrpc": "oracle_getValue", + "method": "getValue", + "section": "oracle" + }, + "getAllValues": { + "description": "Retrieves all oracle values.", + "params": [ + { + "name": "providerId", + "type": "RpcDataProviderId" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "Vec<(OracleKey, Option)>", + "isSubscription": false, + "jsonrpc": "oracle_getAllValues", + "method": "getAllValues", + "section": "oracle" + } }, - "getAllValues": { - "description": "Retrieves all oracle values.", - "params": [ - { - "name": "providerId", - "type": "RpcDataProviderId" - }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "Vec<(OracleKey, Option)>", - "isSubscription": false, - "jsonrpc": "oracle_getAllValues", - "method": "getAllValues", - "section": "oracle" + "tokens": { + "queryExistentialDeposit": { + "description": "Query Existential Deposit for a given currency.", + "params": [ + { + "name": "currencyId", + "type": "CurrencyId" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "NumberOrHex", + "isSubscription": false, + "jsonrpc": "tokens_queryExistentialDeposit", + "method": "queryExistentialDeposit", + "section": "tokens" + } + }, + "loans": { + "getCollateralLiquidity": { + "description": "Retrieves collateral liquidity for the given user.", + "params": [ + { + "name": "account", + "type": "AccountId" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "(Liquidity, Shortfall, Liquidity, Shortfall)", + "isSubscription": false, + "jsonrpc": "loans_getCollateralLiquidity", + "method": "getCollateralLiquidity", + "section": "loans" + }, + "getLiquidationThresholdLiquidity": { + "description": "Retrieves liquidation threshold liquidity for the given user.", + "params": [ + { + "name": "account", + "type": "AccountId" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "(Liquidity, Shortfall, Liquidity, Shortfall)", + "isSubscription": false, + "jsonrpc": "loans_getLiquidationThresholdLiquidity", + "method": "getLiquidationThresholdLiquidity", + "section": "loans" + }, + "getMarketStatus": { + "description": "Retrieves market status data for a given asset id.", + "params": [ + { + "name": "asset_id", + "type": "CurrencyId" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "(Rate, Rate, Rate, Ratio, Balance, Balance, FixedU128)", + "isSubscription": false, + "jsonrpc": "loans_getMarketStatus", + "method": "getMarketStatus", + "section": "loans" + } + }, + "router": { + "getBestRoute": { + "description": "Returns the route that results in the largest amount out for amount in", + "params": [ + { + "name": "amount", + "type": "Balance" + }, + { + "name": "token_in", + "type": "CurrencyId" + }, + { + "name": "token_out", + "type": "CurrencyId" + }, + { + "name": "reversed", + "type": "bool" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "(Vec, FixedU128)", + "isSubscription": false, + "jsonrpc": "router_getBestRoute", + "method": "getBestRoute", + "section": "router" + } } }, - "tokens": { - "queryExistentialDeposit": { - "description": "Query Existential Deposit for a given currency.", - "params": [ - { - "name": "currencyId", - "type": "CurrencyId" - }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "NumberOrHex", - "isSubscription": false, - "jsonrpc": "tokens_queryExistentialDeposit", - "method": "queryExistentialDeposit", - "section": "tokens" - } + "instances": { + "council": [ + "generalCouncil" + ] }, - "loans": { - "getCollateralLiquidity": { - "description": "Retrieves collateral liquidity for the given user.", - "params": [ - { - "name": "account", - "type": "AccountId" - }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } + "types": [ + { + "minmax": [ + 0, + null ], - "type": "(Liquidity, Shortfall, Liquidity, Shortfall)", - "isSubscription": false, - "jsonrpc": "loans_getCollateralLiquidity", - "method": "getCollateralLiquidity", - "section": "loans" - }, - "getLiquidationThresholdLiquidity": { - "description": "Retrieves liquidation threshold liquidity for the given user.", - "params": [ - { - "name": "account", - "type": "AccountId" + "types": { + "CallOf": "Call", + "DispatchTime": { + "_enum": { + "At": "BlockNumber", + "After": "BlockNumber" + } }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "(Liquidity, Shortfall, Liquidity, Shortfall)", - "isSubscription": false, - "jsonrpc": "loans_getLiquidationThresholdLiquidity", - "method": "getLiquidationThresholdLiquidity", - "section": "loans" - }, - "getMarketStatus": { - "description": "Retrieves market status data for a given asset id.", - "params": [ - { - "name": "asset_id", - "type": "CurrencyId" + "ScheduleTaskIndex": "u32", + "DelayedOrigin": { + "delay": "BlockNumber", + "origin": "PalletsOrigin" }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "(Rate, Rate, Rate, Ratio, Balance, Balance, FixedU128)", - "isSubscription": false, - "jsonrpc": "loans_getMarketStatus", - "method": "getMarketStatus", - "section": "loans" + "AuthorityOrigin": "DelayedOrigin", + "StorageValue": "Vec", + "GraduallyUpdate": { + "key": "StorageKey", + "targetValue": "StorageValue", + "perBlock": "StorageValue" + }, + "StorageKeyBytes": "Vec", + "StorageValueBytes": "Vec", + "RpcDataProviderId": "Text", + "DataProviderId": "u8", + "TimestampedValue": { + "value": "OracleValue", + "timestamp": "Moment" + }, + "TimestampedValueOf": "TimestampedValue", + "OrderedSet": "Vec", + "OrmlAccountData": { + "free": "Balance", + "reserved": "Balance", + "frozen": "Balance" + }, + "OrmlBalanceLock": { + "amount": "Balance", + "id": "LockIdentifier" + }, + "AuctionInfo": { + "bid": "Option<(AccountId, Balance)>", + "start": "BlockNumber", + "end": "Option" + }, + "DelayedDispatchTime": { + "_enum": { + "At": "BlockNumber", + "After": "BlockNumber" + } + }, + "DispatchId": "u32", + "Price": "FixedU128", + "OrmlVestingSchedule": { + "start": "BlockNumber", + "period": "BlockNumber", + "periodCount": "u32", + "perPeriod": "Compact" + }, + "VestingScheduleOf": "OrmlVestingSchedule", + "OrmlCurrencyId": "u8", + "PoolInfo": { + "isActive": "bool", + "totalDeposited": "Balance", + "unlockHeight": "BlockNumber", + "coolDownDuration": "BlockNumber", + "rewardDuration": "BlockNumber", + "periodFinish": "BlockNumber", + "lastUpdateBlock": "BlockNumber", + "rewardRate": "Balance", + "rewardPerShareStored": "Balance" + }, + "CompactBalance": "Compact", + "PoolInfoV0": { + "totalShares": "Compact", + "totalRewards": "CompactBalance", + "totalWithdrawnRewards": "CompactBalance" + }, + "Share": "u128", + "OracleValue": "Price", + "Deposits": { + "voucherBalance": "Balance", + "isCollateral": "bool" + }, + "BorrowSnapshot": { + "principal": "Balance", + "borrowIndex": "u128" + }, + "EarnedSnapshot": { + "totalEarnedPrior": "Balance", + "exchangeRatePrior": "u128" + }, + "JumpModel": { + "baseRate": "Rate", + "jumpRate": "Rate", + "fullRate": "Rate", + "jumpUtilization": "Ratio" + }, + "CurveModel": { + "baseRate": "Rate" + }, + "InterestRateModel": { + "_enum": { + "JumpModel": "JumpModel", + "CurveModel": "CurveModel" + } + }, + "Market": { + "collateralFactor": "Ratio", + "liquidationThreshold": "Ratio", + "reserveFactor": "Ratio", + "closeFactor": "Ratio", + "liquidateIncentive": "Rate", + "liquidateIncentiveReservedFactor": "Ratio", + "rateModel": "InterestRateModel", + "state": "MarketState", + "supplyCap": "Balance", + "borrowCap": "Balance", + "ptokenId": "CurrencyId" + }, + "MarketState": { + "_enum": [ + "Active", + "Pending", + "Supervision" + ] + }, + "RewardMarketState": { + "index": "Balance", + "block": "BlockNumber" + }, + "Liquidity": "FixedU128", + "Shortfall": "FixedU128", + "ReservableAmount": { + "total": "Balance", + "reserved": "Balance" + }, + "MatchingLedger": { + "totalStakeAmount": "ReservableAmount", + "totalUnstakeAmount": "ReservableAmount" + }, + "UnlockChunk": { + "value": "Balance", + "era": "EraIndex" + }, + "StakingLedger": { + "stash": "AccountId", + "total": "Balance", + "active": "Balance", + "unlocking": "Vec", + "claimedRewards": "Vec" + }, + "DerivativeIndex": "u16", + "Pool": { + "baseAmount": "Balance", + "quoteAmount": "Balance", + "baseAmountLast": "Balance", + "quoteAmountLast": "Balance", + "lpTokenId": "AssetId", + "blockTimestampLast": "BlockNumber", + "price0CumulativeLast": "Balance", + "price1CumulativeLast": "Balance" + }, + "Amount": "i128", + "AmountOf": "Amount", + "Rate": "FixedU128", + "Ratio": "Permill", + "Timestamp": "u64", + "PriceDetail": "(Price, Timestamp)", + "CurrencyId": "AssetId", + "CurrencyIdOf": "CurrencyId", + "Currency": "CurrencyId", + "AssetIdOf": "AssetId", + "OracleKey": "AssetId", + "BoundedBalance": "BoundedVec<(Balance, BlockNumber), u32>", + "UserPosition": { + "depositBalance": "Balance", + "lockBalanceItems": "BoundedBalance", + "rewardAmount": "Balance", + "rewardPerSharePaid": "Balance" + }, + "Route": "Vec<(AssetId, AssetId)>", + "VaultPhase": { + "_enum": [ + "Pending", + "Contributing", + "Closed", + "Failed", + "Succeeded", + "Expired" + ] + }, + "ContributionStrategy": { + "_enum": [ + "XCM", + "XCMPROXY" + ] + }, + "ChildStorageKind": { + "_enum": [ + "Pending", + "Flying", + "Contributed" + ] + }, + "TrieIndex": "u32", + "LeasePeriod": "BlockNumber", + "Vault": { + "ctoken": "AssetId", + "phase": "VaultPhase", + "contributed": "Balance", + "pending": "Balance", + "flying": "Balance", + "contributionStrategy": "ContributionStrategy", + "cap": "Balance", + "endBlock": "BlockNumber", + "trieIndex": "TrieIndex", + "leaseStart": "LeasePeriod", + "leaseEnd": "LeasePeriod" + }, + "XcmWeightFeeMisc": { + "weight": "Weight", + "fee": "Balance" + }, + "XcmCall": { + "_enum": [ + "Bond", + "BondExtra", + "Unbond", + "Rebond", + "WithdrawUnbonded", + "Nominate", + "Contribute", + "Withdraw", + "AddMemo" + ] + }, + "BridgeToken": { + "id": "CurrencyId", + "external": "bool", + "fee": "Balance" + }, + "ProposalStatus": { + "_enum": [ + "Initiated", + "Approved", + "Rejected" + ] + }, + "Address": "MultiAddress", + "LookupSource": "MultiAddress", + "TAssetBalance": "u128" + } } - }, - "router": { - "getBestRoute": { - "description": "Returns the route that results in the largest amount out for amount in", - "params": [ - { - "name": "amount", - "type": "Balance" - }, - { - "name": "token_in", - "type": "CurrencyId" - }, - { - "name": "token_out", - "type": "CurrencyId" - }, - { - "name": "reversed", - "type": "bool" - }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "(Vec, FixedU128)", - "isSubscription": false, - "jsonrpc": "router_getBestRoute", - "method": "getBestRoute", - "section": "router" + ], + "alias": { + "tokens": { + "AccountData": "OrmlAccountData", + "BalanceLock": "OrmlBalanceLock" } } - }, - "instances": { - "council": [ - "generalCouncil" - ] - }, - "types": [ - { - "minmax": [ - 0, - null - ], - "types": { - "CallOf": "Call", - "DispatchTime": { - "_enum": { - "At": "BlockNumber", - "After": "BlockNumber" - } - }, - "ScheduleTaskIndex": "u32", - "DelayedOrigin": { - "delay": "BlockNumber", - "origin": "PalletsOrigin" - }, - "AuthorityOrigin": "DelayedOrigin", - "StorageValue": "Vec", - "GraduallyUpdate": { - "key": "StorageKey", - "targetValue": "StorageValue", - "perBlock": "StorageValue" - }, - "StorageKeyBytes": "Vec", - "StorageValueBytes": "Vec", - "RpcDataProviderId": "Text", - "DataProviderId": "u8", - "TimestampedValue": { - "value": "OracleValue", - "timestamp": "Moment" - }, - "TimestampedValueOf": "TimestampedValue", - "OrderedSet": "Vec", - "OrmlAccountData": { - "free": "Balance", - "reserved": "Balance", - "frozen": "Balance" - }, - "OrmlBalanceLock": { - "amount": "Balance", - "id": "LockIdentifier" - }, - "AuctionInfo": { - "bid": "Option<(AccountId, Balance)>", - "start": "BlockNumber", - "end": "Option" - }, - "DelayedDispatchTime": { - "_enum": { - "At": "BlockNumber", - "After": "BlockNumber" - } - }, - "DispatchId": "u32", - "Price": "FixedU128", - "OrmlVestingSchedule": { - "start": "BlockNumber", - "period": "BlockNumber", - "periodCount": "u32", - "perPeriod": "Compact" - }, - "VestingScheduleOf": "OrmlVestingSchedule", - "OrmlCurrencyId": "u8", - "PoolInfo": { - "isActive": "bool", - "totalDeposited": "Balance", - "unlockHeight": "BlockNumber", - "coolDownDuration": "BlockNumber", - "rewardDuration": "BlockNumber", - "periodFinish": "BlockNumber", - "lastUpdateBlock": "BlockNumber", - "rewardRate": "Balance", - "rewardPerShareStored": "Balance" - }, - "CompactBalance": "Compact", - "PoolInfoV0": { - "totalShares": "Compact", - "totalRewards": "CompactBalance", - "totalWithdrawnRewards": "CompactBalance" - }, - "Share": "u128", - "OracleValue": "Price", - "Deposits": { - "voucherBalance": "Balance", - "isCollateral": "bool" - }, - "BorrowSnapshot": { - "principal": "Balance", - "borrowIndex": "u128" - }, - "EarnedSnapshot": { - "totalEarnedPrior": "Balance", - "exchangeRatePrior": "u128" - }, - "JumpModel": { - "baseRate": "Rate", - "jumpRate": "Rate", - "fullRate": "Rate", - "jumpUtilization": "Ratio" - }, - "CurveModel": { - "baseRate": "Rate" - }, - "InterestRateModel": { - "_enum": { - "JumpModel": "JumpModel", - "CurveModel": "CurveModel" - } - }, - "Market": { - "collateralFactor": "Ratio", - "liquidationThreshold": "Ratio", - "reserveFactor": "Ratio", - "closeFactor": "Ratio", - "liquidateIncentive": "Rate", - "liquidateIncentiveReservedFactor": "Ratio", - "rateModel": "InterestRateModel", - "state": "MarketState", - "supplyCap": "Balance", - "borrowCap": "Balance", - "ptokenId": "CurrencyId" - }, - "MarketState": { - "_enum": [ - "Active", - "Pending", - "Supervision" - ] - }, - "RewardMarketState": { - "index": "Balance", - "block": "BlockNumber" - }, - "Liquidity": "FixedU128", - "Shortfall": "FixedU128", - "ReservableAmount": { - "total": "Balance", - "reserved": "Balance" - }, - "MatchingLedger": { - "totalStakeAmount": "ReservableAmount", - "totalUnstakeAmount": "ReservableAmount" - }, - "UnlockChunk": { - "value": "Balance", - "era": "EraIndex" - }, - "StakingLedger": { - "stash": "AccountId", - "total": "Balance", - "active": "Balance", - "unlocking": "Vec", - "claimedRewards": "Vec" - }, - "DerivativeIndex": "u16", - "Pool": { - "baseAmount": "Balance", - "quoteAmount": "Balance", - "baseAmountLast": "Balance", - "quoteAmountLast": "Balance", - "lpTokenId": "AssetId", - "blockTimestampLast": "BlockNumber", - "price0CumulativeLast": "Balance", - "price1CumulativeLast": "Balance" - }, - "Amount": "i128", - "AmountOf": "Amount", - "Rate": "FixedU128", - "Ratio": "Permill", - "Timestamp": "u64", - "PriceDetail": "(Price, Timestamp)", - "CurrencyId": "AssetId", - "CurrencyIdOf": "CurrencyId", - "Currency": "CurrencyId", - "AssetIdOf": "AssetId", - "OracleKey": "AssetId", - "BoundedBalance": "BoundedVec<(Balance, BlockNumber), u32>", - "UserPosition": { - "depositBalance": "Balance", - "lockBalanceItems": "BoundedBalance", - "rewardAmount": "Balance", - "rewardPerSharePaid": "Balance" - }, - "Route": "Vec<(AssetId, AssetId)>", - "VaultPhase": { - "_enum": [ - "Pending", - "Contributing", - "Closed", - "Failed", - "Succeeded", - "Expired" - ] - }, - "ContributionStrategy": { - "_enum": [ - "XCM", - "XCMPROXY" - ] - }, - "ChildStorageKind": { - "_enum": [ - "Pending", - "Flying", - "Contributed" - ] - }, - "TrieIndex": "u32", - "LeasePeriod": "BlockNumber", - "Vault": { - "ctoken": "AssetId", - "phase": "VaultPhase", - "contributed": "Balance", - "pending": "Balance", - "flying": "Balance", - "contributionStrategy": "ContributionStrategy", - "cap": "Balance", - "endBlock": "BlockNumber", - "trieIndex": "TrieIndex", - "leaseStart": "LeasePeriod", - "leaseEnd": "LeasePeriod" - }, - "XcmWeightFeeMisc": { - "weight": "Weight", - "fee": "Balance" - }, - "XcmCall": { - "_enum": [ - "Bond", - "BondExtra", - "Unbond", - "Rebond", - "WithdrawUnbonded", - "Nominate", - "Contribute", - "Withdraw", - "AddMemo" - ] - }, - "BridgeToken": { - "id": "CurrencyId", - "external": "bool", - "fee": "Balance" - }, - "ProposalStatus": { - "_enum": [ - "Initiated", - "Approved", - "Rejected" - ] - }, - "Address": "MultiAddress", - "LookupSource": "MultiAddress", - "TAssetBalance": "u128" - } - } - ], - "alias": { - "tokens": { - "AccountData": "OrmlAccountData", - "BalanceLock": "OrmlBalanceLock" - } } }, "heima": { @@ -28331,7 +28346,7 @@ export const typesBundle = { } ] }, - "interbtc-teyrchain": { + "interbtc-standalone": { "default": { "types": [ { @@ -28399,20 +28414,20 @@ export const typesBundle = { "SignedFixedPoint": "FixedU128", "TokenSymbol": { "_enum": { - "HEZ": 0, + "DOT": 0, "IBTC": 1, "INTR": 2, - "DCL": 10, + "KSM": 10, "KBTC": 11, "KINT": 12 } }, "InterbtcPrimitivesTokenSymbol": { "_enum": { - "HEZ": 0, + "DOT": 0, "IBTC": 1, "INTR": 2, - "DCL": 10, + "KSM": 10, "KBTC": 11, "KINT": 12 } @@ -28894,7 +28909,7 @@ export const typesBundle = { } } }, - "interbtc-standalone": { + "interbtc-teyrchain": { "default": { "types": [ { @@ -28962,20 +28977,20 @@ export const typesBundle = { "SignedFixedPoint": "FixedU128", "TokenSymbol": { "_enum": { - "HEZ": 0, + "DOT": 0, "IBTC": 1, "INTR": 2, - "DCL": 10, + "KSM": 10, "KBTC": 11, "KINT": 12 } }, "InterbtcPrimitivesTokenSymbol": { "_enum": { - "HEZ": 0, + "DOT": 0, "IBTC": 1, "INTR": 2, - "DCL": 10, + "KSM": 10, "KBTC": 11, "KINT": 12 } @@ -29525,20 +29540,20 @@ export const typesBundle = { "SignedFixedPoint": "FixedU128", "TokenSymbol": { "_enum": { - "HEZ": 0, + "DOT": 0, "IBTC": 1, "INTR": 2, - "DCL": 10, + "KSM": 10, "KBTC": 11, "KINT": 12 } }, "InterbtcPrimitivesTokenSymbol": { "_enum": { - "HEZ": 0, + "DOT": 0, "IBTC": 1, "INTR": 2, - "DCL": 10, + "KSM": 10, "KBTC": 11, "KINT": 12 } @@ -30186,7 +30201,7 @@ export const typesBundle = { { "methods": { "doton_mint_amount_with_dot": { - "description": "Amount of DOTON that expected to be minted from passed HEZ amount.", + "description": "Amount of DOTON that expected to be minted from passed DOT amount.", "params": [ { "name": "amount", @@ -30196,7 +30211,7 @@ export const typesBundle = { "type": "Result" }, "dot_redeem_amount_with_doton": { - "description": "Amount of HEZ that expected to be redeemed with passed amount of DOTON.", + "description": "Amount of DOT that expected to be redeemed with passed amount of DOTON.", "params": [ { "name": "amount", @@ -30206,12 +30221,12 @@ export const typesBundle = { "type": "Result" }, "min_mint_from_dot_amount": { - "description": "Minimal amount of HEZ to stake through DOTON module.", + "description": "Minimal amount of DOT to stake through DOTON module.", "params": [], "type": "Result" }, "min_redeem_to_dot_amount": { - "description": "Minimal amount of DOTON to redeem HEZ.", + "description": "Minimal amount of DOTON to redeem DOT.", "params": [], "type": "Result" }, @@ -30236,7 +30251,7 @@ export const typesBundle = { "type": "Result" }, "max_doton_amount_to_redeem_into_dot": { - "description": "Maximum amount of DOTON to request redeem to HEZ due to the vault state.", + "description": "Maximum amount of DOTON to request redeem to DOT due to the vault state.", "params": [], "type": "Result" }, @@ -30249,7 +30264,7 @@ export const typesBundle = { "version": 1 } ], - "TeyrchainStaking": [ + "ParachainStaking": [ { "methods": { "get_staking_rates": { @@ -30285,7 +30300,7 @@ export const typesBundle = { { "methods": { "maybe_remaining_dot_stake_limit": { - "description": "Remaining HEZ amount that account allowed to stake. Returns None if no limit.", + "description": "Remaining DOT amount that account allowed to stake. Returns None if no limit.", "params": [ { "name": "account", @@ -30312,6 +30327,20 @@ export const typesBundle = { "rpc": {}, "signedExtensions": {} }, + "jupiter-pezkuwichain": { + "types": [ + { + "minmax": [ + 0, + null + ], + "types": { + "LookupSource": "MultiAddress", + "Address": "MultiAddress" + } + } + ] + }, "jupiter-prep": { "types": [ { @@ -30381,20 +30410,6 @@ export const typesBundle = { } ] }, - "jupiter-pezkuwichain": { - "types": [ - { - "minmax": [ - 0, - null - ], - "types": { - "LookupSource": "MultiAddress", - "Address": "MultiAddress" - } - } - ] - }, "jur-chain": { "types": [ { @@ -30418,442 +30433,444 @@ export const typesBundle = { ] }, "kerria": { - "rpc": { - "oracle": { - "getValue": { - "description": "Retrieves the oracle value for a given key.", - "params": [ - { - "name": "providerId", - "type": "RpcDataProviderId" - }, - { - "name": "key", - "type": "OracleKey" - }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "Option", - "isSubscription": false, - "jsonrpc": "oracle_getValue", - "method": "getValue", - "section": "oracle" + "parallel": { + "rpc": { + "oracle": { + "getValue": { + "description": "Retrieves the oracle value for a given key.", + "params": [ + { + "name": "providerId", + "type": "RpcDataProviderId" + }, + { + "name": "key", + "type": "OracleKey" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "Option", + "isSubscription": false, + "jsonrpc": "oracle_getValue", + "method": "getValue", + "section": "oracle" + }, + "getAllValues": { + "description": "Retrieves all oracle values.", + "params": [ + { + "name": "providerId", + "type": "RpcDataProviderId" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "Vec<(OracleKey, Option)>", + "isSubscription": false, + "jsonrpc": "oracle_getAllValues", + "method": "getAllValues", + "section": "oracle" + } }, - "getAllValues": { - "description": "Retrieves all oracle values.", - "params": [ - { - "name": "providerId", - "type": "RpcDataProviderId" - }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "Vec<(OracleKey, Option)>", - "isSubscription": false, - "jsonrpc": "oracle_getAllValues", - "method": "getAllValues", - "section": "oracle" + "tokens": { + "queryExistentialDeposit": { + "description": "Query Existential Deposit for a given currency.", + "params": [ + { + "name": "currencyId", + "type": "CurrencyId" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "NumberOrHex", + "isSubscription": false, + "jsonrpc": "tokens_queryExistentialDeposit", + "method": "queryExistentialDeposit", + "section": "tokens" + } + }, + "loans": { + "getCollateralLiquidity": { + "description": "Retrieves collateral liquidity for the given user.", + "params": [ + { + "name": "account", + "type": "AccountId" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "(Liquidity, Shortfall, Liquidity, Shortfall)", + "isSubscription": false, + "jsonrpc": "loans_getCollateralLiquidity", + "method": "getCollateralLiquidity", + "section": "loans" + }, + "getLiquidationThresholdLiquidity": { + "description": "Retrieves liquidation threshold liquidity for the given user.", + "params": [ + { + "name": "account", + "type": "AccountId" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "(Liquidity, Shortfall, Liquidity, Shortfall)", + "isSubscription": false, + "jsonrpc": "loans_getLiquidationThresholdLiquidity", + "method": "getLiquidationThresholdLiquidity", + "section": "loans" + }, + "getMarketStatus": { + "description": "Retrieves market status data for a given asset id.", + "params": [ + { + "name": "asset_id", + "type": "CurrencyId" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "(Rate, Rate, Rate, Ratio, Balance, Balance, FixedU128)", + "isSubscription": false, + "jsonrpc": "loans_getMarketStatus", + "method": "getMarketStatus", + "section": "loans" + } + }, + "router": { + "getBestRoute": { + "description": "Returns the route that results in the largest amount out for amount in", + "params": [ + { + "name": "amount", + "type": "Balance" + }, + { + "name": "token_in", + "type": "CurrencyId" + }, + { + "name": "token_out", + "type": "CurrencyId" + }, + { + "name": "reversed", + "type": "bool" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "(Vec, FixedU128)", + "isSubscription": false, + "jsonrpc": "router_getBestRoute", + "method": "getBestRoute", + "section": "router" + } } }, - "tokens": { - "queryExistentialDeposit": { - "description": "Query Existential Deposit for a given currency.", - "params": [ - { - "name": "currencyId", - "type": "CurrencyId" - }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "NumberOrHex", - "isSubscription": false, - "jsonrpc": "tokens_queryExistentialDeposit", - "method": "queryExistentialDeposit", - "section": "tokens" - } + "instances": { + "council": [ + "generalCouncil" + ] }, - "loans": { - "getCollateralLiquidity": { - "description": "Retrieves collateral liquidity for the given user.", - "params": [ - { - "name": "account", - "type": "AccountId" - }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } + "types": [ + { + "minmax": [ + 0, + null ], - "type": "(Liquidity, Shortfall, Liquidity, Shortfall)", - "isSubscription": false, - "jsonrpc": "loans_getCollateralLiquidity", - "method": "getCollateralLiquidity", - "section": "loans" - }, - "getLiquidationThresholdLiquidity": { - "description": "Retrieves liquidation threshold liquidity for the given user.", - "params": [ - { - "name": "account", - "type": "AccountId" + "types": { + "CallOf": "Call", + "DispatchTime": { + "_enum": { + "At": "BlockNumber", + "After": "BlockNumber" + } }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "(Liquidity, Shortfall, Liquidity, Shortfall)", - "isSubscription": false, - "jsonrpc": "loans_getLiquidationThresholdLiquidity", - "method": "getLiquidationThresholdLiquidity", - "section": "loans" - }, - "getMarketStatus": { - "description": "Retrieves market status data for a given asset id.", - "params": [ - { - "name": "asset_id", - "type": "CurrencyId" + "ScheduleTaskIndex": "u32", + "DelayedOrigin": { + "delay": "BlockNumber", + "origin": "PalletsOrigin" }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "(Rate, Rate, Rate, Ratio, Balance, Balance, FixedU128)", - "isSubscription": false, - "jsonrpc": "loans_getMarketStatus", - "method": "getMarketStatus", - "section": "loans" + "AuthorityOrigin": "DelayedOrigin", + "StorageValue": "Vec", + "GraduallyUpdate": { + "key": "StorageKey", + "targetValue": "StorageValue", + "perBlock": "StorageValue" + }, + "StorageKeyBytes": "Vec", + "StorageValueBytes": "Vec", + "RpcDataProviderId": "Text", + "DataProviderId": "u8", + "TimestampedValue": { + "value": "OracleValue", + "timestamp": "Moment" + }, + "TimestampedValueOf": "TimestampedValue", + "OrderedSet": "Vec", + "OrmlAccountData": { + "free": "Balance", + "reserved": "Balance", + "frozen": "Balance" + }, + "OrmlBalanceLock": { + "amount": "Balance", + "id": "LockIdentifier" + }, + "AuctionInfo": { + "bid": "Option<(AccountId, Balance)>", + "start": "BlockNumber", + "end": "Option" + }, + "DelayedDispatchTime": { + "_enum": { + "At": "BlockNumber", + "After": "BlockNumber" + } + }, + "DispatchId": "u32", + "Price": "FixedU128", + "OrmlVestingSchedule": { + "start": "BlockNumber", + "period": "BlockNumber", + "periodCount": "u32", + "perPeriod": "Compact" + }, + "VestingScheduleOf": "OrmlVestingSchedule", + "OrmlCurrencyId": "u8", + "PoolInfo": { + "isActive": "bool", + "totalDeposited": "Balance", + "unlockHeight": "BlockNumber", + "coolDownDuration": "BlockNumber", + "rewardDuration": "BlockNumber", + "periodFinish": "BlockNumber", + "lastUpdateBlock": "BlockNumber", + "rewardRate": "Balance", + "rewardPerShareStored": "Balance" + }, + "CompactBalance": "Compact", + "PoolInfoV0": { + "totalShares": "Compact", + "totalRewards": "CompactBalance", + "totalWithdrawnRewards": "CompactBalance" + }, + "Share": "u128", + "OracleValue": "Price", + "Deposits": { + "voucherBalance": "Balance", + "isCollateral": "bool" + }, + "BorrowSnapshot": { + "principal": "Balance", + "borrowIndex": "u128" + }, + "EarnedSnapshot": { + "totalEarnedPrior": "Balance", + "exchangeRatePrior": "u128" + }, + "JumpModel": { + "baseRate": "Rate", + "jumpRate": "Rate", + "fullRate": "Rate", + "jumpUtilization": "Ratio" + }, + "CurveModel": { + "baseRate": "Rate" + }, + "InterestRateModel": { + "_enum": { + "JumpModel": "JumpModel", + "CurveModel": "CurveModel" + } + }, + "Market": { + "collateralFactor": "Ratio", + "liquidationThreshold": "Ratio", + "reserveFactor": "Ratio", + "closeFactor": "Ratio", + "liquidateIncentive": "Rate", + "liquidateIncentiveReservedFactor": "Ratio", + "rateModel": "InterestRateModel", + "state": "MarketState", + "supplyCap": "Balance", + "borrowCap": "Balance", + "ptokenId": "CurrencyId" + }, + "MarketState": { + "_enum": [ + "Active", + "Pending", + "Supervision" + ] + }, + "RewardMarketState": { + "index": "Balance", + "block": "BlockNumber" + }, + "Liquidity": "FixedU128", + "Shortfall": "FixedU128", + "ReservableAmount": { + "total": "Balance", + "reserved": "Balance" + }, + "MatchingLedger": { + "totalStakeAmount": "ReservableAmount", + "totalUnstakeAmount": "ReservableAmount" + }, + "UnlockChunk": { + "value": "Balance", + "era": "EraIndex" + }, + "StakingLedger": { + "stash": "AccountId", + "total": "Balance", + "active": "Balance", + "unlocking": "Vec", + "claimedRewards": "Vec" + }, + "DerivativeIndex": "u16", + "Pool": { + "baseAmount": "Balance", + "quoteAmount": "Balance", + "baseAmountLast": "Balance", + "quoteAmountLast": "Balance", + "lpTokenId": "AssetId", + "blockTimestampLast": "BlockNumber", + "price0CumulativeLast": "Balance", + "price1CumulativeLast": "Balance" + }, + "Amount": "i128", + "AmountOf": "Amount", + "Rate": "FixedU128", + "Ratio": "Permill", + "Timestamp": "u64", + "PriceDetail": "(Price, Timestamp)", + "CurrencyId": "AssetId", + "CurrencyIdOf": "CurrencyId", + "Currency": "CurrencyId", + "AssetIdOf": "AssetId", + "OracleKey": "AssetId", + "BoundedBalance": "BoundedVec<(Balance, BlockNumber), u32>", + "UserPosition": { + "depositBalance": "Balance", + "lockBalanceItems": "BoundedBalance", + "rewardAmount": "Balance", + "rewardPerSharePaid": "Balance" + }, + "Route": "Vec<(AssetId, AssetId)>", + "VaultPhase": { + "_enum": [ + "Pending", + "Contributing", + "Closed", + "Failed", + "Succeeded", + "Expired" + ] + }, + "ContributionStrategy": { + "_enum": [ + "XCM", + "XCMPROXY" + ] + }, + "ChildStorageKind": { + "_enum": [ + "Pending", + "Flying", + "Contributed" + ] + }, + "TrieIndex": "u32", + "LeasePeriod": "BlockNumber", + "Vault": { + "ctoken": "AssetId", + "phase": "VaultPhase", + "contributed": "Balance", + "pending": "Balance", + "flying": "Balance", + "contributionStrategy": "ContributionStrategy", + "cap": "Balance", + "endBlock": "BlockNumber", + "trieIndex": "TrieIndex", + "leaseStart": "LeasePeriod", + "leaseEnd": "LeasePeriod" + }, + "XcmWeightFeeMisc": { + "weight": "Weight", + "fee": "Balance" + }, + "XcmCall": { + "_enum": [ + "Bond", + "BondExtra", + "Unbond", + "Rebond", + "WithdrawUnbonded", + "Nominate", + "Contribute", + "Withdraw", + "AddMemo" + ] + }, + "BridgeToken": { + "id": "CurrencyId", + "external": "bool", + "fee": "Balance" + }, + "ProposalStatus": { + "_enum": [ + "Initiated", + "Approved", + "Rejected" + ] + }, + "Address": "MultiAddress", + "LookupSource": "MultiAddress", + "TAssetBalance": "u128" + } } - }, - "router": { - "getBestRoute": { - "description": "Returns the route that results in the largest amount out for amount in", - "params": [ - { - "name": "amount", - "type": "Balance" - }, - { - "name": "token_in", - "type": "CurrencyId" - }, - { - "name": "token_out", - "type": "CurrencyId" - }, - { - "name": "reversed", - "type": "bool" - }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "(Vec, FixedU128)", - "isSubscription": false, - "jsonrpc": "router_getBestRoute", - "method": "getBestRoute", - "section": "router" + ], + "alias": { + "tokens": { + "AccountData": "OrmlAccountData", + "BalanceLock": "OrmlBalanceLock" } } - }, - "instances": { - "council": [ - "generalCouncil" - ] - }, - "types": [ - { - "minmax": [ - 0, - null - ], - "types": { - "CallOf": "Call", - "DispatchTime": { - "_enum": { - "At": "BlockNumber", - "After": "BlockNumber" - } - }, - "ScheduleTaskIndex": "u32", - "DelayedOrigin": { - "delay": "BlockNumber", - "origin": "PalletsOrigin" - }, - "AuthorityOrigin": "DelayedOrigin", - "StorageValue": "Vec", - "GraduallyUpdate": { - "key": "StorageKey", - "targetValue": "StorageValue", - "perBlock": "StorageValue" - }, - "StorageKeyBytes": "Vec", - "StorageValueBytes": "Vec", - "RpcDataProviderId": "Text", - "DataProviderId": "u8", - "TimestampedValue": { - "value": "OracleValue", - "timestamp": "Moment" - }, - "TimestampedValueOf": "TimestampedValue", - "OrderedSet": "Vec", - "OrmlAccountData": { - "free": "Balance", - "reserved": "Balance", - "frozen": "Balance" - }, - "OrmlBalanceLock": { - "amount": "Balance", - "id": "LockIdentifier" - }, - "AuctionInfo": { - "bid": "Option<(AccountId, Balance)>", - "start": "BlockNumber", - "end": "Option" - }, - "DelayedDispatchTime": { - "_enum": { - "At": "BlockNumber", - "After": "BlockNumber" - } - }, - "DispatchId": "u32", - "Price": "FixedU128", - "OrmlVestingSchedule": { - "start": "BlockNumber", - "period": "BlockNumber", - "periodCount": "u32", - "perPeriod": "Compact" - }, - "VestingScheduleOf": "OrmlVestingSchedule", - "OrmlCurrencyId": "u8", - "PoolInfo": { - "isActive": "bool", - "totalDeposited": "Balance", - "unlockHeight": "BlockNumber", - "coolDownDuration": "BlockNumber", - "rewardDuration": "BlockNumber", - "periodFinish": "BlockNumber", - "lastUpdateBlock": "BlockNumber", - "rewardRate": "Balance", - "rewardPerShareStored": "Balance" - }, - "CompactBalance": "Compact", - "PoolInfoV0": { - "totalShares": "Compact", - "totalRewards": "CompactBalance", - "totalWithdrawnRewards": "CompactBalance" - }, - "Share": "u128", - "OracleValue": "Price", - "Deposits": { - "voucherBalance": "Balance", - "isCollateral": "bool" - }, - "BorrowSnapshot": { - "principal": "Balance", - "borrowIndex": "u128" - }, - "EarnedSnapshot": { - "totalEarnedPrior": "Balance", - "exchangeRatePrior": "u128" - }, - "JumpModel": { - "baseRate": "Rate", - "jumpRate": "Rate", - "fullRate": "Rate", - "jumpUtilization": "Ratio" - }, - "CurveModel": { - "baseRate": "Rate" - }, - "InterestRateModel": { - "_enum": { - "JumpModel": "JumpModel", - "CurveModel": "CurveModel" - } - }, - "Market": { - "collateralFactor": "Ratio", - "liquidationThreshold": "Ratio", - "reserveFactor": "Ratio", - "closeFactor": "Ratio", - "liquidateIncentive": "Rate", - "liquidateIncentiveReservedFactor": "Ratio", - "rateModel": "InterestRateModel", - "state": "MarketState", - "supplyCap": "Balance", - "borrowCap": "Balance", - "ptokenId": "CurrencyId" - }, - "MarketState": { - "_enum": [ - "Active", - "Pending", - "Supervision" - ] - }, - "RewardMarketState": { - "index": "Balance", - "block": "BlockNumber" - }, - "Liquidity": "FixedU128", - "Shortfall": "FixedU128", - "ReservableAmount": { - "total": "Balance", - "reserved": "Balance" - }, - "MatchingLedger": { - "totalStakeAmount": "ReservableAmount", - "totalUnstakeAmount": "ReservableAmount" - }, - "UnlockChunk": { - "value": "Balance", - "era": "EraIndex" - }, - "StakingLedger": { - "stash": "AccountId", - "total": "Balance", - "active": "Balance", - "unlocking": "Vec", - "claimedRewards": "Vec" - }, - "DerivativeIndex": "u16", - "Pool": { - "baseAmount": "Balance", - "quoteAmount": "Balance", - "baseAmountLast": "Balance", - "quoteAmountLast": "Balance", - "lpTokenId": "AssetId", - "blockTimestampLast": "BlockNumber", - "price0CumulativeLast": "Balance", - "price1CumulativeLast": "Balance" - }, - "Amount": "i128", - "AmountOf": "Amount", - "Rate": "FixedU128", - "Ratio": "Permill", - "Timestamp": "u64", - "PriceDetail": "(Price, Timestamp)", - "CurrencyId": "AssetId", - "CurrencyIdOf": "CurrencyId", - "Currency": "CurrencyId", - "AssetIdOf": "AssetId", - "OracleKey": "AssetId", - "BoundedBalance": "BoundedVec<(Balance, BlockNumber), u32>", - "UserPosition": { - "depositBalance": "Balance", - "lockBalanceItems": "BoundedBalance", - "rewardAmount": "Balance", - "rewardPerSharePaid": "Balance" - }, - "Route": "Vec<(AssetId, AssetId)>", - "VaultPhase": { - "_enum": [ - "Pending", - "Contributing", - "Closed", - "Failed", - "Succeeded", - "Expired" - ] - }, - "ContributionStrategy": { - "_enum": [ - "XCM", - "XCMPROXY" - ] - }, - "ChildStorageKind": { - "_enum": [ - "Pending", - "Flying", - "Contributed" - ] - }, - "TrieIndex": "u32", - "LeasePeriod": "BlockNumber", - "Vault": { - "ctoken": "AssetId", - "phase": "VaultPhase", - "contributed": "Balance", - "pending": "Balance", - "flying": "Balance", - "contributionStrategy": "ContributionStrategy", - "cap": "Balance", - "endBlock": "BlockNumber", - "trieIndex": "TrieIndex", - "leaseStart": "LeasePeriod", - "leaseEnd": "LeasePeriod" - }, - "XcmWeightFeeMisc": { - "weight": "Weight", - "fee": "Balance" - }, - "XcmCall": { - "_enum": [ - "Bond", - "BondExtra", - "Unbond", - "Rebond", - "WithdrawUnbonded", - "Nominate", - "Contribute", - "Withdraw", - "AddMemo" - ] - }, - "BridgeToken": { - "id": "CurrencyId", - "external": "bool", - "fee": "Balance" - }, - "ProposalStatus": { - "_enum": [ - "Initiated", - "Approved", - "Rejected" - ] - }, - "Address": "MultiAddress", - "LookupSource": "MultiAddress", - "TAssetBalance": "u128" - } - } - ], - "alias": { - "tokens": { - "AccountData": "OrmlAccountData", - "BalanceLock": "OrmlBalanceLock" - } } }, "khala": { @@ -31830,8 +31847,8 @@ export const typesBundle = { "CurrencyIdOf": "CurrencyId", "CurrencyId": { "_enum": { - "HEZ": 0, - "DCL": 1, + "DOT": 0, + "KSM": 1, "KILT": 2 } }, @@ -36198,8 +36215,8 @@ export const typesBundle = { "CurrencyIdOf": "CurrencyId", "CurrencyId": { "_enum": { - "HEZ": 0, - "DCL": 1, + "DOT": 0, + "KSM": 1, "KILT": 2 } }, @@ -40473,8 +40490,8 @@ export const typesBundle = { "CurrencyIdOf": "CurrencyId", "CurrencyId": { "_enum": { - "HEZ": 0, - "DCL": 1, + "DOT": 0, + "KSM": 1, "KILT": 2 } }, @@ -44568,8 +44585,8 @@ export const typesBundle = { "CurrencyIdOf": "CurrencyId", "CurrencyId": { "_enum": { - "HEZ": 0, - "DCL": 1, + "DOT": 0, + "KSM": 1, "KILT": 2 } }, @@ -48363,20 +48380,20 @@ export const typesBundle = { "SignedFixedPoint": "FixedU128", "TokenSymbol": { "_enum": { - "HEZ": 0, + "DOT": 0, "IBTC": 1, "INTR": 2, - "DCL": 10, + "KSM": 10, "KBTC": 11, "KINT": 12 } }, "InterbtcPrimitivesTokenSymbol": { "_enum": { - "HEZ": 0, + "DOT": 0, "IBTC": 1, "INTR": 2, - "DCL": 10, + "KSM": 10, "KBTC": 11, "KINT": 12 } @@ -49146,7 +49163,7 @@ export const typesBundle = { "_enum": [ "LAMI", "AUSD", - "HEZ", + "DOT", "FEUR", "FJPY", "FBTC", @@ -49658,7 +49675,7 @@ export const typesBundle = { "_enum": [ "LAMI", "AUSD", - "HEZ", + "DOT", "FEUR", "FJPY", "FBTC", @@ -50429,7 +50446,7 @@ export const typesBundle = { "SupportedAccountId": { "_enum": { "None": null, - "Pezkuwi": "AccountId", + "Polkadot": "AccountId", "Other": "OtherAccountId" } }, @@ -51434,19 +51451,19 @@ export const typesBundle = { "txpool": { "content": { "aliasSection": "txpool", - "description": "The detailed information regarding Ethereum transactions that are currently in the Bizinikiwi transaction pool.", + "description": "The detailed information regarding Ethereum transactions that are currently in the Substrate transaction pool.", "params": [], "type": "TxPoolResultContent" }, "inspect": { "aliasSection": "txpool", - "description": "Summarized information of the Ethereum transactions that are currently in the Bizinikiwi transaction pool.", + "description": "Summarized information of the Ethereum transactions that are currently in the Substrate transaction pool.", "params": [], "type": "TxPoolResultInspect" }, "status": { "aliasSection": "txpool", - "description": "The number of Ethereum transaction that are currently in the Bizinikiwi transaction pool.", + "description": "The number of Ethereum transaction that are currently in the Substrate transaction pool.", "params": [], "type": "TxPoolResultStatus" } @@ -51489,7 +51506,7 @@ export const typesBundle = { "type": "Result<()>" }, "injectHrmpMessage": { - "description": "Inject an HRMP message from a dedicated channel from a sibling teyrchain", + "description": "Inject an HRMP message from a dedicated channel from a sibling parachain", "params": [ { "name": "sender", @@ -52133,7 +52150,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" } @@ -52283,7 +52300,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -52438,7 +52455,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -52614,7 +52631,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -52790,7 +52807,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -52845,7 +52862,7 @@ export const typesBundle = { "JunctionV0": { "_enum": { "Parent": "Null", - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -53017,7 +53034,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -53072,7 +53089,7 @@ export const typesBundle = { "JunctionV0": { "_enum": { "Parent": "Null", - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -53099,7 +53116,7 @@ export const typesBundle = { "MultiLocation": "MultiLocationV1", "JunctionV1": { "_enum": { - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -53257,7 +53274,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -53312,7 +53329,7 @@ export const typesBundle = { "JunctionV0": { "_enum": { "Parent": "Null", - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -53339,7 +53356,7 @@ export const typesBundle = { "MultiLocation": "MultiLocationV1", "JunctionV1": { "_enum": { - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -53367,19 +53384,19 @@ export const typesBundle = { "txpool": { "content": { "aliasSection": "txpool", - "description": "The detailed information regarding Ethereum transactions that are currently in the Bizinikiwi transaction pool.", + "description": "The detailed information regarding Ethereum transactions that are currently in the Substrate transaction pool.", "params": [], "type": "TxPoolResultContent" }, "inspect": { "aliasSection": "txpool", - "description": "Summarized information of the Ethereum transactions that are currently in the Bizinikiwi transaction pool.", + "description": "Summarized information of the Ethereum transactions that are currently in the Substrate transaction pool.", "params": [], "type": "TxPoolResultInspect" }, "status": { "aliasSection": "txpool", - "description": "The number of Ethereum transaction that are currently in the Bizinikiwi transaction pool.", + "description": "The number of Ethereum transaction that are currently in the Substrate transaction pool.", "params": [], "type": "TxPoolResultStatus" } @@ -53422,7 +53439,7 @@ export const typesBundle = { "type": "Result<()>" }, "injectHrmpMessage": { - "description": "Inject an HRMP message from a dedicated channel from a sibling teyrchain", + "description": "Inject an HRMP message from a dedicated channel from a sibling parachain", "params": [ { "name": "sender", @@ -54066,7 +54083,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" } @@ -54216,7 +54233,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -54371,7 +54388,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -54547,7 +54564,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -54723,7 +54740,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -54778,7 +54795,7 @@ export const typesBundle = { "JunctionV0": { "_enum": { "Parent": "Null", - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -54950,7 +54967,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -55005,7 +55022,7 @@ export const typesBundle = { "JunctionV0": { "_enum": { "Parent": "Null", - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -55032,7 +55049,7 @@ export const typesBundle = { "MultiLocation": "MultiLocationV1", "JunctionV1": { "_enum": { - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -55190,7 +55207,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -55245,7 +55262,7 @@ export const typesBundle = { "JunctionV0": { "_enum": { "Parent": "Null", - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -55272,7 +55289,7 @@ export const typesBundle = { "MultiLocation": "MultiLocationV1", "JunctionV1": { "_enum": { - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -55300,19 +55317,19 @@ export const typesBundle = { "txpool": { "content": { "aliasSection": "txpool", - "description": "The detailed information regarding Ethereum transactions that are currently in the Bizinikiwi transaction pool.", + "description": "The detailed information regarding Ethereum transactions that are currently in the Substrate transaction pool.", "params": [], "type": "TxPoolResultContent" }, "inspect": { "aliasSection": "txpool", - "description": "Summarized information of the Ethereum transactions that are currently in the Bizinikiwi transaction pool.", + "description": "Summarized information of the Ethereum transactions that are currently in the Substrate transaction pool.", "params": [], "type": "TxPoolResultInspect" }, "status": { "aliasSection": "txpool", - "description": "The number of Ethereum transaction that are currently in the Bizinikiwi transaction pool.", + "description": "The number of Ethereum transaction that are currently in the Substrate transaction pool.", "params": [], "type": "TxPoolResultStatus" } @@ -55355,7 +55372,7 @@ export const typesBundle = { "type": "Result<()>" }, "injectHrmpMessage": { - "description": "Inject an HRMP message from a dedicated channel from a sibling teyrchain", + "description": "Inject an HRMP message from a dedicated channel from a sibling parachain", "params": [ { "name": "sender", @@ -55999,7 +56016,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" } @@ -56149,7 +56166,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -56304,7 +56321,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -56480,7 +56497,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -56656,7 +56673,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -56711,7 +56728,7 @@ export const typesBundle = { "JunctionV0": { "_enum": { "Parent": "Null", - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -56883,7 +56900,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -56938,7 +56955,7 @@ export const typesBundle = { "JunctionV0": { "_enum": { "Parent": "Null", - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -56965,7 +56982,7 @@ export const typesBundle = { "MultiLocation": "MultiLocationV1", "JunctionV1": { "_enum": { - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -57123,7 +57140,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -57178,7 +57195,7 @@ export const typesBundle = { "JunctionV0": { "_enum": { "Parent": "Null", - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -57205,7 +57222,7 @@ export const typesBundle = { "MultiLocation": "MultiLocationV1", "JunctionV1": { "_enum": { - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -57233,19 +57250,19 @@ export const typesBundle = { "txpool": { "content": { "aliasSection": "txpool", - "description": "The detailed information regarding Ethereum transactions that are currently in the Bizinikiwi transaction pool.", + "description": "The detailed information regarding Ethereum transactions that are currently in the Substrate transaction pool.", "params": [], "type": "TxPoolResultContent" }, "inspect": { "aliasSection": "txpool", - "description": "Summarized information of the Ethereum transactions that are currently in the Bizinikiwi transaction pool.", + "description": "Summarized information of the Ethereum transactions that are currently in the Substrate transaction pool.", "params": [], "type": "TxPoolResultInspect" }, "status": { "aliasSection": "txpool", - "description": "The number of Ethereum transaction that are currently in the Bizinikiwi transaction pool.", + "description": "The number of Ethereum transaction that are currently in the Substrate transaction pool.", "params": [], "type": "TxPoolResultStatus" } @@ -57288,7 +57305,7 @@ export const typesBundle = { "type": "Result<()>" }, "injectHrmpMessage": { - "description": "Inject an HRMP message from a dedicated channel from a sibling teyrchain", + "description": "Inject an HRMP message from a dedicated channel from a sibling parachain", "params": [ { "name": "sender", @@ -57932,7 +57949,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" } @@ -58082,7 +58099,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -58237,7 +58254,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -58413,7 +58430,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -58589,7 +58606,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -58644,7 +58661,7 @@ export const typesBundle = { "JunctionV0": { "_enum": { "Parent": "Null", - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -58816,7 +58833,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -58871,7 +58888,7 @@ export const typesBundle = { "JunctionV0": { "_enum": { "Parent": "Null", - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -58898,7 +58915,7 @@ export const typesBundle = { "MultiLocation": "MultiLocationV1", "JunctionV1": { "_enum": { - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -59056,7 +59073,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -59111,7 +59128,7 @@ export const typesBundle = { "JunctionV0": { "_enum": { "Parent": "Null", - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -59138,7 +59155,7 @@ export const typesBundle = { "MultiLocation": "MultiLocationV1", "JunctionV1": { "_enum": { - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -59434,19 +59451,19 @@ export const typesBundle = { "txpool": { "content": { "aliasSection": "txpool", - "description": "The detailed information regarding Ethereum transactions that are currently in the Bizinikiwi transaction pool.", + "description": "The detailed information regarding Ethereum transactions that are currently in the Substrate transaction pool.", "params": [], "type": "TxPoolResultContent" }, "inspect": { "aliasSection": "txpool", - "description": "Summarized information of the Ethereum transactions that are currently in the Bizinikiwi transaction pool.", + "description": "Summarized information of the Ethereum transactions that are currently in the Substrate transaction pool.", "params": [], "type": "TxPoolResultInspect" }, "status": { "aliasSection": "txpool", - "description": "The number of Ethereum transaction that are currently in the Bizinikiwi transaction pool.", + "description": "The number of Ethereum transaction that are currently in the Substrate transaction pool.", "params": [], "type": "TxPoolResultStatus" } @@ -59489,7 +59506,7 @@ export const typesBundle = { "type": "Result<()>" }, "injectHrmpMessage": { - "description": "Inject an HRMP message from a dedicated channel from a sibling teyrchain", + "description": "Inject an HRMP message from a dedicated channel from a sibling parachain", "params": [ { "name": "sender", @@ -60133,7 +60150,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" } @@ -60283,7 +60300,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -60438,7 +60455,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -60614,7 +60631,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -60790,7 +60807,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -60845,7 +60862,7 @@ export const typesBundle = { "JunctionV0": { "_enum": { "Parent": "Null", - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -61017,7 +61034,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -61072,7 +61089,7 @@ export const typesBundle = { "JunctionV0": { "_enum": { "Parent": "Null", - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -61099,7 +61116,7 @@ export const typesBundle = { "MultiLocation": "MultiLocationV1", "JunctionV1": { "_enum": { - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -61257,7 +61274,7 @@ export const typesBundle = { "account": "AccountId", "deposit": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -61312,7 +61329,7 @@ export const typesBundle = { "JunctionV0": { "_enum": { "Parent": "Null", - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -61339,7 +61356,7 @@ export const typesBundle = { "MultiLocation": "MultiLocationV1", "JunctionV1": { "_enum": { - "Teyrchain": "Compact", + "Parachain": "Compact", "AccountId32": "ENUM_AccountId32", "AccountIndex64": "ENUM_AccountIndex64", "AccountKey20": "ENUM_AccountKey20", @@ -62053,7 +62070,7 @@ export const typesBundle = { "_enum": [ "ACA", "AUSD", - "HEZ", + "DOT", "XBTC", "LDOT", "RENBTC", @@ -62091,442 +62108,444 @@ export const typesBundle = { ] }, "parallel": { - "rpc": { - "oracle": { - "getValue": { - "description": "Retrieves the oracle value for a given key.", - "params": [ - { - "name": "providerId", - "type": "RpcDataProviderId" - }, - { - "name": "key", - "type": "OracleKey" - }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "Option", - "isSubscription": false, - "jsonrpc": "oracle_getValue", - "method": "getValue", - "section": "oracle" + "parallel": { + "rpc": { + "oracle": { + "getValue": { + "description": "Retrieves the oracle value for a given key.", + "params": [ + { + "name": "providerId", + "type": "RpcDataProviderId" + }, + { + "name": "key", + "type": "OracleKey" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "Option", + "isSubscription": false, + "jsonrpc": "oracle_getValue", + "method": "getValue", + "section": "oracle" + }, + "getAllValues": { + "description": "Retrieves all oracle values.", + "params": [ + { + "name": "providerId", + "type": "RpcDataProviderId" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "Vec<(OracleKey, Option)>", + "isSubscription": false, + "jsonrpc": "oracle_getAllValues", + "method": "getAllValues", + "section": "oracle" + } }, - "getAllValues": { - "description": "Retrieves all oracle values.", - "params": [ - { - "name": "providerId", - "type": "RpcDataProviderId" - }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "Vec<(OracleKey, Option)>", - "isSubscription": false, - "jsonrpc": "oracle_getAllValues", - "method": "getAllValues", - "section": "oracle" + "tokens": { + "queryExistentialDeposit": { + "description": "Query Existential Deposit for a given currency.", + "params": [ + { + "name": "currencyId", + "type": "CurrencyId" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "NumberOrHex", + "isSubscription": false, + "jsonrpc": "tokens_queryExistentialDeposit", + "method": "queryExistentialDeposit", + "section": "tokens" + } + }, + "loans": { + "getCollateralLiquidity": { + "description": "Retrieves collateral liquidity for the given user.", + "params": [ + { + "name": "account", + "type": "AccountId" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "(Liquidity, Shortfall, Liquidity, Shortfall)", + "isSubscription": false, + "jsonrpc": "loans_getCollateralLiquidity", + "method": "getCollateralLiquidity", + "section": "loans" + }, + "getLiquidationThresholdLiquidity": { + "description": "Retrieves liquidation threshold liquidity for the given user.", + "params": [ + { + "name": "account", + "type": "AccountId" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "(Liquidity, Shortfall, Liquidity, Shortfall)", + "isSubscription": false, + "jsonrpc": "loans_getLiquidationThresholdLiquidity", + "method": "getLiquidationThresholdLiquidity", + "section": "loans" + }, + "getMarketStatus": { + "description": "Retrieves market status data for a given asset id.", + "params": [ + { + "name": "asset_id", + "type": "CurrencyId" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "(Rate, Rate, Rate, Ratio, Balance, Balance, FixedU128)", + "isSubscription": false, + "jsonrpc": "loans_getMarketStatus", + "method": "getMarketStatus", + "section": "loans" + } + }, + "router": { + "getBestRoute": { + "description": "Returns the route that results in the largest amount out for amount in", + "params": [ + { + "name": "amount", + "type": "Balance" + }, + { + "name": "token_in", + "type": "CurrencyId" + }, + { + "name": "token_out", + "type": "CurrencyId" + }, + { + "name": "reversed", + "type": "bool" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "(Vec, FixedU128)", + "isSubscription": false, + "jsonrpc": "router_getBestRoute", + "method": "getBestRoute", + "section": "router" + } } }, - "tokens": { - "queryExistentialDeposit": { - "description": "Query Existential Deposit for a given currency.", - "params": [ - { - "name": "currencyId", - "type": "CurrencyId" - }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "NumberOrHex", - "isSubscription": false, - "jsonrpc": "tokens_queryExistentialDeposit", - "method": "queryExistentialDeposit", - "section": "tokens" - } + "instances": { + "council": [ + "generalCouncil" + ] }, - "loans": { - "getCollateralLiquidity": { - "description": "Retrieves collateral liquidity for the given user.", - "params": [ - { - "name": "account", - "type": "AccountId" - }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } + "types": [ + { + "minmax": [ + 0, + null ], - "type": "(Liquidity, Shortfall, Liquidity, Shortfall)", - "isSubscription": false, - "jsonrpc": "loans_getCollateralLiquidity", - "method": "getCollateralLiquidity", - "section": "loans" - }, - "getLiquidationThresholdLiquidity": { - "description": "Retrieves liquidation threshold liquidity for the given user.", - "params": [ - { - "name": "account", - "type": "AccountId" + "types": { + "CallOf": "Call", + "DispatchTime": { + "_enum": { + "At": "BlockNumber", + "After": "BlockNumber" + } }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "(Liquidity, Shortfall, Liquidity, Shortfall)", - "isSubscription": false, - "jsonrpc": "loans_getLiquidationThresholdLiquidity", - "method": "getLiquidationThresholdLiquidity", - "section": "loans" - }, - "getMarketStatus": { - "description": "Retrieves market status data for a given asset id.", - "params": [ - { - "name": "asset_id", - "type": "CurrencyId" + "ScheduleTaskIndex": "u32", + "DelayedOrigin": { + "delay": "BlockNumber", + "origin": "PalletsOrigin" }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "(Rate, Rate, Rate, Ratio, Balance, Balance, FixedU128)", - "isSubscription": false, - "jsonrpc": "loans_getMarketStatus", - "method": "getMarketStatus", - "section": "loans" + "AuthorityOrigin": "DelayedOrigin", + "StorageValue": "Vec", + "GraduallyUpdate": { + "key": "StorageKey", + "targetValue": "StorageValue", + "perBlock": "StorageValue" + }, + "StorageKeyBytes": "Vec", + "StorageValueBytes": "Vec", + "RpcDataProviderId": "Text", + "DataProviderId": "u8", + "TimestampedValue": { + "value": "OracleValue", + "timestamp": "Moment" + }, + "TimestampedValueOf": "TimestampedValue", + "OrderedSet": "Vec", + "OrmlAccountData": { + "free": "Balance", + "reserved": "Balance", + "frozen": "Balance" + }, + "OrmlBalanceLock": { + "amount": "Balance", + "id": "LockIdentifier" + }, + "AuctionInfo": { + "bid": "Option<(AccountId, Balance)>", + "start": "BlockNumber", + "end": "Option" + }, + "DelayedDispatchTime": { + "_enum": { + "At": "BlockNumber", + "After": "BlockNumber" + } + }, + "DispatchId": "u32", + "Price": "FixedU128", + "OrmlVestingSchedule": { + "start": "BlockNumber", + "period": "BlockNumber", + "periodCount": "u32", + "perPeriod": "Compact" + }, + "VestingScheduleOf": "OrmlVestingSchedule", + "OrmlCurrencyId": "u8", + "PoolInfo": { + "isActive": "bool", + "totalDeposited": "Balance", + "unlockHeight": "BlockNumber", + "coolDownDuration": "BlockNumber", + "rewardDuration": "BlockNumber", + "periodFinish": "BlockNumber", + "lastUpdateBlock": "BlockNumber", + "rewardRate": "Balance", + "rewardPerShareStored": "Balance" + }, + "CompactBalance": "Compact", + "PoolInfoV0": { + "totalShares": "Compact", + "totalRewards": "CompactBalance", + "totalWithdrawnRewards": "CompactBalance" + }, + "Share": "u128", + "OracleValue": "Price", + "Deposits": { + "voucherBalance": "Balance", + "isCollateral": "bool" + }, + "BorrowSnapshot": { + "principal": "Balance", + "borrowIndex": "u128" + }, + "EarnedSnapshot": { + "totalEarnedPrior": "Balance", + "exchangeRatePrior": "u128" + }, + "JumpModel": { + "baseRate": "Rate", + "jumpRate": "Rate", + "fullRate": "Rate", + "jumpUtilization": "Ratio" + }, + "CurveModel": { + "baseRate": "Rate" + }, + "InterestRateModel": { + "_enum": { + "JumpModel": "JumpModel", + "CurveModel": "CurveModel" + } + }, + "Market": { + "collateralFactor": "Ratio", + "liquidationThreshold": "Ratio", + "reserveFactor": "Ratio", + "closeFactor": "Ratio", + "liquidateIncentive": "Rate", + "liquidateIncentiveReservedFactor": "Ratio", + "rateModel": "InterestRateModel", + "state": "MarketState", + "supplyCap": "Balance", + "borrowCap": "Balance", + "ptokenId": "CurrencyId" + }, + "MarketState": { + "_enum": [ + "Active", + "Pending", + "Supervision" + ] + }, + "RewardMarketState": { + "index": "Balance", + "block": "BlockNumber" + }, + "Liquidity": "FixedU128", + "Shortfall": "FixedU128", + "ReservableAmount": { + "total": "Balance", + "reserved": "Balance" + }, + "MatchingLedger": { + "totalStakeAmount": "ReservableAmount", + "totalUnstakeAmount": "ReservableAmount" + }, + "UnlockChunk": { + "value": "Balance", + "era": "EraIndex" + }, + "StakingLedger": { + "stash": "AccountId", + "total": "Balance", + "active": "Balance", + "unlocking": "Vec", + "claimedRewards": "Vec" + }, + "DerivativeIndex": "u16", + "Pool": { + "baseAmount": "Balance", + "quoteAmount": "Balance", + "baseAmountLast": "Balance", + "quoteAmountLast": "Balance", + "lpTokenId": "AssetId", + "blockTimestampLast": "BlockNumber", + "price0CumulativeLast": "Balance", + "price1CumulativeLast": "Balance" + }, + "Amount": "i128", + "AmountOf": "Amount", + "Rate": "FixedU128", + "Ratio": "Permill", + "Timestamp": "u64", + "PriceDetail": "(Price, Timestamp)", + "CurrencyId": "AssetId", + "CurrencyIdOf": "CurrencyId", + "Currency": "CurrencyId", + "AssetIdOf": "AssetId", + "OracleKey": "AssetId", + "BoundedBalance": "BoundedVec<(Balance, BlockNumber), u32>", + "UserPosition": { + "depositBalance": "Balance", + "lockBalanceItems": "BoundedBalance", + "rewardAmount": "Balance", + "rewardPerSharePaid": "Balance" + }, + "Route": "Vec<(AssetId, AssetId)>", + "VaultPhase": { + "_enum": [ + "Pending", + "Contributing", + "Closed", + "Failed", + "Succeeded", + "Expired" + ] + }, + "ContributionStrategy": { + "_enum": [ + "XCM", + "XCMPROXY" + ] + }, + "ChildStorageKind": { + "_enum": [ + "Pending", + "Flying", + "Contributed" + ] + }, + "TrieIndex": "u32", + "LeasePeriod": "BlockNumber", + "Vault": { + "ctoken": "AssetId", + "phase": "VaultPhase", + "contributed": "Balance", + "pending": "Balance", + "flying": "Balance", + "contributionStrategy": "ContributionStrategy", + "cap": "Balance", + "endBlock": "BlockNumber", + "trieIndex": "TrieIndex", + "leaseStart": "LeasePeriod", + "leaseEnd": "LeasePeriod" + }, + "XcmWeightFeeMisc": { + "weight": "Weight", + "fee": "Balance" + }, + "XcmCall": { + "_enum": [ + "Bond", + "BondExtra", + "Unbond", + "Rebond", + "WithdrawUnbonded", + "Nominate", + "Contribute", + "Withdraw", + "AddMemo" + ] + }, + "BridgeToken": { + "id": "CurrencyId", + "external": "bool", + "fee": "Balance" + }, + "ProposalStatus": { + "_enum": [ + "Initiated", + "Approved", + "Rejected" + ] + }, + "Address": "MultiAddress", + "LookupSource": "MultiAddress", + "TAssetBalance": "u128" + } } - }, - "router": { - "getBestRoute": { - "description": "Returns the route that results in the largest amount out for amount in", - "params": [ - { - "name": "amount", - "type": "Balance" - }, - { - "name": "token_in", - "type": "CurrencyId" - }, - { - "name": "token_out", - "type": "CurrencyId" - }, - { - "name": "reversed", - "type": "bool" - }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "(Vec, FixedU128)", - "isSubscription": false, - "jsonrpc": "router_getBestRoute", - "method": "getBestRoute", - "section": "router" + ], + "alias": { + "tokens": { + "AccountData": "OrmlAccountData", + "BalanceLock": "OrmlBalanceLock" } } - }, - "instances": { - "council": [ - "generalCouncil" - ] - }, - "types": [ - { - "minmax": [ - 0, - null - ], - "types": { - "CallOf": "Call", - "DispatchTime": { - "_enum": { - "At": "BlockNumber", - "After": "BlockNumber" - } - }, - "ScheduleTaskIndex": "u32", - "DelayedOrigin": { - "delay": "BlockNumber", - "origin": "PalletsOrigin" - }, - "AuthorityOrigin": "DelayedOrigin", - "StorageValue": "Vec", - "GraduallyUpdate": { - "key": "StorageKey", - "targetValue": "StorageValue", - "perBlock": "StorageValue" - }, - "StorageKeyBytes": "Vec", - "StorageValueBytes": "Vec", - "RpcDataProviderId": "Text", - "DataProviderId": "u8", - "TimestampedValue": { - "value": "OracleValue", - "timestamp": "Moment" - }, - "TimestampedValueOf": "TimestampedValue", - "OrderedSet": "Vec", - "OrmlAccountData": { - "free": "Balance", - "reserved": "Balance", - "frozen": "Balance" - }, - "OrmlBalanceLock": { - "amount": "Balance", - "id": "LockIdentifier" - }, - "AuctionInfo": { - "bid": "Option<(AccountId, Balance)>", - "start": "BlockNumber", - "end": "Option" - }, - "DelayedDispatchTime": { - "_enum": { - "At": "BlockNumber", - "After": "BlockNumber" - } - }, - "DispatchId": "u32", - "Price": "FixedU128", - "OrmlVestingSchedule": { - "start": "BlockNumber", - "period": "BlockNumber", - "periodCount": "u32", - "perPeriod": "Compact" - }, - "VestingScheduleOf": "OrmlVestingSchedule", - "OrmlCurrencyId": "u8", - "PoolInfo": { - "isActive": "bool", - "totalDeposited": "Balance", - "unlockHeight": "BlockNumber", - "coolDownDuration": "BlockNumber", - "rewardDuration": "BlockNumber", - "periodFinish": "BlockNumber", - "lastUpdateBlock": "BlockNumber", - "rewardRate": "Balance", - "rewardPerShareStored": "Balance" - }, - "CompactBalance": "Compact", - "PoolInfoV0": { - "totalShares": "Compact", - "totalRewards": "CompactBalance", - "totalWithdrawnRewards": "CompactBalance" - }, - "Share": "u128", - "OracleValue": "Price", - "Deposits": { - "voucherBalance": "Balance", - "isCollateral": "bool" - }, - "BorrowSnapshot": { - "principal": "Balance", - "borrowIndex": "u128" - }, - "EarnedSnapshot": { - "totalEarnedPrior": "Balance", - "exchangeRatePrior": "u128" - }, - "JumpModel": { - "baseRate": "Rate", - "jumpRate": "Rate", - "fullRate": "Rate", - "jumpUtilization": "Ratio" - }, - "CurveModel": { - "baseRate": "Rate" - }, - "InterestRateModel": { - "_enum": { - "JumpModel": "JumpModel", - "CurveModel": "CurveModel" - } - }, - "Market": { - "collateralFactor": "Ratio", - "liquidationThreshold": "Ratio", - "reserveFactor": "Ratio", - "closeFactor": "Ratio", - "liquidateIncentive": "Rate", - "liquidateIncentiveReservedFactor": "Ratio", - "rateModel": "InterestRateModel", - "state": "MarketState", - "supplyCap": "Balance", - "borrowCap": "Balance", - "ptokenId": "CurrencyId" - }, - "MarketState": { - "_enum": [ - "Active", - "Pending", - "Supervision" - ] - }, - "RewardMarketState": { - "index": "Balance", - "block": "BlockNumber" - }, - "Liquidity": "FixedU128", - "Shortfall": "FixedU128", - "ReservableAmount": { - "total": "Balance", - "reserved": "Balance" - }, - "MatchingLedger": { - "totalStakeAmount": "ReservableAmount", - "totalUnstakeAmount": "ReservableAmount" - }, - "UnlockChunk": { - "value": "Balance", - "era": "EraIndex" - }, - "StakingLedger": { - "stash": "AccountId", - "total": "Balance", - "active": "Balance", - "unlocking": "Vec", - "claimedRewards": "Vec" - }, - "DerivativeIndex": "u16", - "Pool": { - "baseAmount": "Balance", - "quoteAmount": "Balance", - "baseAmountLast": "Balance", - "quoteAmountLast": "Balance", - "lpTokenId": "AssetId", - "blockTimestampLast": "BlockNumber", - "price0CumulativeLast": "Balance", - "price1CumulativeLast": "Balance" - }, - "Amount": "i128", - "AmountOf": "Amount", - "Rate": "FixedU128", - "Ratio": "Permill", - "Timestamp": "u64", - "PriceDetail": "(Price, Timestamp)", - "CurrencyId": "AssetId", - "CurrencyIdOf": "CurrencyId", - "Currency": "CurrencyId", - "AssetIdOf": "AssetId", - "OracleKey": "AssetId", - "BoundedBalance": "BoundedVec<(Balance, BlockNumber), u32>", - "UserPosition": { - "depositBalance": "Balance", - "lockBalanceItems": "BoundedBalance", - "rewardAmount": "Balance", - "rewardPerSharePaid": "Balance" - }, - "Route": "Vec<(AssetId, AssetId)>", - "VaultPhase": { - "_enum": [ - "Pending", - "Contributing", - "Closed", - "Failed", - "Succeeded", - "Expired" - ] - }, - "ContributionStrategy": { - "_enum": [ - "XCM", - "XCMPROXY" - ] - }, - "ChildStorageKind": { - "_enum": [ - "Pending", - "Flying", - "Contributed" - ] - }, - "TrieIndex": "u32", - "LeasePeriod": "BlockNumber", - "Vault": { - "ctoken": "AssetId", - "phase": "VaultPhase", - "contributed": "Balance", - "pending": "Balance", - "flying": "Balance", - "contributionStrategy": "ContributionStrategy", - "cap": "Balance", - "endBlock": "BlockNumber", - "trieIndex": "TrieIndex", - "leaseStart": "LeasePeriod", - "leaseEnd": "LeasePeriod" - }, - "XcmWeightFeeMisc": { - "weight": "Weight", - "fee": "Balance" - }, - "XcmCall": { - "_enum": [ - "Bond", - "BondExtra", - "Unbond", - "Rebond", - "WithdrawUnbonded", - "Nominate", - "Contribute", - "Withdraw", - "AddMemo" - ] - }, - "BridgeToken": { - "id": "CurrencyId", - "external": "bool", - "fee": "Balance" - }, - "ProposalStatus": { - "_enum": [ - "Initiated", - "Approved", - "Rejected" - ] - }, - "Address": "MultiAddress", - "LookupSource": "MultiAddress", - "TAssetBalance": "u128" - } - } - ], - "alias": { - "tokens": { - "AccountData": "OrmlAccountData", - "BalanceLock": "OrmlBalanceLock" - } } }, "parami": { @@ -64196,8 +64215,8 @@ export const typesBundle = { "_enum": { "Any": "Null", "Named": "Vec", - "Pezkuwi": "Null", - "Dicle": "Null" + "Polkadot": "Null", + "Kusama": "Null" } }, "CollectionType": { @@ -64213,7 +64232,7 @@ export const typesBundle = { "NUUM", "AUSD", "ACA", - "HEZ" + "DOT" ] }, "CountryCurrencyId": "u32", @@ -64259,7 +64278,7 @@ export const typesBundle = { "BlindBoxId": "u64", "BlindBoxType": { "_enum": [ - "DCL", + "KSM", "NUUM", "MainnetNFTHat", "MainnetNFTJacket", @@ -92865,7 +92884,7 @@ export const typesBundle = { } }, "OrderedSet": "Vec", - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, @@ -96011,9 +96030,9 @@ export const typesBundle = { "SubNetworkId": { "_enum": { "Mainnet": null, - "Dicle": null, - "Pezkuwi": null, - "PezkuwiChain": null, + "Kusama": null, + "Polkadot": null, + "Rococo": null, "Custom": "u32" } }, @@ -96215,8 +96234,8 @@ export const typesBundle = { "PredefinedAssetId": { "_enum": [ "XOR", - "HEZ", - "DCL", + "DOT", + "KSM", "USDT", "VAL", "PSWAP", @@ -97816,9 +97835,9 @@ export const typesBundle = { "SubNetworkId": { "_enum": { "Mainnet": null, - "Dicle": null, - "Pezkuwi": null, - "PezkuwiChain": null, + "Kusama": null, + "Polkadot": null, + "Rococo": null, "Custom": "u32" } }, @@ -98020,8 +98039,8 @@ export const typesBundle = { "PredefinedAssetId": { "_enum": [ "XOR", - "HEZ", - "DCL", + "DOT", + "KSM", "USDT", "VAL", "PSWAP", @@ -99243,7 +99262,7 @@ export const typesBundle = { "_enum": [ "ACA", "AUSD", - "HEZ", + "DOT", "XBTC", "LDOT", "RENBTC", @@ -100266,19 +100285,6 @@ export const typesBundle = { } ] }, - "bizinikiwi-contracts-node": { - "types": [ - { - "minmax": [ - 0, - null - ], - "types": { - "Keys": "SessionKeys2" - } - } - ] - }, "subzero": { "types": [ { @@ -101076,20 +101082,20 @@ export const typesBundle = { "SignedFixedPoint": "FixedU128", "TokenSymbol": { "_enum": { - "HEZ": 0, + "DOT": 0, "IBTC": 1, "INTR": 2, - "DCL": 10, + "KSM": 10, "KBTC": 11, "KINT": 12 } }, "InterbtcPrimitivesTokenSymbol": { "_enum": { - "HEZ": 0, + "DOT": 0, "IBTC": 1, "INTR": 2, - "DCL": 10, + "KSM": 10, "KBTC": 11, "KINT": 12 } @@ -101639,20 +101645,20 @@ export const typesBundle = { "SignedFixedPoint": "FixedU128", "TokenSymbol": { "_enum": { - "HEZ": 0, + "DOT": 0, "IBTC": 1, "INTR": 2, - "DCL": 10, + "KSM": 10, "KBTC": 11, "KINT": 12 } }, "InterbtcPrimitivesTokenSymbol": { "_enum": { - "HEZ": 0, + "DOT": 0, "IBTC": 1, "INTR": 2, - "DCL": 10, + "KSM": 10, "KBTC": 11, "KINT": 12 } @@ -103161,7 +103167,7 @@ export const typesBundle = { "_enum": [ "ACA", "AUSD", - "HEZ", + "DOT", "XBTC", "LDOT", "RENBTC", @@ -103199,442 +103205,444 @@ export const typesBundle = { ] }, "vanilla": { - "rpc": { - "oracle": { - "getValue": { - "description": "Retrieves the oracle value for a given key.", - "params": [ - { - "name": "providerId", - "type": "RpcDataProviderId" - }, - { - "name": "key", - "type": "OracleKey" - }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "Option", - "isSubscription": false, - "jsonrpc": "oracle_getValue", - "method": "getValue", - "section": "oracle" + "parallel": { + "rpc": { + "oracle": { + "getValue": { + "description": "Retrieves the oracle value for a given key.", + "params": [ + { + "name": "providerId", + "type": "RpcDataProviderId" + }, + { + "name": "key", + "type": "OracleKey" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "Option", + "isSubscription": false, + "jsonrpc": "oracle_getValue", + "method": "getValue", + "section": "oracle" + }, + "getAllValues": { + "description": "Retrieves all oracle values.", + "params": [ + { + "name": "providerId", + "type": "RpcDataProviderId" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "Vec<(OracleKey, Option)>", + "isSubscription": false, + "jsonrpc": "oracle_getAllValues", + "method": "getAllValues", + "section": "oracle" + } }, - "getAllValues": { - "description": "Retrieves all oracle values.", - "params": [ - { - "name": "providerId", - "type": "RpcDataProviderId" - }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "Vec<(OracleKey, Option)>", - "isSubscription": false, - "jsonrpc": "oracle_getAllValues", - "method": "getAllValues", - "section": "oracle" + "tokens": { + "queryExistentialDeposit": { + "description": "Query Existential Deposit for a given currency.", + "params": [ + { + "name": "currencyId", + "type": "CurrencyId" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "NumberOrHex", + "isSubscription": false, + "jsonrpc": "tokens_queryExistentialDeposit", + "method": "queryExistentialDeposit", + "section": "tokens" + } + }, + "loans": { + "getCollateralLiquidity": { + "description": "Retrieves collateral liquidity for the given user.", + "params": [ + { + "name": "account", + "type": "AccountId" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "(Liquidity, Shortfall, Liquidity, Shortfall)", + "isSubscription": false, + "jsonrpc": "loans_getCollateralLiquidity", + "method": "getCollateralLiquidity", + "section": "loans" + }, + "getLiquidationThresholdLiquidity": { + "description": "Retrieves liquidation threshold liquidity for the given user.", + "params": [ + { + "name": "account", + "type": "AccountId" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "(Liquidity, Shortfall, Liquidity, Shortfall)", + "isSubscription": false, + "jsonrpc": "loans_getLiquidationThresholdLiquidity", + "method": "getLiquidationThresholdLiquidity", + "section": "loans" + }, + "getMarketStatus": { + "description": "Retrieves market status data for a given asset id.", + "params": [ + { + "name": "asset_id", + "type": "CurrencyId" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "(Rate, Rate, Rate, Ratio, Balance, Balance, FixedU128)", + "isSubscription": false, + "jsonrpc": "loans_getMarketStatus", + "method": "getMarketStatus", + "section": "loans" + } + }, + "router": { + "getBestRoute": { + "description": "Returns the route that results in the largest amount out for amount in", + "params": [ + { + "name": "amount", + "type": "Balance" + }, + { + "name": "token_in", + "type": "CurrencyId" + }, + { + "name": "token_out", + "type": "CurrencyId" + }, + { + "name": "reversed", + "type": "bool" + }, + { + "name": "at", + "type": "BlockHash", + "isHistoric": true, + "isOptional": true + } + ], + "type": "(Vec, FixedU128)", + "isSubscription": false, + "jsonrpc": "router_getBestRoute", + "method": "getBestRoute", + "section": "router" + } } }, - "tokens": { - "queryExistentialDeposit": { - "description": "Query Existential Deposit for a given currency.", - "params": [ - { - "name": "currencyId", - "type": "CurrencyId" - }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "NumberOrHex", - "isSubscription": false, - "jsonrpc": "tokens_queryExistentialDeposit", - "method": "queryExistentialDeposit", - "section": "tokens" - } + "instances": { + "council": [ + "generalCouncil" + ] }, - "loans": { - "getCollateralLiquidity": { - "description": "Retrieves collateral liquidity for the given user.", - "params": [ - { - "name": "account", - "type": "AccountId" - }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } + "types": [ + { + "minmax": [ + 0, + null ], - "type": "(Liquidity, Shortfall, Liquidity, Shortfall)", - "isSubscription": false, - "jsonrpc": "loans_getCollateralLiquidity", - "method": "getCollateralLiquidity", - "section": "loans" - }, - "getLiquidationThresholdLiquidity": { - "description": "Retrieves liquidation threshold liquidity for the given user.", - "params": [ - { - "name": "account", - "type": "AccountId" + "types": { + "CallOf": "Call", + "DispatchTime": { + "_enum": { + "At": "BlockNumber", + "After": "BlockNumber" + } }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "(Liquidity, Shortfall, Liquidity, Shortfall)", - "isSubscription": false, - "jsonrpc": "loans_getLiquidationThresholdLiquidity", - "method": "getLiquidationThresholdLiquidity", - "section": "loans" - }, - "getMarketStatus": { - "description": "Retrieves market status data for a given asset id.", - "params": [ - { - "name": "asset_id", - "type": "CurrencyId" + "ScheduleTaskIndex": "u32", + "DelayedOrigin": { + "delay": "BlockNumber", + "origin": "PalletsOrigin" }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "(Rate, Rate, Rate, Ratio, Balance, Balance, FixedU128)", - "isSubscription": false, - "jsonrpc": "loans_getMarketStatus", - "method": "getMarketStatus", - "section": "loans" + "AuthorityOrigin": "DelayedOrigin", + "StorageValue": "Vec", + "GraduallyUpdate": { + "key": "StorageKey", + "targetValue": "StorageValue", + "perBlock": "StorageValue" + }, + "StorageKeyBytes": "Vec", + "StorageValueBytes": "Vec", + "RpcDataProviderId": "Text", + "DataProviderId": "u8", + "TimestampedValue": { + "value": "OracleValue", + "timestamp": "Moment" + }, + "TimestampedValueOf": "TimestampedValue", + "OrderedSet": "Vec", + "OrmlAccountData": { + "free": "Balance", + "reserved": "Balance", + "frozen": "Balance" + }, + "OrmlBalanceLock": { + "amount": "Balance", + "id": "LockIdentifier" + }, + "AuctionInfo": { + "bid": "Option<(AccountId, Balance)>", + "start": "BlockNumber", + "end": "Option" + }, + "DelayedDispatchTime": { + "_enum": { + "At": "BlockNumber", + "After": "BlockNumber" + } + }, + "DispatchId": "u32", + "Price": "FixedU128", + "OrmlVestingSchedule": { + "start": "BlockNumber", + "period": "BlockNumber", + "periodCount": "u32", + "perPeriod": "Compact" + }, + "VestingScheduleOf": "OrmlVestingSchedule", + "OrmlCurrencyId": "u8", + "PoolInfo": { + "isActive": "bool", + "totalDeposited": "Balance", + "unlockHeight": "BlockNumber", + "coolDownDuration": "BlockNumber", + "rewardDuration": "BlockNumber", + "periodFinish": "BlockNumber", + "lastUpdateBlock": "BlockNumber", + "rewardRate": "Balance", + "rewardPerShareStored": "Balance" + }, + "CompactBalance": "Compact", + "PoolInfoV0": { + "totalShares": "Compact", + "totalRewards": "CompactBalance", + "totalWithdrawnRewards": "CompactBalance" + }, + "Share": "u128", + "OracleValue": "Price", + "Deposits": { + "voucherBalance": "Balance", + "isCollateral": "bool" + }, + "BorrowSnapshot": { + "principal": "Balance", + "borrowIndex": "u128" + }, + "EarnedSnapshot": { + "totalEarnedPrior": "Balance", + "exchangeRatePrior": "u128" + }, + "JumpModel": { + "baseRate": "Rate", + "jumpRate": "Rate", + "fullRate": "Rate", + "jumpUtilization": "Ratio" + }, + "CurveModel": { + "baseRate": "Rate" + }, + "InterestRateModel": { + "_enum": { + "JumpModel": "JumpModel", + "CurveModel": "CurveModel" + } + }, + "Market": { + "collateralFactor": "Ratio", + "liquidationThreshold": "Ratio", + "reserveFactor": "Ratio", + "closeFactor": "Ratio", + "liquidateIncentive": "Rate", + "liquidateIncentiveReservedFactor": "Ratio", + "rateModel": "InterestRateModel", + "state": "MarketState", + "supplyCap": "Balance", + "borrowCap": "Balance", + "ptokenId": "CurrencyId" + }, + "MarketState": { + "_enum": [ + "Active", + "Pending", + "Supervision" + ] + }, + "RewardMarketState": { + "index": "Balance", + "block": "BlockNumber" + }, + "Liquidity": "FixedU128", + "Shortfall": "FixedU128", + "ReservableAmount": { + "total": "Balance", + "reserved": "Balance" + }, + "MatchingLedger": { + "totalStakeAmount": "ReservableAmount", + "totalUnstakeAmount": "ReservableAmount" + }, + "UnlockChunk": { + "value": "Balance", + "era": "EraIndex" + }, + "StakingLedger": { + "stash": "AccountId", + "total": "Balance", + "active": "Balance", + "unlocking": "Vec", + "claimedRewards": "Vec" + }, + "DerivativeIndex": "u16", + "Pool": { + "baseAmount": "Balance", + "quoteAmount": "Balance", + "baseAmountLast": "Balance", + "quoteAmountLast": "Balance", + "lpTokenId": "AssetId", + "blockTimestampLast": "BlockNumber", + "price0CumulativeLast": "Balance", + "price1CumulativeLast": "Balance" + }, + "Amount": "i128", + "AmountOf": "Amount", + "Rate": "FixedU128", + "Ratio": "Permill", + "Timestamp": "u64", + "PriceDetail": "(Price, Timestamp)", + "CurrencyId": "AssetId", + "CurrencyIdOf": "CurrencyId", + "Currency": "CurrencyId", + "AssetIdOf": "AssetId", + "OracleKey": "AssetId", + "BoundedBalance": "BoundedVec<(Balance, BlockNumber), u32>", + "UserPosition": { + "depositBalance": "Balance", + "lockBalanceItems": "BoundedBalance", + "rewardAmount": "Balance", + "rewardPerSharePaid": "Balance" + }, + "Route": "Vec<(AssetId, AssetId)>", + "VaultPhase": { + "_enum": [ + "Pending", + "Contributing", + "Closed", + "Failed", + "Succeeded", + "Expired" + ] + }, + "ContributionStrategy": { + "_enum": [ + "XCM", + "XCMPROXY" + ] + }, + "ChildStorageKind": { + "_enum": [ + "Pending", + "Flying", + "Contributed" + ] + }, + "TrieIndex": "u32", + "LeasePeriod": "BlockNumber", + "Vault": { + "ctoken": "AssetId", + "phase": "VaultPhase", + "contributed": "Balance", + "pending": "Balance", + "flying": "Balance", + "contributionStrategy": "ContributionStrategy", + "cap": "Balance", + "endBlock": "BlockNumber", + "trieIndex": "TrieIndex", + "leaseStart": "LeasePeriod", + "leaseEnd": "LeasePeriod" + }, + "XcmWeightFeeMisc": { + "weight": "Weight", + "fee": "Balance" + }, + "XcmCall": { + "_enum": [ + "Bond", + "BondExtra", + "Unbond", + "Rebond", + "WithdrawUnbonded", + "Nominate", + "Contribute", + "Withdraw", + "AddMemo" + ] + }, + "BridgeToken": { + "id": "CurrencyId", + "external": "bool", + "fee": "Balance" + }, + "ProposalStatus": { + "_enum": [ + "Initiated", + "Approved", + "Rejected" + ] + }, + "Address": "MultiAddress", + "LookupSource": "MultiAddress", + "TAssetBalance": "u128" + } } - }, - "router": { - "getBestRoute": { - "description": "Returns the route that results in the largest amount out for amount in", - "params": [ - { - "name": "amount", - "type": "Balance" - }, - { - "name": "token_in", - "type": "CurrencyId" - }, - { - "name": "token_out", - "type": "CurrencyId" - }, - { - "name": "reversed", - "type": "bool" - }, - { - "name": "at", - "type": "BlockHash", - "isHistoric": true, - "isOptional": true - } - ], - "type": "(Vec, FixedU128)", - "isSubscription": false, - "jsonrpc": "router_getBestRoute", - "method": "getBestRoute", - "section": "router" + ], + "alias": { + "tokens": { + "AccountData": "OrmlAccountData", + "BalanceLock": "OrmlBalanceLock" } } - }, - "instances": { - "council": [ - "generalCouncil" - ] - }, - "types": [ - { - "minmax": [ - 0, - null - ], - "types": { - "CallOf": "Call", - "DispatchTime": { - "_enum": { - "At": "BlockNumber", - "After": "BlockNumber" - } - }, - "ScheduleTaskIndex": "u32", - "DelayedOrigin": { - "delay": "BlockNumber", - "origin": "PalletsOrigin" - }, - "AuthorityOrigin": "DelayedOrigin", - "StorageValue": "Vec", - "GraduallyUpdate": { - "key": "StorageKey", - "targetValue": "StorageValue", - "perBlock": "StorageValue" - }, - "StorageKeyBytes": "Vec", - "StorageValueBytes": "Vec", - "RpcDataProviderId": "Text", - "DataProviderId": "u8", - "TimestampedValue": { - "value": "OracleValue", - "timestamp": "Moment" - }, - "TimestampedValueOf": "TimestampedValue", - "OrderedSet": "Vec", - "OrmlAccountData": { - "free": "Balance", - "reserved": "Balance", - "frozen": "Balance" - }, - "OrmlBalanceLock": { - "amount": "Balance", - "id": "LockIdentifier" - }, - "AuctionInfo": { - "bid": "Option<(AccountId, Balance)>", - "start": "BlockNumber", - "end": "Option" - }, - "DelayedDispatchTime": { - "_enum": { - "At": "BlockNumber", - "After": "BlockNumber" - } - }, - "DispatchId": "u32", - "Price": "FixedU128", - "OrmlVestingSchedule": { - "start": "BlockNumber", - "period": "BlockNumber", - "periodCount": "u32", - "perPeriod": "Compact" - }, - "VestingScheduleOf": "OrmlVestingSchedule", - "OrmlCurrencyId": "u8", - "PoolInfo": { - "isActive": "bool", - "totalDeposited": "Balance", - "unlockHeight": "BlockNumber", - "coolDownDuration": "BlockNumber", - "rewardDuration": "BlockNumber", - "periodFinish": "BlockNumber", - "lastUpdateBlock": "BlockNumber", - "rewardRate": "Balance", - "rewardPerShareStored": "Balance" - }, - "CompactBalance": "Compact", - "PoolInfoV0": { - "totalShares": "Compact", - "totalRewards": "CompactBalance", - "totalWithdrawnRewards": "CompactBalance" - }, - "Share": "u128", - "OracleValue": "Price", - "Deposits": { - "voucherBalance": "Balance", - "isCollateral": "bool" - }, - "BorrowSnapshot": { - "principal": "Balance", - "borrowIndex": "u128" - }, - "EarnedSnapshot": { - "totalEarnedPrior": "Balance", - "exchangeRatePrior": "u128" - }, - "JumpModel": { - "baseRate": "Rate", - "jumpRate": "Rate", - "fullRate": "Rate", - "jumpUtilization": "Ratio" - }, - "CurveModel": { - "baseRate": "Rate" - }, - "InterestRateModel": { - "_enum": { - "JumpModel": "JumpModel", - "CurveModel": "CurveModel" - } - }, - "Market": { - "collateralFactor": "Ratio", - "liquidationThreshold": "Ratio", - "reserveFactor": "Ratio", - "closeFactor": "Ratio", - "liquidateIncentive": "Rate", - "liquidateIncentiveReservedFactor": "Ratio", - "rateModel": "InterestRateModel", - "state": "MarketState", - "supplyCap": "Balance", - "borrowCap": "Balance", - "ptokenId": "CurrencyId" - }, - "MarketState": { - "_enum": [ - "Active", - "Pending", - "Supervision" - ] - }, - "RewardMarketState": { - "index": "Balance", - "block": "BlockNumber" - }, - "Liquidity": "FixedU128", - "Shortfall": "FixedU128", - "ReservableAmount": { - "total": "Balance", - "reserved": "Balance" - }, - "MatchingLedger": { - "totalStakeAmount": "ReservableAmount", - "totalUnstakeAmount": "ReservableAmount" - }, - "UnlockChunk": { - "value": "Balance", - "era": "EraIndex" - }, - "StakingLedger": { - "stash": "AccountId", - "total": "Balance", - "active": "Balance", - "unlocking": "Vec", - "claimedRewards": "Vec" - }, - "DerivativeIndex": "u16", - "Pool": { - "baseAmount": "Balance", - "quoteAmount": "Balance", - "baseAmountLast": "Balance", - "quoteAmountLast": "Balance", - "lpTokenId": "AssetId", - "blockTimestampLast": "BlockNumber", - "price0CumulativeLast": "Balance", - "price1CumulativeLast": "Balance" - }, - "Amount": "i128", - "AmountOf": "Amount", - "Rate": "FixedU128", - "Ratio": "Permill", - "Timestamp": "u64", - "PriceDetail": "(Price, Timestamp)", - "CurrencyId": "AssetId", - "CurrencyIdOf": "CurrencyId", - "Currency": "CurrencyId", - "AssetIdOf": "AssetId", - "OracleKey": "AssetId", - "BoundedBalance": "BoundedVec<(Balance, BlockNumber), u32>", - "UserPosition": { - "depositBalance": "Balance", - "lockBalanceItems": "BoundedBalance", - "rewardAmount": "Balance", - "rewardPerSharePaid": "Balance" - }, - "Route": "Vec<(AssetId, AssetId)>", - "VaultPhase": { - "_enum": [ - "Pending", - "Contributing", - "Closed", - "Failed", - "Succeeded", - "Expired" - ] - }, - "ContributionStrategy": { - "_enum": [ - "XCM", - "XCMPROXY" - ] - }, - "ChildStorageKind": { - "_enum": [ - "Pending", - "Flying", - "Contributed" - ] - }, - "TrieIndex": "u32", - "LeasePeriod": "BlockNumber", - "Vault": { - "ctoken": "AssetId", - "phase": "VaultPhase", - "contributed": "Balance", - "pending": "Balance", - "flying": "Balance", - "contributionStrategy": "ContributionStrategy", - "cap": "Balance", - "endBlock": "BlockNumber", - "trieIndex": "TrieIndex", - "leaseStart": "LeasePeriod", - "leaseEnd": "LeasePeriod" - }, - "XcmWeightFeeMisc": { - "weight": "Weight", - "fee": "Balance" - }, - "XcmCall": { - "_enum": [ - "Bond", - "BondExtra", - "Unbond", - "Rebond", - "WithdrawUnbonded", - "Nominate", - "Contribute", - "Withdraw", - "AddMemo" - ] - }, - "BridgeToken": { - "id": "CurrencyId", - "external": "bool", - "fee": "Balance" - }, - "ProposalStatus": { - "_enum": [ - "Initiated", - "Approved", - "Rejected" - ] - }, - "Address": "MultiAddress", - "LookupSource": "MultiAddress", - "TAssetBalance": "u128" - } - } - ], - "alias": { - "tokens": { - "AccountData": "OrmlAccountData", - "BalanceLock": "OrmlBalanceLock" - } } }, "vara": { @@ -103680,7 +103688,7 @@ export const typesBundle = { "_enum": [ "ACA", "AUSD", - "HEZ", + "DOT", "XBTC", "LDOT", "RENBTC", @@ -103910,7 +103918,7 @@ export const typesBundle = { "totalIncentives": "Balance", "totalShares": "Balance" }, - "TeyrchainBondConfig": { + "ParachainBondConfig": { "account": "AccountId", "percent": "Percent" }, diff --git a/packages/apps-config/src/endpoints/productionRelayDicle.ts b/packages/apps-config/src/endpoints/productionRelayDicle.ts index ac51569..3fa9d28 100644 --- a/packages/apps-config/src/endpoints/productionRelayDicle.ts +++ b/packages/apps-config/src/endpoints/productionRelayDicle.ts @@ -5,7 +5,6 @@ import type { EndpointOption } from './types.js'; import { DICLE_GENESIS } from '../api/constants.js'; import { chainsDicleSVG } from '../ui/logos/chains/index.js'; -import { getTeleports } from './util.js'; // Dicle Network Endpoints (Canary Network) // Dicle is the canary network for Pezkuwi @@ -92,10 +91,9 @@ export const prodRelayDicle: EndpointOption = { isPeopleForIdentity: true, isRelay: true, linked: [ - ...getTeleports(prodParasDicle) + ...prodParasDicle ], providers: { - Local: 'ws://127.0.0.1:9944', 'Pezkuwi Foundation': 'wss://dicle-rpc.pezkuwichain.io' }, teleport: [1000], diff --git a/packages/apps-config/src/endpoints/productionRelayPezkuwi.ts b/packages/apps-config/src/endpoints/productionRelayPezkuwi.ts index ff48a58..2b79754 100644 --- a/packages/apps-config/src/endpoints/productionRelayPezkuwi.ts +++ b/packages/apps-config/src/endpoints/productionRelayPezkuwi.ts @@ -5,7 +5,6 @@ import type { EndpointOption } from './types.js'; import { PEZKUWI_GENESIS } from '../api/constants.js'; import { chainsPezkuwiSVG } from '../ui/logos/chains/index.js'; -import { getTeleports } from './util.js'; // Pezkuwi Network Endpoints // These are the official PezkuwiChain network endpoints @@ -92,12 +91,10 @@ export const prodRelayPezkuwi: EndpointOption = { isPeopleForIdentity: true, isRelay: true, linked: [ - ...getTeleports(prodParasPezkuwi) + ...prodParasPezkuwi ], providers: { - Local: 'ws://127.0.0.1:9944', - 'Pezkuwi Foundation': 'wss://rpc.pezkuwichain.io', - 'Pezkuwi Zagros': 'wss://zagros-rpc.pezkuwichain.io' + 'Pezkuwi Foundation': 'wss://rpc.pezkuwichain.io' }, teleport: [1000], text: 'Pezkuwi', diff --git a/packages/apps-config/src/endpoints/testingRelayZagros.ts b/packages/apps-config/src/endpoints/testingRelayZagros.ts index b769660..5f17743 100644 --- a/packages/apps-config/src/endpoints/testingRelayZagros.ts +++ b/packages/apps-config/src/endpoints/testingRelayZagros.ts @@ -5,7 +5,6 @@ import type { EndpointOption } from './types.js'; import { ZAGROS_GENESIS } from '../api/constants.js'; import { chainsZagrosSVG } from '../ui/logos/chains/index.js'; -import { getTeleports } from './util.js'; // Zagros Test Network Endpoints // Zagros is the test network for Pezkuwi @@ -92,10 +91,9 @@ export const testRelayZagros: EndpointOption = { isPeopleForIdentity: true, isRelay: true, linked: [ - ...getTeleports(testParasZagros) + ...testParasZagros ], providers: { - Local: 'ws://127.0.0.1:9944', 'Pezkuwi Foundation': 'wss://zagros-rpc.pezkuwichain.io' }, teleport: [1000], diff --git a/packages/apps-config/src/endpoints/types.ts b/packages/apps-config/src/endpoints/types.ts index c1f27cc..e8ddbcf 100644 --- a/packages/apps-config/src/endpoints/types.ts +++ b/packages/apps-config/src/endpoints/types.ts @@ -2,10 +2,13 @@ // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; -import type { IconTheme } from '@pezkuwi/react-identicon/types'; +import type { IconTheme as BaseIconTheme } from '@pezkuwi/react-identicon/types'; import type { HexString } from '@pezkuwi/util/types'; import type { Option } from '../settings/types.js'; +// Extended IconTheme type that includes pezkuwi-specific themes +export type IconTheme = BaseIconTheme | 'bizinikiwi' | 'pezkuwi'; + interface BaseOption { dnslink?: string; /** diff --git a/packages/apps-config/src/ui/logos/chains/generated/3dpassSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/3dpassSVG.ts index 3c87bce..c6c5adf 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/3dpassSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/3dpassSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/WeTEESVG.ts b/packages/apps-config/src/ui/logos/chains/generated/WeTEESVG.ts index 270a0ed..0a0b9e1 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/WeTEESVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/WeTEESVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/abandPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/abandPNG.ts index b9c0b4e..7999bd0 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/abandPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/abandPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/acalaSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/acalaSVG.ts index 5c92ea2..e89e58f 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/acalaSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/acalaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/acurastPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/acurastPNG.ts index 22b36e4..c6ed43a 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/acurastPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/acurastPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/alephSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/alephSVG.ts index ee5ec94..dead9c1 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/alephSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/alephSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/allfeatSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/allfeatSVG.ts index 551138d..a4cf8f0 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/allfeatSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/allfeatSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/altairSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/altairSVG.ts index 311f33b..3e23ff1 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/altairSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/altairSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/amplitudeSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/amplitudeSVG.ts index 8cfadff..92c2031 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/amplitudeSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/amplitudeSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/analogSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/analogSVG.ts index 5bc1e7f..1397498 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/analogSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/analogSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/argonSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/argonSVG.ts index c20e7af..377e1cb 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/argonSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/argonSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/assethub-dicleSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/assethub-dicleSVG.ts index 0de7056..5ad6d26 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/assethub-dicleSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/assethub-dicleSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/bitgreenPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/bitgreenPNG.ts index 6dce139..b722d75 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/bitgreenPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/bitgreenPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/bittensorPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/bittensorPNG.ts index b681139..72d2d67 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/bittensorPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/bittensorPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/brainstormPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/brainstormPNG.ts index 57cd69a..bc12edb 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/brainstormPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/brainstormPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/chainflipPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/chainflipPNG.ts index e6f0ede..2a6770e 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/chainflipPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/chainflipPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/communeaiPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/communeaiPNG.ts index 36be860..582668c 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/communeaiPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/communeaiPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/composableFinancePNG.ts b/packages/apps-config/src/ui/logos/chains/generated/composableFinancePNG.ts index 563af6c..e545dab 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/composableFinancePNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/composableFinancePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/coretime-dicleSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/coretime-dicleSVG.ts index d9764d1..ce116de 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/coretime-dicleSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/coretime-dicleSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/creditcoin-testPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/creditcoin-testPNG.ts index 0e3f9d6..78eafd3 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/creditcoin-testPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/creditcoin-testPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/creditcoinPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/creditcoinPNG.ts index bdba745..94049f4 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/creditcoinPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/creditcoinPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/debioSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/debioSVG.ts index e341e49..417c514 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/debioSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/debioSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/diclePNG.ts b/packages/apps-config/src/ui/logos/chains/generated/diclePNG.ts index c2e7367..2648037 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/diclePNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/diclePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/dicleSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/dicleSVG.ts index b6bc8af..a62c11f 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/dicleSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/dicleSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/dorafactoryPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/dorafactoryPNG.ts index 12e3840..2c47aa4 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/dorafactoryPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/dorafactoryPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/dustyPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/dustyPNG.ts index ebf61fe..7e5278e 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/dustyPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/dustyPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/equilibriumSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/equilibriumSVG.ts index 3ae959c..08e3bcc 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/equilibriumSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/equilibriumSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/ferrumPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/ferrumPNG.ts index c04b843..c3c5216 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/ferrumPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/ferrumPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/fragnovaPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/fragnovaPNG.ts index 623f273..d0afb43 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/fragnovaPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/fragnovaPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/frequencyPaseoSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/frequencyPaseoSVG.ts index 8e7b698..e992a01 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/frequencyPaseoSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/frequencyPaseoSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/frequencySVG.ts b/packages/apps-config/src/ui/logos/chains/generated/frequencySVG.ts index e464445..d83a503 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/frequencySVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/frequencySVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/geminisPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/geminisPNG.ts index bfe59ca..1d97b73 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/geminisPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/geminisPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/genshiroSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/genshiroSVG.ts index aac0afe..5ad57c4 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/genshiroSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/genshiroSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/gmJPEG.ts b/packages/apps-config/src/ui/logos/chains/generated/gmJPEG.ts index 9d1a52d..27d7b8c 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/gmJPEG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/gmJPEG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/hezPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/hezPNG.ts index 25fd6cc..62e9e3e 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/hezPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/hezPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/hydration-paseoSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/hydration-paseoSVG.ts index 0b61c43..4a09fcf 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/hydration-paseoSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/hydration-paseoSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/hydrationSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/hydrationSVG.ts index be23d8e..4e734db 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/hydrationSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/hydrationSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/idiyanale_logo_whiteSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/idiyanale_logo_whiteSVG.ts index 2578103..6998f3e 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/idiyanale_logo_whiteSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/idiyanale_logo_whiteSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/invarchJPEG.ts b/packages/apps-config/src/ui/logos/chains/generated/invarchJPEG.ts index 51053d7..12ff562 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/invarchJPEG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/invarchJPEG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/jurPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/jurPNG.ts index fa0087e..d64d643 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/jurPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/jurPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/karuraSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/karuraSVG.ts index 836f281..df5946b 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/karuraSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/karuraSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/kicoPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/kicoPNG.ts index 36a77b6..e7cf7f2 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/kicoPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/kicoPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/kintsugiPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/kintsugiPNG.ts index 8d8eeba..6f85bcb 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/kintsugiPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/kintsugiPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/kreivoSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/kreivoSVG.ts index 345ea9f..4d280a9 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/kreivoSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/kreivoSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/laos-sigmaPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/laos-sigmaPNG.ts index 1b2f41c..35bf68a 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/laos-sigmaPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/laos-sigmaPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/laosPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/laosPNG.ts index 0d2b99c..1370bcf 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/laosPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/laosPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/liberlandPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/liberlandPNG.ts index 6b043f3..fd83907 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/liberlandPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/liberlandPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/listenPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/listenPNG.ts index 8340924..b08e85a 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/listenPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/listenPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/logionPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/logionPNG.ts index c87536d..1f4a218 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/logionPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/logionPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/moonsamaPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/moonsamaPNG.ts index db1b37f..de14d08 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/moonsamaPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/moonsamaPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/myriadPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/myriadPNG.ts index 7781170..43ef38e 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/myriadPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/myriadPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/myxcavPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/myxcavPNG.ts index b58a98b..a576e3d 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/myxcavPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/myxcavPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/neuroweb-testnetPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/neuroweb-testnetPNG.ts index 59a06da..064ec30 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/neuroweb-testnetPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/neuroweb-testnetPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/neurowebPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/neurowebPNG.ts index 7afc9e3..5887a12 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/neurowebPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/neurowebPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/oakPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/oakPNG.ts index ac69f03..4f539c4 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/oakPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/oakPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/paseoPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/paseoPNG.ts index 5310f2a..1d61723 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/paseoPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/paseoPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/peaqPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/peaqPNG.ts index d854cbf..01104d7 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/peaqPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/peaqPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/pendulumSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/pendulumSVG.ts index 4409281..95f14d3 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/pendulumSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/pendulumSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/people-dicleSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/people-dicleSVG.ts index ddb2238..5510171 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/people-dicleSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/people-dicleSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/people-pezkuwiSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/people-pezkuwiSVG.ts index bceafaa..247623d 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/people-pezkuwiSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/people-pezkuwiSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/pezkuwi-circleSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/pezkuwi-circleSVG.ts index cb7f612..711b44a 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/pezkuwi-circleSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/pezkuwi-circleSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/pezkuwiPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/pezkuwiPNG.ts index 0b6ad5e..e45a699 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/pezkuwiPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/pezkuwiPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/pezkuwiSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/pezkuwiSVG.ts index 9da6e80..4a0d821 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/pezkuwiSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/pezkuwiSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/pezkuwichainSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/pezkuwichainSVG.ts index 0495885..20d4632 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/pezkuwichainSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/pezkuwichainSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/picassoSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/picassoSVG.ts index 88b5a16..2eb76a7 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/picassoSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/picassoSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/pop-networkSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/pop-networkSVG.ts index fc85020..487d568 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/pop-networkSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/pop-networkSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/qf-networkPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/qf-networkPNG.ts index c7048c4..e25ce4e 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/qf-networkPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/qf-networkPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/qpnPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/qpnPNG.ts index 061512b..a4017dc 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/qpnPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/qpnPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/riodefiPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/riodefiPNG.ts index 03be9ca..6584f51 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/riodefiPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/riodefiPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/shibuyaSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/shibuyaSVG.ts index 75e3e9a..dc167aa 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/shibuyaSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/shibuyaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/shidenPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/shidenPNG.ts index 6a01f64..3757a47 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/shidenPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/shidenPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/skyekiwiPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/skyekiwiPNG.ts index 9cf9811..0263c40 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/skyekiwiPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/skyekiwiPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/snowbridgePNG.ts b/packages/apps-config/src/ui/logos/chains/generated/snowbridgePNG.ts index 6a91e9a..f18640f 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/snowbridgePNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/snowbridgePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/spannerPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/spannerPNG.ts index 096bf43..434aaf7 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/spannerPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/spannerPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/standardPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/standardPNG.ts index 81f18ac..2bd3907 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/standardPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/standardPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/t0rnPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/t0rnPNG.ts index 88b239c..a444a85 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/t0rnPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/t0rnPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/tanglePNG.ts b/packages/apps-config/src/ui/logos/chains/generated/tanglePNG.ts index b7f028b..41b4740 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/tanglePNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/tanglePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/tinkerPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/tinkerPNG.ts index 97807bf..44005d4 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/tinkerPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/tinkerPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/torusPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/torusPNG.ts index be391c3..51ee3c8 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/torusPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/torusPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/totemSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/totemSVG.ts index c92db7d..69c86cf 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/totemSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/totemSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/turingPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/turingPNG.ts index b7ec2b2..e239eff 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/turingPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/turingPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/unorthodoxPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/unorthodoxPNG.ts index a4744a7..c4a4588 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/unorthodoxPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/unorthodoxPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/vara-testnetPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/vara-testnetPNG.ts index c0c59f4..1b8487c 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/vara-testnetPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/vara-testnetPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/varaPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/varaPNG.ts index 388ce02..73f8d52 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/varaPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/varaPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/virtoPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/virtoPNG.ts index fa859e8..d1e335e 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/virtoPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/virtoPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/vtbPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/vtbPNG.ts index d78469c..6c7dfd3 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/vtbPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/vtbPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/watrPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/watrPNG.ts index 401e12a..a8fbbe1 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/watrPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/watrPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/zagrosPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/zagrosPNG.ts index 0610d27..14d8c56 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/zagrosPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/zagrosPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/zagrosSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/zagrosSVG.ts index 52ffe6b..7817630 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/zagrosSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/zagrosSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/index.ts b/packages/apps-config/src/ui/logos/chains/index.ts index 9b3d751..6b97d4e 100644 --- a/packages/apps-config/src/ui/logos/chains/index.ts +++ b/packages/apps-config/src/ui/logos/chains/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/extensions/generated/pezkuwi-jsSVG.ts b/packages/apps-config/src/ui/logos/extensions/generated/pezkuwi-jsSVG.ts index 40c0d0f..6e344b3 100644 --- a/packages/apps-config/src/ui/logos/extensions/generated/pezkuwi-jsSVG.ts +++ b/packages/apps-config/src/ui/logos/extensions/generated/pezkuwi-jsSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/extensions/index.ts b/packages/apps-config/src/ui/logos/extensions/index.ts index 869ddf9..6691037 100644 --- a/packages/apps-config/src/ui/logos/extensions/index.ts +++ b/packages/apps-config/src/ui/logos/extensions/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/cerestatsPNG.ts b/packages/apps-config/src/ui/logos/external/generated/cerestatsPNG.ts index c2e0b28..d5d842d 100644 --- a/packages/apps-config/src/ui/logos/external/generated/cerestatsPNG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/cerestatsPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/commonwealthPNG.ts b/packages/apps-config/src/ui/logos/external/generated/commonwealthPNG.ts index 651b343..77562df 100644 --- a/packages/apps-config/src/ui/logos/external/generated/commonwealthPNG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/commonwealthPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/edgscanPNG.ts b/packages/apps-config/src/ui/logos/external/generated/edgscanPNG.ts index 8d84915..5917670 100644 --- a/packages/apps-config/src/ui/logos/external/generated/edgscanPNG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/edgscanPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/emptySVG.ts b/packages/apps-config/src/ui/logos/external/generated/emptySVG.ts index ee3787c..15fe3d2 100644 --- a/packages/apps-config/src/ui/logos/external/generated/emptySVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/emptySVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/hezscannerSVG.ts b/packages/apps-config/src/ui/logos/external/generated/hezscannerSVG.ts index 9c32f31..7f6b8cd 100644 --- a/packages/apps-config/src/ui/logos/external/generated/hezscannerSVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/hezscannerSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/heztreasurySVG.ts b/packages/apps-config/src/ui/logos/external/generated/heztreasurySVG.ts index 7afe991..cc18bf3 100644 --- a/packages/apps-config/src/ui/logos/external/generated/heztreasurySVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/heztreasurySVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/kodadotSVG.ts b/packages/apps-config/src/ui/logos/external/generated/kodadotSVG.ts index 5ba5758..5af0048 100644 --- a/packages/apps-config/src/ui/logos/external/generated/kodadotSVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/kodadotSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/moonbeamAppsSVG.ts b/packages/apps-config/src/ui/logos/external/generated/moonbeamAppsSVG.ts index 16da854..1080a5c 100644 --- a/packages/apps-config/src/ui/logos/external/generated/moonbeamAppsSVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/moonbeamAppsSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/pezkuwiassemblySVG.ts b/packages/apps-config/src/ui/logos/external/generated/pezkuwiassemblySVG.ts index 5054e67..22113d4 100644 --- a/packages/apps-config/src/ui/logos/external/generated/pezkuwiassemblySVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/pezkuwiassemblySVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/pezkuwiholicSVG.ts b/packages/apps-config/src/ui/logos/external/generated/pezkuwiholicSVG.ts index 35d05ae..c5146aa 100644 --- a/packages/apps-config/src/ui/logos/external/generated/pezkuwiholicSVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/pezkuwiholicSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/pezkuwiscanSVG.ts b/packages/apps-config/src/ui/logos/external/generated/pezkuwiscanSVG.ts index 919c8d3..a953441 100644 --- a/packages/apps-config/src/ui/logos/external/generated/pezkuwiscanSVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/pezkuwiscanSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/pezkuwistatsSVG.ts b/packages/apps-config/src/ui/logos/external/generated/pezkuwistatsSVG.ts index 95a9848..75d9590 100644 --- a/packages/apps-config/src/ui/logos/external/generated/pezkuwistatsSVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/pezkuwistatsSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/singularSVG.ts b/packages/apps-config/src/ui/logos/external/generated/singularSVG.ts index 2fd8e19..0e02b40 100644 --- a/packages/apps-config/src/ui/logos/external/generated/singularSVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/singularSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/statescanSVG.ts b/packages/apps-config/src/ui/logos/external/generated/statescanSVG.ts index 914a5d2..28dc9d4 100644 --- a/packages/apps-config/src/ui/logos/external/generated/statescanSVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/statescanSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/subidSVG.ts b/packages/apps-config/src/ui/logos/external/generated/subidSVG.ts index 83867cb..1070586 100644 --- a/packages/apps-config/src/ui/logos/external/generated/subidSVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/subidSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/subscanPNG.ts b/packages/apps-config/src/ui/logos/external/generated/subscanPNG.ts index 52929f5..9601065 100644 --- a/packages/apps-config/src/ui/logos/external/generated/subscanPNG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/subscanPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/subsquareSVG.ts b/packages/apps-config/src/ui/logos/external/generated/subsquareSVG.ts index 1297959..0cc7ada 100644 --- a/packages/apps-config/src/ui/logos/external/generated/subsquareSVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/subsquareSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/index.ts b/packages/apps-config/src/ui/logos/external/index.ts index f5bb6f9..0a15c5e 100644 --- a/packages/apps-config/src/ui/logos/external/index.ts +++ b/packages/apps-config/src/ui/logos/external/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/VFlowPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/VFlowPNG.ts index d5923f5..2cb09d5 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/VFlowPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/VFlowPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ajunaPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ajunaPNG.ts index ad39bcf..d93da53 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ajunaPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ajunaPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/apronPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/apronPNG.ts index e673a07..6d9f450 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/apronPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/apronPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/arcticPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/arcticPNG.ts index 55195be..b9358a0 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/arcticPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/arcticPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ares-gladiosSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ares-gladiosSVG.ts index 3bddb13..f8e96a6 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ares-gladiosSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ares-gladiosSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ares-marsPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ares-marsPNG.ts index 3e39448..1b49a66 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ares-marsPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ares-marsPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ares-odysseySVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ares-odysseySVG.ts index b709b71..66a57bc 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ares-odysseySVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ares-odysseySVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/aresPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/aresPNG.ts index 829200e..903e4aa 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/aresPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/aresPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/assetHubSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/assetHubSVG.ts index 38e6482..6ea1884 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/assetHubSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/assetHubSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/astarPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/astarPNG.ts index a8d76d9..b4dcb26 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/astarPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/astarPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/autonomysPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/autonomysPNG.ts index f9b65af..07abfb8 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/autonomysPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/autonomysPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/aventusSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/aventusSVG.ts index 455286a..9415b18 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/aventusSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/aventusSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/bajunPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/bajunPNG.ts index f81073a..fec6e0b 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/bajunPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/bajunPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/basilisk-pezkuwichain-bgPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/basilisk-pezkuwichain-bgPNG.ts index 82bdb4e..725bc64 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/basilisk-pezkuwichain-bgPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/basilisk-pezkuwichain-bgPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/basiliskPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/basiliskPNG.ts index 6fc0e66..36cb3b3 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/basiliskPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/basiliskPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/beastSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/beastSVG.ts index 644eed7..fc1695f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/beastSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/beastSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/bifrostSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/bifrostSVG.ts index 5827766..8ed8f09 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/bifrostSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/bifrostSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/bitcountryPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/bitcountryPNG.ts index 8f7f444..7ceb41b 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/bitcountryPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/bitcountryPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/bizinikiwi-hexagonSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/bizinikiwi-hexagonSVG.ts index 7bdf93f..90b2d1e 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/bizinikiwi-hexagonSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/bizinikiwi-hexagonSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/bridgeHubBlackSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/bridgeHubBlackSVG.ts index a6f929c..87c3dcc 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/bridgeHubBlackSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/bridgeHubBlackSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/bridgeHubSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/bridgeHubSVG.ts index 0fb3e03..8e8dcc9 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/bridgeHubSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/bridgeHubSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/calamariPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/calamariPNG.ts index d4a5c32..15a8810 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/calamariPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/calamariPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/centrifugePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/centrifugePNG.ts index 4aaa313..aecd62a 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/centrifugePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/centrifugePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/cereSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/cereSVG.ts index 408d037..0229642 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/cereSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/cereSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/cessPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/cessPNG.ts index b0405c3..a84fbd5 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/cessPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/cessPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/chainxSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/chainxSVG.ts index 5d6cb7b..a119960 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/chainxSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/chainxSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/cloverSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/cloverSVG.ts index 55a9c6c..55818c3 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/cloverSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/cloverSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/coinversationPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/coinversationPNG.ts index 6735fda..570079f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/coinversationPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/coinversationPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/collectivesSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/collectivesSVG.ts index 9d64618..fe0ca42 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/collectivesSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/collectivesSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/competitors-clubPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/competitors-clubPNG.ts index f4592ee..122d2af 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/competitors-clubPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/competitors-clubPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/conftiSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/conftiSVG.ts index a8d146b..09b4d94 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/conftiSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/conftiSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/continuumPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/continuumPNG.ts index 1fac789..2a73e5e 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/continuumPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/continuumPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/crabSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/crabSVG.ts index e70600f..e833710 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/crabSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/crabSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/crown-sterlingPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/crown-sterlingPNG.ts index dc5c30a..8a61030 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/crown-sterlingPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/crown-sterlingPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/crust-maxwellSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/crust-maxwellSVG.ts index 1d62c85..72d0f39 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/crust-maxwellSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/crust-maxwellSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/crustParachainSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/crustParachainSVG.ts index 2675347..898bca9 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/crustParachainSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/crustParachainSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/crustSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/crustSVG.ts index 1410284..db27525 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/crustSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/crustSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/curioSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/curioSVG.ts index 2533f73..9c62144 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/curioSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/curioSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/daliPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/daliPNG.ts index 50346df..aee7ecb 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/daliPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/daliPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/dancelightSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/dancelightSVG.ts index 8ab4404..886e0e5 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/dancelightSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/dancelightSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/darwinia-koiSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/darwinia-koiSVG.ts index 3c2adfd..ce8b62d 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/darwinia-koiSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/darwinia-koiSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/darwiniaSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/darwiniaSVG.ts index 7fc06f1..10a9fcd 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/darwiniaSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/darwiniaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/datahighwayPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/datahighwayPNG.ts index 6f665a1..648c2a8 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/datahighwayPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/datahighwayPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/dockPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/dockPNG.ts index 5e3216e..c1f3c4f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/dockPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/dockPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/dolphinSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/dolphinSVG.ts index 4d48397..70710db 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/dolphinSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/dolphinSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/dotmogSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/dotmogSVG.ts index b940bf9..8b6defe 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/dotmogSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/dotmogSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/eaveSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/eaveSVG.ts index 4b486af..4271ded 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/eaveSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/eaveSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/edgeware-whitePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/edgeware-whitePNG.ts index e672fe7..a2d24b9 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/edgeware-whitePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/edgeware-whitePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/efinitySVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/efinitySVG.ts index d449a7c..7ebec82 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/efinitySVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/efinitySVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/elysiumPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/elysiumPNG.ts index c435e6b..618eefe 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/elysiumPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/elysiumPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/encointer-blueSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/encointer-blueSVG.ts index 229837f..73df924 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/encointer-blueSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/encointer-blueSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ewxSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ewxSVG.ts index 1fc9b6b..13d6bf1 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ewxSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ewxSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/fantourPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/fantourPNG.ts index fc69dfe..88c59e6 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/fantourPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/fantourPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/fintraSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/fintraSVG.ts index 6376ca0..9ae9ae9 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/fintraSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/fintraSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/galital-logoPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/galital-logoPNG.ts index 1b315ed..6b81895 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/galital-logoPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/galital-logoPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/gamepowerSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/gamepowerSVG.ts index 346462f..f1e79ec 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/gamepowerSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/gamepowerSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/geekSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/geekSVG.ts index 61eca02..b6e9fa2 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/geekSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/geekSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/giantPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/giantPNG.ts index ae1edaa..ccb7077 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/giantPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/giantPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/hanyonycashPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/hanyonycashPNG.ts index 03c8c73..84e1cc3 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/hanyonycashPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/hanyonycashPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/hashedPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/hashedPNG.ts index cca9362..521ef90 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/hashedPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/hashedPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/heima-paseoPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/heima-paseoPNG.ts index b365747..55d0802 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/heima-paseoPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/heima-paseoPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/heimaSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/heimaSVG.ts index 49ff8bb..d84a965 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/heimaSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/heimaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/helixstreetPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/helixstreetPNG.ts index fec1669..34fd3db 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/helixstreetPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/helixstreetPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/humanodePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/humanodePNG.ts index a495fe7..f159741 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/humanodePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/humanodePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/hyperbridgePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/hyperbridgePNG.ts index f98c6d5..7f81623 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/hyperbridgePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/hyperbridgePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/idavollPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/idavollPNG.ts index c6fd9ec..efecd0f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/idavollPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/idavollPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ideal-networkSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ideal-networkSVG.ts index 66d11f9..91bec41 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ideal-networkSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ideal-networkSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/idncSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/idncSVG.ts index f755c05..286b852 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/idncSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/idncSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/imbuePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/imbuePNG.ts index 5ca6fed..4ffe355 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/imbuePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/imbuePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/innovatorPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/innovatorPNG.ts index e226a25..6d09680 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/innovatorPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/innovatorPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/integriteeSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/integriteeSVG.ts index b0a0896..078d884 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/integriteeSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/integriteeSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/interlaySVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/interlaySVG.ts index f33d1c4..3cca53f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/interlaySVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/interlaySVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/invoPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/invoPNG.ts index 64bbe75..999d235 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/invoPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/invoPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ipciSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ipciSVG.ts index a87ac0b..91f9fb4 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ipciSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ipciSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ipsePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ipsePNG.ts index 63f1245..b5a6315 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ipsePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ipsePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ipseSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ipseSVG.ts index 5d3e152..953c776 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ipseSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ipseSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/jamtonSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/jamtonSVG.ts index 0d24e70..a8e9324 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/jamtonSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/jamtonSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/jazPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/jazPNG.ts index 89842d3..ce97f10 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/jazPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/jazPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/joystreamSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/joystreamSVG.ts index ffff9a2..f35fef3 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/joystreamSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/joystreamSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/jupiterSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/jupiterSVG.ts index 4b38a4d..e0046ba 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/jupiterSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/jupiterSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/kabochaSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/kabochaSVG.ts index e7299cb..5ec8fda 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/kabochaSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/kabochaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/karmachainSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/karmachainSVG.ts index 540aa80..d174553 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/karmachainSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/karmachainSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/khalaSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/khalaSVG.ts index 25e0e12..ee2dd8f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/khalaSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/khalaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/kilt-iconSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/kilt-iconSVG.ts index b7ed2a5..3f75970 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/kilt-iconSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/kilt-iconSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/kineraPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/kineraPNG.ts index 1fd9605..9ffaed1 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/kineraPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/kineraPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/klugPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/klugPNG.ts index f74e53f..90bb86f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/klugPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/klugPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/konomiPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/konomiPNG.ts index b882ec4..9e15f3a 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/konomiPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/konomiPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/krestPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/krestPNG.ts index e7092b7..422e46e 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/krestPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/krestPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/kulupuSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/kulupuSVG.ts index 3259fae..95e5c7c 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/kulupuSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/kulupuSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/kusariSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/kusariSVG.ts index 4e642d8..5215eea 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/kusariSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/kusariSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/kylinPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/kylinPNG.ts index 7f981b2..c7b980b 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/kylinPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/kylinPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/laminar-circleSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/laminar-circleSVG.ts index 793a761..d8d57a8 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/laminar-circleSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/laminar-circleSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/loom_networkPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/loom_networkPNG.ts index 695c4a9..b7d8419 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/loom_networkPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/loom_networkPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/magnetPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/magnetPNG.ts index c95dfa7..307bd79 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/magnetPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/magnetPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/mandalaPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/mandalaPNG.ts index d011ff3..5741f8f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/mandalaPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/mandalaPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/mantaPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/mantaPNG.ts index 2e38b6a..6e0f276 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/mantaPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/mantaPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/mathSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/mathSVG.ts index a5b35e8..d23eb96 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/mathSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/mathSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/md5PNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/md5PNG.ts index 5e1b22d..0abdefc 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/md5PNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/md5PNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/minixPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/minixPNG.ts index 1bd3d77..ba644f6 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/minixPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/minixPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/moonbase_alphaSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/moonbase_alphaSVG.ts index b2be6eb..8482179 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/moonbase_alphaSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/moonbase_alphaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/moonbeamSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/moonbeamSVG.ts index cdda8db..226509a 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/moonbeamSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/moonbeamSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/moonriverSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/moonriverSVG.ts index 38dea62..9fff79e 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/moonriverSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/moonriverSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/moonrockPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/moonrockPNG.ts index 749e042..513595c 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/moonrockPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/moonrockPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/moonsamaSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/moonsamaSVG.ts index 38a6764..2400485 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/moonsamaSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/moonsamaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/moonshadowPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/moonshadowPNG.ts index aae3b4d..63fac06 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/moonshadowPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/moonshadowPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/musePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/musePNG.ts index 567fb51..c56ed1f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/musePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/musePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/mybankPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/mybankPNG.ts index 454dc90..a5f1487 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/mybankPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/mybankPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/myriadPaseoSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/myriadPaseoSVG.ts index 056ca02..3e7617f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/myriadPaseoSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/myriadPaseoSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/mythosPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/mythosPNG.ts index 9f1ca25..e9ea133 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/mythosPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/mythosPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/nftmartPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/nftmartPNG.ts index 81ac986..257b40a 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/nftmartPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/nftmartPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/nodleSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/nodleSVG.ts index da22316..d216dde 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/nodleSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/nodleSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/oliSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/oliSVG.ts index e2b9933..f12964e 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/oliSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/oliSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/omnibtcSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/omnibtcSVG.ts index 52bdee7..f9daac4 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/omnibtcSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/omnibtcSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/opal-logoPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/opal-logoPNG.ts index e22f931..0941707 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/opal-logoPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/opal-logoPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/opportunityPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/opportunityPNG.ts index dd6536f..8124564 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/opportunityPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/opportunityPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ozPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ozPNG.ts index 4169f69..b7759c8 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ozPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ozPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/pangolinSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/pangolinSVG.ts index a136832..40b3acd 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/pangolinSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/pangolinSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/parallelSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/parallelSVG.ts index 003f070..fce0780 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/parallelSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/parallelSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/paramiJPEG.ts b/packages/apps-config/src/ui/logos/nodes/generated/paramiJPEG.ts index da6ea70..91fa790 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/paramiJPEG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/paramiJPEG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/peerplaysPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/peerplaysPNG.ts index 4c85224..215c76b 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/peerplaysPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/peerplaysPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/phalaSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/phalaSVG.ts index bf886e2..82edab9 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/phalaSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/phalaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/phoenixPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/phoenixPNG.ts index 8b75d06..2f64c40 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/phoenixPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/phoenixPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/phyken-networkPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/phyken-networkPNG.ts index cc06800..15a40cf 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/phyken-networkPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/phyken-networkPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/picassoPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/picassoPNG.ts index f298804..62013bd 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/picassoPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/picassoPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/pichiuPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/pichiuPNG.ts index 0039c43..7e42fd6 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/pichiuPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/pichiuPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/plasmPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/plasmPNG.ts index b0ebe46..f249460 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/plasmPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/plasmPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/polkadexSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/polkadexSVG.ts index b1dd762..3074a23 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/polkadexSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/polkadexSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/polkafoundrySVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/polkafoundrySVG.ts index 29198f5..9721cf8 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/polkafoundrySVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/polkafoundrySVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/polkasmithSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/polkasmithSVG.ts index d99fff0..36d5018 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/polkasmithSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/polkasmithSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/polymeshSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/polymeshSVG.ts index ecef99a..77afb82 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/polymeshSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/polymeshSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/pontemSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/pontemSVG.ts index 0e6ccf9..0199e04 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/pontemSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/pontemSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/prismPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/prismPNG.ts index a50f8cb..4e8b2c8 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/prismPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/prismPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/quartzPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/quartzPNG.ts index f94799c..ada8045 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/quartzPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/quartzPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/realisPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/realisPNG.ts index 3f97563..e75fb13 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/realisPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/realisPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/regionxCocosPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/regionxCocosPNG.ts index 8bc3792..ed40f4d 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/regionxCocosPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/regionxCocosPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/regionxPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/regionxPNG.ts index 5f08e89..60d889f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/regionxPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/regionxPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/rexSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/rexSVG.ts index 723e4eb..05350ec 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/rexSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/rexSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/riochainSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/riochainSVG.ts index 0a2455d..b75336b 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/riochainSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/riochainSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/robonomicsSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/robonomicsSVG.ts index a6e1020..d9feb0e 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/robonomicsSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/robonomicsSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/rocfinitySVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/rocfinitySVG.ts index 25f2ba0..5764679 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/rocfinitySVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/rocfinitySVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/sakuraSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/sakuraSVG.ts index 042dd53..700ccc9 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/sakuraSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/sakuraSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/shadowSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/shadowSVG.ts index b0d4dd3..7ea4ed3 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/shadowSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/shadowSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/shellSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/shellSVG.ts index 817f917..2dcd954 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/shellSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/shellSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/sherpaxPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/sherpaxPNG.ts index 81e7737..bb92e7f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/sherpaxPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/sherpaxPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/singlavenderSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/singlavenderSVG.ts index 14642ef..d4f57bf 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/singlavenderSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/singlavenderSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/snowPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/snowPNG.ts index f0acbf4..eaf8ad4 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/snowPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/snowPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/societalSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/societalSVG.ts index ab4ec10..f0e5d13 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/societalSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/societalSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/soonsocialPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/soonsocialPNG.ts index 3a0a6cb..2f699bd 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/soonsocialPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/soonsocialPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/soonsocialXPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/soonsocialXPNG.ts index e1ee3bd..0797bf4 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/soonsocialXPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/soonsocialXPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/sora-bizinikiwiSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/sora-bizinikiwiSVG.ts index d2a749d..87f69ca 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/sora-bizinikiwiSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/sora-bizinikiwiSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/sora-substrateSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/sora-substrateSVG.ts index 8d3ae42..312648d 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/sora-substrateSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/sora-substrateSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/stafiPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/stafiPNG.ts index 45a70eb..93bf669 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/stafiPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/stafiPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/statemineSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/statemineSVG.ts index bf15f9f..c11de58 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/statemineSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/statemineSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/subdaoPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/subdaoPNG.ts index b914759..fe7e90c 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/subdaoPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/subdaoPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/subgameSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/subgameSVG.ts index e5c4d35..777491b 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/subgameSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/subgameSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/subsocialSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/subsocialSVG.ts index 92982d8..d9050e4 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/subsocialSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/subsocialSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/subsocialXSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/subsocialXSVG.ts index 2bd0418..65bb971 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/subsocialXSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/subsocialXSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/subspacePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/subspacePNG.ts index cd1b2fb..bdc530a 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/subspacePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/subspacePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/substrate-circleSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/substrate-circleSVG.ts index 6565362..8d78b00 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/substrate-circleSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/substrate-circleSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/substrate-contracts-nodePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/substrate-contracts-nodePNG.ts index 4a1d8c6..0ee86c2 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/substrate-contracts-nodePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/substrate-contracts-nodePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/substrate-hexagonSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/substrate-hexagonSVG.ts index 96d19d7..4a8e1b0 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/substrate-hexagonSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/substrate-hexagonSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/substrate-whiteSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/substrate-whiteSVG.ts index 393bb64..5849e11 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/substrate-whiteSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/substrate-whiteSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/swapdexSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/swapdexSVG.ts index 58c6c55..5163e13 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/swapdexSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/swapdexSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/t1rnPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/t1rnPNG.ts index 5cd7a9c..dd71d9f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/t1rnPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/t1rnPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/t3rnPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/t3rnPNG.ts index 838997a..450bb28 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/t3rnPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/t3rnPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/tanssiSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/tanssiSVG.ts index 83f4f92..f04d341 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/tanssiSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/tanssiSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ternoaSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ternoaSVG.ts index 708940a..4ef20f1 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ternoaSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ternoaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/thebifrostPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/thebifrostPNG.ts index 5502896..7acc087 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/thebifrostPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/thebifrostPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/trustbasePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/trustbasePNG.ts index 495aa3b..31cf840 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/trustbasePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/trustbasePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/tscsPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/tscsPNG.ts index c3d2276..f686ff7 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/tscsPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/tscsPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/uniartsPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/uniartsPNG.ts index d70e74d..00e1ee1 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/uniartsPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/uniartsPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/uniqueSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/uniqueSVG.ts index 1dc0d40..8d5cd7b 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/uniqueSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/uniqueSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/unitnetworkPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/unitnetworkPNG.ts index ffeced9..4c2636c 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/unitnetworkPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/unitnetworkPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/unitvPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/unitvPNG.ts index d242cf5..9390de4 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/unitvPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/unitvPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/valiuPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/valiuPNG.ts index 8a86081..43208cf 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/valiuPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/valiuPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/varaSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/varaSVG.ts index b3b0e27..9923387 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/varaSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/varaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/web3gamesSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/web3gamesSVG.ts index b78df5c..518a5b5 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/web3gamesSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/web3gamesSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/xodePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/xodePNG.ts index 9556f8d..8a7aab9 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/xodePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/xodePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/yerbanetworkPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/yerbanetworkPNG.ts index 98d293e..6c80ac9 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/yerbanetworkPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/yerbanetworkPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/zCloakSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/zCloakSVG.ts index 6fe0b39..1765133 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/zCloakSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/zCloakSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/zagros_colourSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/zagros_colourSVG.ts index 6bc59a6..1b38da1 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/zagros_colourSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/zagros_colourSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/zeitgeistPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/zeitgeistPNG.ts index 9b09241..c114448 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/zeitgeistPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/zeitgeistPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/zenlinkSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/zenlinkSVG.ts index aca3fc9..2d44f0f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/zenlinkSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/zenlinkSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/zeroSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/zeroSVG.ts index 47b8809..d279a0b 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/zeroSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/zeroSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/zkVerifyPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/zkVerifyPNG.ts index 1ed4e32..738f6d3 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/zkVerifyPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/zkVerifyPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/index.ts b/packages/apps-config/src/ui/logos/nodes/index.ts index 3595ef9..1a0c3d4 100644 --- a/packages/apps-config/src/ui/logos/nodes/index.ts +++ b/packages/apps-config/src/ui/logos/nodes/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-routing/src/democracy.ts b/packages/apps-routing/src/democracy.ts index 02b41f0..d8a1f10 100644 --- a/packages/apps-routing/src/democracy.ts +++ b/packages/apps-routing/src/democracy.ts @@ -9,7 +9,8 @@ import Component, { useCounter } from '@pezkuwi/app-democracy'; function needsApiCheck (api: ApiPromise): boolean { try { // we need to be able to create an actual vote - api.tx.democracy.vote(1, { Standard: { balance: 1, vote: { aye: true, conviction: 1 } } }); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + api.tx.democracy.vote(1, { Standard: { balance: 1, vote: { aye: true, conviction: 1 } } } as any); return true; } catch { diff --git a/packages/apps-routing/src/staking.ts b/packages/apps-routing/src/staking.ts index 4444d7d..e14e8cd 100644 --- a/packages/apps-routing/src/staking.ts +++ b/packages/apps-routing/src/staking.ts @@ -3,7 +3,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { u32, Vec } from '@pezkuwi/types'; -import type { SpStakingPagedExposureMetadata } from '@pezkuwi/types/lookup'; +import type { PezspStakingPagedExposureMetadata } from '@pezkuwi/types/lookup'; import type { Route, TFunction } from './types.js'; import Component from '@pezkuwi/app-staking'; @@ -20,7 +20,7 @@ function needsApiCheck (api: ApiPromise): boolean { // we need a known Exposure type // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment - const { nominatorCount, own, pageCount, total } = api.registry.createType( + const { nominatorCount, own, pageCount, total } = api.registry.createType( unwrapStorageType(api.registry, api.query.staking.erasStakersOverview.creator.meta.type), { nominatorCount: BN_ONE, own: BN_ONE, pageCount: BN_ONE, total: BN_ONE } ); @@ -41,6 +41,7 @@ function needsApiCheck (api: ApiPromise): boolean { api.tx.staking.bond(ZERO_ACCOUNT, BN_ONE, { Account: ZERO_ACCOUNT }); } else if (api.tx.staking.bond.meta.args.length === 2) { // current, no controller account + // @ts-expect-error Runtime type format api.tx.staking.bond(BN_ONE, { Account: ZERO_ACCOUNT }); } else { // unknown diff --git a/packages/apps-routing/src/staking2.ts b/packages/apps-routing/src/staking2.ts index 80766ec..80ea635 100644 --- a/packages/apps-routing/src/staking2.ts +++ b/packages/apps-routing/src/staking2.ts @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@pezkuwi/api'; -import type { SpStakingExposure } from '@pezkuwi/types/lookup'; +import type { PezspStakingExposure } from '@pezkuwi/types/lookup'; import type { Route, TFunction } from './types.js'; import Component from '@pezkuwi/app-staking2'; @@ -14,7 +14,7 @@ function needsApiCheck (api: ApiPromise): boolean { try { // we need a known Exposure type // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment - const { others: [{ value, who }], own, total } = api.registry.createType( + const { others: [{ value, who }], own, total } = api.registry.createType( unwrapStorageType(api.registry, api.query.staking.erasStakers.creator.meta.type), { others: [{ value: BN_ONE, who: ZERO_ACCOUNT }], own: BN_ONE, total: BN_ONE } ); @@ -35,6 +35,7 @@ function needsApiCheck (api: ApiPromise): boolean { api.tx.staking.bond(ZERO_ACCOUNT, BN_ONE, { Account: ZERO_ACCOUNT }); } else if (api.tx.staking.bond.meta.args.length === 2) { // current, no controller account + // @ts-expect-error Runtime type format api.tx.staking.bond(BN_ONE, { Account: ZERO_ACCOUNT }); } else { // unknown diff --git a/packages/apps-routing/src/stakingLegacy.ts b/packages/apps-routing/src/stakingLegacy.ts index fc024cb..72f2ef3 100644 --- a/packages/apps-routing/src/stakingLegacy.ts +++ b/packages/apps-routing/src/stakingLegacy.ts @@ -3,7 +3,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { u32, Vec } from '@pezkuwi/types'; -import type { PalletStakingStakingLedger, SpStakingExposure } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingStakingLedger, PezspStakingExposure } from '@pezkuwi/types/lookup'; import type { Route, TFunction } from './types.js'; import Component from '@pezkuwi/app-staking-legacy'; @@ -18,7 +18,7 @@ function needsApiCheck (api: ApiPromise): boolean { try { // we need a known Exposure type - const { others: [{ value, who }], own, total } = api.registry.createType( + const { others: [{ value, who }], own, total } = api.registry.createType( unwrapStorageType(api.registry, api.query.staking.erasStakers.creator.meta.type), { others: [{ value: BN_ONE, who: ZERO_ACCOUNT }], own: BN_ONE, total: BN_ONE } ); @@ -38,6 +38,7 @@ function needsApiCheck (api: ApiPromise): boolean { api.tx.staking.bond(ZERO_ACCOUNT, BN_ONE, { Account: ZERO_ACCOUNT }); } else if (api.tx.staking.bond.meta.args.length === 2) { // current, no controller account + // @ts-expect-error Runtime type format api.tx.staking.bond(BN_ONE, { Account: ZERO_ACCOUNT }); } else { // unknown @@ -51,7 +52,7 @@ function needsApiCheck (api: ApiPromise): boolean { // For compatibility - `api.query.staking.ledger` returns `legacyClaimedRewards` instead of `claimedRewards` as of v1.4 try { - const v = api.registry.createType( + const v = api.registry.createType( unwrapStorageType(api.registry, api.query.staking.ledger.creator.meta.type), { claimedRewards: [1, 2, 3] } ); @@ -59,7 +60,7 @@ function needsApiCheck (api: ApiPromise): boolean { if ((v as unknown as { claimedRewards: Vec }).claimedRewards) { assert((v as unknown as { claimedRewards: Vec }).claimedRewards.eq([1, 2, 3]), 'Needs a claimedRewards array'); } else { - const v = api.registry.createType( + const v = api.registry.createType( unwrapStorageType(api.registry, api.query.staking.ledger.creator.meta.type), { legacyClaimedRewards: [1, 2, 3] } ); diff --git a/packages/apps/public/locales/en/app-teyrchains.json b/packages/apps/public/locales/en/app-teyrchains.json new file mode 100644 index 0000000..680d7ca --- /dev/null +++ b/packages/apps/public/locales/en/app-teyrchains.json @@ -0,0 +1,181 @@ +{ + " for more details.": " for more details.", + "0x...": "0x...", + "Active": "Active", + "Add": "Add", + "Add campaign": "Add campaign", + "Add fund": "Add fund", + "Add validator": "Add validator", + "After the Asset Hub migration, crowdloan related activity has been transferred to the `ah_ops` pallet on Asset Hub. You can claim your funds from there, or visit ": "After the Asset Hub migration, crowdloan related activity has been transferred to the `ah_ops` pallet on Asset Hub. You can claim your funds from there, or visit ", + "Approve": "Approve", + "Auctions": "Auctions", + "Auctions will be deprecated in favor of Coretime. When Coretime is active in Pezkuwi, this page will be removed.": "Auctions will be deprecated in favor of Coretime. When Coretime is active in Pezkuwi, this page will be removed.", + "Before using this registered paraId, you need to have a WASM validation function registered on-chain": "Before using this registered paraId, you need to have a WASM validation function registered on-chain", + "Bid": "Bid", + "Cancel": "Cancel", + "Capped": "Capped", + "Close": "Close", + "Contribute": "Contribute", + "Contribute to fund": "Contribute to fund", + "Crowdloan": "Crowdloan", + "Crowdloans will be deprecated in favor of Coretime. When Coretime is active in Pezkuwi, this page will be removed.": "Crowdloans will be deprecated in favor of Coretime. When Coretime is active in Pezkuwi, this page will be removed.", + "Currently this is a one-way transfer since the on-chain runtime functionality to send the funds from the destination chain back to this account not yet available.": "Currently this is a one-way transfer since the on-chain runtime functionality to send the funds from the destination chain back to this account not yet available.", + "Deregister": "Deregister", + "Deregister ParaId": "Deregister ParaId", + "Deregistering a paraID will:": "Deregistering a paraID will:", + "Do not transfer any funds directly to a specific account that is associated with a loan or a team. Use the \"Contribute\" action to record the contribution on-chain using the crowdloan runtime module. When the fund is dissolved, after either the teyrchain lease expires or the loan ending without winning, the full value will be returned to your account by the runtime. Funds sent directly to an account, without using the crowdloan functionality, may not be returned by the receiving account.": "Do not transfer any funds directly to a specific account that is associated with a loan or a team. Use the \"Contribute\" action to record the contribution on-chain using the crowdloan runtime module. When the fund is dissolved, after either the teyrchain lease expires or the loan ending without winning, the full value will be returned to your account by the runtime. Funds sent directly to an account, without using the crowdloan functionality, may not be returned by the receiving account.", + "Ended": "Ended", + "Exclude it from future auctions and onboarding.": "Exclude it from future auctions and onboarding.", + "Homepage": "Homepage", + "My contributions ({{count}})": "My contributions ({{count}})", + "No": "No", + "No active campaigns found": "No active campaigns found", + "No completed campaigns found": "No completed campaigns found", + "No ongoing auction": "No ongoing auction", + "No winners in this auction": "No winners in this auction", + "Non-voters ({{count}})": "Non-voters ({{count}})", + "None": "None", + "Overview": "Overview", + "ParaId": "ParaId", + "ParaThread": "ParaThread", + "Parathreads": "Parathreads", + "Past": "Past", + "Place bid": "Place bid", + "Please ensure this is your intended action before continuing.": "Please ensure this is your intended action before continuing.", + "Potentially release any reserved deposits linked to it.": "Potentially release any reserved deposits linked to it.", + "Proposals": "Proposals", + "Propose": "Propose", + "Propose teyrchain": "Propose teyrchain", + "Refund": "Refund", + "Register parathread": "Register parathread", + "Remove it from the active teyrchain/parathread set.": "Remove it from the active teyrchain/parathread set.", + "Remove validator": "Remove validator", + "Require re-registration if you wish to use it again.": "Require re-registration if you wish to use it again.", + "Reserve ParaId": "Reserve ParaId", + "Submit": "Submit", + "Teleport": "Teleport", + "Teleport assets": "Teleport assets", + "The Id of this teyrchain as known on the network (selected from nextFreeId)": "The Id of this teyrchain as known on the network (selected from nextFreeId)", + "The WASM validation function as well as the genesis state for this teyrchain.": "The WASM validation function as well as the genesis state for this teyrchain.", + "The WASM validation function for this teyrchain.": "The WASM validation function for this teyrchain.", + "The above contribution should more than minimum contribution amount and less than the remaining value.": "The above contribution should more than minimum contribution amount and less than the remaining value.", + "The amount deposited to the recipient will be net the calculated cross-chain fee. If the recipient address is new, the amount deposited should be greater than the Existential Deposit": "The amount deposited to the recipient will be net the calculated cross-chain fee. If the recipient address is new, the amount deposited should be greater than the Existential Deposit", + "The amount is less than the minimum allowed contribution of {{value}}": "The amount is less than the minimum allowed contribution of {{value}}", + "The amount is more than the remaining contribution needed {{value}}": "The amount is more than the remaining contribution needed {{value}}", + "The amount to be raised in this funding campaign.": "The amount to be raised in this funding campaign.", + "The amount to bid for this teyrchain lease period range.": "The amount to bid for this teyrchain lease period range.", + "The amount to contribute from this account.": "The amount to contribute from this account.", + "The beneficiary will have access to the transferred amount when the transaction is included in a block.": "The beneficiary will have access to the transferred amount when the transaction is included in a block.", + "The bid should be more than the current range winner to be accepted and influence the auction outcome.": "The bid should be more than the current range winner to be accepted and influence the auction outcome.", + "The code is not recognized as being in valid WASM format": "The code is not recognized as being in valid WASM format", + "The destination account must hold at least the minimum existential deposit after receiving the transfer and paying any applicable destination fees.": "The destination account must hold at least the minimum existential deposit after receiving the transfer and paying any applicable destination fees.", + "The destination chain for this asset teleport. The transferred value will appear on this chain.": "The destination chain for this asset teleport. The transferred value will appear on this chain.", + "The end block for contributions to this fund.": "The end block for contributions to this fund.", + "The ending lease period should be after the first and a maximum of {{maxPeriods}} periods more than the first": "The ending lease period should be after the first and a maximum of {{maxPeriods}} periods more than the first", + "The first and last lease period for this bid. The last lease period should be after the first with the maximum determined by the auction config.": "The first and last lease period for this bid. The last lease period should be after the first with the maximum determined by the auction config.", + "The first and last lease periods for this funding campaign.": "The first and last lease periods for this funding campaign.", + "The genesis state for this teyrchain.": "The genesis state for this teyrchain.", + "The hex-encoded verifier signature should be provided to you by the team running the crowdloan (based on the information you provide).": "The hex-encoded verifier signature should be provided to you by the team running the crowdloan (based on the information you provide).", + "The id of this teyrchain as known on the network": "The id of this teyrchain as known on the network", + "The name for this teyrchain, the id and the allocated/requested balance.": "The name for this teyrchain, the id and the allocated/requested balance.", + "The reservation fee for this Id": "The reservation fee for this Id", + "The reservation fee for this teyrchain, including base fee and per-byte fees": "The reservation fee for this teyrchain, including base fee and per-byte fees", + "The source account must retain a balance greater than the existential deposit after covering the fee.": "The source account must retain a balance greater than the existential deposit after covering the fee.", + "The teyrchain can be modified, replaced, or removed - it's neither protected nor in a transitional state": "The teyrchain can be modified, replaced, or removed - it's neither protected nor in a transitional state", + "The teyrchain id is associated with the selected account via parathread registration.": "The teyrchain id is associated with the selected account via parathread registration.", + "The transferred balance will be subtracted (along with fees) from the sender account.": "The transferred balance will be subtracted (along with fees) from the sender account.", + "The validators for this teyrchain. At least one is required and where multiple is supplied, they need to be unique.": "The validators for this teyrchain. At least one is required and where multiple is supplied, they need to be unique.", + "The verifier signature that is to be associated with this contribution.": "The verifier signature that is to be associated with this contribution.", + "There are no available parathreads": "There are no available parathreads", + "There are no pending proposals": "There are no pending proposals", + "There are no registered teyrchains": "There are no registered teyrchains", + "This account that has been used to register the teyrchain. This will pay all associated fees.": "This account that has been used to register the teyrchain. This will pay all associated fees.", + "This account will be associated with the teyrchain and pay the deposit.": "This account will be associated with the teyrchain and pay the deposit.", + "This account will be used to send the transaction.": "This account will be used to send the transaction.", + "This account will be used to the Id reservation and for the future parathread.": "This account will be used to the Id reservation and for the future parathread.", + "This account will contribute to the crowdloan.": "This account will contribute to the crowdloan.", + "This account will pay the fees for the dissolving crowdloan": "This account will pay the fees for the dissolving crowdloan", + "This action is permanent.": "This action is permanent.", + "This is the amount to be teleported to the destination chain and does not account for the source or the destination transfer fee": "This is the amount to be teleported to the destination chain and does not account for the source or the destination transfer fee", + "To ensure a successful XCM transaction, please make sure the following conditions are met:": "To ensure a successful XCM transaction, please make sure the following conditions are met:", + "Upgrading": "Upgrading", + "Val. Group {{group}} ({{count}})": "Val. Group {{group}} ({{count}})", + "Validators ({{count}})": "Validators ({{count}})", + "Winner": "Winner", + "Withdraw from fund": "Withdraw from fund", + "Yes": "Yes", + "You have duplicated validator entries, ensure each is unique.": "You have duplicated validator entries, ensure each is unique.", + "You need to supply at last one running validator for your teyrchain alongside this request.": "You need to supply at last one running validator for your teyrchain alongside this request.", + "active": "active", + "active raised / cap": "active raised / cap", + "amount": "amount", + "auctions": "auctions", + "backed": "backed", + "balance": "balance", + "bid amount": "bid amount", + "bid period range (first lease - last lease)": "bid period range (first lease - last lease)", + "bidder": "bidder", + "bids": "bids", + "chain": "chain", + "code": "code", + "completed": "completed", + "contribute from": "contribute from", + "contribution": "contribution", + "count": "count", + "crowdfund cap": "crowdfund cap", + "crowdloan": "crowdloan", + "current lease": "current lease", + "current range winning bid": "current range winning bid", + "destination chain": "destination chain", + "destination existential deposit": "destination existential deposit", + "dissolve crowdloan": "dissolve crowdloan", + "end period at": "end period at", + "ending": "ending", + "ending block": "ending block", + "ending period": "ending period", + "finalized": "finalized", + "first - last": "first - last", + "first period": "first period", + "funds": "funds", + "genesis state": "genesis state", + "head": "head", + "in/out": "in/out", + "included": "included", + "initial balance": "initial balance", + "initial state": "initial state", + "last period": "last period", + "latest": "latest", + "lease period": "lease period", + "leases": "leases", + "lifecycle": "lifecycle", + "minimum allowed": "minimum allowed", + "no": "no", + "ongoing": "ongoing", + "parathreads": "parathreads", + "proposals": "proposals", + "propose from": "propose from", + "proposer": "proposer", + "raised": "raised", + "register from": "register from", + "remaining till cap": "remaining till cap", + "requested id": "requested id", + "requesting from": "requesting from", + "reserve from": "reserve from", + "reserved deposit": "reserved deposit", + "send from account": "send from account", + "send to address": "send to address", + "teyrchain id": "teyrchain id", + "teyrchain name": "teyrchain name", + "teyrchain owner": "teyrchain owner", + "teyrchains": "teyrchains", + "the Pezkuwi Crowdloan UI": "the Pezkuwi Crowdloan UI", + "timeout": "timeout", + "total": "total", + "total raised / cap": "total raised / cap", + "transferable": "transferable", + "validation code": "validation code", + "validator {{index}}": "validator {{index}}", + "value": "value", + "verifier signature": "verifier signature", + "yes": "yes" +} \ No newline at end of file diff --git a/packages/apps/public/locales/en/index.json b/packages/apps/public/locales/en/index.json index fb5a4bb..168a67a 100644 --- a/packages/apps/public/locales/en/index.json +++ b/packages/apps/public/locales/en/index.json @@ -37,6 +37,7 @@ "app-storage.json", "app-sudo.json", "app-tech-comm.json", + "app-teyrchains.json", "app-treasury.json", "app-utilities.json", "app-whitelist.json", diff --git a/packages/apps/webpack.base.cjs b/packages/apps/webpack.base.cjs index 0a27ead..e32a530 100644 --- a/packages/apps/webpack.base.cjs +++ b/packages/apps/webpack.base.cjs @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @polkadot/apps authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 /* eslint-disable camelcase */ diff --git a/packages/apps/webpack.config.cjs b/packages/apps/webpack.config.cjs index 28891ea..6d26cc7 100644 --- a/packages/apps/webpack.config.cjs +++ b/packages/apps/webpack.config.cjs @@ -1,4 +1,4 @@ -// Copyright 2017-2026 @polkadot/apps authors & contributors +// Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 const fs = require('fs'); diff --git a/packages/page-accounts/src/Accounts/useProxies.ts b/packages/page-accounts/src/Accounts/useProxies.ts index 0d5bc82..020bde0 100644 --- a/packages/page-accounts/src/Accounts/useProxies.ts +++ b/packages/page-accounts/src/Accounts/useProxies.ts @@ -3,7 +3,7 @@ import type { Vec } from '@pezkuwi/types'; import type { AccountId, BalanceOf } from '@pezkuwi/types/interfaces'; -import type { KitchensinkRuntimeProxyType, PalletProxyProxyDefinition } from '@pezkuwi/types/lookup'; +import type { KitchensinkRuntimeProxyType, PezpalletProxyProxyDefinition } from '@pezkuwi/types/lookup'; import type { ITuple } from '@pezkuwi/types/types'; import type { BN } from '@pezkuwi/util'; @@ -47,10 +47,10 @@ function useProxiesImpl (address?: string | null): State | null { address && api.query.proxy - ?.proxies | PalletProxyProxyDefinition>, BalanceOf]>>(address) + ?.proxies | PezpalletProxyProxyDefinition>, BalanceOf]>>(address) .then(([_proxies]): void => { const proxies = api.tx.proxy.addProxy.meta.args.length === 3 - ? (_proxies as PalletProxyProxyDefinition[]).map(({ delay, delegate, proxyType }) => + ? (_proxies as PezpalletProxyProxyDefinition[]).map(({ delay, delegate, proxyType }) => createProxy(allAccounts, delegate, proxyType, delay) ) : (_proxies as [AccountId, KitchensinkRuntimeProxyType][]).map(([delegate, proxyType]) => diff --git a/packages/page-accounts/src/modals/IdentityMain.tsx b/packages/page-accounts/src/modals/IdentityMain.tsx index bc4cd5c..0837430 100644 --- a/packages/page-accounts/src/modals/IdentityMain.tsx +++ b/packages/page-accounts/src/modals/IdentityMain.tsx @@ -4,7 +4,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { Bytes, Data, Option, Struct } from '@pezkuwi/types'; import type { H160, IdentityInfo, Registration } from '@pezkuwi/types/interfaces'; -import type { PalletIdentityRegistration } from '@pezkuwi/types/lookup'; +import type { PezpalletIdentityRegistration } from '@pezkuwi/types/lookup'; import type { ITuple } from '@pezkuwi/types-codec/types'; import React, { useEffect, useState } from 'react'; @@ -95,7 +95,7 @@ function checkValue (hasValue: boolean, value: string | null | undefined, minLen function IdentityMain ({ address, className = '', onClose }: Props): React.ReactElement { const { t } = useTranslation(); const { apiIdentity, enableIdentity, specName } = useApi(); - const identityOpt = useCall]>>>(apiIdentity.query.identity.identityOf, [address]); + const identityOpt = useCall]>>>(apiIdentity.query.identity.identityOf, [address]); const [{ okAll, okDiscord, okDisplay, okEmail, okGithub, okLegal, okMatrix, okRiot, okTwitter, okWeb }, setOkInfo] = useState({ okAll: false }); const [legacyInfo, setLegacyInfo] = useState>({}); const [info, setInfo] = useState>({}); diff --git a/packages/page-accounts/src/modals/ProxyOverview.tsx b/packages/page-accounts/src/modals/ProxyOverview.tsx index 6ec74a2..ee2a68f 100644 --- a/packages/page-accounts/src/modals/ProxyOverview.tsx +++ b/packages/page-accounts/src/modals/ProxyOverview.tsx @@ -5,7 +5,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { SubmittableExtrinsic } from '@pezkuwi/api/types'; import type { BatchOptions } from '@pezkuwi/react-hooks/types'; import type { AccountId } from '@pezkuwi/types/interfaces'; -import type { KitchensinkRuntimeProxyType, PalletProxyProxyDefinition } from '@pezkuwi/types/lookup'; +import type { KitchensinkRuntimeProxyType, PezpalletProxyProxyDefinition } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react'; @@ -21,7 +21,7 @@ type PrevProxyProp = [AccountId | null, KitchensinkRuntimeProxyType]; interface Props { className?: string; onClose: () => void; - previousProxy?: [PalletProxyProxyDefinition[], BN]; + previousProxy?: [PezpalletProxyProxyDefinition[], BN]; proxiedAccount: string; } @@ -43,7 +43,7 @@ interface PrevProxyProps extends ValueProps { } const BATCH_OPTS: BatchOptions = { type: 'all' }; -const EMPTY_EXISTING: [PalletProxyProxyDefinition[], BN] = [[], BN_ZERO]; +const EMPTY_EXISTING: [PezpalletProxyProxyDefinition[], BN] = [[], BN_ZERO]; function createAddProxy (api: ApiPromise, account: AccountId, type: KitchensinkRuntimeProxyType, delay = 0): SubmittableExtrinsic<'promise'> { return api.tx.proxy.addProxy.meta.args.length === 2 diff --git a/packages/page-alliance/src/types.ts b/packages/page-alliance/src/types.ts index 4a91b89..3953bb9 100644 --- a/packages/page-alliance/src/types.ts +++ b/packages/page-alliance/src/types.ts @@ -1,11 +1,11 @@ // Copyright 2017-2026 @pezkuwi/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletAllianceCid, PalletAllianceMemberRole } from '@pezkuwi/types/lookup'; +import type { PezpalletAllianceCid, PezpalletAllianceMemberRole } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; export interface Cid { - cid: PalletAllianceCid; + cid: PezpalletAllianceCid; ipfs: string | null; key: string; } @@ -13,7 +13,7 @@ export interface Cid { export interface Member { accountId: string; // Founder here is deprecated - role: PalletAllianceMemberRole['type'] | 'Founder'; + role: PezpalletAllianceMemberRole['type'] | 'Founder'; } export interface MemberInfo { diff --git a/packages/page-alliance/src/useAnnoucements.ts b/packages/page-alliance/src/useAnnoucements.ts index d3f9106..a58b500 100644 --- a/packages/page-alliance/src/useAnnoucements.ts +++ b/packages/page-alliance/src/useAnnoucements.ts @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletAllianceCid } from '@pezkuwi/types/lookup'; +import type { PezpalletAllianceCid } from '@pezkuwi/types/lookup'; import type { Cid } from './types.js'; import { createNamedHook, useApi, useCall } from '@pezkuwi/react-hooks'; @@ -9,7 +9,7 @@ import { createNamedHook, useApi, useCall } from '@pezkuwi/react-hooks'; import { createCid } from './util.js'; const OPT_ANN = { - transform: (cids: PalletAllianceCid[]): Cid[] => + transform: (cids: PezpalletAllianceCid[]): Cid[] => cids.map(createCid) }; diff --git a/packages/page-alliance/src/useRule.ts b/packages/page-alliance/src/useRule.ts index 97f6aeb..1b603ee 100644 --- a/packages/page-alliance/src/useRule.ts +++ b/packages/page-alliance/src/useRule.ts @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@pezkuwi/types'; -import type { PalletAllianceCid } from '@pezkuwi/types/lookup'; +import type { PezpalletAllianceCid } from '@pezkuwi/types/lookup'; import type { Rule } from './types.js'; import { createNamedHook, useApi, useCall } from '@pezkuwi/react-hooks'; @@ -10,7 +10,7 @@ import { createNamedHook, useApi, useCall } from '@pezkuwi/react-hooks'; import { createCid } from './util.js'; const OPT_RULE = { - transform: (opt: Option): Rule => + transform: (opt: Option): Rule => opt.isSome ? { cid: createCid(opt.unwrap()), hasRule: true } : { cid: null, hasRule: false } diff --git a/packages/page-alliance/src/util.spec.ts b/packages/page-alliance/src/util.spec.ts index a856976..4f8a254 100644 --- a/packages/page-alliance/src/util.spec.ts +++ b/packages/page-alliance/src/util.spec.ts @@ -31,7 +31,7 @@ describe('util', (): void => { describe('createIpfsHash', (): void => { it('encodes a pallet CID into an ipfs hash', (): void => { - const cid = registry.createType('PalletAllianceCid', { + const cid = registry.createType('PezpalletAllianceCid', { codec: 0x70, hash_: { code: 0x12, diff --git a/packages/page-alliance/src/util.ts b/packages/page-alliance/src/util.ts index 18863cd..3876697 100644 --- a/packages/page-alliance/src/util.ts +++ b/packages/page-alliance/src/util.ts @@ -1,19 +1,19 @@ // Copyright 2017-2026 @pezkuwi/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletAllianceCid } from '@pezkuwi/types/lookup'; +import type { PezpalletAllianceCid } from '@pezkuwi/types/lookup'; import type { Registry } from '@pezkuwi/types/types'; import type { Cid } from './types.js'; import { fromIpfsCid, toIpfsCid } from '@pezkuwi/react-params/util'; -export function createPalletCid (registry: Registry, cid: string): PalletAllianceCid | null { +export function createPalletCid (registry: Registry, cid: string): PezpalletAllianceCid | null { const expanded = fromIpfsCid(cid); - return expanded && registry.createType('PalletAllianceCid', expanded); + return expanded && registry.createType('PezpalletAllianceCid', expanded); } -export function createCid (cid: PalletAllianceCid): Cid { +export function createCid (cid: PezpalletAllianceCid): Cid { return { cid, ipfs: toIpfsCid(cid), diff --git a/packages/page-assets/src/Balances/Account.tsx b/packages/page-assets/src/Balances/Account.tsx index 55d756d..ae745bf 100644 --- a/packages/page-assets/src/Balances/Account.tsx +++ b/packages/page-assets/src/Balances/Account.tsx @@ -4,7 +4,7 @@ // augment package import '@pezkuwi/api-augment/bizinikiwi'; -import type { PalletAssetsAssetAccount } from '@pezkuwi/types/lookup'; +import type { PezpalletAssetsAssetAccount } from '@pezkuwi/types/lookup'; import type { bool } from '@pezkuwi/types-codec'; import type { BN } from '@pezkuwi/util'; @@ -18,7 +18,7 @@ import Transfer from './Transfer.js'; // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore This looks correct in the editor, but incorrect in composite mode -interface AccountExt extends PalletAssetsAssetAccount { +interface AccountExt extends PezpalletAssetsAssetAccount { isFrozen?: bool; sufficient?: bool } diff --git a/packages/page-assets/src/Balances/useBalances.ts b/packages/page-assets/src/Balances/useBalances.ts index 47ccfe5..b128c87 100644 --- a/packages/page-assets/src/Balances/useBalances.ts +++ b/packages/page-assets/src/Balances/useBalances.ts @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletAssetsAssetAccount } from '@pezkuwi/types/lookup'; +import type { PezpalletAssetsAssetAccount } from '@pezkuwi/types/lookup'; import type { Option } from '@pezkuwi/types-codec'; import type { BN } from '@pezkuwi/util'; @@ -11,7 +11,7 @@ import { createNamedHook, useAccounts, useApi, useCall } from '@pezkuwi/react-ho interface AccountResult { accountId: string; - account: PalletAssetsAssetAccount; + account: PezpalletAssetsAssetAccount; } interface Result { @@ -19,12 +19,12 @@ interface Result { accounts: AccountResult[]; } -function isOptional (value: PalletAssetsAssetAccount | Option): value is Option { - return (value as Option).isSome || (value as Option).isNone; +function isOptional (value: PezpalletAssetsAssetAccount | Option): value is Option { + return (value as Option).isSome || (value as Option).isNone; } const OPTS = { - transform: ([[params], accounts]: [[[BN, string][]], (PalletAssetsAssetAccount | Option)[]]): Result => ({ + transform: ([[params], accounts]: [[[BN, string][]], (PezpalletAssetsAssetAccount | Option)[]]): Result => ({ accounts: params .map(([, accountId], index) => { const o = accounts[index]; diff --git a/packages/page-assets/src/Overview/Mint/Mint.tsx b/packages/page-assets/src/Overview/Mint/Mint.tsx index dfa4f52..6c405cd 100644 --- a/packages/page-assets/src/Overview/Mint/Mint.tsx +++ b/packages/page-assets/src/Overview/Mint/Mint.tsx @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletAssetsAssetDetails, PalletAssetsAssetMetadata } from '@pezkuwi/types/lookup'; +import type { PezpalletAssetsAssetDetails, PezpalletAssetsAssetMetadata } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import React, { useMemo, useState } from 'react'; @@ -13,9 +13,9 @@ import { useTranslation } from '../../translate.js'; interface Props { className?: string; - details: PalletAssetsAssetDetails; + details: PezpalletAssetsAssetDetails; id: BN; - metadata: PalletAssetsAssetMetadata; + metadata: PezpalletAssetsAssetMetadata; onClose: () => void; } diff --git a/packages/page-assets/src/Overview/Mint/index.tsx b/packages/page-assets/src/Overview/Mint/index.tsx index 0951cb3..96c961a 100644 --- a/packages/page-assets/src/Overview/Mint/index.tsx +++ b/packages/page-assets/src/Overview/Mint/index.tsx @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletAssetsAssetDetails, PalletAssetsAssetMetadata } from '@pezkuwi/types/lookup'; +import type { PezpalletAssetsAssetDetails, PezpalletAssetsAssetMetadata } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import React from 'react'; @@ -14,9 +14,9 @@ import Modal from './Mint.js'; interface Props { className?: string; - details: PalletAssetsAssetDetails; + details: PezpalletAssetsAssetDetails; id: BN; - metadata: PalletAssetsAssetMetadata; + metadata: PezpalletAssetsAssetMetadata; } function Mint ({ className, details, id, metadata }: Props): React.ReactElement { diff --git a/packages/page-assets/src/useForeignAssetInfos.ts b/packages/page-assets/src/useForeignAssetInfos.ts index 55f395c..99ad598 100644 --- a/packages/page-assets/src/useForeignAssetInfos.ts +++ b/packages/page-assets/src/useForeignAssetInfos.ts @@ -3,7 +3,7 @@ import type { Option } from '@pezkuwi/types'; import type { AccountId } from '@pezkuwi/types/interfaces'; -import type { PalletAssetsAssetDetails, PalletAssetsAssetMetadata, StagingXcmV3MultiLocation } from '@pezkuwi/types/lookup'; +import type { PezpalletAssetsAssetDetails, PezpalletAssetsAssetMetadata, StagingXcmV3MultiLocation } from '@pezkuwi/types/lookup'; import { useEffect, useMemo, useState } from 'react'; @@ -17,14 +17,14 @@ const EMPTY_FLAGS = { }; export interface ForeignAssetInfo { - details: PalletAssetsAssetDetails | null; + details: PezpalletAssetsAssetDetails | null; location: StagingXcmV3MultiLocation; isAdminMe: boolean; isIssuerMe: boolean; isFreezerMe: boolean; isOwnerMe: boolean; key: string; - metadata: PalletAssetsAssetMetadata | null; + metadata: PezpalletAssetsAssetMetadata | null; } const QUERY_OPTS = { withParams: true }; @@ -35,7 +35,7 @@ function isAccount (allAccounts: string[], accountId: AccountId): boolean { return allAccounts.some((a) => a === address); } -function extractInfo (allAccounts: string[], location: StagingXcmV3MultiLocation, optDetails: Option, metadata: PalletAssetsAssetMetadata): ForeignAssetInfo { +function extractInfo (allAccounts: string[], location: StagingXcmV3MultiLocation, optDetails: Option, metadata: PezpalletAssetsAssetMetadata): ForeignAssetInfo { const details = optDetails.unwrapOr(null); return { @@ -63,8 +63,8 @@ function useForeignAssetInfosImpl (locations?: StagingXcmV3MultiLocation[]): For const isReady = useMemo(() => !!locations?.length && !!api.tx.foreignAssets?.setMetadata && !!api.tx.foreignAssets?.transferKeepAlive, [api.tx.foreignAssets?.setMetadata, api.tx.foreignAssets?.transferKeepAlive, locations?.length]); - const metadata = useCall<[[StagingXcmV3MultiLocation[]], PalletAssetsAssetMetadata[]]>(isReady && api.query.foreignAssets.metadata.multi, [locations], QUERY_OPTS); - const details = useCall<[[StagingXcmV3MultiLocation[]], Option[]]>(isReady && api.query.foreignAssets.asset.multi, [locations], QUERY_OPTS); + const metadata = useCall<[[StagingXcmV3MultiLocation[]], PezpalletAssetsAssetMetadata[]]>(isReady && api.query.foreignAssets.metadata.multi, [locations], QUERY_OPTS); + const details = useCall<[[StagingXcmV3MultiLocation[]], Option[]]>(isReady && api.query.foreignAssets.asset.multi, [locations], QUERY_OPTS); const [state, setState] = useState(); useEffect((): void => { diff --git a/packages/page-bounties/src/Bounties.spec.ts b/packages/page-bounties/src/Bounties.spec.ts index 2f96b88..b4eb24a 100644 --- a/packages/page-bounties/src/Bounties.spec.ts +++ b/packages/page-bounties/src/Bounties.spec.ts @@ -9,7 +9,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { SubmittableExtrinsic } from '@pezkuwi/api/types'; import type { DeriveCollectiveProposal } from '@pezkuwi/api-derive/types'; import type { BountyIndex } from '@pezkuwi/types/interfaces'; -import type { PalletBountiesBounty, PalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; +import type { PezpalletBountiesBounty, PezpalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; import { fireEvent } from '@testing-library/react'; @@ -53,10 +53,10 @@ jest.mock('./hooks/useBounties', () => ({ let aProposal: (extrinsic: SubmittableExtrinsic<'promise'>, ayes?: string[], nays?: string[]) => DeriveCollectiveProposal; let augmentedApi: ApiPromise; -let aBounty: ({ status, value }?: Partial) => PalletBountiesBounty; +let aBounty: ({ status, value }?: Partial) => PezpalletBountiesBounty; let aBountyIndex: (index?: number) => BountyIndex; -let bountyStatusWith: ({ curator, status, updateDue }: { curator?: string, status?: string, updateDue?: number}) => PalletBountiesBountyStatus; -let bountyWith: ({ status, value }: { status?: string, value?: number }) => PalletBountiesBounty; +let bountyStatusWith: ({ curator, status, updateDue }: { curator?: string, status?: string, updateDue?: number}) => PezpalletBountiesBountyStatus; +let bountyWith: ({ status, value }: { status?: string, value?: number }) => PezpalletBountiesBounty; describe('Bounties', () => { let bountiesPage: BountiesPage; diff --git a/packages/page-bounties/src/Bounty.tsx b/packages/page-bounties/src/Bounty.tsx index 1595b16..fd61a87 100644 --- a/packages/page-bounties/src/Bounty.tsx +++ b/packages/page-bounties/src/Bounty.tsx @@ -3,7 +3,7 @@ import type { DeriveCollectiveProposal } from '@pezkuwi/api-derive/types'; import type { BountyIndex } from '@pezkuwi/types/interfaces'; -import type { PalletBountiesBounty } from '@pezkuwi/types/lookup'; +import type { PezpalletBountiesBounty } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import React, { useMemo } from 'react'; @@ -26,7 +26,7 @@ import VotersColumn from './VotersColumn.js'; interface Props { bestNumber: BN; - bounty: PalletBountiesBounty; + bounty: PezpalletBountiesBounty; className?: string; description: string; index: BountyIndex; diff --git a/packages/page-bounties/src/BountyActions/index.tsx b/packages/page-bounties/src/BountyActions/index.tsx index b79c9bc..8a94491 100644 --- a/packages/page-bounties/src/BountyActions/index.tsx +++ b/packages/page-bounties/src/BountyActions/index.tsx @@ -3,7 +3,7 @@ import type { DeriveCollectiveProposal } from '@pezkuwi/api-derive/types'; import type { Balance, BountyIndex } from '@pezkuwi/types/interfaces'; -import type { PalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; +import type { PezpalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import React, { useMemo } from 'react'; @@ -21,7 +21,7 @@ interface Props { fee?: BN; index: BountyIndex; proposals?: DeriveCollectiveProposal[]; - status: PalletBountiesBountyStatus; + status: PezpalletBountiesBountyStatus; value: Balance; } diff --git a/packages/page-bounties/src/BountyExtraActions/index.tsx b/packages/page-bounties/src/BountyExtraActions/index.tsx index 5e1ad69..6aa1113 100644 --- a/packages/page-bounties/src/BountyExtraActions/index.tsx +++ b/packages/page-bounties/src/BountyExtraActions/index.tsx @@ -3,7 +3,7 @@ import type { DeriveCollectiveProposal } from '@pezkuwi/api-derive/types'; import type { BountyIndex } from '@pezkuwi/types/interfaces'; -import type { PalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; +import type { PezpalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { ValidUnassignCuratorAction } from '../types.js'; @@ -27,7 +27,7 @@ interface Props { description: string; index: BountyIndex; proposals?: DeriveCollectiveProposal[]; - status: PalletBountiesBountyStatus; + status: PezpalletBountiesBountyStatus; } function Index ({ bestNumber, className, description, index, proposals, status }: Props): React.ReactElement | null { diff --git a/packages/page-bounties/src/BountyInfos/VotingDescriptionInfo.tsx b/packages/page-bounties/src/BountyInfos/VotingDescriptionInfo.tsx index 8616056..faae988 100644 --- a/packages/page-bounties/src/BountyInfos/VotingDescriptionInfo.tsx +++ b/packages/page-bounties/src/BountyInfos/VotingDescriptionInfo.tsx @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { DeriveCollectiveProposal } from '@pezkuwi/api-derive/types'; -import type { PalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; +import type { PezpalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; import React, { useRef } from 'react'; @@ -14,7 +14,7 @@ import { useTranslation } from '../translate.js'; interface Props { className?: string; proposal: DeriveCollectiveProposal; - status: PalletBountiesBountyStatus; + status: PezpalletBountiesBountyStatus; } function VotingDescriptionInfo ({ className, proposal, status }: Props): React.ReactElement { diff --git a/packages/page-bounties/src/BountyInfos/VotingSummary.tsx b/packages/page-bounties/src/BountyInfos/VotingSummary.tsx index a498460..c8e3489 100644 --- a/packages/page-bounties/src/BountyInfos/VotingSummary.tsx +++ b/packages/page-bounties/src/BountyInfos/VotingSummary.tsx @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { DeriveCollectiveProposal } from '@pezkuwi/api-derive/types'; -import type { PalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; +import type { PezpalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; import React, { useMemo } from 'react'; @@ -16,7 +16,7 @@ import VotingLink from './VotingLink.js'; interface Props { className?: string; proposal: DeriveCollectiveProposal; - status: PalletBountiesBountyStatus; + status: PezpalletBountiesBountyStatus; } function VotingSummary ({ className, proposal, status }: Props): React.ReactElement { diff --git a/packages/page-bounties/src/BountyInfos/index.tsx b/packages/page-bounties/src/BountyInfos/index.tsx index 11d3aa9..db622f6 100644 --- a/packages/page-bounties/src/BountyInfos/index.tsx +++ b/packages/page-bounties/src/BountyInfos/index.tsx @@ -3,7 +3,7 @@ import type { DeriveCollectiveProposal } from '@pezkuwi/api-derive/types'; import type { AccountId } from '@pezkuwi/types/interfaces'; -import type { PalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; +import type { PezpalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; import React, { useMemo } from 'react'; @@ -17,7 +17,7 @@ import VotingSummary from './VotingSummary.js'; interface Props { beneficiary?: AccountId; proposals?: DeriveCollectiveProposal[]; - status: PalletBountiesBountyStatus; + status: PezpalletBountiesBountyStatus; } function BountyInfos ({ beneficiary, proposals, status }: Props): React.ReactElement { diff --git a/packages/page-bounties/src/BountyNextActionInfo/BountyActionMessage.tsx b/packages/page-bounties/src/BountyNextActionInfo/BountyActionMessage.tsx index 58f1940..0c1a898 100644 --- a/packages/page-bounties/src/BountyNextActionInfo/BountyActionMessage.tsx +++ b/packages/page-bounties/src/BountyNextActionInfo/BountyActionMessage.tsx @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; +import type { PezpalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; import React, { useMemo } from 'react'; @@ -14,7 +14,7 @@ import BountyInfo from './BountyInfo.js'; interface Props { bestNumber: BN; blocksUntilUpdate?: BN; - status: PalletBountiesBountyStatus; + status: PezpalletBountiesBountyStatus; } export const BLOCKS_PERCENTAGE_LEFT_TO_SHOW_WARNING = 10; diff --git a/packages/page-bounties/src/VotersColumn.tsx b/packages/page-bounties/src/VotersColumn.tsx index 2e3a6ef..f8b6d69 100644 --- a/packages/page-bounties/src/VotersColumn.tsx +++ b/packages/page-bounties/src/VotersColumn.tsx @@ -3,7 +3,7 @@ import type { IconName } from '@fortawesome/fontawesome-svg-core'; import type { DeriveCollectiveProposal } from '@pezkuwi/api-derive/types'; -import type { PalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; +import type { PezpalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; import React, { useMemo } from 'react'; @@ -16,7 +16,7 @@ interface Props { className?: string; option: 'ayes' | 'nays'; proposals: DeriveCollectiveProposal[]; - status: PalletBountiesBountyStatus; + status: PezpalletBountiesBountyStatus; } const icons: Record = { diff --git a/packages/page-bounties/src/helpers/determineUnassignCuratorAction.ts b/packages/page-bounties/src/helpers/determineUnassignCuratorAction.ts index 39b9718..09e18da 100644 --- a/packages/page-bounties/src/helpers/determineUnassignCuratorAction.ts +++ b/packages/page-bounties/src/helpers/determineUnassignCuratorAction.ts @@ -1,13 +1,13 @@ // Copyright 2017-2026 @pezkuwi/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; +import type { PezpalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { UserRole, ValidUnassignCuratorAction } from '../types.js'; import { BN_ZERO } from '@pezkuwi/util'; -export function determineUnassignCuratorAction (roles: UserRole[], status: PalletBountiesBountyStatus, blocksUntilUpdate?: BN): ValidUnassignCuratorAction[] { +export function determineUnassignCuratorAction (roles: UserRole[], status: PezpalletBountiesBountyStatus, blocksUntilUpdate?: BN): ValidUnassignCuratorAction[] { const actions: ValidUnassignCuratorAction[] = []; if (status.isCuratorProposed && roles.includes('Member')) { diff --git a/packages/page-bounties/src/helpers/extendedStatuses.ts b/packages/page-bounties/src/helpers/extendedStatuses.ts index ea0f174..a9d1e1b 100644 --- a/packages/page-bounties/src/helpers/extendedStatuses.ts +++ b/packages/page-bounties/src/helpers/extendedStatuses.ts @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { DeriveCollectiveProposal } from '@pezkuwi/api-derive/types'; -import type { PalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; +import type { PezpalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; import type { BountyVotingStatuses, StatusName } from '../types.js'; const validProposalNames: BountyVotingStatuses = { @@ -14,7 +14,7 @@ const validProposalNames: BountyVotingStatuses = { Proposed: ['approveBounty', 'closeBounty'] }; -function validMethods (status: PalletBountiesBountyStatus): string[] { +function validMethods (status: PezpalletBountiesBountyStatus): string[] { return validProposalNames[status.type as StatusName]; } @@ -22,13 +22,13 @@ function getProposalByMethod (bountyProposals: DeriveCollectiveProposal[], metho return bountyProposals.find(({ proposal }) => proposal && proposal.method === method); } -function bestValidProposalName (bountyProposals: DeriveCollectiveProposal[], status: PalletBountiesBountyStatus): string | undefined { +function bestValidProposalName (bountyProposals: DeriveCollectiveProposal[], status: PezpalletBountiesBountyStatus): string | undefined { const methods = bountyProposals.map(({ proposal }) => proposal?.method); return validMethods(status).find((method) => methods.includes(method)); } -export function proposalNameToDisplay (bountyProposal: DeriveCollectiveProposal, status: PalletBountiesBountyStatus): string | undefined { +export function proposalNameToDisplay (bountyProposal: DeriveCollectiveProposal, status: PezpalletBountiesBountyStatus): string | undefined { if (bountyProposal.proposal && bountyProposal.proposal.method !== 'unassignCurator') { return bountyProposal.proposal.method; } @@ -36,7 +36,7 @@ export function proposalNameToDisplay (bountyProposal: DeriveCollectiveProposal, return status.isCuratorProposed ? 'unassignCurator' : 'slashCurator'; } -export function getProposalToDisplay (bountyProposals: DeriveCollectiveProposal[], status: PalletBountiesBountyStatus): DeriveCollectiveProposal | null { +export function getProposalToDisplay (bountyProposals: DeriveCollectiveProposal[], status: PezpalletBountiesBountyStatus): DeriveCollectiveProposal | null { const method = bestValidProposalName(bountyProposals, status); return getProposalByMethod(bountyProposals, method) ?? null; diff --git a/packages/page-bounties/src/helpers/getBountyStatus.spec.ts b/packages/page-bounties/src/helpers/getBountyStatus.spec.ts index f4f9fa9..820eebf 100644 --- a/packages/page-bounties/src/helpers/getBountyStatus.spec.ts +++ b/packages/page-bounties/src/helpers/getBountyStatus.spec.ts @@ -15,14 +15,14 @@ describe('get bounty status', () => { }); it('for CuratorProposed state it has curator defined', () => { - const bountyStatus = getBountyStatus(registry.createType('PalletBountiesBountyStatus', 'CuratorProposed')); + const bountyStatus = getBountyStatus(registry.createType('PezpalletBountiesBountyStatus', 'CuratorProposed')); expect(bountyStatus.bountyStatus).toEqual('CuratorProposed'); expect(bountyStatus.curator).toBeDefined(); }); it('for Active state it has curator and update due defined', () => { - const bountyStatus = getBountyStatus(registry.createType('PalletBountiesBountyStatus', 'Active')); + const bountyStatus = getBountyStatus(registry.createType('PezpalletBountiesBountyStatus', 'Active')); expect(bountyStatus.bountyStatus).toEqual('Active'); expect(bountyStatus.curator).toBeDefined(); @@ -30,7 +30,7 @@ describe('get bounty status', () => { }); it('for PendingPayout state it has curator, beneficiary and unlock_at defined', () => { - const bountyStatus = getBountyStatus(registry.createType('PalletBountiesBountyStatus', 'PendingPayout')); + const bountyStatus = getBountyStatus(registry.createType('PezpalletBountiesBountyStatus', 'PendingPayout')); expect(bountyStatus.bountyStatus).toEqual('PendingPayout'); expect(bountyStatus.curator).toBeDefined(); diff --git a/packages/page-bounties/src/helpers/getBountyStatus.ts b/packages/page-bounties/src/helpers/getBountyStatus.ts index 86494ff..379081a 100644 --- a/packages/page-bounties/src/helpers/getBountyStatus.ts +++ b/packages/page-bounties/src/helpers/getBountyStatus.ts @@ -1,10 +1,10 @@ // Copyright 2017-2026 @pezkuwi/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; +import type { PezpalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; import type { BountyStatusType, StatusName } from '../types.js'; -export const getBountyStatus = (status: PalletBountiesBountyStatus): BountyStatusType => { +export const getBountyStatus = (status: PezpalletBountiesBountyStatus): BountyStatusType => { const statusAsString = status.type as StatusName; let result: BountyStatusType = { diff --git a/packages/page-bounties/src/hooks/useBountyStatus.ts b/packages/page-bounties/src/hooks/useBountyStatus.ts index b078c4c..648d0b0 100644 --- a/packages/page-bounties/src/hooks/useBountyStatus.ts +++ b/packages/page-bounties/src/hooks/useBountyStatus.ts @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; +import type { PezpalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; import type { BountyStatusType } from '../types.js'; import { useCallback } from 'react'; @@ -10,7 +10,7 @@ import { createNamedHook } from '@pezkuwi/react-hooks'; import { getBountyStatus } from '../helpers/index.js'; -function useBountyStatusImpl (status: PalletBountiesBountyStatus): BountyStatusType { +function useBountyStatusImpl (status: PezpalletBountiesBountyStatus): BountyStatusType { const updateStatus = useCallback(() => getBountyStatus(status), [status]); return updateStatus(); diff --git a/packages/page-bounties/test/pages/bountiesPage.tsx b/packages/page-bounties/test/pages/bountiesPage.tsx index 24f0240..87bd8ef 100644 --- a/packages/page-bounties/test/pages/bountiesPage.tsx +++ b/packages/page-bounties/test/pages/bountiesPage.tsx @@ -9,7 +9,7 @@ import type { DeriveCollectiveProposal } from '@pezkuwi/api-derive/types'; import type { ApiProps } from '@pezkuwi/react-api/types'; import type { PartialQueueTxExtrinsic, QueueProps, QueueTxExtrinsicAdd } from '@pezkuwi/react-components/Status/types'; import type { BountyIndex } from '@pezkuwi/types/interfaces'; -import type { PalletBountiesBounty, PalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; +import type { PezpalletBountiesBounty, PezpalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; import type { BountyApi } from '../../src/hooks/index.js'; import { fireEvent, render, within } from '@testing-library/react'; @@ -57,11 +57,11 @@ interface RenderedBountiesPage { } export class BountiesPage { - aBounty: ({ status, value }?: Partial) => PalletBountiesBounty; + aBounty: ({ status, value }?: Partial) => PezpalletBountiesBounty; aBountyIndex: (index?: number) => BountyIndex; - aBountyStatus: (status: string) => PalletBountiesBountyStatus; - bountyStatusWith: ({ curator, status }: { curator?: string, status?: string, }) => PalletBountiesBountyStatus; - bountyWith: ({ status, value }: { status?: string, value?: number }) => PalletBountiesBounty; + aBountyStatus: (status: string) => PezpalletBountiesBountyStatus; + bountyStatusWith: ({ curator, status }: { curator?: string, status?: string, }) => PezpalletBountiesBountyStatus; + bountyWith: ({ status, value }: { status?: string, value?: number }) => PezpalletBountiesBounty; findByRole?: FindOne; findByText?: FindOne; @@ -75,7 +75,7 @@ export class BountiesPage { ({ aBounty: this.aBounty, aBountyIndex: this.aBountyIndex, aBountyStatus: this.aBountyStatus, bountyStatusWith: this.bountyStatusWith, bountyWith: this.bountyWith } = new BountyFactory(api)); } - renderOne (bounty: PalletBountiesBounty, proposals: DeriveCollectiveProposal[] = [], description = '', index = this.aBountyIndex()): RenderedBountiesPage { + renderOne (bounty: PezpalletBountiesBounty, proposals: DeriveCollectiveProposal[] = [], description = '', index = this.aBountyIndex()): RenderedBountiesPage { return this.renderMany({ bounties: [{ bounty, description, index, proposals }] }); } diff --git a/packages/page-broker/src/BrokerContext.tsx b/packages/page-broker/src/BrokerContext.tsx index d88065c..1dcadeb 100644 --- a/packages/page-broker/src/BrokerContext.tsx +++ b/packages/page-broker/src/BrokerContext.tsx @@ -3,7 +3,7 @@ import type { ReactNode } from 'react'; import type { ApiPromise } from '@pezkuwi/api'; -import type { BrokerStatus, ChainConstants, PalletBrokerConfigRecord, PalletBrokerSaleInfoRecord } from '@pezkuwi/react-hooks/types'; +import type { BrokerStatus, ChainConstants, PezpalletBrokerConfigRecord, PezpalletBrokerSaleInfoRecord } from '@pezkuwi/react-hooks/types'; import type { CurrentRegion } from './types.js'; import React, { createContext, useContext, useMemo } from 'react'; @@ -19,10 +19,10 @@ interface BrokerProviderProps { } interface BrokerContextProps { - config: PalletBrokerConfigRecord | null, + config: PezpalletBrokerConfigRecord | null, coretimeConsts: ChainConstants | null, currentRegion: CurrentRegion, - saleInfo: PalletBrokerSaleInfoRecord | null, + saleInfo: PezpalletBrokerSaleInfoRecord | null, status: BrokerStatus | null, } diff --git a/packages/page-broker/src/Overview/CoreTable.tsx b/packages/page-broker/src/Overview/CoreTable.tsx index ea84ead..bbe6883 100644 --- a/packages/page-broker/src/Overview/CoreTable.tsx +++ b/packages/page-broker/src/Overview/CoreTable.tsx @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@pezkuwi/api'; -import type { PalletBrokerConfigRecord } from '@pezkuwi/react-hooks/types'; +import type { PezpalletBrokerConfigRecord } from '@pezkuwi/react-hooks/types'; import React, { useRef } from 'react'; @@ -15,7 +15,7 @@ import Workload from './Workload.js'; interface Props { api: ApiPromise; core: number; - config: PalletBrokerConfigRecord, + config: PezpalletBrokerConfigRecord, workload?: CoreWorkloadType[], workplan?: CoreWorkplanType[], } diff --git a/packages/page-broker/src/Overview/Summary/RegionLength.tsx b/packages/page-broker/src/Overview/Summary/RegionLength.tsx index 15f76fe..c577fa6 100644 --- a/packages/page-broker/src/Overview/Summary/RegionLength.tsx +++ b/packages/page-broker/src/Overview/Summary/RegionLength.tsx @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-broker authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletBrokerConfigRecord } from '@pezkuwi/types/lookup'; +import type { PezpalletBrokerConfigRecord } from '@pezkuwi/types/lookup'; import React from 'react'; @@ -14,7 +14,7 @@ interface Props { function RegionLength ({ children, className }: Props): React.ReactElement | null { const { api } = useApi(); - const config = useCall(api.query.broker?.configuration); + const config = useCall(api.query.broker?.configuration); const length = config?.toJSON()?.regionLength; return ( diff --git a/packages/page-broker/src/Overview/Workload.tsx b/packages/page-broker/src/Overview/Workload.tsx index 36d7e3e..3efa3a8 100644 --- a/packages/page-broker/src/Overview/Workload.tsx +++ b/packages/page-broker/src/Overview/Workload.tsx @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@pezkuwi/api'; -import type { PalletBrokerConfigRecord, RegionInfo } from '@pezkuwi/react-hooks/types'; +import type { PezpalletBrokerConfigRecord, RegionInfo } from '@pezkuwi/react-hooks/types'; import type { CoreWorkloadType, CoreWorkplanType, InfoRow } from '../types.js'; import React, { useEffect, useMemo, useState } from 'react'; @@ -21,7 +21,7 @@ interface Props { core: number; workload: CoreWorkloadType[] | undefined workplan?: CoreWorkplanType[] | undefined - config: PalletBrokerConfigRecord + config: PezpalletBrokerConfigRecord } function Workload ({ api, config, core, workload, workplan }: Props): React.ReactElement { diff --git a/packages/page-claims/src/react-copy-to-clipboard.d.ts b/packages/page-claims/src/react-copy-to-clipboard.d.ts new file mode 100644 index 0000000..89dbe65 --- /dev/null +++ b/packages/page-claims/src/react-copy-to-clipboard.d.ts @@ -0,0 +1,24 @@ +// Copyright 2017-2026 @pezkuwi/react-components authors & contributors +// SPDX-License-Identifier: Apache-2.0 + +// Override react-copy-to-clipboard types for React 18 compatibility +declare module 'react-copy-to-clipboard' { + import type { ReactNode, ReactElement } from 'react'; + + interface Options { + debug?: boolean; + message?: string; + format?: string; + } + + interface Props { + children?: ReactNode; + text: string; + onCopy?: (text: string, result: boolean) => void; + options?: Options; + } + + function CopyToClipboard(props: Props): ReactElement; + + export = CopyToClipboard; +} diff --git a/packages/page-contracts/src/Codes/Upload.tsx b/packages/page-contracts/src/Codes/Upload.tsx index 2affa3f..2b0d5c9 100644 --- a/packages/page-contracts/src/Codes/Upload.tsx +++ b/packages/page-contracts/src/Codes/Upload.tsx @@ -97,7 +97,8 @@ function Upload ({ onClose }: Props): React.ReactElement { : api.registry.createType('Balance', BN_ZERO), weight.weightV2, null, - { Upload: api.registry.createType('Raw', wasm) }, + // eslint-disable-next-line @typescript-eslint/no-explicit-any + { Upload: api.registry.createType('Raw', wasm) } as any, contractAbi?.constructors[constructorIndex]?.toU8a(params), '' ]; diff --git a/packages/page-coretime/src/Overview/Summary.tsx b/packages/page-coretime/src/Overview/Summary.tsx index 3cd00ed..e2bfe84 100644 --- a/packages/page-coretime/src/Overview/Summary.tsx +++ b/packages/page-coretime/src/Overview/Summary.tsx @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-coretime authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { BrokerStatus, CoreDescription, PalletBrokerConfigRecord, PalletBrokerSaleInfoRecord, RegionInfo } from '@pezkuwi/react-hooks/types'; +import type { BrokerStatus, CoreDescription, PezpalletBrokerConfigRecord, PezpalletBrokerSaleInfoRecord, RegionInfo } from '@pezkuwi/react-hooks/types'; import type { RelayName } from '../types.js'; import React, { useMemo } from 'react'; @@ -15,8 +15,8 @@ import { FirstCycleStart } from '../utils/index.js'; interface Props { coreDscriptors?: CoreDescription[]; - saleInfo: PalletBrokerSaleInfoRecord - config: PalletBrokerConfigRecord, + saleInfo: PezpalletBrokerSaleInfoRecord + config: PezpalletBrokerConfigRecord, region: RegionInfo[], status: BrokerStatus, teyrchainCount: number diff --git a/packages/page-coretime/src/Sale/Summary.tsx b/packages/page-coretime/src/Sale/Summary.tsx index a90ea7f..14208f7 100644 --- a/packages/page-coretime/src/Sale/Summary.tsx +++ b/packages/page-coretime/src/Sale/Summary.tsx @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@pezkuwi/api'; -import type { BrokerStatus, CoreDescription, PalletBrokerConfigRecord, PalletBrokerSaleInfoRecord, RegionInfo } from '@pezkuwi/react-hooks/types'; +import type { BrokerStatus, CoreDescription, PezpalletBrokerConfigRecord, PezpalletBrokerSaleInfoRecord, RegionInfo } from '@pezkuwi/react-hooks/types'; import React from 'react'; @@ -16,8 +16,8 @@ import { getCurrentRegionStartEndTs } from '../utils/index.js'; interface Props { api: ApiPromise | null, coreDscriptors?: CoreDescription[]; - saleInfo: PalletBrokerSaleInfoRecord - config: PalletBrokerConfigRecord, + saleInfo: PezpalletBrokerSaleInfoRecord + config: PezpalletBrokerConfigRecord, region: RegionInfo[], status: BrokerStatus, saleNumber: number, diff --git a/packages/page-coretime/src/utils/sale.ts b/packages/page-coretime/src/utils/sale.ts index c2af7f6..8c1aa14 100644 --- a/packages/page-coretime/src/utils/sale.ts +++ b/packages/page-coretime/src/utils/sale.ts @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-coretime authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { ChainConstants, PalletBrokerConfigRecord, PalletBrokerSaleInfoRecord } from '@pezkuwi/react-hooks/types'; +import type { ChainConstants, PezpalletBrokerConfigRecord, PezpalletBrokerSaleInfoRecord } from '@pezkuwi/react-hooks/types'; import type { GetResponse, PhaseConfig, RegionInfo, RelayName, SaleParameters } from '../types.js'; import { type ProgressBarSection } from '@pezkuwi/react-components/types'; @@ -33,7 +33,7 @@ export const leadinFactorAt = (scaledWhen: BN): BN => { } }; -export const getCorePriceAt = (blockNow: number | null, saleInfo: PalletBrokerSaleInfoRecord | undefined): BN => { +export const getCorePriceAt = (blockNow: number | null, saleInfo: PezpalletBrokerSaleInfoRecord | undefined): BN => { if (!saleInfo || !blockNow) { return new BN(0); } @@ -78,7 +78,7 @@ export const getCorePriceAt = (blockNow: number | null, saleInfo: PalletBrokerSa export const getCurrentSaleNumber = ( currentRegionEnd: number, relayName: RelayName, - config: Pick + config: Pick ): number => { if (!relayName || !currentRegionEnd) { return -1; @@ -185,7 +185,7 @@ const getPhaseConfiguration = ( }; export const getSaleParameters = ( - { config, constants, salesInfo }: {salesInfo: RegionInfo, config: Pick, constants: ChainConstants}, + { config, constants, salesInfo }: {salesInfo: RegionInfo, config: Pick, constants: ChainConstants}, relayName: RelayName, lastCommittedTimeslice: number, chosenSaleNumber = -1 diff --git a/packages/page-council/src/Motions/ProposeExternal.tsx b/packages/page-council/src/Motions/ProposeExternal.tsx index a503d8b..85a3d84 100644 --- a/packages/page-council/src/Motions/ProposeExternal.tsx +++ b/packages/page-council/src/Motions/ProposeExternal.tsx @@ -81,14 +81,15 @@ function ProposeExternal ({ className = '', isMember, members }: Props): React.R useEffect((): void => { if (isHashValid && hash) { + // eslint-disable-next-line @typescript-eslint/no-explicit-any const proposal = isCurrentPreimage ? preimage && api.tx.democracy.externalProposeMajority({ Lookup: { hash: preimage.proposalHash, len: preimage.proposalLength || imageLen } - }) - : api.tx.democracy.externalProposeMajority(hash); + } as any) + : api.tx.democracy.externalProposeMajority(hash as any); if (proposal) { return setProposal({ diff --git a/packages/page-explorer/src/BlockInfo/ByHash.tsx b/packages/page-explorer/src/BlockInfo/ByHash.tsx index cc1ff64..a5197f2 100644 --- a/packages/page-explorer/src/BlockInfo/ByHash.tsx +++ b/packages/page-explorer/src/BlockInfo/ByHash.tsx @@ -5,7 +5,7 @@ import type { HeaderExtended } from '@pezkuwi/api-derive/types'; import type { KeyedEvent } from '@pezkuwi/react-hooks/ctx/types'; import type { V2Weight } from '@pezkuwi/react-hooks/useWeight'; import type { EventRecord, Hash, RuntimeVersionPartial, SignedBlock } from '@pezkuwi/types/interfaces'; -import type { FrameSupportDispatchPerDispatchClassWeight } from '@pezkuwi/types/lookup'; +import type { PezframeSupportDispatchPerDispatchClassWeight } from '@pezkuwi/types/lookup'; import React, { useEffect, useMemo, useState } from 'react'; import { Link } from 'react-router-dom'; @@ -30,7 +30,7 @@ interface Props { interface State { events?: KeyedEvent[] | null; - blockWeight?: FrameSupportDispatchPerDispatchClassWeight | null; + blockWeight?: PezframeSupportDispatchPerDispatchClassWeight | null; getBlock?: SignedBlock; getHeader?: HeaderExtended; nextBlockHash?: Hash | null; @@ -39,7 +39,7 @@ interface State { const EMPTY_HEADER: [React.ReactNode?, string?, number?][] = [['...', 'start', 6]]; -function transformResult ([[runtimeVersion, events, blockWeight], getBlock, getHeader]: [[RuntimeVersionPartial, EventRecord[] | null, FrameSupportDispatchPerDispatchClassWeight|null], SignedBlock, HeaderExtended?]): State { +function transformResult ([[runtimeVersion, events, blockWeight], getBlock, getHeader]: [[RuntimeVersionPartial, EventRecord[] | null, PezframeSupportDispatchPerDispatchClassWeight|null], SignedBlock, HeaderExtended?]): State { return { blockWeight, events: events?.map((record, index) => ({ @@ -132,7 +132,8 @@ function BlockByHash ({ className = '', error, value }: Props): React.ReactEleme if (mountedRef.current && header.number.unwrap().eq(nextBlockNumber)) { setState((prev) => ({ ...prev, - nextBlockHash: header.hash + // Type assertion needed due to ArrayBufferLike vs ArrayBuffer in Hash type + nextBlockHash: header.hash as Hash })); unsub && unsub(); } diff --git a/packages/page-explorer/src/BlockInfo/Summary.tsx b/packages/page-explorer/src/BlockInfo/Summary.tsx index 9b9cb2f..c763705 100644 --- a/packages/page-explorer/src/BlockInfo/Summary.tsx +++ b/packages/page-explorer/src/BlockInfo/Summary.tsx @@ -4,7 +4,7 @@ import type { KeyedEvent } from '@pezkuwi/react-hooks/ctx/types'; import type { V2Weight } from '@pezkuwi/react-hooks/useWeight'; import type { Balance, DispatchInfo, SignedBlock } from '@pezkuwi/types/interfaces'; -import type { FrameSupportDispatchPerDispatchClassWeight } from '@pezkuwi/types/lookup'; +import type { PezframeSupportDispatchPerDispatchClassWeight } from '@pezkuwi/types/lookup'; import React, { useMemo } from 'react'; @@ -18,14 +18,14 @@ import { useTranslation } from '../translate.js'; interface Props { events?: KeyedEvent[] | null; - blockWeight?: FrameSupportDispatchPerDispatchClassWeight | null; + blockWeight?: PezframeSupportDispatchPerDispatchClassWeight | null; maxBlockWeight?: BN; maxProofSize?: BN; signedBlock?: SignedBlock; } function accumulateWeights ( - weight?: FrameSupportDispatchPerDispatchClassWeight | null + weight?: PezframeSupportDispatchPerDispatchClassWeight | null ): { totalRefTime: BN; totalProofSize: BN } { const totalRefTime = new BN(0); const totalProofSize = new BN(0); diff --git a/packages/page-js/src/Playground.tsx b/packages/page-js/src/Playground.tsx index 0e226e2..0041bc6 100644 --- a/packages/page-js/src/Playground.tsx +++ b/packages/page-js/src/Playground.tsx @@ -168,6 +168,7 @@ function Playground ({ basePath, className = '' }: Props): React.ReactElement'); iframeDoc.close(); diff --git a/packages/page-nfts/src/AccountItems/types.ts b/packages/page-nfts/src/AccountItems/types.ts index f172957..06f0798 100644 --- a/packages/page-nfts/src/AccountItems/types.ts +++ b/packages/page-nfts/src/AccountItems/types.ts @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { AccountId } from '@pezkuwi/types/interfaces'; -import type { PalletUniquesItemMetadata } from '@pezkuwi/types/lookup'; +import type { PezpalletUniquesItemMetadata } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; export interface ItemSupportedMetadata { @@ -14,6 +14,6 @@ export interface ItemInfo { account: AccountId, id: BN; key: string; - metadata: PalletUniquesItemMetadata | null; + metadata: PezpalletUniquesItemMetadata | null; ipfsData: ItemSupportedMetadata | null; } diff --git a/packages/page-nfts/src/AccountItems/useItemsInfos.ts b/packages/page-nfts/src/AccountItems/useItemsInfos.ts index f050768..6215b25 100644 --- a/packages/page-nfts/src/AccountItems/useItemsInfos.ts +++ b/packages/page-nfts/src/AccountItems/useItemsInfos.ts @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@pezkuwi/types'; -import type { PalletUniquesItemMetadata } from '@pezkuwi/types/lookup'; +import type { PezpalletUniquesItemMetadata } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { AccountItem } from '../types.js'; import type { ItemInfo, ItemSupportedMetadata } from './types.js'; @@ -37,7 +37,7 @@ const METADATA_FETCH_OPTIONS = { } }; -function extractInfo ([, itemId]: [BN, BN], metadata: Option, accountItems: AccountItem[]): ItemInfo { +function extractInfo ([, itemId]: [BN, BN], metadata: Option, accountItems: AccountItem[]): ItemInfo { const item = accountItems.find(({ itemId: _itemId }) => _itemId.eq(itemId)); if (!item) { @@ -71,7 +71,7 @@ function useItemsInfosImpl (accountItems: AccountItem[]): ItemInfo[] | undefined [accountItems] ); - const metadata = useCall<[[[BN, BN][]], Option[]]>(api.query.uniques.instanceMetadataOf.multi, [ids], QUERY_OPTS); + const metadata = useCall<[[[BN, BN][]], Option[]]>(api.query.uniques.instanceMetadataOf.multi, [ids], QUERY_OPTS); const metadataLinks = useMemo((): string[] | undefined => { if (metadata?.[1].length) { diff --git a/packages/page-nfts/src/types.ts b/packages/page-nfts/src/types.ts index 1171d57..6f0150b 100644 --- a/packages/page-nfts/src/types.ts +++ b/packages/page-nfts/src/types.ts @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { AccountId } from '@pezkuwi/types/interfaces'; -import type { PalletUniquesCollectionDetails, PalletUniquesCollectionMetadata } from '@pezkuwi/types/lookup'; +import type { PezpalletUniquesCollectionDetails, PezpalletUniquesCollectionMetadata } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; export interface CollectionSupportedMetadata { @@ -11,20 +11,20 @@ export interface CollectionSupportedMetadata { } export interface CollectionInfo { - details: PalletUniquesCollectionDetails | null; + details: PezpalletUniquesCollectionDetails | null; id: BN; isAdminMe: boolean; isIssuerMe: boolean; isFreezerMe: boolean; isOwnerMe: boolean; key: string; - metadata: PalletUniquesCollectionMetadata | null; + metadata: PezpalletUniquesCollectionMetadata | null; ipfsData: CollectionSupportedMetadata | null; } export interface CollectionInfoComplete extends CollectionInfo { - details: PalletUniquesCollectionDetails; - metadata: PalletUniquesCollectionMetadata; + details: PezpalletUniquesCollectionDetails; + metadata: PezpalletUniquesCollectionMetadata; } export interface AccountItem { diff --git a/packages/page-nfts/src/useCollectionInfos.ts b/packages/page-nfts/src/useCollectionInfos.ts index 95deded..2fe8c25 100644 --- a/packages/page-nfts/src/useCollectionInfos.ts +++ b/packages/page-nfts/src/useCollectionInfos.ts @@ -3,7 +3,7 @@ import type { Option } from '@pezkuwi/types'; import type { AccountId } from '@pezkuwi/types/interfaces'; -import type { PalletUniquesCollectionDetails, PalletUniquesCollectionMetadata } from '@pezkuwi/types/lookup'; +import type { PezpalletUniquesCollectionDetails, PezpalletUniquesCollectionMetadata } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { CollectionInfo, CollectionSupportedMetadata } from './types.js'; @@ -50,7 +50,7 @@ function isAccount (allAccounts: string[], accountId: AccountId): boolean { return allAccounts.some((a) => a === address); } -function extractInfo (allAccounts: string[], id: BN, optDetails: Option, metadata: Option): CollectionInfo { +function extractInfo (allAccounts: string[], id: BN, optDetails: Option, metadata: Option): CollectionInfo { const details = optDetails.unwrapOr(null); return { @@ -83,8 +83,8 @@ const addFetchedMetadata = (fetchedMetadata: FetchedMetadata) => (collectionInfo function useCollectionInfosImpl (ids?: BN[]): CollectionInfo[] | undefined { const { api } = useApi(); const { allAccounts } = useAccounts(); - const metadata = useCall<[[BN[]], Option[]]>(api.query.uniques.classMetadataOf.multi, [ids], QUERY_OPTS); - const details = useCall<[[BN[]], Option[]]>(api.query.uniques.class.multi, [ids], QUERY_OPTS); + const metadata = useCall<[[BN[]], Option[]]>(api.query.uniques.classMetadataOf.multi, [ids], QUERY_OPTS); + const details = useCall<[[BN[]], Option[]]>(api.query.uniques.class.multi, [ids], QUERY_OPTS); const [state, setState] = useState(); const metadataLinks = useMemo( diff --git a/packages/page-nis/src/Overview/types.ts b/packages/page-nis/src/Overview/types.ts index 461f1ce..3ef43f4 100644 --- a/packages/page-nis/src/Overview/types.ts +++ b/packages/page-nis/src/Overview/types.ts @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { u32, u128 } from '@pezkuwi/types'; -import type { PalletNisSummaryRecord } from '@pezkuwi/types/lookup'; +import type { PezpalletNisSummaryRecord } from '@pezkuwi/types/lookup'; export interface QueueTotal { balance: u128; @@ -12,5 +12,5 @@ export interface QueueTotal { export interface NisInfo { queueTotals?: QueueTotal[]; - summary?: PalletNisSummaryRecord; + summary?: PezpalletNisSummaryRecord; } diff --git a/packages/page-nis/src/Overview/useInfo.ts b/packages/page-nis/src/Overview/useInfo.ts index e543ba5..27dbcbf 100644 --- a/packages/page-nis/src/Overview/useInfo.ts +++ b/packages/page-nis/src/Overview/useInfo.ts @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { u32, u128 } from '@pezkuwi/types'; -import type { PalletNisSummaryRecord } from '@pezkuwi/types/lookup'; +import type { PezpalletNisSummaryRecord } from '@pezkuwi/types/lookup'; import type { NisInfo, QueueTotal } from './types.js'; import { useMemo } from 'react'; @@ -15,7 +15,7 @@ interface State { const OPT_GILT = { defaultValue: {} as NisInfo, - transform: ([summary, queueTotals]: [PalletNisSummaryRecord, [u32, u128][]]): NisInfo => ({ + transform: ([summary, queueTotals]: [PezpalletNisSummaryRecord, [u32, u128][]]): NisInfo => ({ queueTotals: queueTotals .map(([numItems, balance], index): QueueTotal => ({ balance, index: index + 1, numItems })) .filter(({ balance }) => !balance.isZero()), diff --git a/packages/page-ranked/src/types.ts b/packages/page-ranked/src/types.ts index 79ac3ca..295f9dc 100644 --- a/packages/page-ranked/src/types.ts +++ b/packages/page-ranked/src/types.ts @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-ranked authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletRankedCollectiveMemberRecord } from '@pezkuwi/types/lookup'; +import type { PezpalletRankedCollectiveMemberRecord } from '@pezkuwi/types/lookup'; export type PalletColl = 'rankedCollective' | 'fellowshipCollective' | 'ambassadorCollective'; @@ -9,5 +9,5 @@ export type PalletPoll = 'rankedPolls' | 'fellowshipReferenda' | 'ambassadorRefe export interface Member { accountId: string; - info: PalletRankedCollectiveMemberRecord; + info: PezpalletRankedCollectiveMemberRecord; } diff --git a/packages/page-ranked/src/useMembers.ts b/packages/page-ranked/src/useMembers.ts index 40a301b..8b2ce88 100644 --- a/packages/page-ranked/src/useMembers.ts +++ b/packages/page-ranked/src/useMembers.ts @@ -3,7 +3,7 @@ import type { Option } from '@pezkuwi/types'; import type { AccountId32 } from '@pezkuwi/types/interfaces'; -import type { PalletRankedCollectiveMemberRecord } from '@pezkuwi/types/lookup'; +import type { PezpalletRankedCollectiveMemberRecord } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { Member, PalletColl } from './types.js'; @@ -20,10 +20,10 @@ interface Result { } const OPT_MEM = { - transform: ([[ids], infos]: [[AccountId32[]], Option[]]): Result => { + transform: ([[ids], infos]: [[AccountId32[]], Option[]]): Result => { const members = infos .map((info, i) => [info.unwrapOr(null), ids[i]]) - .filter((r): r is [PalletRankedCollectiveMemberRecord, AccountId32] => !!r[0]) + .filter((r): r is [PezpalletRankedCollectiveMemberRecord, AccountId32] => !!r[0]) .sort(([a], [b]) => b.rank.cmp(a.rank)) .map(([info, accountId]): Member => ({ accountId: accountId.toString(), diff --git a/packages/page-referenda/src/Referenda/Delegate/index.tsx b/packages/page-referenda/src/Referenda/Delegate/index.tsx index 7f68fbc..c287408 100644 --- a/packages/page-referenda/src/Referenda/Delegate/index.tsx +++ b/packages/page-referenda/src/Referenda/Delegate/index.tsx @@ -98,7 +98,13 @@ function Delegate ({ className, palletReferenda, palletVote, tracks }: Props): R const batchInner = useMemo( () => balance && conviction >= 0 && toAccount && includeTracks ? (isAllTracks ? includeTracks : [trackId]).map((trackId) => - api.tx[palletVote as 'convictionVoting'].delegate(trackId, toAccount, conviction, balance) + // Wrap conviction number as the proper enum type + api.tx[palletVote as 'convictionVoting'].delegate( + trackId, + toAccount, + api.createType('PezpalletConvictionVotingConviction', conviction), + balance + ) ) : null, [api, balance, conviction, includeTracks, isAllTracks, palletVote, toAccount, trackId] diff --git a/packages/page-referenda/src/Referenda/Delegate/types.ts b/packages/page-referenda/src/Referenda/Delegate/types.ts index 54b56cc..b6a406d 100644 --- a/packages/page-referenda/src/Referenda/Delegate/types.ts +++ b/packages/page-referenda/src/Referenda/Delegate/types.ts @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletConvictionVotingVoteVoting } from '@pezkuwi/types/lookup'; +import type { PezpalletConvictionVotingVoteVoting } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; export interface LockResultItem { @@ -15,7 +15,7 @@ export interface VoteResultCasting { } export interface VoteResultDelegating { - conviction: PalletConvictionVotingVoteVoting['asDelegating']['conviction']['type']; + conviction: PezpalletConvictionVotingVoteVoting['asDelegating']['conviction']['type']; targetId: string; } diff --git a/packages/page-referenda/src/Referenda/Delegate/useNominators.ts b/packages/page-referenda/src/Referenda/Delegate/useNominators.ts index fcb06ca..74ddee7 100644 --- a/packages/page-referenda/src/Referenda/Delegate/useNominators.ts +++ b/packages/page-referenda/src/Referenda/Delegate/useNominators.ts @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@pezkuwi/types'; -import type { PalletStakingNominations } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingNominations } from '@pezkuwi/types/lookup'; import { useMemo } from 'react'; @@ -10,7 +10,7 @@ import { createNamedHook, useAccounts, useApi, useCall } from '@pezkuwi/react-ho import { isFunction } from '@pezkuwi/util'; const NOMINATORS_OPT = { - transform: (optNominators: Option[]): string[] => + transform: (optNominators: Option[]): string[] => optNominators.reduce((all, o) => o.isSome ? all.concat( diff --git a/packages/page-referenda/src/Referenda/Delegate/useVotingFor.ts b/packages/page-referenda/src/Referenda/Delegate/useVotingFor.ts index eaa9918..1e399e2 100644 --- a/packages/page-referenda/src/Referenda/Delegate/useVotingFor.ts +++ b/packages/page-referenda/src/Referenda/Delegate/useVotingFor.ts @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletConvictionVotingVoteVoting } from '@pezkuwi/types/lookup'; +import type { PezpalletConvictionVotingVoteVoting } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { PalletVote } from '../../types.js'; import type { LockResult, VoteResult, VoteResultItem } from './types.js'; @@ -16,7 +16,7 @@ import useVotingLocks from './useVotingLocks.js'; type ForParam = [accountId: string, classId: BN]; const FOR_OPT = { - transform: ([[ids], votes]: [[ForParam[]], PalletConvictionVotingVoteVoting[]]): VoteResult => + transform: ([[ids], votes]: [[ForParam[]], PezpalletConvictionVotingVoteVoting[]]): VoteResult => ids.sort((a, b) => a[1].cmp(b[1])).reduce((all, [accountId, classId], index) => { if (!all[accountId]) { all[accountId] = []; @@ -33,7 +33,7 @@ const FOR_OPT = { delegating = { conviction: conviction.type, targetId: target.toString() }; } else { // failsafe log... just in-case - console.error(`Unable to handle PalletConvictionVotingVoteVoting type ${votes[index].type}`); + console.error(`Unable to handle PezpalletConvictionVotingVoteVoting type ${votes[index].type}`); } all[accountId].push({ casting, classId, delegating }); diff --git a/packages/page-referenda/src/Referenda/Deposits/Place.tsx b/packages/page-referenda/src/Referenda/Deposits/Place.tsx index f46ad5a..640ecb4 100644 --- a/packages/page-referenda/src/Referenda/Deposits/Place.tsx +++ b/packages/page-referenda/src/Referenda/Deposits/Place.tsx @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletReferendaTrackDetails } from '@pezkuwi/types/lookup'; +import type { PezpalletReferendaTrackDetails } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { PalletReferenda } from '../../types.js'; @@ -17,7 +17,7 @@ interface Props { className?: string; id: BN; palletReferenda: PalletReferenda; - track: PalletReferendaTrackDetails; + track: PezpalletReferendaTrackDetails; } function Deposit ({ className = '', id, palletReferenda, track }: Props): React.ReactElement | null { diff --git a/packages/page-referenda/src/Referenda/Deposits/index.tsx b/packages/page-referenda/src/Referenda/Deposits/index.tsx index 860549e..72e9c9d 100644 --- a/packages/page-referenda/src/Referenda/Deposits/index.tsx +++ b/packages/page-referenda/src/Referenda/Deposits/index.tsx @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletReferendaDeposit, PalletReferendaTrackDetails } from '@pezkuwi/types/lookup'; +import type { PezpalletReferendaDeposit, PezpalletReferendaTrackDetails } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { PalletReferenda } from '../../types.js'; @@ -16,12 +16,12 @@ interface Props { canDeposit?: boolean; canRefund?: boolean; className?: string; - decision: PalletReferendaDeposit | null; + decision: PezpalletReferendaDeposit | null; id: BN; noMedia?: boolean; palletReferenda: PalletReferenda; - submit: PalletReferendaDeposit | null; - track?: PalletReferendaTrackDetails; + submit: PezpalletReferendaDeposit | null; + track?: PezpalletReferendaTrackDetails; } function Deposits ({ canDeposit, canRefund, className = '', decision, id, noMedia, palletReferenda, submit, track }: Props): React.ReactElement { diff --git a/packages/page-referenda/src/Referenda/RefOngoing.tsx b/packages/page-referenda/src/Referenda/RefOngoing.tsx index 9130371..a1de0e2 100644 --- a/packages/page-referenda/src/Referenda/RefOngoing.tsx +++ b/packages/page-referenda/src/Referenda/RefOngoing.tsx @@ -3,7 +3,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { Hash } from '@pezkuwi/types/interfaces'; -import type { PalletConvictionVotingTally, PalletRankedCollectiveTally, PalletReferendaDeposit, PalletReferendaReferendumStatusConvictionVotingTally, PalletReferendaReferendumStatusRankedCollectiveTally, PalletReferendaTrackDetails } from '@pezkuwi/types/lookup'; +import type { PezpalletConvictionVotingTally, PezpalletRankedCollectiveTally, PezpalletReferendaDeposit, PezpalletReferendaReferendumStatusConvictionVotingTally, PezpalletReferendaReferendumStatusRankedCollectiveTally, PezpalletReferendaTrackDetails } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { HexString } from '@pezkuwi/util/types'; import type { Referendum, ReferendumProps as Props } from '../types.js'; @@ -23,21 +23,21 @@ import { unwrapDeposit } from './util.js'; import Votes from './Votes.js'; interface Expanded { - decisionDeposit: PalletReferendaDeposit | null; + decisionDeposit: PezpalletReferendaDeposit | null; periods: { periodEnd: BN | null; prepareEnd: BN | null; decideEnd: BN | null; confirmEnd: BN | null; }; - ongoing: PalletReferendaReferendumStatusConvictionVotingTally | PalletReferendaReferendumStatusRankedCollectiveTally; + ongoing: PezpalletReferendaReferendumStatusConvictionVotingTally | PezpalletReferendaReferendumStatusRankedCollectiveTally; proposalHash?: HexString; - submissionDeposit: PalletReferendaDeposit | null; - tally: PalletConvictionVotingTally | PalletRankedCollectiveTally; + submissionDeposit: PezpalletReferendaDeposit | null; + tally: PezpalletConvictionVotingTally | PezpalletRankedCollectiveTally; tallyTotal: BN; } -function expandOngoing (api: ApiPromise, info: Referendum['info'], track?: PalletReferendaTrackDetails): Expanded { +function expandOngoing (api: ApiPromise, info: Referendum['info'], track?: PezpalletReferendaTrackDetails): Expanded { const ongoing = info.asOngoing; const proposalHash = getPreimageHash(api, ongoing.proposal || (ongoing as unknown as { proposalHash: Hash }).proposalHash).proposalHash; let prepareEnd: BN | null = null; diff --git a/packages/page-referenda/src/Referenda/RefTuple.tsx b/packages/page-referenda/src/Referenda/RefTuple.tsx index f35b4d5..13d690d 100644 --- a/packages/page-referenda/src/Referenda/RefTuple.tsx +++ b/packages/page-referenda/src/Referenda/RefTuple.tsx @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletReferendaDeposit } from '@pezkuwi/types/lookup'; +import type { PezpalletReferendaDeposit } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { Referendum, ReferendumProps as Props } from '../types.js'; @@ -12,8 +12,8 @@ import RefEnd from './RefEnd.js'; import { unwrapDeposit } from './util.js'; interface Expanded { - decision: PalletReferendaDeposit | null; - submit: PalletReferendaDeposit | null; + decision: PezpalletReferendaDeposit | null; + submit: PezpalletReferendaDeposit | null; when: BN | null; } diff --git a/packages/page-referenda/src/Referenda/Referendum.tsx b/packages/page-referenda/src/Referenda/Referendum.tsx index 1cde5f8..9a7cbe8 100644 --- a/packages/page-referenda/src/Referenda/Referendum.tsx +++ b/packages/page-referenda/src/Referenda/Referendum.tsx @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { ChartOptions, ChartTypeRegistry, TooltipItem } from 'chart.js'; -import type { PalletConvictionVotingTally, PalletRankedCollectiveTally, PalletReferendaReferendumInfoConvictionVotingTally, PalletReferendaReferendumInfoRankedCollectiveTally, PalletReferendaTrackDetails } from '@pezkuwi/types/lookup'; +import type { PezpalletConvictionVotingTally, PezpalletRankedCollectiveTally, PezpalletReferendaReferendumInfoConvictionVotingTally, PezpalletReferendaReferendumInfoRankedCollectiveTally, PezpalletReferendaTrackDetails } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { CurveGraph, ReferendumProps as Props } from '../types.js'; @@ -98,7 +98,7 @@ function createTitleCallback (t: (key: string, options?: { replace: Record }) => string): ChartProps[] { +function getChartProps (bestNumber: BN, blockInterval: BN, chartProps: ChartResultExt[], refId: BN, track: PezpalletReferendaTrackDetails, t: (key: string, options?: { replace: Record }) => string): ChartProps[] { const changeXMax = chartProps.reduce((max, { changeX }) => max === -1 || changeX === -1 ? -1 @@ -304,7 +304,7 @@ function getChartProps (bestNumber: BN, blockInterval: BN, chartProps: ChartResu }); } -function extractInfo (info: PalletReferendaReferendumInfoConvictionVotingTally | PalletReferendaReferendumInfoRankedCollectiveTally, track?: PalletReferendaTrackDetails): { confirmEnd: BN | null, enactAt: { at: boolean, blocks: BN, end: BN | null } | null, nextAlarm: null | BN, submittedIn: null | BN } { +function extractInfo (info: PezpalletReferendaReferendumInfoConvictionVotingTally | PezpalletReferendaReferendumInfoRankedCollectiveTally, track?: PezpalletReferendaTrackDetails): { confirmEnd: BN | null, enactAt: { at: boolean, blocks: BN, end: BN | null } | null, nextAlarm: null | BN, submittedIn: null | BN } { let confirmEnd: BN | null = null; let enactAt: { at: boolean, blocks: BN, end: BN | null } | null = null; let nextAlarm: BN | null = null; diff --git a/packages/page-referenda/src/Referenda/Vote/index.tsx b/packages/page-referenda/src/Referenda/Vote/index.tsx index f193426..e1e4b47 100644 --- a/packages/page-referenda/src/Referenda/Vote/index.tsx +++ b/packages/page-referenda/src/Referenda/Vote/index.tsx @@ -49,7 +49,11 @@ function createVoteOpts (api: ApiPromise, t: (key: string, options?: { replace: let hasAbstain = false; try { - hasAbstain = !!api.createType('PalletConvictionVotingVoteAccountVote', { SplitAbstain: { abstain: 1 } }).isSplitAbstain; + // Check if the runtime supports SplitAbstain vote type + const voteType = api.createType('PezpalletConvictionVotingVoteAccountVote', { SplitAbstain: { abstain: 1 } }); + + // eslint-disable-next-line @typescript-eslint/no-explicit-any + hasAbstain = !!(voteType as any).isSplitAbstain; } catch { hasAbstain = false; } diff --git a/packages/page-referenda/src/Referenda/Votes.tsx b/packages/page-referenda/src/Referenda/Votes.tsx index d782124..b154e3b 100644 --- a/packages/page-referenda/src/Referenda/Votes.tsx +++ b/packages/page-referenda/src/Referenda/Votes.tsx @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletConvictionVotingTally, PalletRankedCollectiveTally, PalletRankedCollectiveVoteRecord } from '@pezkuwi/types/lookup'; +import type { PezpalletConvictionVotingTally, PezpalletRankedCollectiveTally, PezpalletRankedCollectiveVoteRecord } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { PalletVote } from '../types.js'; @@ -19,7 +19,7 @@ interface Props { id: BN; isConvictionVote: boolean; palletVote: PalletVote; - tally: PalletConvictionVotingTally | PalletRankedCollectiveTally; + tally: PezpalletConvictionVotingTally | PezpalletRankedCollectiveTally; } function renderMini (list?: [string, BN][]): React.ReactNode[] | undefined { @@ -33,7 +33,7 @@ function renderMini (list?: [string, BN][]): React.ReactNode[] | undefined { )); } -function extractVotes (votes: Record = {}): [[string, BN][]?, [string, BN][]?] { +function extractVotes (votes: Record = {}): [[string, BN][]?, [string, BN][]?] { const ayes: [string, BN][] = []; const nays: [string, BN][] = []; const entries = Object.entries(votes); diff --git a/packages/page-referenda/src/Referenda/useVotes.ts b/packages/page-referenda/src/Referenda/useVotes.ts index e92a69c..eb61d42 100644 --- a/packages/page-referenda/src/Referenda/useVotes.ts +++ b/packages/page-referenda/src/Referenda/useVotes.ts @@ -5,7 +5,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { Changes } from '@pezkuwi/react-hooks/useEventChanges'; import type { Option, StorageKey, u32 } from '@pezkuwi/types'; import type { AccountId, EventRecord } from '@pezkuwi/types/interfaces'; -import type { PalletRankedCollectiveVoteRecord } from '@pezkuwi/types/lookup'; +import type { PezpalletRankedCollectiveVoteRecord } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { PalletVote } from '../types.js'; @@ -19,8 +19,8 @@ const OPT_ACCOUNTID = { }; const OPT_VOTES = { - transform: ([[params], votes]: [[[[BN, AccountId][]]], Option[]]): Record => - params.reduce>((all, [, a], i) => { + transform: ([[params], votes]: [[[[BN, AccountId][]]], Option[]]): Record => + params.reduce>((all, [, a], i) => { if (votes[i] && votes[i].isSome) { all[a.toString()] = votes[i].unwrap(); } @@ -42,7 +42,7 @@ function filterEvents (records: EventRecord[], _: ApiPromise, id?: BN): Changes< return { added }; } -function useVotesImpl (palletVote: PalletVote, id: BN, isConvictionVote: boolean): Record | undefined { +function useVotesImpl (palletVote: PalletVote, id: BN, isConvictionVote: boolean): Record | undefined { const { api } = useApi(); // After v1.4.0 runtime upgrade, Relay chains i.e. Dicle and Pezkuwi, or other teyrchains chains, replaced `voting` method with `votingFor`. diff --git a/packages/page-referenda/src/Referenda/util.ts b/packages/page-referenda/src/Referenda/util.ts index 4cf0b37..c32c714 100644 --- a/packages/page-referenda/src/Referenda/util.ts +++ b/packages/page-referenda/src/Referenda/util.ts @@ -1,12 +1,12 @@ // Copyright 2017-2026 @pezkuwi/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletReferendaDeposit } from '@pezkuwi/types/lookup'; +import type { PezpalletReferendaDeposit } from '@pezkuwi/types/lookup'; import type { Referendum } from '../types.js'; import { Option } from '@pezkuwi/types'; -export function unwrapDeposit (value: PalletReferendaDeposit | Option): PalletReferendaDeposit | null { +export function unwrapDeposit (value: PezpalletReferendaDeposit | Option): PezpalletReferendaDeposit | null { return value instanceof Option ? value.unwrapOr(null) : value; diff --git a/packages/page-referenda/src/types.ts b/packages/page-referenda/src/types.ts index 85ad182..9643955 100644 --- a/packages/page-referenda/src/types.ts +++ b/packages/page-referenda/src/types.ts @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletReferendaReferendumInfoConvictionVotingTally, PalletReferendaReferendumInfoRankedCollectiveTally, PalletReferendaTrackDetails } from '@pezkuwi/types/lookup'; +import type { PezpalletReferendaReferendumInfoConvictionVotingTally, PezpalletReferendaReferendumInfoRankedCollectiveTally, PezpalletReferendaTrackDetails } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; export type PalletReferenda = 'referenda' | 'rankedPolls' | 'fellowshipReferenda'| 'ambassadorReferenda'; @@ -10,7 +10,7 @@ export type PalletVote = 'convictionVoting' | 'rankedCollective' | 'fellowshipCo export interface ReferendaGroup { key: string; - track?: PalletReferendaTrackDetails; + track?: PezpalletReferendaTrackDetails; trackGraph?: CurveGraph; trackId?: BN; trackName?: string; @@ -24,10 +24,10 @@ export interface ReferendaGroupKnown extends ReferendaGroup { export interface Referendum { decidingEnd?: BN; id: BN; - info: PalletReferendaReferendumInfoConvictionVotingTally | PalletReferendaReferendumInfoRankedCollectiveTally; + info: PezpalletReferendaReferendumInfoConvictionVotingTally | PezpalletReferendaReferendumInfoRankedCollectiveTally; isConvictionVote: boolean; key: string; - track?: PalletReferendaTrackDetails; + track?: PezpalletReferendaTrackDetails; trackId?: BN; trackGraph?: CurveGraph; } @@ -60,7 +60,7 @@ export interface CurveGraph { export interface TrackDescription { graph: CurveGraph; id: BN; - info: PalletReferendaTrackDetails; + info: PezpalletReferendaTrackDetails; } export interface TrackInfo { diff --git a/packages/page-referenda/src/useAccountLocks.ts b/packages/page-referenda/src/useAccountLocks.ts index d75c5dc..77011c9 100644 --- a/packages/page-referenda/src/useAccountLocks.ts +++ b/packages/page-referenda/src/useAccountLocks.ts @@ -3,7 +3,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { Option } from '@pezkuwi/types'; -import type { PalletConvictionVotingVoteCasting, PalletConvictionVotingVoteVoting, PalletReferendaReferendumInfoConvictionVotingTally } from '@pezkuwi/types/lookup'; +import type { PezpalletConvictionVotingVoteCasting, PezpalletConvictionVotingVoteVoting, PezpalletReferendaReferendumInfoConvictionVotingTally } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { Lock, PalletReferenda, PalletVote } from './types.js'; @@ -19,9 +19,9 @@ const OPT_CLASS = { }; const OPT_VOTES = { - transform: ([[params], votes]: [[[string, BN][]], PalletConvictionVotingVoteVoting[]]): [classId: BN, refIds: BN[], casting: PalletConvictionVotingVoteCasting][] => + transform: ([[params], votes]: [[[string, BN][]], PezpalletConvictionVotingVoteVoting[]]): [classId: BN, refIds: BN[], casting: PezpalletConvictionVotingVoteCasting][] => votes - .map((v, index): null | [BN, BN[], PalletConvictionVotingVoteCasting] => { + .map((v, index): null | [BN, BN[], PezpalletConvictionVotingVoteCasting] => { if (!v.isCasting) { return null; } @@ -34,19 +34,19 @@ const OPT_VOTES = { casting ]; }) - .filter((v): v is [BN, BN[], PalletConvictionVotingVoteCasting] => !!v), + .filter((v): v is [BN, BN[], PezpalletConvictionVotingVoteCasting] => !!v), withParamsTransform: true }; const OPT_REFS = { - transform: ([[params], optTally]: [[BN[]], Option[]]): [BN, PalletReferendaReferendumInfoConvictionVotingTally][] => + transform: ([[params], optTally]: [[BN[]], Option[]]): [BN, PezpalletReferendaReferendumInfoConvictionVotingTally][] => optTally - .map((v, index): null | [BN, PalletReferendaReferendumInfoConvictionVotingTally] => + .map((v, index): null | [BN, PezpalletReferendaReferendumInfoConvictionVotingTally] => v.isSome ? [params[index], v.unwrap()] : null ) - .filter((v): v is [BN, PalletReferendaReferendumInfoConvictionVotingTally] => !!v), + .filter((v): v is [BN, PezpalletReferendaReferendumInfoConvictionVotingTally] => !!v), withParamsTransform: true }; @@ -58,7 +58,7 @@ function getVoteParams (accountId: string, lockClasses?: BN[]): [[accountId: str return undefined; } -function getRefParams (votes?: [classId: BN, refIds: BN[], casting: PalletConvictionVotingVoteCasting][]): [BN[]] | undefined { +function getRefParams (votes?: [classId: BN, refIds: BN[], casting: PezpalletConvictionVotingVoteCasting][]): [BN[]] | undefined { if (votes?.length) { const refIds = votes.reduce((all, [, refIds]) => all.concat(refIds), []); @@ -70,7 +70,7 @@ function getRefParams (votes?: [classId: BN, refIds: BN[], casting: PalletConvic return undefined; } -function getLocks (api: ApiPromise, palletVote: PalletVote, votes: [classId: BN, refIds: BN[], casting: PalletConvictionVotingVoteCasting][], referenda: [BN, PalletReferendaReferendumInfoConvictionVotingTally][]): Lock[] { +function getLocks (api: ApiPromise, palletVote: PalletVote, votes: [classId: BN, refIds: BN[], casting: PezpalletConvictionVotingVoteCasting][], referenda: [BN, PezpalletReferendaReferendumInfoConvictionVotingTally][]): Lock[] { const lockPeriod = api.consts[palletVote].voteLockingPeriod as BN; const locks: Lock[] = []; @@ -157,7 +157,7 @@ function useAccountLocksImpl (palletReferenda: PalletReferenda, palletVote: Pall [accountId, lockClasses] ); - const votes = useCall<[BN, BN[], PalletConvictionVotingVoteCasting][] | undefined>(voteParams && api.query[palletVote]?.votingFor.multi, voteParams, OPT_VOTES); + const votes = useCall<[BN, BN[], PezpalletConvictionVotingVoteCasting][] | undefined>(voteParams && api.query[palletVote]?.votingFor.multi, voteParams, OPT_VOTES); // retrieve the referendums that were voted on const refParams = useMemo( diff --git a/packages/page-referenda/src/useTracks.ts b/packages/page-referenda/src/useTracks.ts index 21cadc8..aca330f 100644 --- a/packages/page-referenda/src/useTracks.ts +++ b/packages/page-referenda/src/useTracks.ts @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletReferendaTrackDetails } from '@pezkuwi/types/lookup'; +import type { PezpalletReferendaTrackDetails } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { PalletReferenda, TrackDescription } from './types.js'; @@ -14,7 +14,7 @@ import { calcCurves } from './util.js'; const zeroGraph = { approval: [BN_ZERO], support: [BN_ZERO], x: [BN_ZERO] }; -function expandTracks (tracks: [BN, PalletReferendaTrackDetails][]): TrackDescription[] { +function expandTracks (tracks: [BN, PezpalletReferendaTrackDetails][]): TrackDescription[] { return tracks.map(([id, info]) => ({ graph: info.decisionDeposit && info.minApproval && info.minSupport ? calcCurves(info) : zeroGraph, id, diff --git a/packages/page-referenda/src/util.spec.ts b/packages/page-referenda/src/util.spec.ts index f07973d..02c2b09 100644 --- a/packages/page-referenda/src/util.spec.ts +++ b/packages/page-referenda/src/util.spec.ts @@ -3,14 +3,14 @@ /// -import type { PalletReferendaCurve } from '@pezkuwi/types/lookup'; +import type { PezpalletReferendaCurve } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import { BN_BILLION, BN_ZERO, bnToBn } from '@pezkuwi/util'; import { curveDelay, curveThreshold } from './util.js'; -function curveLinear (ceil: BN | string | number, floor: BN | string | number, length: BN | string | number): PalletReferendaCurve { +function curveLinear (ceil: BN | string | number, floor: BN | string | number, length: BN | string | number): PezpalletReferendaCurve { return { asLinearDecreasing: { ceil: bnToBn(ceil), @@ -20,10 +20,10 @@ function curveLinear (ceil: BN | string | number, floor: BN | string | number, l isLinearDecreasing: true, isReciprocal: false, isSteppedDecreasing: false - } as PalletReferendaCurve; + } as PezpalletReferendaCurve; } -function curveReciprocal (factor: BN | string | number, xOffset: BN | string | number, yOffset: BN | string | number): PalletReferendaCurve { +function curveReciprocal (factor: BN | string | number, xOffset: BN | string | number, yOffset: BN | string | number): PezpalletReferendaCurve { return { asReciprocal: { factor: bnToBn(factor), @@ -33,11 +33,11 @@ function curveReciprocal (factor: BN | string | number, xOffset: BN | string | n isLinearDecreasing: false, isReciprocal: true, isSteppedDecreasing: false - } as PalletReferendaCurve; + } as PezpalletReferendaCurve; } // We don't currently have curves on Dicle for this, so needs a check -// function curveStepped (begin: BN | string | number, end: BN | string | number, period: BN | string | number, step: BN | string | number): PalletReferendaCurve { +// function curveStepped (begin: BN | string | number, end: BN | string | number, period: BN | string | number, step: BN | string | number): PezpalletReferendaCurve { // return { // asSteppedDecreasing: { // begin: bnToBn(begin), @@ -48,7 +48,7 @@ function curveReciprocal (factor: BN | string | number, xOffset: BN | string | n // isLinearDecreasing: false, // isReciprocal: false, // isSteppedDecreasing: true -// } as PalletReferendaCurve; +// } as PezpalletReferendaCurve; // } function percentValue (percent: number): BN { diff --git a/packages/page-referenda/src/util.ts b/packages/page-referenda/src/util.ts index 5de9867..c3697c5 100644 --- a/packages/page-referenda/src/util.ts +++ b/packages/page-referenda/src/util.ts @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@pezkuwi/api'; -import type { PalletConvictionVotingTally, PalletRankedCollectiveTally, PalletReferendaCurve, PalletReferendaReferendumInfoConvictionVotingTally, PalletReferendaReferendumInfoRankedCollectiveTally, PalletReferendaTrackDetails } from '@pezkuwi/types/lookup'; +import type { PezpalletConvictionVotingTally, PezpalletRankedCollectiveTally, PezpalletReferendaCurve, PezpalletReferendaReferendumInfoConvictionVotingTally, PezpalletReferendaReferendumInfoRankedCollectiveTally, PezpalletReferendaTrackDetails } from '@pezkuwi/types/lookup'; import type { CurveGraph, TrackDescription, TrackInfoExt } from './types.js'; import { getGovernanceTracks } from '@pezkuwi/apps-config'; @@ -10,7 +10,7 @@ import { BN, BN_BILLION, BN_ONE, BN_ZERO, bnMax, bnMin, formatNumber, objectSpre const CURVE_LENGTH = 500; -export function getTrackName (trackId: BN, { name }: PalletReferendaTrackDetails): string { +export function getTrackName (trackId: BN, { name }: PezpalletReferendaTrackDetails): string { return `${ formatNumber(trackId) } / ${ @@ -48,15 +48,15 @@ export function getTrackInfo (api: ApiPromise, specName: string, palletReferenda return info; } -export function isConvictionTally (tally: PalletRankedCollectiveTally | PalletConvictionVotingTally): tally is PalletConvictionVotingTally { - return !!(tally as PalletConvictionVotingTally).support && !(tally as PalletRankedCollectiveTally).bareAyes; +export function isConvictionTally (tally: PezpalletRankedCollectiveTally | PezpalletConvictionVotingTally): tally is PezpalletConvictionVotingTally { + return !!(tally as PezpalletConvictionVotingTally).support && !(tally as PezpalletRankedCollectiveTally).bareAyes; } -export function isConvictionVote (info: PalletReferendaReferendumInfoConvictionVotingTally | PalletReferendaReferendumInfoRankedCollectiveTally): info is PalletReferendaReferendumInfoConvictionVotingTally { +export function isConvictionVote (info: PezpalletReferendaReferendumInfoConvictionVotingTally | PezpalletReferendaReferendumInfoRankedCollectiveTally): info is PezpalletReferendaReferendumInfoConvictionVotingTally { return info.isOngoing && isConvictionTally(info.asOngoing.tally); } -export function curveThreshold (curve: PalletReferendaCurve, input: BN, div: BN): BN { +export function curveThreshold (curve: PezpalletReferendaCurve, input: BN, div: BN): BN { // if divisor is zero, we return the max if (div.isZero()) { return BN_BILLION; @@ -118,7 +118,7 @@ export function curveThreshold (curve: PalletReferendaCurve, input: BN, div: BN) throw new Error(`Unknown curve found ${curve.type}`); } -export function curveDelay (curve: PalletReferendaCurve, input: BN, div: BN): BN { +export function curveDelay (curve: PezpalletReferendaCurve, input: BN, div: BN): BN { try { // if divisor is zero, we return the max if (div.isZero()) { @@ -211,7 +211,7 @@ export function curveDelay (curve: PalletReferendaCurve, input: BN, div: BN): BN throw new Error(`Unknown curve found ${curve.type}`); } -export function calcDecidingEnd (totalEligible: BN, tally: PalletRankedCollectiveTally | PalletConvictionVotingTally, { decisionPeriod, minApproval, minSupport }: PalletReferendaTrackDetails, since: BN): BN | undefined { +export function calcDecidingEnd (totalEligible: BN, tally: PezpalletRankedCollectiveTally | PezpalletConvictionVotingTally, { decisionPeriod, minApproval, minSupport }: PezpalletReferendaTrackDetails, since: BN): BN | undefined { const support = isConvictionTally(tally) ? tally.support : tally.bareAyes; @@ -228,7 +228,7 @@ export function calcDecidingEnd (totalEligible: BN, tally: PalletRankedCollectiv ); } -export function calcCurves ({ decisionPeriod, minApproval, minSupport }: PalletReferendaTrackDetails): CurveGraph { +export function calcCurves ({ decisionPeriod, minApproval, minSupport }: PezpalletReferendaTrackDetails): CurveGraph { const approval = new Array(CURVE_LENGTH); const support = new Array(CURVE_LENGTH); const x = new Array(CURVE_LENGTH); diff --git a/packages/page-scheduler/src/Scheduler.tsx b/packages/page-scheduler/src/Scheduler.tsx index 306e0cd..6126e66 100644 --- a/packages/page-scheduler/src/Scheduler.tsx +++ b/packages/page-scheduler/src/Scheduler.tsx @@ -4,7 +4,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { Bytes, Option, u8, u32 } from '@pezkuwi/types'; import type { BlockNumber, Call, Hash, Scheduled } from '@pezkuwi/types/interfaces'; -import type { FrameSupportPreimagesBounded, PalletSchedulerScheduled } from '@pezkuwi/types/lookup'; +import type { PezframeSupportPreimagesBounded, PezpalletSchedulerScheduled } from '@pezkuwi/types/lookup'; import type { Codec, ITuple } from '@pezkuwi/types/types'; import type { ScheduledExt } from './types.js'; @@ -21,7 +21,7 @@ interface Props { } // included here for backwards compat -interface PalletSchedulerScheduledV3 extends Codec { +interface PezpalletSchedulerScheduledV3 extends Codec { maybeId: Option; priority: u8; call: FrameSupportScheduleMaybeHashed; @@ -41,7 +41,7 @@ interface FrameSupportScheduleMaybeHashed extends Codec { } const OPT_SCHED = { - transform: (entries: [{ args: [BlockNumber] }, Option[]][], api: ApiPromise): ScheduledExt[] => { + transform: (entries: [{ args: [BlockNumber] }, Option[]][], api: ApiPromise): ScheduledExt[] => { return entries .filter(([, all]) => all.some((o) => o.isSome)) .reduce((items: ScheduledExt[], [key, all]): ScheduledExt[] => { @@ -52,19 +52,19 @@ const OPT_SCHED = { .map((o) => o.unwrap()) .reduce((items: ScheduledExt[], { call: callOrEnum, maybeId, maybePeriodic, priority }, index) => { let call: Call | null = null; - let preimageHash: FrameSupportPreimagesBounded | undefined; + let preimageHash: PezframeSupportPreimagesBounded | undefined; if ((callOrEnum as unknown as FrameSupportScheduleMaybeHashed).inner) { if ((callOrEnum as unknown as FrameSupportScheduleMaybeHashed).isValue) { call = (callOrEnum as unknown as FrameSupportScheduleMaybeHashed).asValue; - } else if ((callOrEnum as unknown as FrameSupportPreimagesBounded).isInline) { + } else if ((callOrEnum as unknown as PezframeSupportPreimagesBounded).isInline) { try { - call = api.registry.createType('Call', (callOrEnum as unknown as FrameSupportPreimagesBounded).asInline.toHex()); + call = api.registry.createType('Call', (callOrEnum as unknown as PezframeSupportPreimagesBounded).asInline.toHex()); } catch (error) { console.error(error); } - } else if ((callOrEnum as unknown as FrameSupportPreimagesBounded).isLookup) { - preimageHash = (callOrEnum as unknown as FrameSupportPreimagesBounded); + } else if ((callOrEnum as unknown as PezframeSupportPreimagesBounded).isLookup) { + preimageHash = (callOrEnum as unknown as PezframeSupportPreimagesBounded); } } else { call = callOrEnum as Call; diff --git a/packages/page-scheduler/src/types.ts b/packages/page-scheduler/src/types.ts index 25d10f3..51dd4d3 100644 --- a/packages/page-scheduler/src/types.ts +++ b/packages/page-scheduler/src/types.ts @@ -3,7 +3,7 @@ import type { Bytes, Option } from '@pezkuwi/types'; import type { BlockNumber, Call, SchedulePeriod, SchedulePriority } from '@pezkuwi/types/interfaces'; -import type { FrameSupportPreimagesBounded } from '@pezkuwi/types/lookup'; +import type { PezframeSupportPreimagesBounded } from '@pezkuwi/types/lookup'; export interface ScheduledExt { blockNumber: BlockNumber; @@ -12,5 +12,5 @@ export interface ScheduledExt { maybeId: Option; maybePeriodic: Option; priority: SchedulePriority; - preimageHash?: FrameSupportPreimagesBounded; + preimageHash?: PezframeSupportPreimagesBounded; } diff --git a/packages/page-settings/src/types.ts b/packages/page-settings/src/types.ts index 3945dc2..2967bdd 100644 --- a/packages/page-settings/src/types.ts +++ b/packages/page-settings/src/types.ts @@ -5,7 +5,8 @@ import type { MetadataDef } from '@pezkuwi/extension-inject/types'; export type ChainType = 'bizinikiwi' | 'ethereum'; -export interface ChainInfo extends MetadataDef { +// Omit chainType from MetadataDef to override with pezkuwi-specific type +export interface ChainInfo extends Omit { color: string | undefined; chainType: ChainType; } diff --git a/packages/page-settings/src/util.tsx b/packages/page-settings/src/util.tsx index d1218b9..618ef2d 100644 --- a/packages/page-settings/src/util.tsx +++ b/packages/page-settings/src/util.tsx @@ -41,9 +41,10 @@ export function createOption ({ info, isHeader, text, value }: Option, overrides } export function createIdenticon ({ info, text, value }: Option, overrides: string[] = [], override = 'empty'): Option { - const theme = info && overrides.includes(info) - ? override as 'empty' - : info as 'bizinikiwi'; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const theme = (info && overrides.includes(info) + ? override + : info) as any; // bizinikiwi is valid in pezkuwi-sdk but IconTheme type not yet updated return { text: ( diff --git a/packages/page-settings/tsconfig.build.json b/packages/page-settings/tsconfig.build.json index a1dd41e..f375a25 100644 --- a/packages/page-settings/tsconfig.build.json +++ b/packages/page-settings/tsconfig.build.json @@ -5,6 +5,11 @@ "outDir": "./build", "rootDir": "./src" }, + "include": [ + "src/**/*.ts", + "src/**/*.tsx", + "src/**/*.d.ts" + ], "references": [ { "path": "../apps-config/tsconfig.build.json" }, { "path": "../react-api/tsconfig.build.json" }, diff --git a/packages/page-society/src/Candidates/Bid.tsx b/packages/page-society/src/Candidates/Bid.tsx index 39ac5e6..224855c 100644 --- a/packages/page-society/src/Candidates/Bid.tsx +++ b/packages/page-society/src/Candidates/Bid.tsx @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletSocietyBid } from '@pezkuwi/types/lookup'; +import type { PezpalletSocietyBid } from '@pezkuwi/types/lookup'; import React, { useMemo } from 'react'; @@ -13,7 +13,7 @@ import BidType from './BidType.js'; interface Props { index: number; - value: PalletSocietyBid; + value: PezpalletSocietyBid; } function BidRow ({ index, value: { kind, value, who } }: Props): React.ReactElement { diff --git a/packages/page-society/src/Candidates/BidType.tsx b/packages/page-society/src/Candidates/BidType.tsx index 8c3990d..610d71f 100644 --- a/packages/page-society/src/Candidates/BidType.tsx +++ b/packages/page-society/src/Candidates/BidType.tsx @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletSocietyBidKind } from '@pezkuwi/types/lookup'; +import type { PezpalletSocietyBidKind } from '@pezkuwi/types/lookup'; import React, { useMemo } from 'react'; @@ -9,7 +9,7 @@ import { AddressSmall, styled } from '@pezkuwi/react-components'; interface Props { className?: string; - value?: PalletSocietyBidKind; + value?: PezpalletSocietyBidKind; } function BidType ({ className, value }: Props): React.ReactElement { diff --git a/packages/page-society/src/Candidates/Bids.tsx b/packages/page-society/src/Candidates/Bids.tsx index 0596fd2..e2ba252 100644 --- a/packages/page-society/src/Candidates/Bids.tsx +++ b/packages/page-society/src/Candidates/Bids.tsx @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletSocietyBid } from '@pezkuwi/types/lookup'; +import type { PezpalletSocietyBid } from '@pezkuwi/types/lookup'; import React, { useRef } from 'react'; @@ -18,7 +18,7 @@ interface Props { function Bids ({ className }: Props): React.ReactElement { const { t } = useTranslation(); const { api } = useApi(); - const bids = useCall(api.query.society.bids); + const bids = useCall(api.query.society.bids); const headerRef = useRef<[React.ReactNode?, string?, number?][]>([ [t('bids'), 'start'], diff --git a/packages/page-society/src/Suspended/Suspension.tsx b/packages/page-society/src/Suspended/Suspension.tsx index 0a2d44f..c12e7ed 100644 --- a/packages/page-society/src/Suspended/Suspension.tsx +++ b/packages/page-society/src/Suspended/Suspension.tsx @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { AccountId, BalanceOf } from '@pezkuwi/types/interfaces'; -import type { PalletSocietyBidKind } from '@pezkuwi/types/lookup'; +import type { PezpalletSocietyBidKind } from '@pezkuwi/types/lookup'; import React from 'react'; @@ -12,7 +12,7 @@ import BidType from '../Candidates/BidType.js'; interface Props { balance?: BalanceOf; - bid?: PalletSocietyBidKind; + bid?: PezpalletSocietyBidKind; value: AccountId; } diff --git a/packages/page-society/src/Suspended/index.tsx b/packages/page-society/src/Suspended/index.tsx index 904d547..c562ca8 100644 --- a/packages/page-society/src/Suspended/index.tsx +++ b/packages/page-society/src/Suspended/index.tsx @@ -3,7 +3,7 @@ import type { Option, StorageKey } from '@pezkuwi/types'; import type { AccountId, BalanceOf } from '@pezkuwi/types/interfaces'; -import type { PalletSocietyBidKind } from '@pezkuwi/types/lookup'; +import type { PezpalletSocietyBidKind } from '@pezkuwi/types/lookup'; import type { ITuple } from '@pezkuwi/types/types'; import React, { useRef } from 'react'; @@ -21,11 +21,11 @@ interface Props { interface CandidateSuspend { accountId: AccountId; balance: BalanceOf; - bid: PalletSocietyBidKind; + bid: PezpalletSocietyBidKind; } const OPT_CAN = { - transform: (entries: [StorageKey<[AccountId]>, Option>][]): CandidateSuspend[] => + transform: (entries: [StorageKey<[AccountId]>, Option>][]): CandidateSuspend[] => entries .filter(([{ args: [accountId] }, opt]) => opt.isSome && accountId) .map(([{ args: [accountId] }, opt]) => { diff --git a/packages/page-staking-async/src/Actions/Account/InputValidationController.tsx b/packages/page-staking-async/src/Actions/Account/InputValidationController.tsx index 50e96c2..aa88a60 100644 --- a/packages/page-staking-async/src/Actions/Account/InputValidationController.tsx +++ b/packages/page-staking-async/src/Actions/Account/InputValidationController.tsx @@ -4,7 +4,7 @@ import type { DeriveBalancesAll } from '@pezkuwi/api-derive/types'; import type { Option } from '@pezkuwi/types'; import type { AccountId } from '@pezkuwi/types/interfaces'; -import type { PalletStakingStakingLedger } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingStakingLedger } from '@pezkuwi/types/lookup'; import React, { useEffect, useState } from 'react'; @@ -33,7 +33,7 @@ const OPT_BOND = { }; const OPT_STASH = { - transform: (value: Option): string | null => + transform: (value: Option): string | null => value.isSome ? value.unwrap().stash.toString() : null diff --git a/packages/page-staking-async/src/Actions/Account/SetRewardDestination.tsx b/packages/page-staking-async/src/Actions/Account/SetRewardDestination.tsx index 9eb75af..ec3c294 100644 --- a/packages/page-staking-async/src/Actions/Account/SetRewardDestination.tsx +++ b/packages/page-staking-async/src/Actions/Account/SetRewardDestination.tsx @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@pezkuwi/api-derive/types'; -import type { PalletStakingRewardDestination } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingRewardDestination } from '@pezkuwi/types/lookup'; import type { DestinationType } from '../types.js'; import React, { useMemo, useState } from 'react'; @@ -15,7 +15,7 @@ import { createDestCurr } from '../destOptions.js'; import SenderInfo from '../partials/SenderInfo.js'; interface Props { - defaultDestination?: PalletStakingRewardDestination | null; + defaultDestination?: PezpalletStakingRewardDestination | null; controllerId: string; onClose: () => void; stashId: string; diff --git a/packages/page-staking-async/src/Actions/Account/Unbond.tsx b/packages/page-staking-async/src/Actions/Account/Unbond.tsx index 60f04f5..e23cc9f 100644 --- a/packages/page-staking-async/src/Actions/Account/Unbond.tsx +++ b/packages/page-staking-async/src/Actions/Account/Unbond.tsx @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-staking-async authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletStakingStakingLedger } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingStakingLedger } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import React, { useState } from 'react'; @@ -18,7 +18,7 @@ import useUnbondDuration from '../useUnbondDuration.js'; interface Props { controllerId?: string | null; onClose: () => void; - stakingLedger?: PalletStakingStakingLedger; + stakingLedger?: PezpalletStakingStakingLedger; stashId: string; } diff --git a/packages/page-staking-async/src/Actions/Account/index.tsx b/packages/page-staking-async/src/Actions/Account/index.tsx index 965b7a6..38cf4fa 100644 --- a/packages/page-staking-async/src/Actions/Account/index.tsx +++ b/packages/page-staking-async/src/Actions/Account/index.tsx @@ -5,7 +5,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { DeriveBalancesAll, DeriveStakingAccount } from '@pezkuwi/api-derive/types'; import type { SortedTargets } from '@pezkuwi/app-staking/types'; import type { StakerState } from '@pezkuwi/react-hooks/types'; -import type { PalletStakingUnappliedSlash } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingUnappliedSlash } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { Slash } from '../types.js'; @@ -31,7 +31,7 @@ import Validate from './Validate.js'; import WarnBond from './WarnBond.js'; interface Props { - allSlashes?: [BN, PalletStakingUnappliedSlash[]][]; + allSlashes?: [BN, PezpalletStakingUnappliedSlash[]][]; className?: string; isDisabled?: boolean; info: StakerState; @@ -41,7 +41,7 @@ interface Props { validators?: string[]; } -function extractSlashes (stashId: string, allSlashes: [BN, PalletStakingUnappliedSlash[]][] = []): Slash[] { +function extractSlashes (stashId: string, allSlashes: [BN, PezpalletStakingUnappliedSlash[]][] = []): Slash[] { return allSlashes .map(([era, all]) => ({ era, diff --git a/packages/page-staking-async/src/Actions/Accounts.tsx b/packages/page-staking-async/src/Actions/Accounts.tsx index cbd92a1..ae8c15e 100644 --- a/packages/page-staking-async/src/Actions/Accounts.tsx +++ b/packages/page-staking-async/src/Actions/Accounts.tsx @@ -3,7 +3,7 @@ import type { SortedTargets } from '@pezkuwi/app-staking/types'; import type { StakerState } from '@pezkuwi/react-hooks/types'; -import type { PalletStakingUnappliedSlash } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingUnappliedSlash } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import React, { useRef } from 'react'; @@ -14,7 +14,7 @@ import { useTranslation } from '../translate.js'; import Account from './Account/index.js'; interface Props { - allSlashes: [BN, PalletStakingUnappliedSlash[]][]; + allSlashes: [BN, PezpalletStakingUnappliedSlash[]][]; className?: string; footer: React.ReactNode; isInElection?: boolean; diff --git a/packages/page-staking-async/src/Actions/Pool/Account.tsx b/packages/page-staking-async/src/Actions/Pool/Account.tsx index 66a4c57..34890c3 100644 --- a/packages/page-staking-async/src/Actions/Pool/Account.tsx +++ b/packages/page-staking-async/src/Actions/Pool/Account.tsx @@ -4,7 +4,7 @@ import type { DeriveSessionProgress, DeriveUnlocking } from '@pezkuwi/api-derive/types'; import type { SortedTargets } from '@pezkuwi/app-staking/types'; import type { PoolInfo } from '@pezkuwi/app-staking2/Pools/types'; -import type { PalletNominationPoolsPoolMember, PalletNominationPoolsPoolRoles } from '@pezkuwi/types/lookup'; +import type { PezpalletNominationPoolsPoolMember, PezpalletNominationPoolsPoolRoles } from '@pezkuwi/types/lookup'; import React, { useCallback, useMemo } from 'react'; @@ -35,13 +35,13 @@ interface Roles { isNominator: boolean; } -function extractRoles (accountId: string, { nominator, root }: PalletNominationPoolsPoolRoles): Roles { +function extractRoles (accountId: string, { nominator, root }: PezpalletNominationPoolsPoolRoles): Roles { return { isNominator: nominator.eq(accountId) || root.eq(accountId) }; } -function calcUnbonding (accountId: string, stashId: string, { activeEra }: DeriveSessionProgress, { unbondingEras }: PalletNominationPoolsPoolMember): { accountId: string, controllerId: string, redeemable: BN, stashId: string, unlocking: DeriveUnlocking[] } { +function calcUnbonding (accountId: string, stashId: string, { activeEra }: DeriveSessionProgress, { unbondingEras }: PezpalletNominationPoolsPoolMember): { accountId: string, controllerId: string, redeemable: BN, stashId: string, unlocking: DeriveUnlocking[] } { const unlocking: DeriveUnlocking[] = []; const redeemable = new BN(0); diff --git a/packages/page-staking-async/src/Actions/Pool/index.tsx b/packages/page-staking-async/src/Actions/Pool/index.tsx index 9a7ebdb..7c777d3 100644 --- a/packages/page-staking-async/src/Actions/Pool/index.tsx +++ b/packages/page-staking-async/src/Actions/Pool/index.tsx @@ -4,7 +4,7 @@ import type { DeriveSessionProgress } from '@pezkuwi/api-derive/types'; import type { SortedTargets } from '@pezkuwi/app-staking/types'; import type { u32 } from '@pezkuwi/types'; -import type { PalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; +import type { PezpalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; import React from 'react'; @@ -15,7 +15,7 @@ import Account from './Account.js'; interface Props { count: number; className?: string; - members: Record; + members: Record; poolId: u32; sessionProgress?: DeriveSessionProgress; targets: SortedTargets; diff --git a/packages/page-staking-async/src/Actions/Pool/types.ts b/packages/page-staking-async/src/Actions/Pool/types.ts index 34d839b..c6abc48 100644 --- a/packages/page-staking-async/src/Actions/Pool/types.ts +++ b/packages/page-staking-async/src/Actions/Pool/types.ts @@ -1,10 +1,10 @@ // Copyright 2017-2026 @pezkuwi/app-staking-async authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; +import type { PezpalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; export interface AccountInfo { claimable: BN; - member: PalletNominationPoolsPoolMember; + member: PezpalletNominationPoolsPoolMember; } diff --git a/packages/page-staking-async/src/Actions/Pool/useAccountInfo.ts b/packages/page-staking-async/src/Actions/Pool/useAccountInfo.ts index fcb61f8..3c0f61d 100644 --- a/packages/page-staking-async/src/Actions/Pool/useAccountInfo.ts +++ b/packages/page-staking-async/src/Actions/Pool/useAccountInfo.ts @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@pezkuwi/types'; -import type { PalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; +import type { PezpalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; import type { AccountInfo } from './types.js'; import { useEffect, useState } from 'react'; @@ -10,7 +10,7 @@ import { useEffect, useState } from 'react'; import { createNamedHook, useApi, useCall, useIsMountedRef } from '@pezkuwi/react-hooks'; const OPT_DEL = { - transform: (opt: Option): PalletNominationPoolsPoolMember | null => + transform: (opt: Option): PezpalletNominationPoolsPoolMember | null => opt.unwrapOr(null) }; diff --git a/packages/page-staking-async/src/Actions/Pools.tsx b/packages/page-staking-async/src/Actions/Pools.tsx index 5e8e3a8..c94e438 100644 --- a/packages/page-staking-async/src/Actions/Pools.tsx +++ b/packages/page-staking-async/src/Actions/Pools.tsx @@ -4,7 +4,7 @@ import type { DeriveSessionProgress } from '@pezkuwi/api-derive/types'; import type { SortedTargets } from '@pezkuwi/app-staking/types'; import type { OwnPool } from '@pezkuwi/app-staking2/Pools/types'; -import type { PalletStakingUnappliedSlash } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingUnappliedSlash } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import React, { useRef } from 'react'; @@ -16,7 +16,7 @@ import { useTranslation } from '../translate.js'; import Pool from './Pool/index.js'; interface Props { - allSlashes: [BN, PalletStakingUnappliedSlash[]][]; + allSlashes: [BN, PezpalletStakingUnappliedSlash[]][]; className?: string; isInElection?: boolean; list?: OwnPool[]; diff --git a/packages/page-staking-async/src/Actions/partials/Bond.tsx b/packages/page-staking-async/src/Actions/partials/Bond.tsx index 7076b39..c0c0b40 100644 --- a/packages/page-staking-async/src/Actions/partials/Bond.tsx +++ b/packages/page-staking-async/src/Actions/partials/Bond.tsx @@ -93,6 +93,7 @@ function Bond ({ className = '', isNominating, minNominated, minNominatorBond, m // we have a batch with setController at the end // @ts-expect-error Previous generation ? api.tx.staking.bond(stashId, amount, bondDest) + // @ts-expect-error Runtime type format : api.tx.staking.bond(amount, bondDest), controllerId: mapControllerId, controllerTx: needsController diff --git a/packages/page-staking-async/src/Actions/partials/Validate.tsx b/packages/page-staking-async/src/Actions/partials/Validate.tsx index a3f5e50..a76bc7f 100644 --- a/packages/page-staking-async/src/Actions/partials/Validate.tsx +++ b/packages/page-staking-async/src/Actions/partials/Validate.tsx @@ -44,10 +44,11 @@ function Validate ({ className = '', controllerId, minCommission, onChange, stas useEffect((): void => { try { onChange({ + // eslint-disable-next-line @typescript-eslint/no-explicit-any validateTx: api.tx.staking.validate({ blocked: !allowNoms, commission - }) + } as any) }); } catch { onChange({ validateTx: null }); diff --git a/packages/page-staking-async/src/Actions/useSlashingSpans.ts b/packages/page-staking-async/src/Actions/useSlashingSpans.ts index fd332c1..876916e 100644 --- a/packages/page-staking-async/src/Actions/useSlashingSpans.ts +++ b/packages/page-staking-async/src/Actions/useSlashingSpans.ts @@ -2,12 +2,12 @@ // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@pezkuwi/types'; -import type { PalletStakingSlashingSlashingSpans } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingSlashingSlashingSpans } from '@pezkuwi/types/lookup'; import { createNamedHook, useCall, useStakingAsyncApis } from '@pezkuwi/react-hooks'; const OPT_SPAN = { - transform: (optSpans: Option): number => + transform: (optSpans: Option): number => optSpans.isNone ? 0 : optSpans.unwrap().prior.length + 1 diff --git a/packages/page-staking-async/src/CommandCenter/index.tsx b/packages/page-staking-async/src/CommandCenter/index.tsx index 273e919..8986898 100644 --- a/packages/page-staking-async/src/CommandCenter/index.tsx +++ b/packages/page-staking-async/src/CommandCenter/index.tsx @@ -3,7 +3,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { AccountId32, Event, Hash } from '@pezkuwi/types/interfaces'; -import type { FrameSupportDispatchPerDispatchClassWeight, PezkuwiRuntimeTeyrchainsConfigurationHostConfiguration } from '@pezkuwi/types/lookup'; +import type { PezframeSupportDispatchPerDispatchClassWeight, PezkuwiRuntimeTeyrchainsConfigurationHostConfiguration } from '@pezkuwi/types/lookup'; import type { IEventData, ITuple } from '@pezkuwi/types/types'; import type { u32, Vec } from '@pezkuwi/types-codec'; @@ -173,7 +173,6 @@ const commandCenterHandler = async ( setRcOutput({ finalizedBlock: header.number.toNumber(), - teyrchainConfig, session: { hasQueuedInSession: hasQueuedInSession.isTrue, historicalRange: historicalRange.isSome @@ -197,7 +196,8 @@ const commandCenterHandler = async ( })(), mode: mode.toString(), validatorPoints: validatorPointsKeys.length - } + }, + teyrchainConfig }); if (enhancedEvents.length > 0) { @@ -284,7 +284,7 @@ const commandCenterHandler = async ( // Get block weight const weight = await (await ahApi.at(header.hash)).query.system.blockWeight(); - const formatWeight = (w: FrameSupportDispatchPerDispatchClassWeight) => { + const formatWeight = (w: PezframeSupportDispatchPerDispatchClassWeight) => { const normalRef = w.normal?.refTime?.toBigInt() || 0n; const operationalRef = w.operational?.refTime?.toBigInt() || 0n; const mandatoryRef = w.mandatory?.refTime?.toBigInt() || 0n; @@ -309,7 +309,8 @@ const commandCenterHandler = async ( const parsedQueuedScore = ahApi.createType('Option', queuedScore); const formattedQueuedScore = parsedQueuedScore.isSome ? (() => { - const score = parsedQueuedScore.unwrap(); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const score = parsedQueuedScore.unwrap() as any; const minimalStake = score.minimalStake?.toString() || '0'; const formattedMinStake = formatBalance(minimalStake, { forceUnit: '-', withSi: true }); @@ -523,7 +524,7 @@ function CommandCenter ({ ahApi: initialAhApi, ahEndPoints, isRelayChain, rcApi: // Get block weight const weight = await (await ahApi.at(currentBlockHash)).query.system.blockWeight(); - const formatWeight = (w: FrameSupportDispatchPerDispatchClassWeight) => { + const formatWeight = (w: PezframeSupportDispatchPerDispatchClassWeight) => { const normalRef = w.normal?.refTime?.toBigInt() || 0n; const operationalRef = w.operational?.refTime?.toBigInt() || 0n; const mandatoryRef = w.mandatory?.refTime?.toBigInt() || 0n; diff --git a/packages/page-staking-legacy/src/Actions/Account/InputValidationController.tsx b/packages/page-staking-legacy/src/Actions/Account/InputValidationController.tsx index ec3de66..140ef3a 100644 --- a/packages/page-staking-legacy/src/Actions/Account/InputValidationController.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/InputValidationController.tsx @@ -4,7 +4,7 @@ import type { DeriveBalancesAll } from '@pezkuwi/api-derive/types'; import type { Option } from '@pezkuwi/types'; import type { AccountId } from '@pezkuwi/types/interfaces'; -import type { PalletStakingStakingLedger } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingStakingLedger } from '@pezkuwi/types/lookup'; import React, { useEffect, useState } from 'react'; @@ -33,7 +33,7 @@ const OPT_BOND = { }; const OPT_STASH = { - transform: (value: Option): string | null => + transform: (value: Option): string | null => value.isSome ? value.unwrap().stash.toString() : null diff --git a/packages/page-staking-legacy/src/Actions/Account/SetRewardDestination.tsx b/packages/page-staking-legacy/src/Actions/Account/SetRewardDestination.tsx index b4b692d..799f561 100644 --- a/packages/page-staking-legacy/src/Actions/Account/SetRewardDestination.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/SetRewardDestination.tsx @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@pezkuwi/api-derive/types'; -import type { PalletStakingRewardDestination } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingRewardDestination } from '@pezkuwi/types/lookup'; import type { DestinationType } from '../types.js'; import React, { useMemo, useState } from 'react'; @@ -15,7 +15,7 @@ import { createDestCurr } from '../destOptions.js'; import SenderInfo from '../partials/SenderInfo.js'; interface Props { - defaultDestination?: PalletStakingRewardDestination | null; + defaultDestination?: PezpalletStakingRewardDestination | null; controllerId: string; onClose: () => void; stashId: string; diff --git a/packages/page-staking-legacy/src/Actions/Account/Unbond.tsx b/packages/page-staking-legacy/src/Actions/Account/Unbond.tsx index 174a64b..de45547 100644 --- a/packages/page-staking-legacy/src/Actions/Account/Unbond.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/Unbond.tsx @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletStakingStakingLedger } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingStakingLedger } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import React, { useState } from 'react'; @@ -18,7 +18,7 @@ import useUnbondDuration from '../useUnbondDuration.js'; interface Props { controllerId?: string | null; onClose: () => void; - stakingLedger?: PalletStakingStakingLedger; + stakingLedger?: PezpalletStakingStakingLedger; stashId: string; } diff --git a/packages/page-staking-legacy/src/Actions/Account/index.tsx b/packages/page-staking-legacy/src/Actions/Account/index.tsx index 2dbcbcb..9d53799 100644 --- a/packages/page-staking-legacy/src/Actions/Account/index.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/index.tsx @@ -4,7 +4,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { DeriveBalancesAll, DeriveStakingAccount } from '@pezkuwi/api-derive/types'; import type { StakerState } from '@pezkuwi/react-hooks/types'; -import type { PalletStakingUnappliedSlash } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingUnappliedSlash } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { SortedTargets } from '../../types.js'; import type { Slash } from '../types.js'; @@ -31,7 +31,7 @@ import Validate from './Validate.js'; import WarnBond from './WarnBond.js'; interface Props { - allSlashes?: [BN, PalletStakingUnappliedSlash[]][]; + allSlashes?: [BN, PezpalletStakingUnappliedSlash[]][]; className?: string; isDisabled?: boolean; info: StakerState; @@ -41,7 +41,7 @@ interface Props { validators?: string[]; } -function extractSlashes (stashId: string, allSlashes: [BN, PalletStakingUnappliedSlash[]][] = []): Slash[] { +function extractSlashes (stashId: string, allSlashes: [BN, PezpalletStakingUnappliedSlash[]][] = []): Slash[] { return allSlashes .map(([era, all]) => ({ era, diff --git a/packages/page-staking-legacy/src/Actions/Accounts.tsx b/packages/page-staking-legacy/src/Actions/Accounts.tsx index a3b01ce..6fc5826 100644 --- a/packages/page-staking-legacy/src/Actions/Accounts.tsx +++ b/packages/page-staking-legacy/src/Actions/Accounts.tsx @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { StakerState } from '@pezkuwi/react-hooks/types'; -import type { PalletStakingUnappliedSlash } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingUnappliedSlash } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { SortedTargets } from '../types.js'; @@ -14,7 +14,7 @@ import { useTranslation } from '../translate.js'; import Account from './Account/index.js'; interface Props { - allSlashes: [BN, PalletStakingUnappliedSlash[]][]; + allSlashes: [BN, PezpalletStakingUnappliedSlash[]][]; className?: string; footer: React.ReactNode; isInElection?: boolean; diff --git a/packages/page-staking-legacy/src/Actions/Pool/Account.tsx b/packages/page-staking-legacy/src/Actions/Pool/Account.tsx index b395a7a..275c941 100644 --- a/packages/page-staking-legacy/src/Actions/Pool/Account.tsx +++ b/packages/page-staking-legacy/src/Actions/Pool/Account.tsx @@ -3,7 +3,7 @@ import type { DeriveSessionProgress, DeriveUnlocking } from '@pezkuwi/api-derive/types'; import type { PoolInfo } from '@pezkuwi/app-staking2/Pools/types'; -import type { PalletNominationPoolsPoolMember, PalletNominationPoolsPoolRoles } from '@pezkuwi/types/lookup'; +import type { PezpalletNominationPoolsPoolMember, PezpalletNominationPoolsPoolRoles } from '@pezkuwi/types/lookup'; import type { SortedTargets } from '../../types.js'; import React, { useCallback, useMemo } from 'react'; @@ -35,13 +35,13 @@ interface Roles { isNominator: boolean; } -function extractRoles (accountId: string, { nominator, root }: PalletNominationPoolsPoolRoles): Roles { +function extractRoles (accountId: string, { nominator, root }: PezpalletNominationPoolsPoolRoles): Roles { return { isNominator: nominator.eq(accountId) || root.eq(accountId) }; } -function calcUnbonding (accountId: string, stashId: string, { activeEra }: DeriveSessionProgress, { unbondingEras }: PalletNominationPoolsPoolMember): { accountId: string, controllerId: string, redeemable: BN, stashId: string, unlocking: DeriveUnlocking[] } { +function calcUnbonding (accountId: string, stashId: string, { activeEra }: DeriveSessionProgress, { unbondingEras }: PezpalletNominationPoolsPoolMember): { accountId: string, controllerId: string, redeemable: BN, stashId: string, unlocking: DeriveUnlocking[] } { const unlocking: DeriveUnlocking[] = []; const redeemable = new BN(0); diff --git a/packages/page-staking-legacy/src/Actions/Pool/index.tsx b/packages/page-staking-legacy/src/Actions/Pool/index.tsx index ea1d8cf..f448e94 100644 --- a/packages/page-staking-legacy/src/Actions/Pool/index.tsx +++ b/packages/page-staking-legacy/src/Actions/Pool/index.tsx @@ -3,7 +3,7 @@ import type { DeriveSessionProgress } from '@pezkuwi/api-derive/types'; import type { u32 } from '@pezkuwi/types'; -import type { PalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; +import type { PezpalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; import type { SortedTargets } from '../../types.js'; import React from 'react'; @@ -15,7 +15,7 @@ import Account from './Account.js'; interface Props { count: number; className?: string; - members: Record; + members: Record; poolId: u32; sessionProgress?: DeriveSessionProgress; targets: SortedTargets; diff --git a/packages/page-staking-legacy/src/Actions/Pool/types.ts b/packages/page-staking-legacy/src/Actions/Pool/types.ts index 836e0e5..27204a7 100644 --- a/packages/page-staking-legacy/src/Actions/Pool/types.ts +++ b/packages/page-staking-legacy/src/Actions/Pool/types.ts @@ -1,10 +1,10 @@ // Copyright 2017-2026 @pezkuwi/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; +import type { PezpalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; export interface AccountInfo { claimable: BN; - member: PalletNominationPoolsPoolMember; + member: PezpalletNominationPoolsPoolMember; } diff --git a/packages/page-staking-legacy/src/Actions/Pool/useAccountInfo.ts b/packages/page-staking-legacy/src/Actions/Pool/useAccountInfo.ts index 2b2f93d..067f05d 100644 --- a/packages/page-staking-legacy/src/Actions/Pool/useAccountInfo.ts +++ b/packages/page-staking-legacy/src/Actions/Pool/useAccountInfo.ts @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@pezkuwi/types'; -import type { PalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; +import type { PezpalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; import type { AccountInfo } from './types.js'; import { useEffect, useState } from 'react'; @@ -10,7 +10,7 @@ import { useEffect, useState } from 'react'; import { createNamedHook, useApi, useCall, useIsMountedRef } from '@pezkuwi/react-hooks'; const OPT_DEL = { - transform: (opt: Option): PalletNominationPoolsPoolMember | null => + transform: (opt: Option): PezpalletNominationPoolsPoolMember | null => opt.unwrapOr(null) }; diff --git a/packages/page-staking-legacy/src/Actions/Pools.tsx b/packages/page-staking-legacy/src/Actions/Pools.tsx index 15b051e..1fa7c75 100644 --- a/packages/page-staking-legacy/src/Actions/Pools.tsx +++ b/packages/page-staking-legacy/src/Actions/Pools.tsx @@ -3,7 +3,7 @@ import type { DeriveSessionProgress } from '@pezkuwi/api-derive/types'; import type { OwnPool } from '@pezkuwi/app-staking2/Pools/types'; -import type { PalletStakingUnappliedSlash } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingUnappliedSlash } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { SortedTargets } from '../types.js'; @@ -16,7 +16,7 @@ import { useTranslation } from '../translate.js'; import Pool from './Pool/index.js'; interface Props { - allSlashes: [BN, PalletStakingUnappliedSlash[]][]; + allSlashes: [BN, PezpalletStakingUnappliedSlash[]][]; className?: string; isInElection?: boolean; list?: OwnPool[]; diff --git a/packages/page-staking-legacy/src/Actions/partials/Bond.tsx b/packages/page-staking-legacy/src/Actions/partials/Bond.tsx index 0740b71..7c7cc93 100644 --- a/packages/page-staking-legacy/src/Actions/partials/Bond.tsx +++ b/packages/page-staking-legacy/src/Actions/partials/Bond.tsx @@ -93,6 +93,7 @@ function Bond ({ className = '', isNominating, minNominated, minNominatorBond, m // we have a batch with setController at the end // @ts-expect-error Previous generation ? api.tx.staking.bond(stashId, amount, bondDest) + // @ts-expect-error Runtime type format : api.tx.staking.bond(amount, bondDest), controllerId: mapControllerId, controllerTx: needsController diff --git a/packages/page-staking-legacy/src/Actions/partials/Validate.tsx b/packages/page-staking-legacy/src/Actions/partials/Validate.tsx index e7cd621..fbd58d9 100644 --- a/packages/page-staking-legacy/src/Actions/partials/Validate.tsx +++ b/packages/page-staking-legacy/src/Actions/partials/Validate.tsx @@ -44,10 +44,11 @@ function Validate ({ className = '', controllerId, minCommission, onChange, stas useEffect((): void => { try { onChange({ + // eslint-disable-next-line @typescript-eslint/no-explicit-any validateTx: api.tx.staking.validate({ blocked: !allowNoms, commission - }) + } as any) }); } catch { onChange({ validateTx: null }); diff --git a/packages/page-staking-legacy/src/Actions/useSlashingSpans.ts b/packages/page-staking-legacy/src/Actions/useSlashingSpans.ts index 0573de7..dc261c6 100644 --- a/packages/page-staking-legacy/src/Actions/useSlashingSpans.ts +++ b/packages/page-staking-legacy/src/Actions/useSlashingSpans.ts @@ -2,12 +2,12 @@ // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@pezkuwi/types'; -import type { PalletStakingSlashingSlashingSpans } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingSlashingSlashingSpans } from '@pezkuwi/types/lookup'; import { createNamedHook, useApi, useCall } from '@pezkuwi/react-hooks'; const OPT_SPAN = { - transform: (optSpans: Option): number => + transform: (optSpans: Option): number => optSpans.isNone ? 0 : optSpans.unwrap().prior.length + 1 diff --git a/packages/page-staking-legacy/src/Bags/Bag.tsx b/packages/page-staking-legacy/src/Bags/Bag.tsx index f364f7f..02c1817 100644 --- a/packages/page-staking-legacy/src/Bags/Bag.tsx +++ b/packages/page-staking-legacy/src/Bags/Bag.tsx @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { AccountId32 } from '@pezkuwi/types/interfaces'; -import type { PalletBagsListListBag } from '@pezkuwi/types/lookup'; +import type { PezpalletBagsListListBag } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { ListNode, StashNode } from './types.js'; @@ -20,7 +20,7 @@ interface Props { bagLower: BN; bagUpper: BN; index: number; - info: PalletBagsListListBag; + info: PezpalletBagsListListBag; nodesOwn?: StashNode[]; } diff --git a/packages/page-staking-legacy/src/Bags/types.ts b/packages/page-staking-legacy/src/Bags/types.ts index b31aed1..4d09970 100644 --- a/packages/page-staking-legacy/src/Bags/types.ts +++ b/packages/page-staking-legacy/src/Bags/types.ts @@ -1,12 +1,12 @@ // Copyright 2017-2026 @pezkuwi/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletBagsListListBag, PalletBagsListListNode } from '@pezkuwi/types/lookup'; +import type { PezpalletBagsListListBag, PezpalletBagsListListNode } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; export interface StashNode { stashId: string; - node: PalletBagsListListNode; + node: PezpalletBagsListListNode; } export interface ListNode { @@ -20,7 +20,7 @@ export interface BagInfo { bagLower: BN; bagUpper: BN; index: number; - info: PalletBagsListListBag; + info: PezpalletBagsListListBag; key: string; } diff --git a/packages/page-staking-legacy/src/Bags/useBagEntries.tsx b/packages/page-staking-legacy/src/Bags/useBagEntries.tsx index 0a0efbe..3702af3 100644 --- a/packages/page-staking-legacy/src/Bags/useBagEntries.tsx +++ b/packages/page-staking-legacy/src/Bags/useBagEntries.tsx @@ -3,7 +3,7 @@ import type { Option } from '@pezkuwi/types'; import type { AccountId32 } from '@pezkuwi/types/interfaces'; -import type { PalletBagsListListNode } from '@pezkuwi/types/lookup'; +import type { PezpalletBagsListListNode } from '@pezkuwi/types/lookup'; import { useEffect, useState } from 'react'; @@ -22,7 +22,7 @@ const EMPTY_LIST: AccountId32[] = []; function useBagEntriesImpl (headId: AccountId32 | null, trigger: number): [boolean, AccountId32[]] { const mod = useQueryModule(); const [[currId, { isCompleted, list }], setCurrent] = useState<[AccountId32 | null, Result]>(EMPTY); - const node = useCall>(!!currId && mod.listNodes, [currId]); + const node = useCall>(!!currId && mod.listNodes, [currId]); useEffect( () => setCurrent( diff --git a/packages/page-staking-legacy/src/Bags/useBagsList.ts b/packages/page-staking-legacy/src/Bags/useBagsList.ts index f0a48bc..010d388 100644 --- a/packages/page-staking-legacy/src/Bags/useBagsList.ts +++ b/packages/page-staking-legacy/src/Bags/useBagsList.ts @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { Option, StorageKey, u64 } from '@pezkuwi/types'; -import type { PalletBagsListListBag } from '@pezkuwi/types/lookup'; +import type { PezpalletBagsListListBag } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { BagInfo } from './types.js'; @@ -19,9 +19,9 @@ const KEY_OPTS = { }; const MULTI_OPTS = { - transform: ([[ids], opts]: [[BN[]], Option[]]): BagInfo[] => { + transform: ([[ids], opts]: [[BN[]], Option[]]): BagInfo[] => { const sorted = ids - .map((id, index): [BN, Option] => [id, opts[index]]) + .map((id, index): [BN, Option] => [id, opts[index]]) .filter(([, o]) => o.isSome) .sort(([a], [b]) => b.cmp(a)) .map(([bagUpper, o], index): BagInfo => ({ diff --git a/packages/page-staking-legacy/src/Bags/useBagsNodes.tsx b/packages/page-staking-legacy/src/Bags/useBagsNodes.tsx index bf5e4e8..9bc47ab 100644 --- a/packages/page-staking-legacy/src/Bags/useBagsNodes.tsx +++ b/packages/page-staking-legacy/src/Bags/useBagsNodes.tsx @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@pezkuwi/types'; -import type { PalletBagsListListNode } from '@pezkuwi/types/lookup'; +import type { PezpalletBagsListListNode } from '@pezkuwi/types/lookup'; import type { BagMap } from './types.js'; import { useEffect, useState } from 'react'; @@ -12,10 +12,10 @@ import { createNamedHook, useCall } from '@pezkuwi/react-hooks'; import useQueryModule from './useQueryModule.js'; const MULTI_OPTS = { - transform: (opts: Option[]): BagMap => + transform: (opts: Option[]): BagMap => opts .filter((o) => o.isSome) - .map((o): PalletBagsListListNode => o.unwrap()) + .map((o): PezpalletBagsListListNode => o.unwrap()) .reduce((all: BagMap, node): BagMap => { const id = node.bagUpper.toString(); diff --git a/packages/page-staking-legacy/src/useSortedTargets.ts b/packages/page-staking-legacy/src/useSortedTargets.ts index b14d91d..89b96e8 100644 --- a/packages/page-staking-legacy/src/useSortedTargets.ts +++ b/packages/page-staking-legacy/src/useSortedTargets.ts @@ -5,7 +5,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { DeriveSessionInfo, DeriveStakingElected, DeriveStakingWaiting } from '@pezkuwi/api-derive/types'; import type { Inflation } from '@pezkuwi/react-hooks/types'; import type { Option, u32, Vec } from '@pezkuwi/types'; -import type { PalletStakingStakingLedger } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingStakingLedger } from '@pezkuwi/types/lookup'; import type { SortedTargets, TargetSortBy, ValidatorInfo } from './types.js'; import { useMemo } from 'react'; @@ -68,7 +68,7 @@ const OPT_MULTI = { }) }; -function getLegacyRewards (ledger: PalletStakingStakingLedger): u32[] { +function getLegacyRewards (ledger: PezpalletStakingStakingLedger): u32[] { return ledger.legacyClaimedRewards || (ledger as unknown as OldLedger).claimedRewards || []; } diff --git a/packages/page-staking/src/Actions/Account/InputValidationController.tsx b/packages/page-staking/src/Actions/Account/InputValidationController.tsx index ec3de66..140ef3a 100644 --- a/packages/page-staking/src/Actions/Account/InputValidationController.tsx +++ b/packages/page-staking/src/Actions/Account/InputValidationController.tsx @@ -4,7 +4,7 @@ import type { DeriveBalancesAll } from '@pezkuwi/api-derive/types'; import type { Option } from '@pezkuwi/types'; import type { AccountId } from '@pezkuwi/types/interfaces'; -import type { PalletStakingStakingLedger } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingStakingLedger } from '@pezkuwi/types/lookup'; import React, { useEffect, useState } from 'react'; @@ -33,7 +33,7 @@ const OPT_BOND = { }; const OPT_STASH = { - transform: (value: Option): string | null => + transform: (value: Option): string | null => value.isSome ? value.unwrap().stash.toString() : null diff --git a/packages/page-staking/src/Actions/Account/SetRewardDestination.tsx b/packages/page-staking/src/Actions/Account/SetRewardDestination.tsx index b4b692d..799f561 100644 --- a/packages/page-staking/src/Actions/Account/SetRewardDestination.tsx +++ b/packages/page-staking/src/Actions/Account/SetRewardDestination.tsx @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@pezkuwi/api-derive/types'; -import type { PalletStakingRewardDestination } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingRewardDestination } from '@pezkuwi/types/lookup'; import type { DestinationType } from '../types.js'; import React, { useMemo, useState } from 'react'; @@ -15,7 +15,7 @@ import { createDestCurr } from '../destOptions.js'; import SenderInfo from '../partials/SenderInfo.js'; interface Props { - defaultDestination?: PalletStakingRewardDestination | null; + defaultDestination?: PezpalletStakingRewardDestination | null; controllerId: string; onClose: () => void; stashId: string; diff --git a/packages/page-staking/src/Actions/Account/Unbond.tsx b/packages/page-staking/src/Actions/Account/Unbond.tsx index 174a64b..de45547 100644 --- a/packages/page-staking/src/Actions/Account/Unbond.tsx +++ b/packages/page-staking/src/Actions/Account/Unbond.tsx @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletStakingStakingLedger } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingStakingLedger } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import React, { useState } from 'react'; @@ -18,7 +18,7 @@ import useUnbondDuration from '../useUnbondDuration.js'; interface Props { controllerId?: string | null; onClose: () => void; - stakingLedger?: PalletStakingStakingLedger; + stakingLedger?: PezpalletStakingStakingLedger; stashId: string; } diff --git a/packages/page-staking/src/Actions/Account/index.tsx b/packages/page-staking/src/Actions/Account/index.tsx index 2dbcbcb..9d53799 100644 --- a/packages/page-staking/src/Actions/Account/index.tsx +++ b/packages/page-staking/src/Actions/Account/index.tsx @@ -4,7 +4,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { DeriveBalancesAll, DeriveStakingAccount } from '@pezkuwi/api-derive/types'; import type { StakerState } from '@pezkuwi/react-hooks/types'; -import type { PalletStakingUnappliedSlash } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingUnappliedSlash } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { SortedTargets } from '../../types.js'; import type { Slash } from '../types.js'; @@ -31,7 +31,7 @@ import Validate from './Validate.js'; import WarnBond from './WarnBond.js'; interface Props { - allSlashes?: [BN, PalletStakingUnappliedSlash[]][]; + allSlashes?: [BN, PezpalletStakingUnappliedSlash[]][]; className?: string; isDisabled?: boolean; info: StakerState; @@ -41,7 +41,7 @@ interface Props { validators?: string[]; } -function extractSlashes (stashId: string, allSlashes: [BN, PalletStakingUnappliedSlash[]][] = []): Slash[] { +function extractSlashes (stashId: string, allSlashes: [BN, PezpalletStakingUnappliedSlash[]][] = []): Slash[] { return allSlashes .map(([era, all]) => ({ era, diff --git a/packages/page-staking/src/Actions/Accounts.tsx b/packages/page-staking/src/Actions/Accounts.tsx index a3b01ce..6fc5826 100644 --- a/packages/page-staking/src/Actions/Accounts.tsx +++ b/packages/page-staking/src/Actions/Accounts.tsx @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { StakerState } from '@pezkuwi/react-hooks/types'; -import type { PalletStakingUnappliedSlash } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingUnappliedSlash } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { SortedTargets } from '../types.js'; @@ -14,7 +14,7 @@ import { useTranslation } from '../translate.js'; import Account from './Account/index.js'; interface Props { - allSlashes: [BN, PalletStakingUnappliedSlash[]][]; + allSlashes: [BN, PezpalletStakingUnappliedSlash[]][]; className?: string; footer: React.ReactNode; isInElection?: boolean; diff --git a/packages/page-staking/src/Actions/Pool/Account.tsx b/packages/page-staking/src/Actions/Pool/Account.tsx index b395a7a..275c941 100644 --- a/packages/page-staking/src/Actions/Pool/Account.tsx +++ b/packages/page-staking/src/Actions/Pool/Account.tsx @@ -3,7 +3,7 @@ import type { DeriveSessionProgress, DeriveUnlocking } from '@pezkuwi/api-derive/types'; import type { PoolInfo } from '@pezkuwi/app-staking2/Pools/types'; -import type { PalletNominationPoolsPoolMember, PalletNominationPoolsPoolRoles } from '@pezkuwi/types/lookup'; +import type { PezpalletNominationPoolsPoolMember, PezpalletNominationPoolsPoolRoles } from '@pezkuwi/types/lookup'; import type { SortedTargets } from '../../types.js'; import React, { useCallback, useMemo } from 'react'; @@ -35,13 +35,13 @@ interface Roles { isNominator: boolean; } -function extractRoles (accountId: string, { nominator, root }: PalletNominationPoolsPoolRoles): Roles { +function extractRoles (accountId: string, { nominator, root }: PezpalletNominationPoolsPoolRoles): Roles { return { isNominator: nominator.eq(accountId) || root.eq(accountId) }; } -function calcUnbonding (accountId: string, stashId: string, { activeEra }: DeriveSessionProgress, { unbondingEras }: PalletNominationPoolsPoolMember): { accountId: string, controllerId: string, redeemable: BN, stashId: string, unlocking: DeriveUnlocking[] } { +function calcUnbonding (accountId: string, stashId: string, { activeEra }: DeriveSessionProgress, { unbondingEras }: PezpalletNominationPoolsPoolMember): { accountId: string, controllerId: string, redeemable: BN, stashId: string, unlocking: DeriveUnlocking[] } { const unlocking: DeriveUnlocking[] = []; const redeemable = new BN(0); diff --git a/packages/page-staking/src/Actions/Pool/index.tsx b/packages/page-staking/src/Actions/Pool/index.tsx index ea1d8cf..f448e94 100644 --- a/packages/page-staking/src/Actions/Pool/index.tsx +++ b/packages/page-staking/src/Actions/Pool/index.tsx @@ -3,7 +3,7 @@ import type { DeriveSessionProgress } from '@pezkuwi/api-derive/types'; import type { u32 } from '@pezkuwi/types'; -import type { PalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; +import type { PezpalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; import type { SortedTargets } from '../../types.js'; import React from 'react'; @@ -15,7 +15,7 @@ import Account from './Account.js'; interface Props { count: number; className?: string; - members: Record; + members: Record; poolId: u32; sessionProgress?: DeriveSessionProgress; targets: SortedTargets; diff --git a/packages/page-staking/src/Actions/Pool/types.ts b/packages/page-staking/src/Actions/Pool/types.ts index 836e0e5..27204a7 100644 --- a/packages/page-staking/src/Actions/Pool/types.ts +++ b/packages/page-staking/src/Actions/Pool/types.ts @@ -1,10 +1,10 @@ // Copyright 2017-2026 @pezkuwi/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; +import type { PezpalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; export interface AccountInfo { claimable: BN; - member: PalletNominationPoolsPoolMember; + member: PezpalletNominationPoolsPoolMember; } diff --git a/packages/page-staking/src/Actions/Pool/useAccountInfo.ts b/packages/page-staking/src/Actions/Pool/useAccountInfo.ts index 2b2f93d..067f05d 100644 --- a/packages/page-staking/src/Actions/Pool/useAccountInfo.ts +++ b/packages/page-staking/src/Actions/Pool/useAccountInfo.ts @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@pezkuwi/types'; -import type { PalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; +import type { PezpalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; import type { AccountInfo } from './types.js'; import { useEffect, useState } from 'react'; @@ -10,7 +10,7 @@ import { useEffect, useState } from 'react'; import { createNamedHook, useApi, useCall, useIsMountedRef } from '@pezkuwi/react-hooks'; const OPT_DEL = { - transform: (opt: Option): PalletNominationPoolsPoolMember | null => + transform: (opt: Option): PezpalletNominationPoolsPoolMember | null => opt.unwrapOr(null) }; diff --git a/packages/page-staking/src/Actions/Pools.tsx b/packages/page-staking/src/Actions/Pools.tsx index 15b051e..1fa7c75 100644 --- a/packages/page-staking/src/Actions/Pools.tsx +++ b/packages/page-staking/src/Actions/Pools.tsx @@ -3,7 +3,7 @@ import type { DeriveSessionProgress } from '@pezkuwi/api-derive/types'; import type { OwnPool } from '@pezkuwi/app-staking2/Pools/types'; -import type { PalletStakingUnappliedSlash } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingUnappliedSlash } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { SortedTargets } from '../types.js'; @@ -16,7 +16,7 @@ import { useTranslation } from '../translate.js'; import Pool from './Pool/index.js'; interface Props { - allSlashes: [BN, PalletStakingUnappliedSlash[]][]; + allSlashes: [BN, PezpalletStakingUnappliedSlash[]][]; className?: string; isInElection?: boolean; list?: OwnPool[]; diff --git a/packages/page-staking/src/Actions/partials/Bond.tsx b/packages/page-staking/src/Actions/partials/Bond.tsx index 0740b71..7c7cc93 100644 --- a/packages/page-staking/src/Actions/partials/Bond.tsx +++ b/packages/page-staking/src/Actions/partials/Bond.tsx @@ -93,6 +93,7 @@ function Bond ({ className = '', isNominating, minNominated, minNominatorBond, m // we have a batch with setController at the end // @ts-expect-error Previous generation ? api.tx.staking.bond(stashId, amount, bondDest) + // @ts-expect-error Runtime type format : api.tx.staking.bond(amount, bondDest), controllerId: mapControllerId, controllerTx: needsController diff --git a/packages/page-staking/src/Actions/partials/Validate.tsx b/packages/page-staking/src/Actions/partials/Validate.tsx index e7cd621..fbd58d9 100644 --- a/packages/page-staking/src/Actions/partials/Validate.tsx +++ b/packages/page-staking/src/Actions/partials/Validate.tsx @@ -44,10 +44,11 @@ function Validate ({ className = '', controllerId, minCommission, onChange, stas useEffect((): void => { try { onChange({ + // eslint-disable-next-line @typescript-eslint/no-explicit-any validateTx: api.tx.staking.validate({ blocked: !allowNoms, commission - }) + } as any) }); } catch { onChange({ validateTx: null }); diff --git a/packages/page-staking/src/Actions/useSlashingSpans.ts b/packages/page-staking/src/Actions/useSlashingSpans.ts index 0573de7..dc261c6 100644 --- a/packages/page-staking/src/Actions/useSlashingSpans.ts +++ b/packages/page-staking/src/Actions/useSlashingSpans.ts @@ -2,12 +2,12 @@ // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@pezkuwi/types'; -import type { PalletStakingSlashingSlashingSpans } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingSlashingSlashingSpans } from '@pezkuwi/types/lookup'; import { createNamedHook, useApi, useCall } from '@pezkuwi/react-hooks'; const OPT_SPAN = { - transform: (optSpans: Option): number => + transform: (optSpans: Option): number => optSpans.isNone ? 0 : optSpans.unwrap().prior.length + 1 diff --git a/packages/page-staking/src/Bags/Bag.tsx b/packages/page-staking/src/Bags/Bag.tsx index f364f7f..02c1817 100644 --- a/packages/page-staking/src/Bags/Bag.tsx +++ b/packages/page-staking/src/Bags/Bag.tsx @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { AccountId32 } from '@pezkuwi/types/interfaces'; -import type { PalletBagsListListBag } from '@pezkuwi/types/lookup'; +import type { PezpalletBagsListListBag } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { ListNode, StashNode } from './types.js'; @@ -20,7 +20,7 @@ interface Props { bagLower: BN; bagUpper: BN; index: number; - info: PalletBagsListListBag; + info: PezpalletBagsListListBag; nodesOwn?: StashNode[]; } diff --git a/packages/page-staking/src/Bags/types.ts b/packages/page-staking/src/Bags/types.ts index b31aed1..4d09970 100644 --- a/packages/page-staking/src/Bags/types.ts +++ b/packages/page-staking/src/Bags/types.ts @@ -1,12 +1,12 @@ // Copyright 2017-2026 @pezkuwi/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletBagsListListBag, PalletBagsListListNode } from '@pezkuwi/types/lookup'; +import type { PezpalletBagsListListBag, PezpalletBagsListListNode } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; export interface StashNode { stashId: string; - node: PalletBagsListListNode; + node: PezpalletBagsListListNode; } export interface ListNode { @@ -20,7 +20,7 @@ export interface BagInfo { bagLower: BN; bagUpper: BN; index: number; - info: PalletBagsListListBag; + info: PezpalletBagsListListBag; key: string; } diff --git a/packages/page-staking/src/Bags/useBagEntries.tsx b/packages/page-staking/src/Bags/useBagEntries.tsx index 0a0efbe..3702af3 100644 --- a/packages/page-staking/src/Bags/useBagEntries.tsx +++ b/packages/page-staking/src/Bags/useBagEntries.tsx @@ -3,7 +3,7 @@ import type { Option } from '@pezkuwi/types'; import type { AccountId32 } from '@pezkuwi/types/interfaces'; -import type { PalletBagsListListNode } from '@pezkuwi/types/lookup'; +import type { PezpalletBagsListListNode } from '@pezkuwi/types/lookup'; import { useEffect, useState } from 'react'; @@ -22,7 +22,7 @@ const EMPTY_LIST: AccountId32[] = []; function useBagEntriesImpl (headId: AccountId32 | null, trigger: number): [boolean, AccountId32[]] { const mod = useQueryModule(); const [[currId, { isCompleted, list }], setCurrent] = useState<[AccountId32 | null, Result]>(EMPTY); - const node = useCall>(!!currId && mod.listNodes, [currId]); + const node = useCall>(!!currId && mod.listNodes, [currId]); useEffect( () => setCurrent( diff --git a/packages/page-staking/src/Bags/useBagsList.ts b/packages/page-staking/src/Bags/useBagsList.ts index f0a48bc..010d388 100644 --- a/packages/page-staking/src/Bags/useBagsList.ts +++ b/packages/page-staking/src/Bags/useBagsList.ts @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { Option, StorageKey, u64 } from '@pezkuwi/types'; -import type { PalletBagsListListBag } from '@pezkuwi/types/lookup'; +import type { PezpalletBagsListListBag } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { BagInfo } from './types.js'; @@ -19,9 +19,9 @@ const KEY_OPTS = { }; const MULTI_OPTS = { - transform: ([[ids], opts]: [[BN[]], Option[]]): BagInfo[] => { + transform: ([[ids], opts]: [[BN[]], Option[]]): BagInfo[] => { const sorted = ids - .map((id, index): [BN, Option] => [id, opts[index]]) + .map((id, index): [BN, Option] => [id, opts[index]]) .filter(([, o]) => o.isSome) .sort(([a], [b]) => b.cmp(a)) .map(([bagUpper, o], index): BagInfo => ({ diff --git a/packages/page-staking/src/Bags/useBagsNodes.tsx b/packages/page-staking/src/Bags/useBagsNodes.tsx index bf5e4e8..9bc47ab 100644 --- a/packages/page-staking/src/Bags/useBagsNodes.tsx +++ b/packages/page-staking/src/Bags/useBagsNodes.tsx @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@pezkuwi/types'; -import type { PalletBagsListListNode } from '@pezkuwi/types/lookup'; +import type { PezpalletBagsListListNode } from '@pezkuwi/types/lookup'; import type { BagMap } from './types.js'; import { useEffect, useState } from 'react'; @@ -12,10 +12,10 @@ import { createNamedHook, useCall } from '@pezkuwi/react-hooks'; import useQueryModule from './useQueryModule.js'; const MULTI_OPTS = { - transform: (opts: Option[]): BagMap => + transform: (opts: Option[]): BagMap => opts .filter((o) => o.isSome) - .map((o): PalletBagsListListNode => o.unwrap()) + .map((o): PezpalletBagsListListNode => o.unwrap()) .reduce((all: BagMap, node): BagMap => { const id = node.bagUpper.toString(); diff --git a/packages/page-staking/src/types.ts b/packages/page-staking/src/types.ts index 3d4e0cf..b17f3d8 100644 --- a/packages/page-staking/src/types.ts +++ b/packages/page-staking/src/types.ts @@ -3,7 +3,7 @@ import type { Inflation } from '@pezkuwi/react-hooks/types'; import type { AccountId, Balance, BlockNumber, EraIndex, Hash, SessionIndex, ValidatorPrefs, ValidatorPrefsTo196 } from '@pezkuwi/types/interfaces'; -import type { SpStakingExposurePage, SpStakingPagedExposureMetadata } from '@pezkuwi/types/lookup'; +import type { PezspStakingExposurePage, PezspStakingPagedExposureMetadata } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; export type Nominators = Record; @@ -52,8 +52,8 @@ export interface ValidatorInfo extends ValidatorInfoRank { bondShare: number; bondTotal: BN; commissionPer: number; - exposurePaged: SpStakingExposurePage; - exposureMeta: SpStakingPagedExposureMetadata + exposurePaged: PezspStakingExposurePage; + exposureMeta: PezspStakingPagedExposureMetadata isActive: boolean; isBlocking: boolean; isElected: boolean; diff --git a/packages/page-staking/src/useSortedTargets.ts b/packages/page-staking/src/useSortedTargets.ts index 6b3f519..9cb753a 100644 --- a/packages/page-staking/src/useSortedTargets.ts +++ b/packages/page-staking/src/useSortedTargets.ts @@ -5,7 +5,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { DeriveSessionInfo, DeriveStakingElected, DeriveStakingWaiting } from '@pezkuwi/api-derive/types'; import type { Inflation } from '@pezkuwi/react-hooks/types'; import type { Option, u32, Vec } from '@pezkuwi/types'; -import type { PalletStakingStakingLedger } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingStakingLedger } from '@pezkuwi/types/lookup'; import type { SortedTargets, TargetSortBy, ValidatorInfo } from './types.js'; import { useMemo } from 'react'; @@ -68,7 +68,7 @@ const OPT_MULTI = { }) }; -function getLegacyRewards (ledger: PalletStakingStakingLedger, claimedRewardsEras: Vec): u32[] { +function getLegacyRewards (ledger: PezpalletStakingStakingLedger, claimedRewardsEras: Vec): u32[] { const legacyRewards = ledger.legacyClaimedRewards || (ledger as unknown as OldLedger).claimedRewards || []; return legacyRewards.concat(claimedRewardsEras.toArray()); @@ -130,8 +130,8 @@ function sortValidators (list: ValidatorInfo[]): ValidatorInfo[] { function extractSingle (api: ApiPromise, allAccounts: string[], derive: DeriveStakingElected | DeriveStakingWaiting, favorites: string[], { activeEra, eraLength, lastEra, sessionLength }: LastEra, historyDepth?: BN, withReturns?: boolean): [ValidatorInfo[], Record] { const nominators: Record = {}; - const emptyExposure = api.createType('SpStakingExposurePage'); - const emptyExposureMeta = api.createType('SpStakingPagedExposureMetadata'); + const emptyExposure = api.createType('PezspStakingExposurePage'); + const emptyExposureMeta = api.createType('PezspStakingPagedExposureMetadata'); const earliestEra = historyDepth && lastEra.sub(historyDepth).iadd(BN_ONE); const list = new Array(derive.info.length); diff --git a/packages/page-staking2/src/Pools/types.ts b/packages/page-staking2/src/Pools/types.ts index 1e1856b..d6411a3 100644 --- a/packages/page-staking2/src/Pools/types.ts +++ b/packages/page-staking2/src/Pools/types.ts @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { u32 } from '@pezkuwi/types'; -import type { PalletNominationPoolsBondedPoolInner, PalletNominationPoolsPoolMember, PalletNominationPoolsRewardPool } from '@pezkuwi/types/lookup'; +import type { PezpalletNominationPoolsBondedPoolInner, PezpalletNominationPoolsPoolMember, PezpalletNominationPoolsRewardPool } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; export interface PoolAccounts { @@ -11,7 +11,7 @@ export interface PoolAccounts { } export interface OwnPoolBase { - members: Record; + members: Record; poolId: u32; } @@ -32,8 +32,8 @@ export interface Params { } export interface PoolInfoBase { - bonded: PalletNominationPoolsBondedPoolInner; - reward: PalletNominationPoolsRewardPool; + bonded: PezpalletNominationPoolsBondedPoolInner; + reward: PezpalletNominationPoolsRewardPool; metadata: string | null; nominating: string[]; rewardClaimable: BN; @@ -45,7 +45,7 @@ export interface PoolInfo extends PoolInfoBase, PoolAccounts { export interface MembersMapEntry { accountId: string; - member: PalletNominationPoolsPoolMember; + member: PezpalletNominationPoolsPoolMember; } export type MembersMap = Record; diff --git a/packages/page-staking2/src/Pools/useMembers.ts b/packages/page-staking2/src/Pools/useMembers.ts index 606e130..58e284d 100644 --- a/packages/page-staking2/src/Pools/useMembers.ts +++ b/packages/page-staking2/src/Pools/useMembers.ts @@ -4,7 +4,7 @@ import type { Changes } from '@pezkuwi/react-hooks/useEventChanges'; import type { bool, Option, StorageKey, u32, u128 } from '@pezkuwi/types'; import type { AccountId32, EventRecord } from '@pezkuwi/types/interfaces'; -import type { PalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; +import type { PezpalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; import type { MembersMap, MembersMapEntry } from './types.js'; import { useEffect, useState } from 'react'; @@ -14,7 +14,7 @@ import { createNamedHook, useApi, useCall, useEventChanges, useMapEntries } from const EMPTY_START: AccountId32[] = []; const OPT_ENTRIES = { - transform: (entries: [StorageKey<[AccountId32]>, Option][]): MembersMap => + transform: (entries: [StorageKey<[AccountId32]>, Option][]): MembersMap => entries.reduce((all: MembersMap, [{ args: [accountId] }, optMember]) => { if (optMember.isSome) { const member = optMember.unwrap(); @@ -35,7 +35,7 @@ const OPT_ENTRIES = { }; const OPT_MULTI = { - transform: ([[ids], values]: [[AccountId32[]], Option[]]): MembersMapEntry[] => + transform: ([[ids], values]: [[AccountId32[]], Option[]]): MembersMapEntry[] => ids .filter((_, i) => values[i].isSome) .map((accountId, i) => ({ diff --git a/packages/page-staking2/src/Pools/useOwnPools.ts b/packages/page-staking2/src/Pools/useOwnPools.ts index 655c7f2..b985721 100644 --- a/packages/page-staking2/src/Pools/useOwnPools.ts +++ b/packages/page-staking2/src/Pools/useOwnPools.ts @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@pezkuwi/types'; -import type { PalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; +import type { PezpalletNominationPoolsPoolMember } from '@pezkuwi/types/lookup'; import type { OwnPool, OwnPoolBase } from './types.js'; import { useMemo } from 'react'; @@ -12,7 +12,7 @@ import { createNamedHook, useAccounts, useApi, useCall } from '@pezkuwi/react-ho import { createAccounts } from './usePoolAccounts.js'; const OPT_MULTI = { - transform: ([[ids], opts]: [[string[]], Option[]]): OwnPoolBase[] => { + transform: ([[ids], opts]: [[string[]], Option[]]): OwnPoolBase[] => { const pools: OwnPoolBase[] = []; for (let i = 0; i < ids.length; i++) { diff --git a/packages/page-staking2/src/Pools/usePoolInfo.ts b/packages/page-staking2/src/Pools/usePoolInfo.ts index ddfcd49..72d8f9f 100644 --- a/packages/page-staking2/src/Pools/usePoolInfo.ts +++ b/packages/page-staking2/src/Pools/usePoolInfo.ts @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { Bytes, Option } from '@pezkuwi/types'; -import type { FrameSystemAccountInfo, PalletNominationPoolsBondedPoolInner, PalletNominationPoolsRewardPool, PalletStakingNominations } from '@pezkuwi/types/lookup'; +import type { PezframeSystemAccountInfo, PezpalletNominationPoolsBondedPoolInner, PezpalletNominationPoolsRewardPool, PezpalletStakingNominations } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { PoolInfo, PoolInfoBase } from './types.js'; @@ -15,7 +15,7 @@ import usePoolAccounts from './usePoolAccounts.js'; const OPT_MULTI = { defaultValue: null, - transform: ([optBonded, metadata, optReward, optNominating, accountInfo]: [Option, Bytes, Option, Option, FrameSystemAccountInfo]): PoolInfoBase | null => + transform: ([optBonded, metadata, optReward, optNominating, accountInfo]: [Option, Bytes, Option, Option, PezframeSystemAccountInfo]): PoolInfoBase | null => optBonded.isSome && optReward.isSome ? { bonded: optBonded.unwrap(), diff --git a/packages/page-staking2/src/Validators/useExposure.ts b/packages/page-staking2/src/Validators/useExposure.ts index 7928935..2e4c304 100644 --- a/packages/page-staking2/src/Validators/useExposure.ts +++ b/packages/page-staking2/src/Validators/useExposure.ts @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { SpStakingExposure } from '@pezkuwi/types/lookup'; +import type { PezspStakingExposure } from '@pezkuwi/types/lookup'; import type { SessionInfo, Validator } from '../types.js'; import type { UseExposure, UseExposureExposure } from './types.js'; @@ -13,7 +13,7 @@ import { BN } from '@pezkuwi/util'; import { useCacheMap } from '../useCache.js'; const OPT_EXPOSURE = { - transform: ({ others, own, total }: SpStakingExposure): UseExposureExposure => ({ + transform: ({ others, own, total }: PezspStakingExposure): UseExposureExposure => ({ others: others .map(({ value, who }) => ({ value: value.unwrap(), diff --git a/packages/page-staking2/src/Validators/usePoints.ts b/packages/page-staking2/src/Validators/usePoints.ts index 805ed7a..1621c19 100644 --- a/packages/page-staking2/src/Validators/usePoints.ts +++ b/packages/page-staking2/src/Validators/usePoints.ts @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletStakingEraRewardPoints } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingEraRewardPoints } from '@pezkuwi/types/lookup'; import type { SessionInfo } from '../types.js'; import type { UsePoints } from './types.js'; @@ -13,7 +13,7 @@ import { BN_ZERO } from '@pezkuwi/util'; import { useCacheValue } from '../useCache.js'; const OPT_POINTS = { - transform: ({ individual }: PalletStakingEraRewardPoints): UsePoints => + transform: ({ individual }: PezpalletStakingEraRewardPoints): UsePoints => [...individual.entries()] .filter(([, points]) => points.gt(BN_ZERO)) .reduce((result: UsePoints, [stashId, points]): UsePoints => { diff --git a/packages/page-staking2/src/useSessionInfo.ts b/packages/page-staking2/src/useSessionInfo.ts index 2344482..0168a57 100644 --- a/packages/page-staking2/src/useSessionInfo.ts +++ b/packages/page-staking2/src/useSessionInfo.ts @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { Option, u32 } from '@pezkuwi/types'; -import type { PalletStakingActiveEraInfo } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingActiveEraInfo } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { SessionInfo } from './types.js'; @@ -11,7 +11,7 @@ import { useMemo } from 'react'; import { createNamedHook, useApi, useCall } from '@pezkuwi/react-hooks'; const OPT_ACTIVEERA = { - transform: (activeEra: Option): BN | null => + transform: (activeEra: Option): BN | null => activeEra.isSome ? activeEra.unwrap().index : null diff --git a/packages/page-parachains/.skip-build b/packages/page-teyrchains/.skip-build similarity index 100% rename from packages/page-parachains/.skip-build rename to packages/page-teyrchains/.skip-build diff --git a/packages/page-parachains/.skip-npm b/packages/page-teyrchains/.skip-npm similarity index 100% rename from packages/page-parachains/.skip-npm rename to packages/page-teyrchains/.skip-npm diff --git a/packages/page-parachains/README.md b/packages/page-teyrchains/README.md similarity index 100% rename from packages/page-parachains/README.md rename to packages/page-teyrchains/README.md diff --git a/packages/page-parachains/package.json b/packages/page-teyrchains/package.json similarity index 100% rename from packages/page-parachains/package.json rename to packages/page-teyrchains/package.json diff --git a/packages/page-parachains/src/Auctions/Auction.tsx b/packages/page-teyrchains/src/Auctions/Auction.tsx similarity index 100% rename from packages/page-parachains/src/Auctions/Auction.tsx rename to packages/page-teyrchains/src/Auctions/Auction.tsx diff --git a/packages/page-parachains/src/Auctions/Bid.tsx b/packages/page-teyrchains/src/Auctions/Bid.tsx similarity index 100% rename from packages/page-parachains/src/Auctions/Bid.tsx rename to packages/page-teyrchains/src/Auctions/Bid.tsx diff --git a/packages/page-parachains/src/Auctions/Summary.tsx b/packages/page-teyrchains/src/Auctions/Summary.tsx similarity index 100% rename from packages/page-parachains/src/Auctions/Summary.tsx rename to packages/page-teyrchains/src/Auctions/Summary.tsx diff --git a/packages/page-parachains/src/Auctions/WinRange.tsx b/packages/page-teyrchains/src/Auctions/WinRange.tsx similarity index 100% rename from packages/page-parachains/src/Auctions/WinRange.tsx rename to packages/page-teyrchains/src/Auctions/WinRange.tsx diff --git a/packages/page-parachains/src/Auctions/index.tsx b/packages/page-teyrchains/src/Auctions/index.tsx similarity index 100% rename from packages/page-parachains/src/Auctions/index.tsx rename to packages/page-teyrchains/src/Auctions/index.tsx diff --git a/packages/page-parachains/src/Crowdloan/BannerAssetHubMigration.tsx b/packages/page-teyrchains/src/Crowdloan/BannerAssetHubMigration.tsx similarity index 100% rename from packages/page-parachains/src/Crowdloan/BannerAssetHubMigration.tsx rename to packages/page-teyrchains/src/Crowdloan/BannerAssetHubMigration.tsx diff --git a/packages/page-parachains/src/Crowdloan/Contribute.tsx b/packages/page-teyrchains/src/Crowdloan/Contribute.tsx similarity index 100% rename from packages/page-parachains/src/Crowdloan/Contribute.tsx rename to packages/page-teyrchains/src/Crowdloan/Contribute.tsx diff --git a/packages/page-parachains/src/Crowdloan/Fund.tsx b/packages/page-teyrchains/src/Crowdloan/Fund.tsx similarity index 100% rename from packages/page-parachains/src/Crowdloan/Fund.tsx rename to packages/page-teyrchains/src/Crowdloan/Fund.tsx diff --git a/packages/page-parachains/src/Crowdloan/FundAdd.tsx b/packages/page-teyrchains/src/Crowdloan/FundAdd.tsx similarity index 100% rename from packages/page-parachains/src/Crowdloan/FundAdd.tsx rename to packages/page-teyrchains/src/Crowdloan/FundAdd.tsx diff --git a/packages/page-parachains/src/Crowdloan/Funds.tsx b/packages/page-teyrchains/src/Crowdloan/Funds.tsx similarity index 100% rename from packages/page-parachains/src/Crowdloan/Funds.tsx rename to packages/page-teyrchains/src/Crowdloan/Funds.tsx diff --git a/packages/page-parachains/src/Crowdloan/Refund.tsx b/packages/page-teyrchains/src/Crowdloan/Refund.tsx similarity index 100% rename from packages/page-parachains/src/Crowdloan/Refund.tsx rename to packages/page-teyrchains/src/Crowdloan/Refund.tsx diff --git a/packages/page-parachains/src/Crowdloan/Summary.tsx b/packages/page-teyrchains/src/Crowdloan/Summary.tsx similarity index 100% rename from packages/page-parachains/src/Crowdloan/Summary.tsx rename to packages/page-teyrchains/src/Crowdloan/Summary.tsx diff --git a/packages/page-parachains/src/Crowdloan/index.tsx b/packages/page-teyrchains/src/Crowdloan/index.tsx similarity index 100% rename from packages/page-parachains/src/Crowdloan/index.tsx rename to packages/page-teyrchains/src/Crowdloan/index.tsx diff --git a/packages/page-parachains/src/Crowdloan/useContributions.ts b/packages/page-teyrchains/src/Crowdloan/useContributions.ts similarity index 100% rename from packages/page-parachains/src/Crowdloan/useContributions.ts rename to packages/page-teyrchains/src/Crowdloan/useContributions.ts diff --git a/packages/page-parachains/src/InputOwner.tsx b/packages/page-teyrchains/src/InputOwner.tsx similarity index 100% rename from packages/page-parachains/src/InputOwner.tsx rename to packages/page-teyrchains/src/InputOwner.tsx diff --git a/packages/page-parachains/src/Overview/LeaseBlocks.tsx b/packages/page-teyrchains/src/Overview/LeaseBlocks.tsx similarity index 100% rename from packages/page-parachains/src/Overview/LeaseBlocks.tsx rename to packages/page-teyrchains/src/Overview/LeaseBlocks.tsx diff --git a/packages/page-parachains/src/Overview/Lifecycle.tsx b/packages/page-teyrchains/src/Overview/Lifecycle.tsx similarity index 100% rename from packages/page-parachains/src/Overview/Lifecycle.tsx rename to packages/page-teyrchains/src/Overview/Lifecycle.tsx diff --git a/packages/page-parachains/src/Overview/Periods.tsx b/packages/page-teyrchains/src/Overview/Periods.tsx similarity index 100% rename from packages/page-parachains/src/Overview/Periods.tsx rename to packages/page-teyrchains/src/Overview/Periods.tsx diff --git a/packages/page-parachains/src/Overview/Summary.tsx b/packages/page-teyrchains/src/Overview/Summary.tsx similarity index 100% rename from packages/page-parachains/src/Overview/Summary.tsx rename to packages/page-teyrchains/src/Overview/Summary.tsx diff --git a/packages/page-parachains/src/Overview/Teyrchain.tsx b/packages/page-teyrchains/src/Overview/Teyrchain.tsx similarity index 97% rename from packages/page-parachains/src/Overview/Teyrchain.tsx rename to packages/page-teyrchains/src/Overview/Teyrchain.tsx index 68c00bb..3c04ee4 100644 --- a/packages/page-parachains/src/Overview/Teyrchain.tsx +++ b/packages/page-teyrchains/src/Overview/Teyrchain.tsx @@ -124,7 +124,8 @@ function Teyrchain ({ bestNumber, className = '', id, lastBacked, lastInclusion,
{paraInfo.headHex}
- {paraInfo.updateAt && bestNumber && paraInfo.lifecycle?.isTeyrchain + {/* eslint-disable-next-line @typescript-eslint/no-explicit-any */} + {paraInfo.updateAt && bestNumber && (paraInfo.lifecycle as any)?.isTeyrchain ? ( <> {t('Upgrading')} diff --git a/packages/page-parachains/src/Overview/TeyrchainInfo.tsx b/packages/page-teyrchains/src/Overview/TeyrchainInfo.tsx similarity index 100% rename from packages/page-parachains/src/Overview/TeyrchainInfo.tsx rename to packages/page-teyrchains/src/Overview/TeyrchainInfo.tsx diff --git a/packages/page-parachains/src/Overview/Teyrchains.tsx b/packages/page-teyrchains/src/Overview/Teyrchains.tsx similarity index 100% rename from packages/page-parachains/src/Overview/Teyrchains.tsx rename to packages/page-teyrchains/src/Overview/Teyrchains.tsx diff --git a/packages/page-parachains/src/Overview/index.tsx b/packages/page-teyrchains/src/Overview/index.tsx similarity index 100% rename from packages/page-parachains/src/Overview/index.tsx rename to packages/page-teyrchains/src/Overview/index.tsx diff --git a/packages/page-parachains/src/Overview/types.ts b/packages/page-teyrchains/src/Overview/types.ts similarity index 100% rename from packages/page-parachains/src/Overview/types.ts rename to packages/page-teyrchains/src/Overview/types.ts diff --git a/packages/page-parachains/src/Overview/useChainDetails.ts b/packages/page-teyrchains/src/Overview/useChainDetails.ts similarity index 100% rename from packages/page-parachains/src/Overview/useChainDetails.ts rename to packages/page-teyrchains/src/Overview/useChainDetails.ts diff --git a/packages/page-parachains/src/Overview/useEvents.ts b/packages/page-teyrchains/src/Overview/useEvents.ts similarity index 100% rename from packages/page-parachains/src/Overview/useEvents.ts rename to packages/page-teyrchains/src/Overview/useEvents.ts diff --git a/packages/page-parachains/src/Overview/useParaInfo.ts b/packages/page-teyrchains/src/Overview/useParaInfo.ts similarity index 100% rename from packages/page-parachains/src/Overview/useParaInfo.ts rename to packages/page-teyrchains/src/Overview/useParaInfo.ts diff --git a/packages/page-parachains/src/Overview/useValidators.ts b/packages/page-teyrchains/src/Overview/useValidators.ts similarity index 100% rename from packages/page-parachains/src/Overview/useValidators.ts rename to packages/page-teyrchains/src/Overview/useValidators.ts diff --git a/packages/page-parachains/src/Parathreads/Actions.tsx b/packages/page-teyrchains/src/Parathreads/Actions.tsx similarity index 100% rename from packages/page-parachains/src/Parathreads/Actions.tsx rename to packages/page-teyrchains/src/Parathreads/Actions.tsx diff --git a/packages/page-parachains/src/Parathreads/DeregisterId.tsx b/packages/page-teyrchains/src/Parathreads/DeregisterId.tsx similarity index 100% rename from packages/page-parachains/src/Parathreads/DeregisterId.tsx rename to packages/page-teyrchains/src/Parathreads/DeregisterId.tsx diff --git a/packages/page-parachains/src/Parathreads/Parathread.tsx b/packages/page-teyrchains/src/Parathreads/Parathread.tsx similarity index 100% rename from packages/page-parachains/src/Parathreads/Parathread.tsx rename to packages/page-teyrchains/src/Parathreads/Parathread.tsx diff --git a/packages/page-parachains/src/Parathreads/RegisterId.tsx b/packages/page-teyrchains/src/Parathreads/RegisterId.tsx similarity index 100% rename from packages/page-parachains/src/Parathreads/RegisterId.tsx rename to packages/page-teyrchains/src/Parathreads/RegisterId.tsx diff --git a/packages/page-parachains/src/Parathreads/RegisterThread.tsx b/packages/page-teyrchains/src/Parathreads/RegisterThread.tsx similarity index 100% rename from packages/page-parachains/src/Parathreads/RegisterThread.tsx rename to packages/page-teyrchains/src/Parathreads/RegisterThread.tsx diff --git a/packages/page-parachains/src/Parathreads/constants.tsx b/packages/page-teyrchains/src/Parathreads/constants.tsx similarity index 100% rename from packages/page-parachains/src/Parathreads/constants.tsx rename to packages/page-teyrchains/src/Parathreads/constants.tsx diff --git a/packages/page-parachains/src/Parathreads/index.tsx b/packages/page-teyrchains/src/Parathreads/index.tsx similarity index 100% rename from packages/page-parachains/src/Parathreads/index.tsx rename to packages/page-teyrchains/src/Parathreads/index.tsx diff --git a/packages/page-parachains/src/Parathreads/useParaMap.ts b/packages/page-teyrchains/src/Parathreads/useParaMap.ts similarity index 100% rename from packages/page-parachains/src/Parathreads/useParaMap.ts rename to packages/page-teyrchains/src/Parathreads/useParaMap.ts diff --git a/packages/page-parachains/src/Parathreads/useThreadInfo.ts b/packages/page-teyrchains/src/Parathreads/useThreadInfo.ts similarity index 100% rename from packages/page-parachains/src/Parathreads/useThreadInfo.ts rename to packages/page-teyrchains/src/Parathreads/useThreadInfo.ts diff --git a/packages/page-parachains/src/Proposals/Actions.tsx b/packages/page-teyrchains/src/Proposals/Actions.tsx similarity index 100% rename from packages/page-parachains/src/Proposals/Actions.tsx rename to packages/page-teyrchains/src/Proposals/Actions.tsx diff --git a/packages/page-parachains/src/Proposals/Proposal.tsx b/packages/page-teyrchains/src/Proposals/Proposal.tsx similarity index 100% rename from packages/page-parachains/src/Proposals/Proposal.tsx rename to packages/page-teyrchains/src/Proposals/Proposal.tsx diff --git a/packages/page-parachains/src/Proposals/Proposals.tsx b/packages/page-teyrchains/src/Proposals/Proposals.tsx similarity index 100% rename from packages/page-parachains/src/Proposals/Proposals.tsx rename to packages/page-teyrchains/src/Proposals/Proposals.tsx diff --git a/packages/page-parachains/src/Proposals/Propose.tsx b/packages/page-teyrchains/src/Proposals/Propose.tsx similarity index 100% rename from packages/page-parachains/src/Proposals/Propose.tsx rename to packages/page-teyrchains/src/Proposals/Propose.tsx diff --git a/packages/page-parachains/src/Proposals/index.tsx b/packages/page-teyrchains/src/Proposals/index.tsx similarity index 100% rename from packages/page-parachains/src/Proposals/index.tsx rename to packages/page-teyrchains/src/Proposals/index.tsx diff --git a/packages/page-parachains/src/Proposals/useProposal.ts b/packages/page-teyrchains/src/Proposals/useProposal.ts similarity index 100% rename from packages/page-parachains/src/Proposals/useProposal.ts rename to packages/page-teyrchains/src/Proposals/useProposal.ts diff --git a/packages/page-parachains/src/Teleport.tsx b/packages/page-teyrchains/src/Teleport.tsx similarity index 100% rename from packages/page-parachains/src/Teleport.tsx rename to packages/page-teyrchains/src/Teleport.tsx diff --git a/packages/page-parachains/src/constants.ts b/packages/page-teyrchains/src/constants.ts similarity index 100% rename from packages/page-parachains/src/constants.ts rename to packages/page-teyrchains/src/constants.ts diff --git a/packages/page-parachains/src/index.tsx b/packages/page-teyrchains/src/index.tsx similarity index 100% rename from packages/page-parachains/src/index.tsx rename to packages/page-teyrchains/src/index.tsx diff --git a/packages/page-parachains/src/translate.ts b/packages/page-teyrchains/src/translate.ts similarity index 100% rename from packages/page-parachains/src/translate.ts rename to packages/page-teyrchains/src/translate.ts diff --git a/packages/page-parachains/src/types.ts b/packages/page-teyrchains/src/types.ts similarity index 100% rename from packages/page-parachains/src/types.ts rename to packages/page-teyrchains/src/types.ts diff --git a/packages/page-parachains/src/useActionsQueue.ts b/packages/page-teyrchains/src/useActionsQueue.ts similarity index 100% rename from packages/page-parachains/src/useActionsQueue.ts rename to packages/page-teyrchains/src/useActionsQueue.ts diff --git a/packages/page-parachains/src/useAuctionInfo.tsx b/packages/page-teyrchains/src/useAuctionInfo.tsx similarity index 100% rename from packages/page-parachains/src/useAuctionInfo.tsx rename to packages/page-teyrchains/src/useAuctionInfo.tsx diff --git a/packages/page-parachains/src/useFunds.ts b/packages/page-teyrchains/src/useFunds.ts similarity index 100% rename from packages/page-parachains/src/useFunds.ts rename to packages/page-teyrchains/src/useFunds.ts diff --git a/packages/page-parachains/src/useLeasePeriod.ts b/packages/page-teyrchains/src/useLeasePeriod.ts similarity index 100% rename from packages/page-parachains/src/useLeasePeriod.ts rename to packages/page-teyrchains/src/useLeasePeriod.ts diff --git a/packages/page-parachains/src/useLeaseRanges.ts b/packages/page-teyrchains/src/useLeaseRanges.ts similarity index 100% rename from packages/page-parachains/src/useLeaseRanges.ts rename to packages/page-teyrchains/src/useLeaseRanges.ts diff --git a/packages/page-parachains/src/useOwnedIds.ts b/packages/page-teyrchains/src/useOwnedIds.ts similarity index 100% rename from packages/page-parachains/src/useOwnedIds.ts rename to packages/page-teyrchains/src/useOwnedIds.ts diff --git a/packages/page-parachains/src/useProposals.ts b/packages/page-teyrchains/src/useProposals.ts similarity index 100% rename from packages/page-parachains/src/useProposals.ts rename to packages/page-teyrchains/src/useProposals.ts diff --git a/packages/page-parachains/src/useUpcomingIds.ts b/packages/page-teyrchains/src/useUpcomingIds.ts similarity index 100% rename from packages/page-parachains/src/useUpcomingIds.ts rename to packages/page-teyrchains/src/useUpcomingIds.ts diff --git a/packages/page-parachains/src/useWinningData.ts b/packages/page-teyrchains/src/useWinningData.ts similarity index 100% rename from packages/page-parachains/src/useWinningData.ts rename to packages/page-teyrchains/src/useWinningData.ts diff --git a/packages/page-parachains/src/util.ts b/packages/page-teyrchains/src/util.ts similarity index 100% rename from packages/page-parachains/src/util.ts rename to packages/page-teyrchains/src/util.ts diff --git a/packages/page-parachains/tsconfig.build.json b/packages/page-teyrchains/tsconfig.build.json similarity index 100% rename from packages/page-parachains/tsconfig.build.json rename to packages/page-teyrchains/tsconfig.build.json diff --git a/packages/page-treasury/src/Tips/Tip.tsx b/packages/page-treasury/src/Tips/Tip.tsx index 468bba8..13690ad 100644 --- a/packages/page-treasury/src/Tips/Tip.tsx +++ b/packages/page-treasury/src/Tips/Tip.tsx @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { AccountId, Balance, BlockNumber, OpenTipTo225 } from '@pezkuwi/types/interfaces'; -import type { PalletTipsOpenTip } from '@pezkuwi/types/lookup'; +import type { PezpalletTipsOpenTip } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import React, { useCallback, useEffect, useMemo, useState } from 'react'; @@ -25,7 +25,7 @@ interface Props { members: string[]; onSelect: (hash: string, isSelected: boolean, value: BN) => void; onlyUntipped: boolean; - tip: PalletTipsOpenTip | OpenTipTo225; + tip: PezpalletTipsOpenTip | OpenTipTo225; } interface TipState { @@ -38,11 +38,11 @@ interface TipState { median: BN; } -function isCurrentTip (tip: PalletTipsOpenTip | OpenTipTo225): tip is PalletTipsOpenTip { - return !!(tip as PalletTipsOpenTip)?.findersFee; +function isCurrentTip (tip: PezpalletTipsOpenTip | OpenTipTo225): tip is PezpalletTipsOpenTip { + return !!(tip as PezpalletTipsOpenTip)?.findersFee; } -function extractTipState (tip: PalletTipsOpenTip | OpenTipTo225, allAccounts: string[]): TipState { +function extractTipState (tip: PezpalletTipsOpenTip | OpenTipTo225, allAccounts: string[]): TipState { const closesAt = tip.closes.unwrapOr(null); let finder: AccountId | null = null; let deposit: Balance | null = null; diff --git a/packages/page-treasury/src/Tips/Tips.tsx b/packages/page-treasury/src/Tips/Tips.tsx index 340127b..4ccfbad 100644 --- a/packages/page-treasury/src/Tips/Tips.tsx +++ b/packages/page-treasury/src/Tips/Tips.tsx @@ -3,7 +3,7 @@ import type { Option } from '@pezkuwi/types'; import type { OpenTipTo225 } from '@pezkuwi/types/interfaces'; -import type { PalletTipsOpenTip } from '@pezkuwi/types/lookup'; +import type { PezpalletTipsOpenTip } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import React, { useMemo, useRef, useState } from 'react'; @@ -23,11 +23,11 @@ interface Props { onSelectTip: (hash: string, isSelected: boolean, value: BN) => void, } -type TipType = [string, PalletTipsOpenTip | OpenTipTo225]; +type TipType = [string, PezpalletTipsOpenTip | OpenTipTo225]; const TIP_OPTS = { withParams: true }; -function extractTips (tipsWithHashes?: [[string[]], Option[]], inHashes?: string[] | null): TipType[] | undefined { +function extractTips (tipsWithHashes?: [[string[]], Option[]], inHashes?: string[] | null): TipType[] | undefined { if (!tipsWithHashes || !inHashes) { return undefined; } @@ -35,8 +35,8 @@ function extractTips (tipsWithHashes?: [[string[]], Option[]] const [[hashes], optTips] = tipsWithHashes; return optTips - .map((opt, index): [string, PalletTipsOpenTip | null] => [hashes[index], opt.unwrapOr(null)]) - .filter((val): val is [string, PalletTipsOpenTip] => inHashes.includes(val[0]) && !!val[1]) + .map((opt, index): [string, PezpalletTipsOpenTip | null] => [hashes[index], opt.unwrapOr(null)]) + .filter((val): val is [string, PezpalletTipsOpenTip] => inHashes.includes(val[0]) && !!val[1]) .sort((a, b) => a[1].closes.isNone ? b[1].closes.isNone @@ -53,7 +53,7 @@ function Tips ({ className = '', defaultId, hashes, isMember, members, onSelectT const { api } = useApi(); const [onlyUntipped, setOnlyUntipped] = useState(false); const bestNumber = useBestNumber(); - const tipsWithHashes = useCall<[[string[]], Option[]]>(hashes && (api.query.tips || api.query.treasury).tips.multi, [hashes], TIP_OPTS); + const tipsWithHashes = useCall<[[string[]], Option[]]>(hashes && (api.query.tips || api.query.treasury).tips.multi, [hashes], TIP_OPTS); const tips = useMemo( () => extractTips(tipsWithHashes, hashes), diff --git a/packages/react-api/package.json b/packages/react-api/package.json index 62f84e1..9e2e4e1 100644 --- a/packages/react-api/package.json +++ b/packages/react-api/package.json @@ -21,8 +21,8 @@ }, "dependencies": { "@pezkuwi/api": "^16.5.6", - "@pezkuwi/extension-compat-metamask": "^0.62.4", - "@pezkuwi/extension-dapp": "^0.62.4", + "@pezkuwi/extension-compat-metamask": "^0.62.13", + "@pezkuwi/extension-dapp": "^0.62.13", "@pezkuwi/rpc-provider": "^16.5.6", "fflate": "^0.8.1", "rxjs": "^7.8.1" diff --git a/packages/react-api/src/types.ts b/packages/react-api/src/types.ts index 0081061..af6c9a9 100644 --- a/packages/react-api/src/types.ts +++ b/packages/react-api/src/types.ts @@ -5,10 +5,34 @@ import type { Blockchain } from '@acala-network/chopsticks-core'; import type React from 'react'; import type { ApiPromise } from '@pezkuwi/api'; import type { SubmittableExtrinsicFunction } from '@pezkuwi/api/promise/types'; +import type { Signer as InjectedSigner } from '@pezkuwi/api/types'; import type { LinkOption } from '@pezkuwi/apps-config/endpoints/types'; -import type { InjectedExtension } from '@pezkuwi/extension-inject/types'; import type { KeypairType } from '@pezkuwi/util-crypto/types'; +// InjectedExtension type from extension-inject (defined locally for module resolution) +interface InjectedExtensionInfo { + name: string; + version: string; +} + +interface InjectedAccount { + address: string; + genesisHash?: string | null; + name?: string; +} + +interface InjectedAccounts { + get: (anyType?: boolean) => Promise; + subscribe: (cb: (accounts: InjectedAccount[]) => void | Promise) => () => void; +} + +interface Injected { + accounts: InjectedAccounts; + signer: InjectedSigner; +} + +export interface InjectedExtension extends InjectedExtensionInfo, Injected {} + // helpers for HOC props export type OmitProps = Pick>; export type SubtractProps = OmitProps; diff --git a/packages/react-api/tsconfig.build.json b/packages/react-api/tsconfig.build.json index 6ad981a..b492f15 100644 --- a/packages/react-api/tsconfig.build.json +++ b/packages/react-api/tsconfig.build.json @@ -5,6 +5,11 @@ "outDir": "./build", "rootDir": "./src" }, + "include": [ + "src/**/*.ts", + "src/**/*.tsx", + "src/**/*.d.ts" + ], "exclude": [ "src/statics.ts", "src/types.ts", diff --git a/packages/react-components/src/AccountSidebar/RegistrarJudgement.tsx b/packages/react-components/src/AccountSidebar/RegistrarJudgement.tsx index 64d2d22..a03258c 100644 --- a/packages/react-components/src/AccountSidebar/RegistrarJudgement.tsx +++ b/packages/react-components/src/AccountSidebar/RegistrarJudgement.tsx @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { Bytes, Option } from '@pezkuwi/types'; -import type { PalletIdentityRegistration } from '@pezkuwi/types/lookup'; +import type { PezpalletIdentityRegistration } from '@pezkuwi/types/lookup'; import type { ITuple } from '@pezkuwi/types/types'; import type { HexString } from '@pezkuwi/util/types'; @@ -35,7 +35,7 @@ const JUDGEMENT_ENUM = [ ]; const OPT_ID = { - transform: (optId: Option]>>): HexString | null => { + transform: (optId: Option]>>): HexString | null => { const id = optId.isSome ? optId.unwrap() : null; @@ -45,7 +45,7 @@ const OPT_ID = { ? null : Array.isArray(id) ? id[0].info.hash.toHex() - : (id as unknown as PalletIdentityRegistration).info.hash.toHex(); + : (id as unknown as PezpalletIdentityRegistration).info.hash.toHex(); } }; diff --git a/packages/react-components/src/AddressInfo.tsx b/packages/react-components/src/AddressInfo.tsx index ea8a485..19cd5ab 100644 --- a/packages/react-components/src/AddressInfo.tsx +++ b/packages/react-components/src/AddressInfo.tsx @@ -6,7 +6,7 @@ import type { DeriveBalancesAccountData, DeriveBalancesAll, DeriveDemocracyLock, import type { VestingInfo } from '@pezkuwi/react-hooks'; import type { Raw } from '@pezkuwi/types'; import type { BlockNumber, ValidatorPrefsTo145, Voting } from '@pezkuwi/types/interfaces'; -import type { PalletBalancesReserveData } from '@pezkuwi/types/lookup'; +import type { PezpalletBalancesReserveData } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import React, { useRef } from 'react'; @@ -369,7 +369,7 @@ function createBalanceItems (formatIndex: number, lookup: Record ); } - const allReserves = (deriveBalances?.namedReserves || []).reduce((t, r) => t.concat(...r), []); + const allReserves = (deriveBalances?.namedReserves || []).reduce((t, r) => t.concat(...r), []); const hasNamedReserves = !!allReserves && allReserves.length !== 0; balanceDisplay.locked && balancesAll && (isAllLocked || deriveBalances.lockedBalance?.gtn(0)) && allItems.push( diff --git a/packages/react-components/src/IdentityIcon/index.tsx b/packages/react-components/src/IdentityIcon/index.tsx index 5aa820d..8563c52 100644 --- a/packages/react-components/src/IdentityIcon/index.tsx +++ b/packages/react-components/src/IdentityIcon/index.tsx @@ -68,7 +68,9 @@ function IdentityIcon ({ className = '', forceIconType, prefix, size = 24, theme onCopy={onCopy} prefix={prefix} size={size} - theme={forceIconType || (isEthereum ? 'ethereum' : thisTheme as 'bizinikiwi')} + // bizinikiwi is valid in pezkuwi-sdk, cast to any for type compatibility + // eslint-disable-next-line @typescript-eslint/no-explicit-any + theme={(forceIconType || (isEthereum ? 'ethereum' : thisTheme)) as any} value={isCodec(value) ? value.toString() : value} /> ); diff --git a/packages/react-components/src/InputConsts/types.ts b/packages/react-components/src/InputConsts/types.ts index ef208e4..358b48c 100644 --- a/packages/react-components/src/InputConsts/types.ts +++ b/packages/react-components/src/InputConsts/types.ts @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 import type { StorageEntryBase } from '@pezkuwi/api/types'; -import type { PalletConstantMetadataLatest } from '@pezkuwi/types/interfaces'; +import type { PezpalletConstantMetadataLatest } from '@pezkuwi/types/interfaces'; import type { AnyTuple } from '@pezkuwi/types/types'; export type StorageEntryPromise = StorageEntryBase<'promise', any, AnyTuple>; @@ -13,5 +13,5 @@ export interface ConstValueBase { } export interface ConstValue extends ConstValueBase { - meta: PalletConstantMetadataLatest; + meta: PezpalletConstantMetadataLatest; } diff --git a/packages/react-components/src/react-copy-to-clipboard.d.ts b/packages/react-components/src/react-copy-to-clipboard.d.ts new file mode 100644 index 0000000..89dbe65 --- /dev/null +++ b/packages/react-components/src/react-copy-to-clipboard.d.ts @@ -0,0 +1,24 @@ +// Copyright 2017-2026 @pezkuwi/react-components authors & contributors +// SPDX-License-Identifier: Apache-2.0 + +// Override react-copy-to-clipboard types for React 18 compatibility +declare module 'react-copy-to-clipboard' { + import type { ReactNode, ReactElement } from 'react'; + + interface Options { + debug?: boolean; + message?: string; + format?: string; + } + + interface Props { + children?: ReactNode; + text: string; + onCopy?: (text: string, result: boolean) => void; + options?: Options; + } + + function CopyToClipboard(props: Props): ReactElement; + + export = CopyToClipboard; +} diff --git a/packages/react-components/src/types.ts b/packages/react-components/src/types.ts index c9d751b..e41feb1 100644 --- a/packages/react-components/src/types.ts +++ b/packages/react-components/src/types.ts @@ -3,6 +3,9 @@ import '@pezkuwi/api-augment'; +// Custom IconTheme type that includes pezkuwi project themes +export type PezkuwiIconTheme = 'beachball' | 'bizinikiwi' | 'empty' | 'ethereum' | 'jdenticon' | 'pezkuwi' | 'polkadot' | 'substrate'; + import type { IconName } from '@fortawesome/fontawesome-svg-core'; import type React from 'react'; import type { SubmittableExtrinsic } from '@pezkuwi/api/types'; diff --git a/packages/react-hooks/src/ctx/types.ts b/packages/react-hooks/src/ctx/types.ts index 9dcec71..92e78ba 100644 --- a/packages/react-hooks/src/ctx/types.ts +++ b/packages/react-hooks/src/ctx/types.ts @@ -4,14 +4,38 @@ import type { Blockchain } from '@acala-network/chopsticks-core'; import type { ApiPromise } from '@pezkuwi/api'; import type { SubmittableExtrinsicFunction } from '@pezkuwi/api/promise/types'; +import type { Signer as InjectedSigner } from '@pezkuwi/api/types'; import type { HeaderExtended } from '@pezkuwi/api-derive/types'; import type { LinkOption } from '@pezkuwi/apps-config/endpoints/types'; -import type { InjectedExtension } from '@pezkuwi/extension-inject/types'; import type { ProviderStats } from '@pezkuwi/rpc-provider/types'; import type { BlockNumber, EventRecord, Moment } from '@pezkuwi/types/interfaces'; import type { BN } from '@pezkuwi/util'; import type { AssetInfoComplete } from '../types.js'; +// InjectedExtension type from extension-inject (defined locally for module resolution) +interface InjectedExtensionInfo { + name: string; + version: string; +} + +interface InjectedAccount { + address: string; + genesisHash?: string | null; + name?: string; +} + +interface InjectedAccounts { + get: (anyType?: boolean) => Promise; + subscribe: (cb: (accounts: InjectedAccount[]) => void | Promise) => () => void; +} + +interface Injected { + accounts: InjectedAccounts; + signer: InjectedSigner; +} + +export interface InjectedExtension extends InjectedExtensionInfo, Injected {} + export interface ApiState { apiDefaultTx: SubmittableExtrinsicFunction; apiDefaultTxSudo: SubmittableExtrinsicFunction; diff --git a/packages/react-hooks/src/styled.d.ts b/packages/react-hooks/src/styled.d.ts new file mode 100644 index 0000000..4e9e3b7 --- /dev/null +++ b/packages/react-hooks/src/styled.d.ts @@ -0,0 +1,12 @@ +// Copyright 2017-2026 @pezkuwi/react-hooks authors & contributors +// SPDX-License-Identifier: Apache-2.0 + +import 'styled-components'; + +import type { ThemeDef } from '@pezkuwi/react-components/types'; + +declare module 'styled-components' { + export interface DefaultTheme { + theme: ThemeDef['theme']; + } +} diff --git a/packages/react-hooks/src/types.ts b/packages/react-hooks/src/types.ts index 11736b0..63a830e 100644 --- a/packages/react-hooks/src/types.ts +++ b/packages/react-hooks/src/types.ts @@ -9,7 +9,7 @@ import type { SubmittableExtrinsic } from '@pezkuwi/api/types'; import type { DeriveAccountFlags, DeriveAccountRegistration } from '@pezkuwi/api-derive/types'; import type { Option, u32, u128, Vec } from '@pezkuwi/types'; import type { AccountId, BlockNumber, Call, Hash, SessionIndex, ValidatorPrefs } from '@pezkuwi/types/interfaces'; -import type { PalletAssetsAssetDetails, PalletAssetsAssetMetadata, PalletPreimageRequestStatus, PalletStakingRewardDestination, PalletStakingStakingLedger, PezkuwiRuntimeTeyrchainsAssignerCoretimeCoreDescriptor, SpStakingExposurePage, SpStakingPagedExposureMetadata } from '@pezkuwi/types/lookup'; +import type { PezpalletAssetsAssetDetails, PezpalletAssetsAssetMetadata, PezpalletPreimageRequestStatus, PezpalletStakingRewardDestination, PezpalletStakingStakingLedger, PezkuwiRuntimeTeyrchainsAssignerCoretimeCoreDescriptor, PezspStakingExposurePage, PezspStakingPagedExposureMetadata } from '@pezkuwi/types/lookup'; import type { ICompact, IExtrinsic, INumber } from '@pezkuwi/types/types'; import type { KeyringJson$Meta } from '@pezkuwi/ui-keyring/types'; import type { BN } from '@pezkuwi/util'; @@ -54,19 +54,19 @@ export interface Inflation { } export interface AssetInfo { - details: PalletAssetsAssetDetails | null; + details: PezpalletAssetsAssetDetails | null; id: BN; isAdminMe: boolean; isIssuerMe: boolean; isFreezerMe: boolean; isOwnerMe: boolean; key: string; - metadata: PalletAssetsAssetMetadata | null; + metadata: PezpalletAssetsAssetMetadata | null; } export interface AssetInfoComplete extends AssetInfo { - details: PalletAssetsAssetDetails; - metadata: PalletAssetsAssetMetadata; + details: PezpalletAssetsAssetDetails; + metadata: PezpalletAssetsAssetMetadata; } export interface Slash { @@ -159,9 +159,9 @@ export interface UseAccountInfo { export interface StakerState { controllerId: string | null; - destination?: PalletStakingRewardDestination | null; - exposurePaged?: Option; - exposureMeta?: Option + destination?: PezpalletStakingRewardDestination | null; + exposurePaged?: Option; + exposureMeta?: Option claimedRewardsEras?: Vec hexSessionIdNext: string | null; hexSessionIdQueue: string | null; @@ -172,7 +172,7 @@ export interface StakerState { isStashValidating: boolean; nominating?: string[]; sessionIds: string[]; - stakingLedger?: PalletStakingStakingLedger; + stakingLedger?: PezpalletStakingStakingLedger; stashId: string; validatorPrefs?: ValidatorPrefs; } @@ -201,7 +201,7 @@ export interface PreimageStatus { isHashParam: boolean; proposalHash: HexString; proposalLength?: BN; - status: PalletPreimageRequestStatus | null; + status: PezpalletPreimageRequestStatus | null; } export interface PreimageBytes { @@ -307,7 +307,7 @@ export interface LegacyLease { task: string } -export interface PalletBrokerSaleInfoRecord { +export interface PezpalletBrokerSaleInfoRecord { saleStart: number; leadinLength: number; endPrice: BN; @@ -320,7 +320,7 @@ export interface PalletBrokerSaleInfoRecord { coresSold: number; } -export interface PalletBrokerConfigRecord { +export interface PezpalletBrokerConfigRecord { advanceNotice: number; interludeLength: number; leadinLength: number; @@ -360,10 +360,10 @@ export interface ChainConstants { export interface CoretimeInformation { constants: ChainConstants, chainInfo: Record, - salesInfo: PalletBrokerSaleInfoRecord, + salesInfo: PezpalletBrokerSaleInfoRecord, status: BrokerStatus, region: RegionInfo[], - config: PalletBrokerConfigRecord + config: PezpalletBrokerConfigRecord taskIds: number[] } diff --git a/packages/react-hooks/src/useAssetInfos.ts b/packages/react-hooks/src/useAssetInfos.ts index 8a49dbf..b88c53d 100644 --- a/packages/react-hooks/src/useAssetInfos.ts +++ b/packages/react-hooks/src/useAssetInfos.ts @@ -3,7 +3,7 @@ import type { Option } from '@pezkuwi/types'; import type { AccountId } from '@pezkuwi/types/interfaces'; -import type { PalletAssetsAssetDetails, PalletAssetsAssetMetadata } from '@pezkuwi/types/lookup'; +import type { PezpalletAssetsAssetDetails, PezpalletAssetsAssetMetadata } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { AssetInfo } from './types.js'; @@ -26,7 +26,7 @@ function isAccount (allAccounts: string[], accountId: AccountId): boolean { return allAccounts.some((a) => a === address); } -function extractInfo (allAccounts: string[], id: BN, optDetails: Option, metadata: PalletAssetsAssetMetadata): AssetInfo { +function extractInfo (allAccounts: string[], id: BN, optDetails: Option, metadata: PezpalletAssetsAssetMetadata): AssetInfo { const details = optDetails.unwrapOr(null); return { @@ -54,8 +54,8 @@ function useAssetInfosImpl (ids?: BN[]): AssetInfo[] | undefined { const isReady = useMemo(() => !!ids?.length && !!api.tx.assets?.setMetadata && !!api.tx.assets?.transferKeepAlive, [api.tx.assets?.setMetadata, api.tx.assets?.transferKeepAlive, ids?.length]); - const metadata = useCall<[[BN[]], PalletAssetsAssetMetadata[]]>(isReady && api.query.assets.metadata.multi, [ids], QUERY_OPTS); - const details = useCall<[[BN[]], Option[]]>(isReady && api.query.assets.asset.multi, [ids], QUERY_OPTS); + const metadata = useCall<[[BN[]], PezpalletAssetsAssetMetadata[]]>(isReady && api.query.assets.metadata.multi, [ids], QUERY_OPTS); + const details = useCall<[[BN[]], Option[]]>(isReady && api.query.assets.asset.multi, [ids], QUERY_OPTS); const [state, setState] = useState(); useEffect((): void => { diff --git a/packages/react-hooks/src/useAvailableSlashes.ts b/packages/react-hooks/src/useAvailableSlashes.ts index 2d3150b..04a14ee 100644 --- a/packages/react-hooks/src/useAvailableSlashes.ts +++ b/packages/react-hooks/src/useAvailableSlashes.ts @@ -5,7 +5,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { DeriveSessionIndexes } from '@pezkuwi/api-derive/types'; import type { Option } from '@pezkuwi/types'; import type { EraIndex } from '@pezkuwi/types/interfaces'; -import type { PalletStakingUnappliedSlash } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingUnappliedSlash } from '@pezkuwi/types/lookup'; import { useEffect, useMemo, useState } from 'react'; @@ -18,13 +18,13 @@ import { useIsMountedRef } from './useIsMountedRef.js'; type Unsub = () => void; -function useAvailableSlashesImpl (apiOverride?: ApiPromise): [BN, PalletStakingUnappliedSlash[]][] { +function useAvailableSlashesImpl (apiOverride?: ApiPromise): [BN, PezpalletStakingUnappliedSlash[]][] { const { api: connectedApi } = useApi(); const api = useMemo(() => apiOverride ?? connectedApi, [apiOverride, connectedApi]); const indexes = useCall(api.derive.session?.indexes); const earliestSlash = useCall>(api.query.staking?.earliestUnappliedSlash); const mountedRef = useIsMountedRef(); - const [slashes, setSlashes] = useState<[BN, PalletStakingUnappliedSlash[]][]>([]); + const [slashes, setSlashes] = useState<[BN, PezpalletStakingUnappliedSlash[]][]>([]); useEffect((): Unsub => { let unsub: Unsub | undefined; @@ -48,7 +48,7 @@ function useAvailableSlashesImpl (apiOverride?: ApiPromise): [BN, PalletStakingU unsub = await api.query.staking.unappliedSlashes.multi(range, (values): void => { mountedRef.current && setSlashes( values - .map((value, index): [BN, PalletStakingUnappliedSlash[]] => [from.addn(index), value]) + .map((value, index): [BN, PezpalletStakingUnappliedSlash[]] => [from.addn(index), value]) .filter(([, slashes]) => slashes.length) ); }); diff --git a/packages/react-hooks/src/useBrokerConfig.ts b/packages/react-hooks/src/useBrokerConfig.ts index 31ada65..754cb33 100644 --- a/packages/react-hooks/src/useBrokerConfig.ts +++ b/packages/react-hooks/src/useBrokerConfig.ts @@ -3,14 +3,14 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { Option } from '@pezkuwi/types'; -import type { PalletBrokerConfigRecord } from '@pezkuwi/types/lookup'; -import type { PalletBrokerConfigRecord as SimplifiedPalletBrokerConfigRecord } from './types.js'; +import type { PezpalletBrokerConfigRecord } from '@pezkuwi/types/lookup'; +import type { PezpalletBrokerConfigRecord as SimplifiedPezpalletBrokerConfigRecord } from './types.js'; import { useEffect, useState } from 'react'; import { createNamedHook, useCall } from '@pezkuwi/react-hooks'; -function extractInfo (config: Option): SimplifiedPalletBrokerConfigRecord { +function extractInfo (config: Option): SimplifiedPezpalletBrokerConfigRecord { const c = config.unwrap(); return { @@ -26,9 +26,9 @@ function extractInfo (config: Option): SimplifiedPalle } function useBrokerConfigImpl (api: ApiPromise, ready: boolean) { - const config = useCall>(ready && api?.query.broker.configuration); + const config = useCall>(ready && api?.query.broker.configuration); - const [state, setState] = useState(); + const [state, setState] = useState(); useEffect((): void => { !!config && !!config.isSome && !!config.toJSON() && diff --git a/packages/react-hooks/src/useBrokerLeases.ts b/packages/react-hooks/src/useBrokerLeases.ts index c256fc1..3f3d743 100644 --- a/packages/react-hooks/src/useBrokerLeases.ts +++ b/packages/react-hooks/src/useBrokerLeases.ts @@ -3,7 +3,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { Vec } from '@pezkuwi/types'; -import type { PalletBrokerLeaseRecordItem } from '@pezkuwi/types/lookup'; +import type { PezpalletBrokerLeaseRecordItem } from '@pezkuwi/types/lookup'; import type { LegacyLease } from './types.js'; import { useEffect, useState } from 'react'; @@ -11,7 +11,7 @@ import { useEffect, useState } from 'react'; import { createNamedHook, useCall } from '@pezkuwi/react-hooks'; function useBrokerLeasesImpl (api: ApiPromise, ready: boolean): LegacyLease[] | undefined { - const leases = useCall>(ready && api?.query?.broker?.leases); + const leases = useCall>(ready && api?.query?.broker?.leases); const [state, setState] = useState(); useEffect((): void => { diff --git a/packages/react-hooks/src/useBrokerPotentialRenewals.ts b/packages/react-hooks/src/useBrokerPotentialRenewals.ts index 2629681..2fc6346 100644 --- a/packages/react-hooks/src/useBrokerPotentialRenewals.ts +++ b/packages/react-hooks/src/useBrokerPotentialRenewals.ts @@ -3,7 +3,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { Option, StorageKey, u32 } from '@pezkuwi/types'; -import type { PalletBrokerPotentialRenewalId, PalletBrokerPotentialRenewalRecord } from '@pezkuwi/types/lookup'; +import type { PezpalletBrokerPotentialRenewalId, PezpalletBrokerPotentialRenewalRecord } from '@pezkuwi/types/lookup'; import type { PotentialRenewal } from './types.js'; import { useEffect, useState } from 'react'; @@ -13,8 +13,8 @@ import { BN_ZERO } from '@pezkuwi/util'; import { processHexMask } from './utils/dataProcessing.js'; -function extractInfo (info: Option, item: PalletBrokerPotentialRenewalId): PotentialRenewal | undefined { - const unwrapped: PalletBrokerPotentialRenewalRecord | null = info.isSome ? info.unwrap() : null; +function extractInfo (info: Option, item: PezpalletBrokerPotentialRenewalId): PotentialRenewal | undefined { + const unwrapped: PezpalletBrokerPotentialRenewalRecord | null = info.isSome ? info.unwrap() : null; let mask: string[] = []; let task = ''; @@ -55,7 +55,7 @@ const OPT_KEY = { function useBrokerPotentialRenewalsImpl (api: ApiPromise, ready: boolean): PotentialRenewal[] | undefined { const keys = useMapKeys(ready && api?.query.broker.potentialRenewals, [], OPT_KEY); - const potentialRenewals = useCall<[[PalletBrokerPotentialRenewalId[]], Option[]]>(ready && api?.query.broker.potentialRenewals.multi, [keys], { withParams: true }); + const potentialRenewals = useCall<[[PezpalletBrokerPotentialRenewalId[]], Option[]]>(ready && api?.query.broker.potentialRenewals.multi, [keys], { withParams: true }); const [state, setState] = useState(); diff --git a/packages/react-hooks/src/useBrokerReservations.ts b/packages/react-hooks/src/useBrokerReservations.ts index 97400cc..c2990ba 100644 --- a/packages/react-hooks/src/useBrokerReservations.ts +++ b/packages/react-hooks/src/useBrokerReservations.ts @@ -3,7 +3,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { Vec } from '@pezkuwi/types'; -import type { PalletBrokerScheduleItem } from '@pezkuwi/types/lookup'; +import type { PezpalletBrokerScheduleItem } from '@pezkuwi/types/lookup'; import type { Reservation } from './types.js'; import { useEffect, useState } from 'react'; @@ -13,7 +13,7 @@ import { createNamedHook, useCall } from '@pezkuwi/react-hooks'; import { processHexMask } from './utils/dataProcessing.js'; function useBrokerReservationsImpl (api: ApiPromise, ready: boolean): Reservation[] | undefined { - const reservations = useCall<[any, Vec>[]]>(ready && api?.query.broker.reservations); + const reservations = useCall<[any, Vec>[]]>(ready && api?.query.broker.reservations); const [state, setState] = useState(); useEffect((): void => { @@ -22,7 +22,7 @@ function useBrokerReservationsImpl (api: ApiPromise, ready: boolean): Reservatio } setState( - reservations.map((info: PalletBrokerScheduleItem[]) => { + reservations.map((info: PezpalletBrokerScheduleItem[]) => { return { mask: processHexMask(info[0]?.mask), maskBits: processHexMask(info[0]?.mask)?.length ?? 0, diff --git a/packages/react-hooks/src/useBrokerSalesInfo.ts b/packages/react-hooks/src/useBrokerSalesInfo.ts index 502e155..75e688f 100644 --- a/packages/react-hooks/src/useBrokerSalesInfo.ts +++ b/packages/react-hooks/src/useBrokerSalesInfo.ts @@ -3,15 +3,15 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { Option } from '@pezkuwi/types'; -import type { PalletBrokerSaleInfoRecord } from '@pezkuwi/types/lookup'; -import type { PalletBrokerSaleInfoRecord as SimplifiedPalletBrokerSaleInfoRecord } from './types.js'; +import type { PezpalletBrokerSaleInfoRecord } from '@pezkuwi/types/lookup'; +import type { PezpalletBrokerSaleInfoRecord as SimplifiedPezpalletBrokerSaleInfoRecord } from './types.js'; import { useEffect, useState } from 'react'; import { createNamedHook, useCall } from '@pezkuwi/react-hooks'; import { BN } from '@pezkuwi/util'; -function extractInfo (record: Option): SimplifiedPalletBrokerSaleInfoRecord { +function extractInfo (record: Option): SimplifiedPezpalletBrokerSaleInfoRecord { const v = record.unwrap(); return { @@ -29,9 +29,9 @@ function extractInfo (record: Option): SimplifiedPal } function useBrokerSalesInfoImpl (api: ApiPromise, ready: boolean) { - const record = useCall>(ready && api?.query.broker.saleInfo); + const record = useCall>(ready && api?.query.broker.saleInfo); - const [state, setState] = useState(); + const [state, setState] = useState(); useEffect((): void => { !!record && !!record.isSome && !!record.toJSON() && diff --git a/packages/react-hooks/src/useBrokerStatus.ts b/packages/react-hooks/src/useBrokerStatus.ts index 2384cc9..b312a1d 100644 --- a/packages/react-hooks/src/useBrokerStatus.ts +++ b/packages/react-hooks/src/useBrokerStatus.ts @@ -3,7 +3,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { Option } from '@pezkuwi/types'; -import type { PalletBrokerStatusRecord } from '@pezkuwi/types/lookup'; +import type { PezpalletBrokerStatusRecord } from '@pezkuwi/types/lookup'; import type { BrokerStatus } from './types.js'; import { useEffect, useState } from 'react'; @@ -11,7 +11,7 @@ import { useEffect, useState } from 'react'; import { createNamedHook, useCall } from '@pezkuwi/react-hooks'; function useBrokerStatusImpl (api: ApiPromise, ready: boolean): BrokerStatus | undefined { - const status = useCall>(ready && api?.query.broker?.status); + const status = useCall>(ready && api?.query.broker?.status); const [state, setState] = useState(); useEffect((): void => { diff --git a/packages/react-hooks/src/useCoreDescriptor.ts b/packages/react-hooks/src/useCoreDescriptor.ts index 6643767..c2cf21f 100644 --- a/packages/react-hooks/src/useCoreDescriptor.ts +++ b/packages/react-hooks/src/useCoreDescriptor.ts @@ -3,7 +3,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { StorageKey, u32 } from '@pezkuwi/types'; -import type { PalletBrokerCoretimeInterfaceCoreAssignment, PezkuwiRuntimeTeyrchainsAssignerCoretimeAssignmentState, PezkuwiRuntimeTeyrchainsAssignerCoretimeCoreDescriptor, PezkuwiRuntimeTeyrchainsAssignerCoretimeQueueDescriptor, PezkuwiRuntimeTeyrchainsAssignerCoretimeWorkState } from '@pezkuwi/types/lookup'; +import type { PezpalletBrokerCoretimeInterfaceCoreAssignment, PezkuwiRuntimeTeyrchainsAssignerCoretimeAssignmentState, PezkuwiRuntimeTeyrchainsAssignerCoretimeCoreDescriptor, PezkuwiRuntimeTeyrchainsAssignerCoretimeQueueDescriptor, PezkuwiRuntimeTeyrchainsAssignerCoretimeWorkState } from '@pezkuwi/types/lookup'; import type { CoreDescriptor } from './types.js'; import { useEffect, useState } from 'react'; @@ -20,7 +20,7 @@ function extractInfo (info: PezkuwiRuntimeTeyrchainsAssignerCoretimeCoreDescript core, info: { currentWork: { - assignments: assignments?.map((one: [PalletBrokerCoretimeInterfaceCoreAssignment, PezkuwiRuntimeTeyrchainsAssignerCoretimeAssignmentState]) => { + assignments: assignments?.map((one: [PezpalletBrokerCoretimeInterfaceCoreAssignment, PezkuwiRuntimeTeyrchainsAssignerCoretimeAssignmentState]) => { return ({ isPool: one[0]?.isPool, isTask: one[0]?.isTask, diff --git a/packages/react-hooks/src/useDelegations.ts b/packages/react-hooks/src/useDelegations.ts index 861b733..3b92b52 100644 --- a/packages/react-hooks/src/useDelegations.ts +++ b/packages/react-hooks/src/useDelegations.ts @@ -1,17 +1,17 @@ // Copyright 2017-2026 @pezkuwi/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletDemocracyVoteVoting } from '@pezkuwi/types/lookup'; +import type { PezpalletDemocracyVoteVoting } from '@pezkuwi/types/lookup'; import { useAccounts, useApi, useCall } from '@pezkuwi/react-hooks'; import { createNamedHook } from './createNamedHook.js'; -function useDelegationsImpl (): PalletDemocracyVoteVoting[] | undefined { +function useDelegationsImpl (): PezpalletDemocracyVoteVoting[] | undefined { const { api } = useApi(); const { allAccounts } = useAccounts(); - return useCall(api.query.democracy?.votingOf?.multi, [allAccounts]); + return useCall(api.query.democracy?.votingOf?.multi, [allAccounts]); } export const useDelegations = createNamedHook('useDelegations', useDelegationsImpl); diff --git a/packages/react-hooks/src/useOwnEraRewards.ts b/packages/react-hooks/src/useOwnEraRewards.ts index b8fe0c3..a001dbf 100644 --- a/packages/react-hooks/src/useOwnEraRewards.ts +++ b/packages/react-hooks/src/useOwnEraRewards.ts @@ -6,7 +6,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { DeriveEraPoints, DeriveEraRewards, DeriveStakerReward } from '@pezkuwi/api-derive/types'; import type { u32, Vec } from '@pezkuwi/types'; import type { EraIndex } from '@pezkuwi/types/interfaces'; -import type { PalletStakingStakingLedger } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingStakingLedger } from '@pezkuwi/types/lookup'; import type { StakerState } from './types.js'; import { useCallback, useEffect, useState } from 'react'; @@ -46,7 +46,7 @@ const EMPTY_STATE: State = { rewardCount: 0 }; -function getLegacyRewards (ledger: PalletStakingStakingLedger, claimedRewardsEras?: Vec): u32[] { +function getLegacyRewards (ledger: PezpalletStakingStakingLedger, claimedRewardsEras?: Vec): u32[] { const legacyRewards = ledger.legacyClaimedRewards || (ledger as unknown as { claimedRewards: u32[] }).claimedRewards || []; return legacyRewards.concat(claimedRewardsEras?.toArray() || []); diff --git a/packages/react-hooks/src/usePreimage.ts b/packages/react-hooks/src/usePreimage.ts index 188235a..b96c9a1 100644 --- a/packages/react-hooks/src/usePreimage.ts +++ b/packages/react-hooks/src/usePreimage.ts @@ -4,7 +4,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { Bytes, u32, u128 } from '@pezkuwi/types'; import type { AccountId, Hash } from '@pezkuwi/types/interfaces'; -import type { FrameSupportPreimagesBounded, PalletPreimageRequestStatus } from '@pezkuwi/types/lookup'; +import type { PezframeSupportPreimagesBounded, PezpalletPreimageRequestStatus } from '@pezkuwi/types/lookup'; import type { ITuple } from '@pezkuwi/types/types'; import type { HexString } from '@pezkuwi/util/types'; import type { Preimage, PreimageDeposit, PreimageStatus } from './types.js'; @@ -65,7 +65,7 @@ export function getParamType (api: ApiPromise): Result { } /** @internal Unwraps a passed preimage hash into components */ -export function getPreimageHash (api: ApiPromise, hashOrBounded: Hash | HexString | FrameSupportPreimagesBounded): StatusParams { +export function getPreimageHash (api: ApiPromise, hashOrBounded: Hash | HexString | PezframeSupportPreimagesBounded): StatusParams { let proposalHash: HexString | undefined; let inlineData: Uint8Array | undefined; @@ -84,7 +84,7 @@ export function getPreimageHash (api: ApiPromise, hashOrBounded: Hash | HexStrin } else if (hashOrBounded.isLookup) { proposalHash = hashOrBounded.asLookup.hash_.toHex(); } else { - console.error(`Unhandled FrameSupportPreimagesBounded type ${hashOrBounded.type}`); + console.error(`Unhandled PezframeSupportPreimagesBounded type ${hashOrBounded.type}`); } } @@ -165,7 +165,7 @@ function convertDeposit (deposit?: [AccountId, u128] | null): PreimageDeposit | } /** @internal Returns the parameters required for a call to bytes */ -function getBytesParams (interimResult: PreimageStatus, someOptStatus: Option): BytesParams { +function getBytesParams (interimResult: PreimageStatus, someOptStatus: Option): BytesParams { const result = objectSpread({}, interimResult, { status: someOptStatus.unwrapOr(null) }); @@ -201,7 +201,7 @@ function getBytesParams (interimResult: PreimageStatus, someOptStatus: Option>(!inlineData && paramsStatus && api.query.preimage?.statusFor, paramsStatus); - const optRequstStatus = useCall>(!inlineData && paramsStatus && api.query.preimage?.requestStatusFor, paramsStatus); + const optStatus = useCall>(!inlineData && paramsStatus && api.query.preimage?.statusFor, paramsStatus); + const optRequstStatus = useCall>(!inlineData && paramsStatus && api.query.preimage?.requestStatusFor, paramsStatus); const someOptStatus = optStatus?.isSome ? optStatus : optRequstStatus; // from the retrieved status (if any), get the on-chain stored bytes diff --git a/packages/react-hooks/src/useProxies.ts b/packages/react-hooks/src/useProxies.ts index c0ad06e..036f029 100644 --- a/packages/react-hooks/src/useProxies.ts +++ b/packages/react-hooks/src/useProxies.ts @@ -3,7 +3,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { AccountId } from '@pezkuwi/types/interfaces'; -import type { KitchensinkRuntimeProxyType, PalletProxyProxyDefinition } from '@pezkuwi/types/lookup'; +import type { KitchensinkRuntimeProxyType, PezpalletProxyProxyDefinition } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import { createNamedHook } from './createNamedHook.js'; @@ -12,11 +12,11 @@ import { useApi } from './useApi.js'; import { useCall } from './useCall.js'; const OPTS = { - transform: (result: [([AccountId, KitchensinkRuntimeProxyType] | PalletProxyProxyDefinition)[], BN][], api: ApiPromise): [PalletProxyProxyDefinition[], BN][] => + transform: (result: [([AccountId, KitchensinkRuntimeProxyType] | PezpalletProxyProxyDefinition)[], BN][], api: ApiPromise): [PezpalletProxyProxyDefinition[], BN][] => api.tx.proxy.addProxy.meta.args.length === 3 - ? result as [PalletProxyProxyDefinition[], BN][] - : (result as [[AccountId, KitchensinkRuntimeProxyType][], BN][]).map(([arr, bn]): [PalletProxyProxyDefinition[], BN] => - [arr.map(([delegate, proxyType]): PalletProxyProxyDefinition => + ? result as [PezpalletProxyProxyDefinition[], BN][] + : (result as [[AccountId, KitchensinkRuntimeProxyType][], BN][]).map(([arr, bn]): [PezpalletProxyProxyDefinition[], BN] => + [arr.map(([delegate, proxyType]): PezpalletProxyProxyDefinition => api.createType('ProxyDefinition', { delegate, proxyType @@ -24,11 +24,11 @@ const OPTS = { ) }; -function useProxiesImpl (): [PalletProxyProxyDefinition[], BN][] | undefined { +function useProxiesImpl (): [PezpalletProxyProxyDefinition[], BN][] | undefined { const { api } = useApi(); const { allAccounts } = useAccounts(); - return useCall<[PalletProxyProxyDefinition[], BN][]>(api.query.proxy?.proxies.multi, [allAccounts], OPTS); + return useCall<[PezpalletProxyProxyDefinition[], BN][]>(api.query.proxy?.proxies.multi, [allAccounts], OPTS); } export const useProxies = createNamedHook('useProxies', useProxiesImpl); diff --git a/packages/react-hooks/src/useRegions.ts b/packages/react-hooks/src/useRegions.ts index af5703f..0b0a76a 100644 --- a/packages/react-hooks/src/useRegions.ts +++ b/packages/react-hooks/src/useRegions.ts @@ -3,7 +3,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { Option, StorageKey } from '@pezkuwi/types'; -import type { PalletBrokerRegionId, PalletBrokerRegionRecord } from '@pezkuwi/types/lookup'; +import type { PezpalletBrokerRegionId, PezpalletBrokerRegionRecord } from '@pezkuwi/types/lookup'; import type { RegionInfo } from './types.js'; import { useEffect, useState } from 'react'; @@ -22,14 +22,14 @@ function extractInfo (core: number, start: number, end: number, owner: string, p } const OPT_KEY = { - transform: (keys: StorageKey<[PalletBrokerRegionId]>[]): PalletBrokerRegionId[] => + transform: (keys: StorageKey<[PezpalletBrokerRegionId]>[]): PezpalletBrokerRegionId[] => keys.map(({ args: [regionId] }) => regionId) }; function useRegionsImpl (api: ApiPromise): RegionInfo[] | undefined { const regionKeys = useMapKeys(api?.query?.broker.regions, [], OPT_KEY); - const regionInfo = useCall<[[PalletBrokerRegionId[]], Option[]]>(api?.query?.broker.regions.multi, [regionKeys], { withParams: true }); + const regionInfo = useCall<[[PezpalletBrokerRegionId[]], Option[]]>(api?.query?.broker.regions.multi, [regionKeys], { withParams: true }); const [state, setState] = useState(); diff --git a/packages/react-hooks/src/useWorkloadInfos.ts b/packages/react-hooks/src/useWorkloadInfos.ts index 79f22e1..65754ca 100644 --- a/packages/react-hooks/src/useWorkloadInfos.ts +++ b/packages/react-hooks/src/useWorkloadInfos.ts @@ -3,7 +3,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { StorageKey, u32, Vec } from '@pezkuwi/types'; -import type { PalletBrokerScheduleItem } from '@pezkuwi/types/lookup'; +import type { PezpalletBrokerScheduleItem } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { CoreWorkload } from './types.js'; @@ -23,7 +23,7 @@ export function sortByCore (dataArray?: T | T[]): T[ return sanitized.sort((a, b) => a.core - b.core); } -function extractInfo (info: PalletBrokerScheduleItem[], core: number): CoreWorkload { +function extractInfo (info: PezpalletBrokerScheduleItem[], core: number): CoreWorkload { const mask: string[] = processHexMask(info[0]?.mask); const assignment = info[0].assignment; @@ -46,7 +46,7 @@ const OPT_KEY = { function useWorkloadInfosImpl (api: ApiPromise, ready: boolean): CoreWorkload[] | undefined { const cores = useMapKeys(ready && api?.query.broker.workload, [], OPT_KEY); - const workloadInfo = useCall<[[BN[]], Vec[]]>(ready && api?.query.broker.workload.multi, [cores], { withParams: true }); + const workloadInfo = useCall<[[BN[]], Vec[]]>(ready && api?.query.broker.workload.multi, [cores], { withParams: true }); const [state, setState] = useState(); useEffect((): void => { diff --git a/packages/react-hooks/src/useWorkplanInfos.ts b/packages/react-hooks/src/useWorkplanInfos.ts index 865e162..865edf5 100644 --- a/packages/react-hooks/src/useWorkplanInfos.ts +++ b/packages/react-hooks/src/useWorkplanInfos.ts @@ -3,7 +3,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { Option, StorageKey, u16, u32, Vec } from '@pezkuwi/types'; -import type { PalletBrokerScheduleItem } from '@pezkuwi/types/lookup'; +import type { PezpalletBrokerScheduleItem } from '@pezkuwi/types/lookup'; import type { BN } from '@pezkuwi/util'; import type { CoreWorkplan } from './types.js'; @@ -23,7 +23,7 @@ export function sortByCore (dataArray?: T | T[]): T[ return sanitized.sort((a, b) => a.core - b.core); } -function extractInfo (info: Vec, core: number, timeslice: number): CoreWorkplan { +function extractInfo (info: Vec, core: number, timeslice: number): CoreWorkplan { const mask: string[] = processHexMask(info[0]?.mask); const assignment = info[0].assignment; @@ -52,7 +52,7 @@ function useWorkplanInfosImpl (api: ApiPromise, ready: boolean): CoreWorkplan[] return value[0]; }); - const workplanInfo = useCall<[[[u32, u16][]], Option>[]]>(ready && api?.query.broker.workplan.multi, [sanitizedKeys], { withParams: true }); + const workplanInfo = useCall<[[[u32, u16][]], Option>[]]>(ready && api?.query.broker.workplan.multi, [sanitizedKeys], { withParams: true }); const [state, setState] = useState(); diff --git a/packages/react-hooks/src/utils/dataProcessing.ts b/packages/react-hooks/src/utils/dataProcessing.ts index 7b96503..772644c 100644 --- a/packages/react-hooks/src/utils/dataProcessing.ts +++ b/packages/react-hooks/src/utils/dataProcessing.ts @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletBrokerScheduleItem } from '@pezkuwi/types/lookup'; +import type { PezpalletBrokerScheduleItem } from '@pezkuwi/types/lookup'; import { BN } from '@pezkuwi/util'; @@ -9,7 +9,7 @@ export function hexToBin (hex: string): string { return parseInt(hex, 16).toString(2); } -export function processHexMask (mask: PalletBrokerScheduleItem['mask'] | undefined): string[] { +export function processHexMask (mask: PezpalletBrokerScheduleItem['mask'] | undefined): string[] { if (!mask) { return []; } diff --git a/packages/react-hooks/tsconfig.build.json b/packages/react-hooks/tsconfig.build.json index c39f53c..c36325f 100644 --- a/packages/react-hooks/tsconfig.build.json +++ b/packages/react-hooks/tsconfig.build.json @@ -5,6 +5,11 @@ "outDir": "./build", "rootDir": "./src" }, + "include": [ + "src/**/*.ts", + "src/**/*.tsx", + "src/**/*.d.ts" + ], "exclude": [ "src/ctx/Api.tsx", "src/ctx/types.ts" diff --git a/packages/react-params/src/Param/Cid.tsx b/packages/react-params/src/Param/Cid.tsx index 4d5e46c..fea2daf 100644 --- a/packages/react-params/src/Param/Cid.tsx +++ b/packages/react-params/src/Param/Cid.tsx @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletAllianceCid } from '@pezkuwi/types/lookup'; +import type { PezpalletAllianceCid } from '@pezkuwi/types/lookup'; import type { Props } from '../types.js'; import React, { useCallback, useState } from 'react'; @@ -19,7 +19,7 @@ function Cid (props: Props): React.ReactElement { const [isValid, setIsValid] = useState(false); const [ipfsCid] = useState(() => isDisabled && defaultValue && isCodec(defaultValue.value) - ? toIpfsCid(defaultValue.value as PalletAllianceCid) + ? toIpfsCid(defaultValue.value as PezpalletAllianceCid) : null ); const [isStruct] = useState(() => isDisabled || !defaultValue || isCodec(defaultValue.value)); diff --git a/packages/react-params/src/Param/findComponent.ts b/packages/react-params/src/Param/findComponent.ts index 53f7a77..5ac4ff2 100644 --- a/packages/react-params/src/Param/findComponent.ts +++ b/packages/react-params/src/Param/findComponent.ts @@ -59,7 +59,7 @@ const componentDef: TypeToComponent[] = [ { c: Bool, t: ['bool'] }, { c: Bytes, t: ['Bytes', 'Vec'] }, { c: Call, t: ['Call', 'Proposal', 'RuntimeCall'] }, - { c: Cid, t: ['PalletAllianceCid'] }, + { c: Cid, t: ['PezpalletAllianceCid'] }, { c: Code, t: ['Code'] }, { c: DispatchError, t: DISPATCH_ERROR }, { c: DispatchResult, t: ['DispatchResult', 'Result'] }, diff --git a/packages/react-params/src/util.ts b/packages/react-params/src/util.ts index 343092a..e24f860 100644 --- a/packages/react-params/src/util.ts +++ b/packages/react-params/src/util.ts @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletAllianceCid } from '@pezkuwi/types/lookup'; +import type { PezpalletAllianceCid } from '@pezkuwi/types/lookup'; import type { ExpandedCid } from './types.js'; import { CID, digest, varint } from 'multiformats'; @@ -27,7 +27,7 @@ export function fromIpfsCid (cid: string): ExpandedCid | null { } } -export function toIpfsCid (cid: PalletAllianceCid): string | null { +export function toIpfsCid (cid: PezpalletAllianceCid): string | null { try { const { codec, hash_: { code, digest: _bytes }, version } = cid; diff --git a/packages/react-query/src/PoolSize.tsx b/packages/react-query/src/PoolSize.tsx index 8d561b4..eeda75a 100644 --- a/packages/react-query/src/PoolSize.tsx +++ b/packages/react-query/src/PoolSize.tsx @@ -1,7 +1,7 @@ // Copyright 2017-2026 @pezkuwi/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletBrokerStatusRecord } from '@pezkuwi/types/lookup'; +import type { PezpalletBrokerStatusRecord } from '@pezkuwi/types/lookup'; import React from 'react'; @@ -14,7 +14,7 @@ interface Props { function PoolSize ({ children, className = '' }: Props): React.ReactElement { const { api } = useApi(); - const status = useCall(api.query.broker?.status); + const status = useCall(api.query.broker?.status); let systemPool = 0; let privatePool = 0; let poolSize = ''; diff --git a/packages/react-signer/src/Address.tsx b/packages/react-signer/src/Address.tsx index cc34666..24431e0 100644 --- a/packages/react-signer/src/Address.tsx +++ b/packages/react-signer/src/Address.tsx @@ -6,7 +6,7 @@ import type { SubmittableExtrinsic } from '@pezkuwi/api/types'; import type { QueueTx } from '@pezkuwi/react-components/Status/types'; import type { Option, Vec } from '@pezkuwi/types'; import type { AccountId, BalanceOf, Call, Multisig } from '@pezkuwi/types/interfaces'; -import type { KitchensinkRuntimeProxyType, PalletProxyProxyDefinition } from '@pezkuwi/types/lookup'; +import type { KitchensinkRuntimeProxyType, PezpalletProxyProxyDefinition } from '@pezkuwi/types/lookup'; import type { ITuple } from '@pezkuwi/types/types'; import type { BN } from '@pezkuwi/util'; import type { AddressFlags, AddressProxy } from './types.js'; @@ -176,9 +176,9 @@ async function queryForMultisig (api: ApiPromise, requestAddress: string | null, async function queryForProxy (api: ApiPromise, allAccounts: string[], address: string | null, tx: SubmittableExtrinsic<'promise'>): Promise { if (isFunction(api.query.proxy?.proxies)) { const { isProxied } = extractExternal(address); - const [_proxies] = await api.query.proxy.proxies | PalletProxyProxyDefinition>, BalanceOf]>>(address); + const [_proxies] = await api.query.proxy.proxies | PezpalletProxyProxyDefinition>, BalanceOf]>>(address); const proxies = api.tx.proxy.addProxy.meta.args.length === 3 - ? (_proxies as PalletProxyProxyDefinition[]).map(({ delay, delegate, proxyType }): [string, BN, KitchensinkRuntimeProxyType] => [delegate.toString(), delay, proxyType]) + ? (_proxies as PezpalletProxyProxyDefinition[]).map(({ delay, delegate, proxyType }): [string, BN, KitchensinkRuntimeProxyType] => [delegate.toString(), delay, proxyType]) : (_proxies as [AccountId, KitchensinkRuntimeProxyType][]).map(([delegate, proxyType]): [string, BN, KitchensinkRuntimeProxyType] => [delegate.toString(), BN_ZERO, proxyType]); const proxiesFilter = filterProxies(allAccounts, tx, proxies); diff --git a/packages/react-signer/src/PaymentInfo.tsx b/packages/react-signer/src/PaymentInfo.tsx index cdf299d..f844367 100644 --- a/packages/react-signer/src/PaymentInfo.tsx +++ b/packages/react-signer/src/PaymentInfo.tsx @@ -41,12 +41,13 @@ function PaymentInfo ({ accountId, className = '', extrinsic, isHeader, signerOp const info = await extrinsic.paymentInfo(accountId, signerOptions); if (signerOptions?.assetId) { + // eslint-disable-next-line @typescript-eslint/no-explicit-any const convertedFee = new BN((await api.call.assetConversionApi.quotePriceTokensForExactTokens( - signerOptions?.assetId as string, + signerOptions?.assetId as any, { interior: 'Here', parents: 1 - } as unknown as string, + } as any, info.partialFee, true )).toString()); diff --git a/packages/test-support/src/substrate/constants.ts b/packages/test-support/src/bizinikiwi/constants.ts similarity index 100% rename from packages/test-support/src/substrate/constants.ts rename to packages/test-support/src/bizinikiwi/constants.ts diff --git a/packages/test-support/src/substrate/index.ts b/packages/test-support/src/bizinikiwi/index.ts similarity index 100% rename from packages/test-support/src/substrate/index.ts rename to packages/test-support/src/bizinikiwi/index.ts diff --git a/packages/test-support/src/creation/bounties.ts b/packages/test-support/src/creation/bounties.ts index 0f16310..6c4236d 100644 --- a/packages/test-support/src/creation/bounties.ts +++ b/packages/test-support/src/creation/bounties.ts @@ -3,7 +3,7 @@ import type { ApiPromise } from '@pezkuwi/api'; import type { BountyIndex } from '@pezkuwi/types/interfaces'; -import type { PalletBountiesBounty, PalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; +import type { PezpalletBountiesBounty, PezpalletBountiesBountyStatus } from '@pezkuwi/types/lookup'; import type { Registry } from '@pezkuwi/types/types'; import { balanceOf } from './balance.js'; @@ -20,27 +20,27 @@ export class BountyFactory { public aBountyIndex = (index = 0): BountyIndex => this.#registry.createType('BountyIndex', index); - public defaultBounty = (): PalletBountiesBounty => - this.#registry.createType('Bounty'); + public defaultBounty = (): PezpalletBountiesBounty => + this.#registry.createType('Bounty'); - public aBountyStatus = (status: string): PalletBountiesBountyStatus => - this.#registry.createType('PalletBountiesBountyStatus', status); + public aBountyStatus = (status: string): PezpalletBountiesBountyStatus => + this.#registry.createType('PezpalletBountiesBountyStatus', status); - public bountyStatusWith = ({ curator = '5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY', status = 'Active', updateDue = 100000 } = {}): PalletBountiesBountyStatus => { + public bountyStatusWith = ({ curator = '5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY', status = 'Active', updateDue = 100000 } = {}): PezpalletBountiesBountyStatus => { if (status === 'Active') { - return this.#registry.createType('PalletBountiesBountyStatus', { active: { curator, updateDue }, status }); + return this.#registry.createType('PezpalletBountiesBountyStatus', { active: { curator, updateDue }, status }); } if (status === 'CuratorProposed') { - return this.#registry.createType('PalletBountiesBountyStatus', { curatorProposed: { curator }, status }); + return this.#registry.createType('PezpalletBountiesBountyStatus', { curatorProposed: { curator }, status }); } throw new Error('Unsupported status'); }; - public bountyWith = ({ status = 'Proposed', value = 1 } = {}): PalletBountiesBounty => + public bountyWith = ({ status = 'Proposed', value = 1 } = {}): PezpalletBountiesBounty => this.aBounty({ status: this.aBountyStatus(status), value: balanceOf(value) }); - public aBounty = ({ fee = balanceOf(10), status = this.aBountyStatus('Proposed'), value = balanceOf(500) }: Partial = {}): PalletBountiesBounty => - this.#registry.createType('Bounty', { fee, status, value }); + public aBounty = ({ fee = balanceOf(10), status = this.aBountyStatus('Proposed'), value = balanceOf(500) }: Partial = {}): PezpalletBountiesBounty => + this.#registry.createType('Bounty', { fee, status, value }); } diff --git a/packages/test-support/src/creation/staking.ts b/packages/test-support/src/creation/staking.ts index 169e388..cdaaaa1 100644 --- a/packages/test-support/src/creation/staking.ts +++ b/packages/test-support/src/creation/staking.ts @@ -1,12 +1,12 @@ // Copyright 2017-2026 @pezkuwi/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 -import type { PalletStakingStakingLedger } from '@pezkuwi/types/lookup'; +import type { PezpalletStakingStakingLedger } from '@pezkuwi/types/lookup'; import { TypeRegistry } from '@pezkuwi/types/create'; import { BN } from '@pezkuwi/util'; -export function makeStakingLedger (active: BN | number | string): PalletStakingStakingLedger { +export function makeStakingLedger (active: BN | number | string): PezpalletStakingStakingLedger { const reg = new TypeRegistry(); // Constructing the whole StakingLedger structure is hard, @@ -16,5 +16,5 @@ export function makeStakingLedger (active: BN | number | string): PalletStakingS // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment return { active: reg.createType('Compact', reg.createType('Balance', new BN(active))) - } as PalletStakingStakingLedger; + } as PezpalletStakingStakingLedger; } diff --git a/scripts/imgConvert.mjs b/scripts/imgConvert.mjs index 6fe12f1..eacf27d 100755 --- a/scripts/imgConvert.mjs +++ b/scripts/imgConvert.mjs @@ -1,10 +1,11 @@ // Copyright 2017-2026 @pezkuwi/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 -import { formatNumber, stringCamelCase } from '@pezkuwi/util'; import fs from 'node:fs'; import path from 'node:path'; +import { formatNumber, stringCamelCase } from '@pezkuwi/util'; + const MAX_SIZE = 48 * 1024; // FIXME The sorting here and the sorting from linting seems like a mismatch... diff --git a/scripts/ipfsUpload.mjs b/scripts/ipfsUpload.mjs index 16e8983..f73a990 100755 --- a/scripts/ipfsUpload.mjs +++ b/scripts/ipfsUpload.mjs @@ -7,11 +7,12 @@ import CrustPinner from '@crustio/crust-pin'; import PinataSDK from '@pinata/sdk'; // @ts-expect-error No definition file -import { execSync } from '@pezkuwi/dev/scripts/util.mjs'; -// @ts-expect-error No definition file import cloudflare from 'dnslink-cloudflare'; import fs from 'node:fs'; +// @ts-expect-error No definition file +import { execSync } from '@pezkuwi/dev/scripts/util.mjs'; + // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore Using ignore since the file won't be there in dev import { createWsEndpoints } from '../packages/apps-config/build/endpoints/index.js'; diff --git a/yarn.lock b/yarn.lock index f885246..d9971cd 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2328,9 +2328,9 @@ __metadata: languageName: unknown linkType: soft -"@pezkuwi/app-teyrchains@workspace:packages/page-parachains": +"@pezkuwi/app-teyrchains@workspace:packages/page-teyrchains": version: 0.0.0-use.local - resolution: "@pezkuwi/app-teyrchains@workspace:packages/page-parachains" + resolution: "@pezkuwi/app-teyrchains@workspace:packages/page-teyrchains" dependencies: "@pezkuwi/react-components": "npm:^0.168.2-4-x" "@pezkuwi/react-query": "npm:^0.168.2-4-x" @@ -2511,16 +2511,6 @@ __metadata: languageName: node linkType: hard -"@pezkuwi/dev-test@npm:^0.85.1": - version: 0.85.1 - resolution: "@pezkuwi/dev-test@npm:0.85.1" - dependencies: - jsdom: "npm:^24.0.0" - tslib: "npm:^2.7.0" - checksum: 10/98253c862a0db3f59b10d761a9eba6ca96cac39f9608674de0ab6d8ee6d76c9a25d92d5ea6c4a003c86d36ab9fcda18e7c10ffd6155256a0e8de25d3a53ab997 - languageName: node - linkType: hard - "@pezkuwi/dev-ts@npm:^0.84.2": version: 0.84.3 resolution: "@pezkuwi/dev-ts@npm:0.84.3" @@ -2532,93 +2522,7 @@ __metadata: languageName: node linkType: hard -"@pezkuwi/dev-ts@npm:^0.85.1": - version: 0.85.1 - resolution: "@pezkuwi/dev-ts@npm:0.85.1" - dependencies: - json5: "npm:^2.2.3" - tslib: "npm:^2.7.0" - typescript: "npm:^5.5.4" - checksum: 10/badcf660f6c94ade4f4c56afff4c71f6bcee0790c5c666214a1dedbc686940e8784bd1d29d4a146c3666183212983f5aa0bfa744aa5b59acaedc6487cd88c327 - languageName: node - linkType: hard - -"@pezkuwi/dev@npm:^0.85.2": - version: 0.85.2 - resolution: "@pezkuwi/dev@npm:0.85.2" - dependencies: - "@eslint/js": "npm:^8.56.0" - "@pezkuwi/dev-test": "npm:^0.85.1" - "@pezkuwi/dev-ts": "npm:^0.85.1" - "@rollup/plugin-alias": "npm:^5.1.1" - "@rollup/plugin-commonjs": "npm:^25.0.8" - "@rollup/plugin-dynamic-import-vars": "npm:^2.1.5" - "@rollup/plugin-inject": "npm:^5.0.5" - "@rollup/plugin-json": "npm:^6.1.0" - "@rollup/plugin-node-resolve": "npm:^15.3.1" - "@tsconfig/strictest": "npm:^2.0.2" - "@typescript-eslint/eslint-plugin": "npm:^6.19.1" - "@typescript-eslint/parser": "npm:^6.19.1" - eslint: "npm:^8.56.0" - eslint-config-standard: "npm:^17.1.0" - eslint-import-resolver-node: "npm:^0.3.9" - eslint-import-resolver-typescript: "npm:^3.6.1" - eslint-plugin-deprecation: "npm:^2.0.0" - eslint-plugin-header: "npm:^3.1.1" - eslint-plugin-import: "npm:^2.29.1" - eslint-plugin-import-newlines: "npm:^1.3.4" - eslint-plugin-jest: "npm:^27.6.3" - eslint-plugin-n: "npm:^16.6.2" - eslint-plugin-promise: "npm:^6.1.1" - eslint-plugin-react: "npm:^7.33.2" - eslint-plugin-react-hooks: "npm:^4.6.0" - eslint-plugin-simple-import-sort: "npm:^10.0.0" - eslint-plugin-sort-destructure-keys: "npm:^1.5.0" - espree: "npm:^9.6.1" - gh-pages: "npm:^6.1.1" - gh-release: "npm:^7.0.2" - globals: "npm:^13.24.0" - json5: "npm:^2.2.3" - madge: "npm:^6.1.0" - rollup: "npm:^4.9.6" - rollup-plugin-cleanup: "npm:^3.2.1" - tslib: "npm:^2.7.0" - typescript: "npm:^5.5.4" - webpack: "npm:^5.89.0" - webpack-cli: "npm:^5.1.4" - webpack-dev-server: "npm:^4.15.1" - webpack-merge: "npm:^5.10.0" - webpack-subresource-integrity: "npm:^5.2.0-rc.1" - yargs: "npm:^17.7.2" - bin: - pezkuwi-ci-ghact-build: scripts/pezkuwi-ci-ghact-build.mjs - pezkuwi-ci-ghact-docs: scripts/pezkuwi-ci-ghact-docs.mjs - pezkuwi-ci-ghpages-force: scripts/pezkuwi-ci-ghpages-force.mjs - pezkuwi-dev-build-docs: scripts/pezkuwi-dev-build-docs.mjs - pezkuwi-dev-build-ts: scripts/pezkuwi-dev-build-ts.mjs - pezkuwi-dev-circular: scripts/pezkuwi-dev-circular.mjs - pezkuwi-dev-clean-build: scripts/pezkuwi-dev-clean-build.mjs - pezkuwi-dev-contrib: scripts/pezkuwi-dev-contrib.mjs - pezkuwi-dev-copy-dir: scripts/pezkuwi-dev-copy-dir.mjs - pezkuwi-dev-copy-to: scripts/pezkuwi-dev-copy-to.mjs - pezkuwi-dev-deno-map: scripts/pezkuwi-dev-deno-map.mjs - pezkuwi-dev-run-lint: scripts/pezkuwi-dev-run-lint.mjs - pezkuwi-dev-run-node-ts: scripts/pezkuwi-dev-run-node-ts.mjs - pezkuwi-dev-run-test: scripts/pezkuwi-dev-run-test.mjs - pezkuwi-dev-version: scripts/pezkuwi-dev-version.mjs - pezkuwi-dev-yarn-only: scripts/pezkuwi-dev-yarn-only.mjs - pezkuwi-exec-eslint: scripts/pezkuwi-exec-eslint.mjs - pezkuwi-exec-ghpages: scripts/pezkuwi-exec-ghpages.mjs - pezkuwi-exec-ghrelease: scripts/pezkuwi-exec-ghrelease.mjs - pezkuwi-exec-node-test: scripts/pezkuwi-exec-node-test.mjs - pezkuwi-exec-rollup: scripts/pezkuwi-exec-rollup.mjs - pezkuwi-exec-tsc: scripts/pezkuwi-exec-tsc.mjs - pezkuwi-exec-webpack: scripts/pezkuwi-exec-webpack.mjs - checksum: 10/bfd248ad2ba8db15d6005652c3d4f4ca0ba8fe675be860ec1cfbbf8124dea5fa3c67b397ac0b30ba6d47d802b6b2743bf3ac898f683341ef34c00dafef18a55b - languageName: node - linkType: hard - -"@pezkuwi/dev@npm:^0.85.3": +"@pezkuwi/dev@npm:^0.85.2, @pezkuwi/dev@npm:^0.85.3": version: 0.85.3 resolution: "@pezkuwi/dev@npm:0.85.3" dependencies: @@ -2693,12 +2597,12 @@ __metadata: languageName: node linkType: hard -"@pezkuwi/extension-compat-metamask@npm:^0.62.4": - version: 0.62.10 - resolution: "@pezkuwi/extension-compat-metamask@npm:0.62.10" +"@pezkuwi/extension-compat-metamask@npm:^0.62.13": + version: 0.62.13 + resolution: "@pezkuwi/extension-compat-metamask@npm:0.62.13" dependencies: "@metamask/detect-provider": "npm:^2.0.0" - "@pezkuwi/extension-inject": "npm:0.62.10" + "@pezkuwi/extension-inject": "npm:^0.62.12" "@pezkuwi/types": "npm:^16.5.3" "@pezkuwi/util": "npm:^14.0.5" tslib: "npm:^2.8.1" @@ -2706,15 +2610,15 @@ __metadata: peerDependencies: "@pezkuwi/api": "*" "@pezkuwi/util": "*" - checksum: 10/f7d9062d3880a56cb9e6e8ab139a36fe2122aeb3c1511356aac86596b25674177c356972ee9b2b40c8ffa67f9c5c349b7408e1afef9efa908fcc5ffd9aee0e53 + checksum: 10/3ab5f8c7eb8088226780fa32a4df8070cdb59919cde4294536a777bf3459b4dedffad2f3aaaf2642b6999a37efe1d72c4648f650b168fff4cbad60140b99fceb languageName: node linkType: hard -"@pezkuwi/extension-dapp@npm:^0.62.4": - version: 0.62.11 - resolution: "@pezkuwi/extension-dapp@npm:0.62.11" +"@pezkuwi/extension-dapp@npm:^0.62.13": + version: 0.62.13 + resolution: "@pezkuwi/extension-dapp@npm:0.62.13" dependencies: - "@pezkuwi/extension-inject": "npm:0.62.11" + "@pezkuwi/extension-inject": "npm:^0.62.12" "@pezkuwi/util": "npm:^14.0.5" "@pezkuwi/util-crypto": "npm:^14.0.5" tslib: "npm:^2.8.1" @@ -2722,13 +2626,13 @@ __metadata: "@pezkuwi/api": "*" "@pezkuwi/util": "*" "@pezkuwi/util-crypto": "*" - checksum: 10/74061cd048c0003c328f54cab7ad4916972677cd9dce234e91d4216a3fff400fc048c1b8e620b9c60947cbf10a598324ec5fc3c5e9128f561f1ab710c1c86d68 + checksum: 10/50d7ca024d10808d0365114860e25bf0d1c96372f6d7f0f7232ffde6638d2e7ecc0e87ffae4a8b960a9cb8593530416f081ee929afcfe39f7eaccedb829ba842 languageName: node linkType: hard -"@pezkuwi/extension-inject@npm:0.62.10": - version: 0.62.10 - resolution: "@pezkuwi/extension-inject@npm:0.62.10" +"@pezkuwi/extension-inject@npm:^0.62.12, @pezkuwi/extension-inject@npm:^0.62.13": + version: 0.62.13 + resolution: "@pezkuwi/extension-inject@npm:0.62.13" dependencies: "@pezkuwi/api": "npm:^16.5.5" "@pezkuwi/rpc-provider": "npm:^16.5.5" @@ -2740,25 +2644,7 @@ __metadata: peerDependencies: "@pezkuwi/api": "*" "@pezkuwi/util": "*" - checksum: 10/ac08dde8d59b4db61631856b825f286ab0b2a2acaf51150fa580d12b6654ddcfed40136254a3dcf364ae0a4fbde27bcbe87b2b95fe244614dba6307acf410887 - languageName: node - linkType: hard - -"@pezkuwi/extension-inject@npm:0.62.11": - version: 0.62.11 - resolution: "@pezkuwi/extension-inject@npm:0.62.11" - dependencies: - "@pezkuwi/api": "npm:^16.5.5" - "@pezkuwi/rpc-provider": "npm:^16.5.5" - "@pezkuwi/types": "npm:^16.5.5" - "@pezkuwi/util": "npm:^14.0.5" - "@pezkuwi/util-crypto": "npm:^14.0.5" - "@pezkuwi/x-global": "npm:^14.0.5" - tslib: "npm:^2.8.1" - peerDependencies: - "@pezkuwi/api": "*" - "@pezkuwi/util": "*" - checksum: 10/85440c8a876cd295f00ded2c2084378149bfdc2ee3bf75bc3a90b75d6e4b742ac845e00a7d1a6bfdc3708e38f4f4eb3e048cf9e4f5ff443b5b99482862f7ac39 + checksum: 10/de362be72f61adfa184993e73c2ffdd4cd07f1a5a8652949be7fbd89f3635ae38b14dd2d05eb3992987c3ca6e20eac78dc53f6ac0c9a2eecb892148c21908194 languageName: node linkType: hard @@ -2851,8 +2737,8 @@ __metadata: resolution: "@pezkuwi/react-api@workspace:packages/react-api" dependencies: "@pezkuwi/api": "npm:^16.5.6" - "@pezkuwi/extension-compat-metamask": "npm:^0.62.4" - "@pezkuwi/extension-dapp": "npm:^0.62.4" + "@pezkuwi/extension-compat-metamask": "npm:^0.62.13" + "@pezkuwi/extension-dapp": "npm:^0.62.13" "@pezkuwi/rpc-provider": "npm:^16.5.6" fflate: "npm:^0.8.1" rxjs: "npm:^7.8.1" @@ -5978,10 +5864,10 @@ __metadata: languageName: node linkType: hard -"@remix-run/router@npm:1.23.1": - version: 1.23.1 - resolution: "@remix-run/router@npm:1.23.1" - checksum: 10/f54845ad174564f157a2255aec8446a7f4f4e543d9d6ef9ec749d32d1fdc57273d9cc80574f87f411c2790fbe51a242273abe7002d118515038eaf4aefd3d988 +"@remix-run/router@npm:1.23.2": + version: 1.23.2 + resolution: "@remix-run/router@npm:1.23.2" + checksum: 10/50eb497854881bbd2e1016d4eb83c935ecd618e1c3888b74718851317e3b04edbaae9fe1baa49ec08c5c52cfe7118f4664e37144813d9500f45f922d6602a782 languageName: node linkType: hard @@ -9014,11 +8900,11 @@ __metadata: linkType: hard "baseline-browser-mapping@npm:^2.9.0": - version: 2.9.11 - resolution: "baseline-browser-mapping@npm:2.9.11" + version: 2.9.12 + resolution: "baseline-browser-mapping@npm:2.9.12" bin: baseline-browser-mapping: dist/cli.js - checksum: 10/d71fe6693f999ee0bf1fcd72b31c01390f2bfac40d179175817f24cdb11b19d14a102227a8fa28e0a4733a17c780458c17384c75f2227e45b0e8a0080caf6532 + checksum: 10/07af71d6139d177bfed83ed70ac6b12f3326903f67338a6e36fbb529dfc8f384da9b054650f0d44d1b2619e673ff1df2540f63bbf5d9412bad15101e6d657aff languageName: node linkType: hard @@ -9631,9 +9517,9 @@ __metadata: linkType: hard "caniuse-lite@npm:^1.0.30001759": - version: 1.0.30001762 - resolution: "caniuse-lite@npm:1.0.30001762" - checksum: 10/d60a589180198ac759fa1775e521862f03503286cc9354144adcd88e76d275f03b2b6e9cab1c606790eee9d6af5cedbedb048ec652f5ff77a2b229992b7c4845 + version: 1.0.30001763 + resolution: "caniuse-lite@npm:1.0.30001763" + checksum: 10/66efb73a641fe2612f561d0f32e5b55415b742dfa3b585f69891b2306cddd8f79bc1a1b0eaac42512686ba9cff59c049aaf1a50192eb5bd27d6f6890c934a5ae languageName: node linkType: hard @@ -14469,8 +14355,8 @@ __metadata: linkType: hard "i18next@npm:*": - version: 25.7.3 - resolution: "i18next@npm:25.7.3" + version: 25.7.4 + resolution: "i18next@npm:25.7.4" dependencies: "@babel/runtime": "npm:^7.28.4" peerDependencies: @@ -14478,7 +14364,7 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 10/ec6601b22660b2f0d2d3996e7ef6dd2ff24f6f6e4bee121b33ecd3d36fe11018a01af9e66c01a93e8b42669ca9735f6c0888621c46bc1894872db3ba836815d8 + checksum: 10/7b6ee8298741cf758332a6743f721039ac33d5324ea61c4e5868797e4070108921a64ffe245ca7a60bcfb3485bdb27e16bbbd02d1c7039415dca3a34fde7ccca languageName: node linkType: hard @@ -17982,6 +17868,7 @@ __metadata: dependencies: "@crustio/crust-pin": "npm:^1.0.0" "@pezkuwi/dev": "npm:^0.85.3" + "@pezkuwi/extension-inject": "npm:^0.62.13" "@pinata/sdk": "npm:^1.2.1" "@types/chart.js": "npm:^2.9.41" "@types/file-saver": "npm:^2.0.7" @@ -18942,26 +18829,26 @@ __metadata: linkType: hard "react-router-dom@npm:^6.21.0": - version: 6.30.2 - resolution: "react-router-dom@npm:6.30.2" + version: 6.30.3 + resolution: "react-router-dom@npm:6.30.3" dependencies: - "@remix-run/router": "npm:1.23.1" - react-router: "npm:6.30.2" + "@remix-run/router": "npm:1.23.2" + react-router: "npm:6.30.3" peerDependencies: react: ">=16.8" react-dom: ">=16.8" - checksum: 10/ca60fd157c8e1019c9994a7262a8c054326c2d5bba4bbd3b4a19918a1a21f1486cf7a1087dd3aee22c01381496b4712cd80cbd5b5388c956cdbb58541ee52194 + checksum: 10/db974d801070e9967a076b31edca902e127793e02dc79f364461b94e81846a588c241d72e069f5b586b4a90ffd99798f5cb97753ac9d22fe90afa6dc008ab520 languageName: node linkType: hard -"react-router@npm:6.30.2, react-router@npm:^6.21.0": - version: 6.30.2 - resolution: "react-router@npm:6.30.2" +"react-router@npm:6.30.3, react-router@npm:^6.21.0": + version: 6.30.3 + resolution: "react-router@npm:6.30.3" dependencies: - "@remix-run/router": "npm:1.23.1" + "@remix-run/router": "npm:1.23.2" peerDependencies: react: ">=16.8" - checksum: 10/537bd68aa9e8125e1b20702180d4d875421150280e2c4c039c663a105da05956a457cb4d0f4f6a56605d6cadf9b1c1282dc45a9845f81bdca9bc87364eafc073 + checksum: 10/1a51bdcc42b8d7979228dea8b5c44a28a4add9b681781f75b74f5f920d20058a92ffe5f1d0ba0621f03abe1384b36025b53b402515ecb35f27a6a2f2f25d6fbe languageName: node linkType: hard