diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 29238a4ab40d..6bdb71885ab4 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -6,8 +6,8 @@ 49 pan update Bifrost kusama on Subsquare (#9752) 46 Antoine Estienne Update moonbeam endpoints and moonbase logo and color (#6890) 41 MiZiet Apply styles to the unbonding icon (#6314) + 40 RadiumBlock Add Radiumblock endpoints to People Kusama and Coretime Polkadot (#12137) 39 Joakim Nyman Clean up and renaming of Dwellir endpoints (#11609) - 39 RadiumBlock Re-adding RadiumBlock as Shiden and Bifrost Polkadot Endpoint provider (#11112) 35 Yongfeng LI Update subsquare external links (#11985) 32 brenzi reactivate Integritee Paseo endpoint (#11831) 31 Stefanie Doll Set higher default gas limit, switch from bitlength u32 to u128 for input fields (#2743) @@ -202,6 +202,7 @@ 3 Bruno Škvorc Clarify signed message input (#3303) 3 Caos Update NFTMart logo (#5815) 3 Chris D'Costa Add Totem Stagex & remove Totem Lego & Wapex networks #8144 (#8145) + 3 Daniel Magro Added Spectrum Provider for Kusama Relay, Kusama Bridge Hub, and Polkadot Bridge Hub (#12138) 3 Dmitriy Zagrebin Return Robonomics endpoint (#12077) 3 Dmitry Selikhov Update pontem-types-bundle from 1.0.14 to 1.0.15 (#6191) 3 drgora Add VFlow Testnet (#11754) @@ -269,7 +270,6 @@ 2 composabledev added picasso logo (#6043) 2 CrabGopher Refactor provider names for Autonomys Chronos networks (#11942) 2 Dan Shields Update ED and reaping info in app (#4771) - 2 Daniel Magro Updated Simply Staking endpoint for Polkadot in productionRelayPolkadot.ts (#11778) 2 Daniel Olano Restore Virto provider for Kreivo in Kusama (#10363) 2 dansoft update manta network logo (#6972) 2 Danylo Kyrieiev update karmachain endpoints (#9883) @@ -302,6 +302,7 @@ 2 Krishna Singh Updated Polkadex mainnet and parachain endpoints (#9765) 2 Kyilkhor Moonsama listing + types (#9682) 2 Leonardo Razovic Polimec: add new RPC provider and change color (#10371) + 2 leoonf remove Nodle onfinality provider (#12192) 2 LL change riodefi network (#8446) 2 Lohsea Add new color and logo (#6004) 2 Loïs update allfeat testnet (#11214) @@ -379,6 +380,7 @@ 1 augustocollado Enables identity on Tanssi and Dancelight (#11924) 1 Bart200c add kylin network (#7865) 1 Bastian Köcher Update copyright year to make CI happy (#12142) + 1 Bear Wang refactor: remove references to Darwinia Crab and associated assets (#12131) 1 Beqa Abuladze Rename Creditcoin Classic to CC Enterprise (#10878) 1 blackjooohn NFTMart is available (#11606) 1 Blake Byrnes Add Argon Protocol Testnet (#10871) @@ -488,7 +490,6 @@ 1 Lauro Gripa Neto Add portuguese translation (#2940) 1 Leechael chore: Remove Phala PoC5 since it going to take down (#10082) 1 legape Add Chainflip networks (#10153) - 1 leoonf remove Onfinality's Aleph Zero and Integritee-Kusama endpoint (#11966) 1 Letho Coinversation (#6597) 1 Levi feat: support asset filter (#10423) 1 Liaoyi Remove Automata mainnet and contextfree testnet (#10531) diff --git a/package.json b/package.json index 6ceb05f9bc53..560e82d91326 100644 --- a/package.json +++ b/package.json @@ -16,9 +16,9 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "versions": { - "git": "0.170.2-2-x", + "git": "0.170.2-5-x", "npm": "0.170.1" }, "workspaces": [ diff --git a/packages/apps-config/package.json b/packages/apps-config/package.json index 58b678e3bc41..bf302d4092cb 100644 --- a/packages/apps-config/package.json +++ b/packages/apps-config/package.json @@ -13,7 +13,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "main": "index.js", "dependencies": { "@acala-network/type-definitions": "5.1.2", diff --git a/packages/apps-config/src/api/typesBundle.ts b/packages/apps-config/src/api/typesBundle.ts index 5b625798b276..89d32b490a2a 100644 --- a/packages/apps-config/src/api/typesBundle.ts +++ b/packages/apps-config/src/api/typesBundle.ts @@ -103910,6 +103910,15 @@ export const typesBundle = { null ], "types": { + "Juror": { + "status": "JurorStatus" + }, + "JurorStatus": { + "_enum": [ + "OK", + "Tardy" + ] + }, "Address": "MultiAddress", "Amount": "i128", "AmountOf": "i128", @@ -104035,6 +104044,197 @@ export const typesBundle = { ] }, "VestingBlockNumber": "u32", + "OrderSide": { + "_enum": [ + "Bid", + "Ask" + ] + }, + "Order": { + "side": "OrderSide", + "maker": "AccountId", + "taker": "Option", + "asset": "Asset", + "total": "Balance", + "price": "Balance", + "filled": "Balance" + }, + "MarketCreation": { + "_enum": [ + "Permissionless", + "Advised" + ] + }, + "MarketPeriod": { + "_enum": { + "Block": "Range", + "Timestamp": "Range" + } + }, + "MarketId": "u128", + "MarketType": { + "_enum": { + "Categorical": "u16", + "Scalar": "RangeInclusive" + } + }, + "MarketStatus": { + "_enum": [ + "Proposed", + "Active", + "Suspended", + "Closed", + "CollectingSubsidy", + "InsufficientSubsidy", + "Reported", + "Disputed", + "Resolved" + ] + }, + "Market": { + "creator": "AccountId", + "creation": "MarketCreation", + "creatorFee": "u8", + "oracle": "AccountId", + "metadata": "Vec", + "marketType": "MarketType", + "period": "MarketPeriod", + "scoringRule": "ScoringRule", + "status": "MarketStatus", + "report": "Option", + "resolvedOutcome": "Option", + "disputeMechanism": "MarketDisputeMechanism" + }, + "ScoringRule": { + "_enum": [ + "CPMM", + "RikiddoSigmoidFeeMarketEma" + ] + }, + "OutcomeReport": { + "_enum": { + "Categorical": "u16", + "Scalar": "u128" + } + }, + "Report": { + "at": "BlockNumber", + "by": "AccountId", + "outcome": "OutcomeReport" + }, + "MarketDispute": { + "at": "BlockNumber", + "by": "AccountId", + "outcome": "OutcomeReport" + }, + "MarketDisputeMechanism": { + "_enum": { + "Authorized": "AccountId", + "Court": null, + "SimpleDisputes": null + } + }, + "EmaConfig": { + "emaPeriod": "Timespan", + "emaPeriodEstimateAfter": "Option", + "smoothing": "u128" + }, + "EmaMarketVolume": { + "config": "EmaConfig", + "ema": "u128", + "multiplier": "u128", + "lastTime": "UnixTimestamp", + "state": "MarketVolumeState", + "startTime": "UnixTimestamp", + "volumesPerPeriod": "u128" + }, + "FeeSigmoid": { + "config": "FeeSigmoidConfig" + }, + "FeeSigmoidConfig": { + "m": "i128", + "p": "i128", + "n": "i128", + "initialFee": "i128", + "minRevenue": "i128" + }, + "MarketVolumeState": { + "_enum": [ + "Uninitialized", + "DataCollectionStarted", + "DataCollected" + ] + }, + "Rikiddo": { + "config": "RikiddoConfig", + "fees": "FeeSigmoid", + "maShort": "EmaMarketVolume", + "maLong": "EmaMarketVolume" + }, + "RikiddoConfig": { + "initialFee": "i128", + "log2E": "i128" + }, + "Timespan": { + "_enum": { + "Seconds": "u32", + "Minutes": "u32", + "Hours": "u32", + "Days": "u16", + "Weeks": "u16" + } + }, + "UnixTimestamp": "u64", + "Pool": { + "assets": "Vec", + "baseAsset": "Asset", + "marketId": "MarketId", + "poolStatus": "PoolStatus", + "scoringRule": "ScoringRule", + "swapFee": "Option", + "totalSubsidy": "Option", + "totalWeight": "Option", + "weights": "Option>" + }, + "CommonPoolEventParams": { + "poolId": "u128", + "who": "AccountId" + }, + "PoolAssetEvent": { + "asset": "Asset", + "bound": "Balance", + "cpep": "CommonPoolEventParams", + "transferred": "Balance" + }, + "PoolAssetsEvent": { + "assets": "Vec", + "bounds": "Vec", + "cpep": "CommonPoolEventParams", + "transferred": "Vec" + }, + "PoolId": "u128", + "PoolStatus": { + "_enum": [ + "Active", + "CollectingSubsidy", + "Closed", + "Clean", + "Initialized" + ] + }, + "SubsidyUntil": { + "marketId": "MarketId", + "period": "MarketPeriod" + }, + "SwapEvent": { + "assetAmountIn": "Balance", + "assetAmountOut": "Balance", + "assetBound": "Balance", + "assetIn": "Asset", + "assetOut": "Asset", + "cpep": "CommonPoolEventParams", + "maxPrice": "Balance" + }, "TokensAccountData": { "free": "Balance", "frozen": "Balance", diff --git a/packages/apps-config/src/endpoints/productionRelayKusama.ts b/packages/apps-config/src/endpoints/productionRelayKusama.ts index f5582c020549..e9f8b6b0ea48 100644 --- a/packages/apps-config/src/endpoints/productionRelayKusama.ts +++ b/packages/apps-config/src/endpoints/productionRelayKusama.ts @@ -5,7 +5,7 @@ import type { EndpointOption } from './types.js'; import { KUSAMA_GENESIS } from '../api/constants.js'; import { chainsAbandPNG, chainsAcurastSVG, chainsAltairSVG, chainsAmplitudeSVG, chainsAssethubKusamaSVG, chainsCoretimeKusamaSVG, chainsDorafactoryPNG, chainsGenshiroSVG, chainsGmJPEG, chainsKaruraSVG, chainsKicoPNG, chainsKintsugiPNG, chainsKreivoSVG, chainsKusamaSVG, chainsListenPNG, chainsPeopleKusamaSVG, chainsQpnPNG, chainsRiodefiPNG, chainsShidenPNG, chainsTinkerPNG, chainsTuringPNG, chainsUnorthodoxPNG } from '../ui/logos/chains/index.js'; -import { nodesApronPNG, nodesAresMarsPNG, nodesBajunPNG, nodesBasiliskPNG, nodesBifrostSVG, nodesBitcountryPNG, nodesBridgeHubBlackSVG, nodesCalamariPNG, nodesCrabSVG, nodesCurioSVG, nodesDatahighwayPNG, nodesEncointerBlueSVG, nodesHyperbridgePNG, nodesImbuePNG, nodesIpciSVG, nodesKabochaSVG, nodesKhalaSVG, nodesKrestPNG, nodesLoomNetworkPNG, nodesMoonriverSVG, nodesParallelSVG, nodesPicassoPNG, nodesPichiuPNG, nodesPolkasmithSVG, nodesQuartzPNG, nodesRegionxPNG, nodesRobonomicsSVG, nodesSakuraSVG, nodesShadowSVG, nodesSnowPNG, nodesSoraSubstrateSVG, nodesSubgameSVG, nodesSubsocialXSVG, nodesT1rnPNG, nodesTrustbasePNG, nodesXodePNG, nodesYerbanetworkPNG, nodesZeroSVG } from '../ui/logos/nodes/index.js'; +import { nodesApronPNG, nodesAresMarsPNG, nodesBajunPNG, nodesBasiliskPNG, nodesBifrostSVG, nodesBitcountryPNG, nodesBridgeHubBlackSVG, nodesCalamariPNG, nodesCurioSVG, nodesDatahighwayPNG, nodesEncointerBlueSVG, nodesHyperbridgePNG, nodesImbuePNG, nodesIpciSVG, nodesKabochaSVG, nodesKhalaSVG, nodesKrestPNG, nodesLoomNetworkPNG, nodesMoonriverSVG, nodesParallelSVG, nodesPicassoPNG, nodesPichiuPNG, nodesPolkasmithSVG, nodesQuartzPNG, nodesRegionxPNG, nodesRobonomicsSVG, nodesSakuraSVG, nodesShadowSVG, nodesSnowPNG, nodesSoraSubstrateSVG, nodesSubgameSVG, nodesSubsocialXSVG, nodesT1rnPNG, nodesTrustbasePNG, nodesXodePNG, nodesYerbanetworkPNG, nodesZeroSVG } from '../ui/logos/nodes/index.js'; import { getTeleports } from './util.js'; // The available endpoints that will show in the dropdown. For the most part (with the exception of @@ -128,21 +128,6 @@ export const prodParasKusama: Omit[] = [ logo: nodesCalamariPNG } }, - { - homepage: 'https://crab.network', - info: 'crab', - paraId: 2105, - providers: { - Darwinia: 'wss://crab-rpc.darwinia.network/' - // Dcdao: 'wss://crab-rpc.dcdao.box', // https://github.com/polkadot-js/apps/issues/11232 - // Dwellir: 'wss://darwiniacrab-rpc.n.dwellir.com' // https://github.com/polkadot-js/apps/issues/11965 - }, - text: 'Crab', - ui: { - color: '#512DBC', - logo: nodesCrabSVG - } - }, { homepage: 'https://crust.network/', info: 'shadow', @@ -896,7 +881,8 @@ export const prodParasKusamaCommon: EndpointOption[] = [ LuckyFriday: 'wss://rpc-bridge-hub-kusama.luckyfriday.io', OnFinality: 'wss://bridgehub-kusama.api.onfinality.io/public-ws', Parity: 'wss://kusama-bridge-hub-rpc.polkadot.io', - RadiumBlock: 'wss://bridgehub-kusama.public.curie.radiumblock.co/ws' + RadiumBlock: 'wss://bridgehub-kusama.public.curie.radiumblock.co/ws', + Spectrum: 'wss://spectrum-03.simplystaking.xyz/cG9sa2Fkb3QtMDMtOTFkMmYwZGYtcG9sa2Fkb3Q/balkpUVauqyv8g/kusamabridgehub/mainnet/' // Stakeworld: 'wss://rpc-bridgehub-kusama.stakeworld.io' }, relayName: 'kusama', @@ -961,7 +947,8 @@ export const prodParasKusamaCommon: EndpointOption[] = [ IBP2: 'wss://people-kusama.dotters.network', LuckyFriday: 'wss://rpc-people-kusama.luckyfriday.io', OnFinality: 'wss://people-kusama.api.onfinality.io/public-ws', - Parity: 'wss://kusama-people-rpc.polkadot.io' + Parity: 'wss://kusama-people-rpc.polkadot.io', + RadiumBlock: 'wss://people-kusama.public.curie.radiumblock.co/ws' // Stakeworld: 'wss://rpc-people-kusama.stakeworld.io' }, relayName: 'kusama', @@ -997,6 +984,7 @@ export const prodRelayKusama: EndpointOption = { OnFinality: 'wss://kusama.api.onfinality.io/public-ws', RadiumBlock: 'wss://kusama.public.curie.radiumblock.co/ws', // RockX: 'wss://rockx-ksm.w3node.com/polka-public-ksm/ws', // https://github.com/polkadot-js/apps/issues/11477 + Spectrum: 'wss://spectrum-03.simplystaking.xyz/cG9sa2Fkb3QtMDMtOTFkMmYwZGYtcG9sa2Fkb3Q/QXq7QZ6Q60NDzA/kusama/mainnet/', Stakeworld: 'wss://rpc-kusama.stakeworld.io', // SubQuery: 'wss://kusama.rpc.subquery.network/public/ws', https://github.com/polkadot-js/apps/issues/11026 'light client': 'light://substrate-connect/kusama' diff --git a/packages/apps-config/src/endpoints/productionRelayPolkadot.ts b/packages/apps-config/src/endpoints/productionRelayPolkadot.ts index bcf21921a00d..9de85bf95642 100644 --- a/packages/apps-config/src/endpoints/productionRelayPolkadot.ts +++ b/packages/apps-config/src/endpoints/productionRelayPolkadot.ts @@ -587,7 +587,7 @@ export const prodParasPolkadot: Omit[] = [ paraId: 2026, providers: { // Dwellir: 'wss://nodle-rpc.dwellir.com', // https://github.com/polkadot-js/apps/issues/11965 - OnFinality: 'wss://nodle-parachain.api.onfinality.io/public-ws' + // OnFinality: 'wss://nodle-parachain.api.onfinality.io/public-ws' }, text: 'Nodle', ui: { @@ -904,7 +904,8 @@ export const prodParasPolkadotCommon: EndpointOption[] = [ LuckyFriday: 'wss://rpc-bridge-hub-polkadot.luckyfriday.io', OnFinality: 'wss://bridgehub-polkadot.api.onfinality.io/public-ws', Parity: 'wss://polkadot-bridge-hub-rpc.polkadot.io', - RadiumBlock: 'wss://bridgehub-polkadot.public.curie.radiumblock.co/ws' + RadiumBlock: 'wss://bridgehub-polkadot.public.curie.radiumblock.co/ws', + Spectrum: 'wss://spectrum-03.simplystaking.xyz/cG9sa2Fkb3QtMDMtOTFkMmYwZGYtcG9sa2Fkb3Q/mgX--uWlEtmNKw/polkadotbridgehub/mainnet/' // Stakeworld: 'wss://rpc-bridge-hub-polkadot.stakeworld.io' }, relayName: 'polkadot', @@ -947,7 +948,8 @@ export const prodParasPolkadotCommon: EndpointOption[] = [ IBP2: 'wss://coretime-polkadot.dotters.network', LuckyFriday: 'wss://rpc-coretime-polkadot.luckyfriday.io', OnFinality: 'wss://coretime-polkadot.api.onfinality.io/public-ws', - Parity: 'wss://polkadot-coretime-rpc.polkadot.io' + Parity: 'wss://polkadot-coretime-rpc.polkadot.io', + RadiumBlock: 'wss://coretime-polkadot.public.curie.radiumblock.co/ws' // Stakeworld: 'wss://rpc-coretime-polkadot.stakeworld.io' }, relayName: 'polkadot', @@ -966,8 +968,8 @@ export const prodParasPolkadotCommon: EndpointOption[] = [ IBP2: 'wss://people-polkadot.dotters.network', LuckyFriday: 'wss://rpc-people-polkadot.luckyfriday.io', OnFinality: 'wss://people-polkadot.api.onfinality.io/public-ws', - Parity: 'wss://polkadot-people-rpc.polkadot.io' - // RadiumBlock: 'wss://people-polkadot.public.curie.radiumblock.co/ws', // https://github.com/polkadot-js/apps/issues/11791 + Parity: 'wss://polkadot-people-rpc.polkadot.io', + RadiumBlock: 'wss://people-polkadot.public.curie.radiumblock.co/ws' // Stakeworld: 'wss://rpc-people-polkadot.stakeworld.io' }, relayName: 'polkadot', @@ -1004,7 +1006,7 @@ export const prodRelayPolkadot: EndpointOption = { // 'Permanence DAO EU': 'wss://polkadot.rpc.permanence.io', // https://github.com/polkadot-js/apps/issues/12078 RadiumBlock: 'wss://polkadot.public.curie.radiumblock.co/ws', // RockX: 'wss://rockx-dot.w3node.com/polka-public-dot/ws', // https://github.com/polkadot-js/apps/issues/11439 - 'Simply Staking': 'wss://spectrum-03.simplystaking.xyz/cG9sa2Fkb3QtMDMtOTFkMmYwZGYtcG9sa2Fkb3Q/LjwBJpV3dIKyWQ/polkadot/mainnet/', + Spectrum: 'wss://spectrum-03.simplystaking.xyz/cG9sa2Fkb3QtMDMtOTFkMmYwZGYtcG9sa2Fkb3Q/LjwBJpV3dIKyWQ/polkadot/mainnet/', Stakeworld: 'wss://rpc-polkadot.stakeworld.io', SubQuery: 'wss://polkadot.rpc.subquery.network/public/ws', 'light client': 'light://substrate-connect/polkadot' diff --git a/packages/apps-config/src/links/subscan.ts b/packages/apps-config/src/links/subscan.ts index 299ee8d7ad1c..383fc1204301 100644 --- a/packages/apps-config/src/links/subscan.ts +++ b/packages/apps-config/src/links/subscan.ts @@ -33,7 +33,6 @@ export const Subscan: ExternalDef = { Continuum: 'continuum', 'Continuum Network': 'continuum', Coretime: 'coretime-polkadot', - Crab2: 'crab', Creditcoin: 'creditcoin', 'Creditcoin PoS Testnet': 'cc-enterprise-testnet', 'Creditcoin3 Testnet': 'creditcoin3-testnet', diff --git a/packages/apps-config/src/packageInfo.ts b/packages/apps-config/src/packageInfo.ts index 102619a7cff2..caecc3da7b3c 100644 --- a/packages/apps-config/src/packageInfo.ts +++ b/packages/apps-config/src/packageInfo.ts @@ -3,4 +3,4 @@ // Do not edit, auto-generated by @polkadot/dev -export const packageInfo = { name: '@polkadot/apps-config', path: 'auto', type: 'auto', version: '0.170.2-2-x' }; +export const packageInfo = { name: '@polkadot/apps-config', path: 'auto', type: 'auto', version: '0.170.2-5-x' }; diff --git a/packages/apps-config/src/settings/ethereumChains.ts b/packages/apps-config/src/settings/ethereumChains.ts index e569362b65f1..b638a748604b 100644 --- a/packages/apps-config/src/settings/ethereumChains.ts +++ b/packages/apps-config/src/settings/ethereumChains.ts @@ -9,7 +9,6 @@ export const ethereumChains = [ 'altbeacon-dev', 'armonia-eva', 'armonia-wall-e', - 'Crab2', 'Darwinia Koi', 'Darwinia2', 'datahaven-stagenet', diff --git a/packages/apps-config/src/ui/logos/nodes/crab.svg b/packages/apps-config/src/ui/logos/nodes/crab.svg deleted file mode 100644 index ba69d7b6db14..000000000000 --- a/packages/apps-config/src/ui/logos/nodes/crab.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/packages/apps-config/src/ui/logos/nodes/generated/crabSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/crabSVG.ts deleted file mode 100644 index 8df9b3238a84..000000000000 --- a/packages/apps-config/src/ui/logos/nodes/generated/crabSVG.ts +++ /dev/null @@ -1,6 +0,0 @@ -// Copyright 2017-2026 @polkadot/apps authors & contributors -// SPDX-License-Identifier: Apache-2.0 - -// Do not edit. Auto-generated via node scripts/imgConvert.mjs - -export const nodesCrabSVG = 'data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzYiIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCAzNiAzNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi44NDQ3IDE4Ljc4NjFDMTIuODQ0NyAxNi4yMTUzIDE0LjkyODggMTQuMTMxMiAxNy40OTk3IDE0LjEzMTJDMjAuMDcwNiAxNC4xMzEyIDIyLjE1NDcgMTYuMjE1MyAyMi4xNTQ3IDE4Ljc4NjFDMjIuMTU0NyAyMS4zNTcgMjAuMDcwNiAyMy40NDExIDE3LjQ5OTcgMjMuNDQxMUMxNC45Mjg4IDIzLjQ0MTEgMTIuODQ0NyAyMS4zNTcgMTIuODQ0NyAxOC43ODYxWk0xNy40OTk4IDE1LjI5NDlDMTkuNDI3OSAxNS4yOTQ5IDIwLjk5MSAxNi44NTggMjAuOTkxIDE4Ljc4NjFDMjAuOTkxIDIwLjcxNDMgMTkuNDI3OSAyMi4yNzc0IDE3LjQ5OTggMjIuMjc3NEMxNS41NzE2IDIyLjI3NzQgMTQuMDA4NSAyMC43MTQzIDE0LjAwODUgMTguNzg2MUMxNC4wMDg1IDE2Ljg1OCAxNS41NzE2IDE1LjI5NDkgMTcuNDk5OCAxNS4yOTQ5WiIgZmlsbD0iIzUxMkRCQyIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTAgMThWMTcuOTk3NkMwLjAwMTMyMTU1IDguMDU3NDEgOC4wNTk4MSAwIDE4IDBDMjcuOTQxMSAwIDM2IDguMDU4ODggMzYgMThDMzYgMjcuOTQxMSAyNy45NDExIDM2IDE4IDM2QzguMDU4ODggMzYgMCAyNy45NDExIDAgMThaTTIxLjYxMTMgOC4zMTI3NUwyMS41NzI4IDguMzEyNDRWMTAuNjM5OUwxOS45MjcxIDguOTk0MTRMMTkuOTA1NCA5LjAxNjA3QzE5LjQ5NyA5LjQzNTQyIDE5LjI0NTQgMTAuMDA4MyAxOS4yNDU0IDEwLjYzOTlDMTkuMjQ1NCAxMS45MjU0IDIwLjI4NzQgMTIuOTY3NCAyMS41NzI4IDEyLjk2NzRDMjIuODU4MyAxMi45Njc0IDIzLjkwMDMgMTEuOTI1NCAyMy45MDAzIDEwLjYzOTlDMjMuOTAwMyA5LjM2NzM0IDIyLjg3OSA4LjMzMzMgMjEuNjExMyA4LjMxMjc1Wk0yOC41NTUzIDEyLjM4NTZDMjguNTU1MyAxMS43NDI5IDI4LjAzNDMgMTEuMjIxOSAyNy4zOTE1IDExLjIyMTlDMjYuNzQ4OCAxMS4yMjE5IDI2LjIyNzggMTEuNzQyOSAyNi4yMjc4IDEyLjM4NTZDMjYuMjI3OCAxMi42MDk4IDI2LjI5MTIgMTIuODE5MiAyNi40MDExIDEyLjk5NjlMMjUuMDQxOCAxNS4wMzU5TDI1LjAzMTEgMTUuMDUxM0MyNC45MjU3IDE1LjE5ODggMjQuNzU3NiAxNS4yODg4IDI0LjU3NjQgMTUuMjk0N0wyNC41NTc2IDE1LjI5NUwyMi4xNTUgMTUuMjk0OUMyMS4wOTM1IDEzLjg4MTYgMTkuNDAzNCAxMi45Njc1IDE3LjQ5OTcgMTIuOTY3NUMxNS41OTYxIDEyLjk2NzUgMTMuOTA2IDEzLjg4MTYgMTIuODQ0NCAxNS4yOTQ5TDEwLjQ4MTQgMTUuMjk1TDEwLjQ2MjYgMTUuMjk0N0MxMC4yNzUyIDE1LjI4ODYgMTAuMTAxNyAxNS4xOTI1IDkuOTk3MjUgMTUuMDM1OUw4LjYzNzk1IDEyLjk5NjlDOC43NDc4MSAxMi44MTkyIDguODExMjEgMTIuNjA5OCA4LjgxMTIxIDEyLjM4NTZDOC44MTEyMSAxMS43NDI5IDguMjkwMTkgMTEuMjIxOSA3LjY0NzQ3IDExLjIyMTlDNy4wMDQ3NiAxMS4yMjE5IDYuNDgzNzMgMTEuNzQyOSA2LjQ4MzczIDEyLjM4NTZDNi40ODM3MyAxMy4wMTQ4IDYuOTgzMDkgMTMuNTI3NCA3LjYwNzEyIDEzLjU0ODdMOS4wMjg5NiAxNS42ODE0TDkuMDQ0NTQgMTUuNzA0NEM5LjM3MDAyIDE2LjE3NjIgOS45MDcwMSAxNi40NTg3IDEwLjQ4MTQgMTYuNDU4N0wxMi4xNjUyIDE2LjQ1ODZDMTIuMDAzOCAxNi44MjgxIDExLjg3OTYgMTcuMjE3NiAxMS43OTc0IDE3LjYyMjRMOC4xNzI1NiAxNy42MjI1TDguMTUzNzggMTcuNjIyMkM3Ljk2NjM3IDE3LjYxNjEgNy43OTI4NSAxNy41MiA3LjY4ODQyIDE3LjM2MzRMNi4zMTkzOSAxNS4zMDk3QzYuNDIzNzUgMTUuMTM1MyA2LjQ4MzczIDE0LjkzMTIgNi40ODM3MyAxNC43MTMxQzYuNDgzNzMgMTQuMDcwNCA1Ljk2MjcxIDEzLjU0OTQgNS4zMTk5OSAxMy41NDk0QzQuNjc3MjcgMTMuNTQ5NCA0LjE1NjI1IDE0LjA3MDQgNC4xNTYyNSAxNC43MTMxQzQuMTU2MjUgMTUuMzQ4NyA0LjY2NTc5IDE1Ljg2NTMgNS4yOTg2NiAxNS44NzY3TDYuNzIwMTMgMTguMDA4OUw2LjczNTcxIDE4LjAzMTlDNy4wNjExOSAxOC41MDM3IDcuNTk4MTggMTguNzg2MiA4LjE3MjU2IDE4Ljc4NjJMMTEuNjgxIDE4Ljc4NjJMMTEuNjgxNCAxOC44NTY1QzExLjY4NTkgMTkuMjMwNSAxMS43MjU2IDE5LjU5NjEgMTEuNzk3NCAxOS45NUw4LjE3MjU2IDE5Ljk1TDguMTQ0OCAxOS45NTAyQzcuNTgwOTEgMTkuOTU5MSA3LjA1NTk0IDIwLjI0MDEgNi43MzU3MSAyMC43MDQzTDYuNzIwMTMgMjAuNzI3M0w1LjI5ODY2IDIyLjg1OTVDNC42NjU3OSAyMi44NzA5IDQuMTU2MjUgMjMuMzg3NSA0LjE1NjI1IDI0LjAyM0M0LjE1NjI1IDI0LjY2NTggNC42NzcyNyAyNS4xODY4IDUuMzE5OTkgMjUuMTg2OEM1Ljk2MjcxIDI1LjE4NjggNi40ODM3MyAyNC42NjU4IDYuNDgzNzMgMjQuMDIzQzYuNDgzNzMgMjMuODA1IDYuNDIzNzUgMjMuNjAwOSA2LjMxOTM5IDIzLjQyNjVMNy42ODg0MiAyMS4zNzI4TDcuNjk5MDkgMjEuMzU3M0M3LjgwNDQ0IDIxLjIwOTggNy45NzI2MiAyMS4xMTk4IDguMTUzNzggMjEuMTE0TDguMTcyNTYgMjEuMTEzN0wxMi4xNjUyIDIxLjExMzhDMTIuMzQ2OCAyMS41MjkzIDEyLjU3NTQgMjEuOTE5NCAxMi44NDQ0IDIyLjI3NzVMMTAuNSAyMi4yNzc0TDEwLjQ3MjMgMjIuMjc3N0M5LjkwODM5IDIyLjI4NjYgOS4zODM0MiAyMi41Njc2IDkuMDYzMTkgMjMuMDMxOEw5LjA0NzYxIDIzLjA1NDhMNy42MjYxNSAyNS4xODdDNi45OTMyNyAyNS4xOTg0IDYuNDgzNzMgMjUuNzE0OSA2LjQ4MzczIDI2LjM1MDVDNi40ODM3MyAyNi45OTMyIDcuMDA0NzYgMjcuNTE0MyA3LjY0NzQ3IDI3LjUxNDNDOC4yOTAxOSAyNy41MTQzIDguODExMjEgMjYuOTkzMiA4LjgxMTIxIDI2LjM1MDVDOC44MTEyMSAyNi4xMzI1IDguNzUxMjMgMjUuOTI4NCA4LjY0Njg3IDI1Ljc1MzlMMTAuMDE1OSAyMy43MDAzTDEwLjAyNjYgMjMuNjg0OEMxMC4xMzE5IDIzLjUzNzMgMTAuMzAwMSAyMy40NDczIDEwLjQ4MTMgMjMuNDQxNUwxMC41IDIzLjQ0MTJMMTQuMDA4MSAyMy40NDEzQzE0Ljk4MDcgMjQuMTcyIDE2LjE4OTYgMjQuNjA0OSAxNy40OTk3IDI0LjYwNDlDMTguODA5OCAyNC42MDQ5IDIwLjAxODggMjQuMTcyIDIwLjk5MTQgMjMuNDQxM0wyNC41MzkgMjMuNDQxMkwyNC41NTc3IDIzLjQ0MTVDMjQuNzQ1MiAyMy40NDc1IDI0LjkxODcgMjMuNTQzNiAyNS4wMjMxIDIzLjcwMDNMMjYuMzkyMiAyNS43NTM5QzI2LjI4NzggMjUuOTI4NCAyNi4yMjc4IDI2LjEzMjQgMjYuMjI3OCAyNi4zNTA1QzI2LjIyNzggMjYuOTkzMiAyNi43NDg4IDI3LjUxNDMgMjcuMzkxNSAyNy41MTQzQzI4LjAzNDMgMjcuNTE0MyAyOC41NTUzIDI2Ljk5MzIgMjguNTU1MyAyNi4zNTA1QzI4LjU1NTMgMjUuNzE1IDI4LjA0NTggMjUuMTk4NCAyNy40MTI5IDI1LjE4N0wyNS45OTE0IDIzLjA1NDhMMjUuOTc1OCAyMy4wMzE4QzI1LjY1MDMgMjIuNTU5OSAyNS4xMTMzIDIyLjI3NzQgMjQuNTM5IDIyLjI3NzRMMjIuMTU1IDIyLjI3NzVDMjIuNDI0MSAyMS45MTk0IDIyLjY1MjcgMjEuNTI5MyAyMi44MzQyIDIxLjExMzhMMjYuODY2NCAyMS4xMTM3TDI2Ljg4NTIgMjEuMTE0QzI3LjA3MjYgMjEuMTIgMjcuMjQ2MiAyMS4yMTYxIDI3LjM1MDYgMjEuMzcyOEwyOC43MTk3IDIzLjQyNjRDMjguNjE1MyAyMy42MDA5IDI4LjU1NTMgMjMuODA1IDI4LjU1NTMgMjQuMDIzQzI4LjU1NTMgMjQuNjY1OCAyOS4wNzYzIDI1LjE4NjggMjkuNzE5IDI1LjE4NjhDMzAuMzYxNyAyNS4xODY4IDMwLjg4MjggMjQuNjY1OCAzMC44ODI4IDI0LjAyM0MzMC44ODI4IDIzLjM4NzUgMzAuMzczMyAyMi44NzA5IDI5Ljc0MDQgMjIuODU5NUwyOC4zMTg5IDIwLjcyNzNMMjguMzAzMyAyMC43MDQzQzI3Ljk3NzggMjAuMjMyNSAyNy40NDA4IDE5Ljk1IDI2Ljg2NjQgMTkuOTVMMjMuMjAyIDE5Ljk1QzIzLjI3ODQgMTkuNTc0IDIzLjMxODQgMTkuMTg0OCAyMy4zMTg0IDE4Ljc4NjJMMjYuODY2NCAxOC43ODYyTDI2Ljg5NDIgMTguNzg2QzI3LjQ1ODEgMTguNzc3MSAyNy45ODMxIDE4LjQ5NjEgMjguMzAzMyAxOC4wMzE5TDI4LjMxODkgMTguMDA4OUwyOS43NDA0IDE1Ljg3NjdDMzAuMzczMyAxNS44NjUzIDMwLjg4MjggMTUuMzQ4NyAzMC44ODI4IDE0LjcxMzFDMzAuODgyOCAxNC4wNzA0IDMwLjM2MTcgMTMuNTQ5NCAyOS43MTkgMTMuNTQ5NEMyOS4wNzYzIDEzLjU0OTQgMjguNTU1MyAxNC4wNzA0IDI4LjU1NTMgMTQuNzEzMUMyOC41NTUzIDE0LjkzMTIgMjguNjE1MyAxNS4xMzUzIDI4LjcxOTcgMTUuMzA5OEwyNy4zNTA2IDE3LjM2MzRMMjcuMzM5OSAxNy4zNzg4QzI3LjIzNDYgMTcuNTI2MyAyNy4wNjY0IDE3LjYxNjMgMjYuODg1MiAxNy42MjIyTDI2Ljg2NjQgMTcuNjIyNUwyMy4yMDIgMTcuNjIyNEMyMy4xMTk5IDE3LjIxNzYgMjIuOTk1NyAxNi44MjgxIDIyLjgzNDIgMTYuNDU4NkwyNC41NTc2IDE2LjQ1ODdMMjQuNTg1NCAxNi40NTg1QzI1LjE0OTMgMTYuNDQ5NiAyNS42NzQyIDE2LjE2ODYgMjUuOTk0NSAxNS43MDQ0TDI2LjAxMDEgMTUuNjgxNEwyNy40MzE5IDEzLjU0ODdDMjguMDU1OSAxMy41Mjc0IDI4LjU1NTMgMTMuMDE0OCAyOC41NTUzIDEyLjM4NTZaTTEzLjQyNjYgOC4zMTI0NFYxMC42Mzk5TDE1LjA3MjQgOC45OTQxNEMxNS40OTM2IDkuNDE1MzMgMTUuNzU0MSA5Ljk5NzIxIDE1Ljc1NDEgMTAuNjM5OUMxNS43NTQxIDExLjkyNTQgMTQuNzEyIDEyLjk2NzQgMTMuNDI2NiAxMi45Njc0QzEyLjE0MTIgMTIuOTY3NCAxMS4wOTkxIDExLjkyNTQgMTEuMDk5MSAxMC42Mzk5QzExLjA5OTEgOS4zNjczNCAxMi4xMjA0IDguMzMzMyAxMy4zODgxIDguMzEyNzVMMTMuNDI2NiA4LjMxMjQ0WiIgZmlsbD0iIzUxMkRCQyIvPgo8L3N2Zz4K'; diff --git a/packages/apps-config/src/ui/logos/nodes/index.ts b/packages/apps-config/src/ui/logos/nodes/index.ts index 125398444c35..44db2c523351 100644 --- a/packages/apps-config/src/ui/logos/nodes/index.ts +++ b/packages/apps-config/src/ui/logos/nodes/index.ts @@ -33,7 +33,6 @@ export { nodesCollectivesSVG } from './generated/collectivesSVG.js'; export { nodesCompetitorsClubPNG } from './generated/competitors-clubPNG.js'; export { nodesConftiSVG } from './generated/conftiSVG.js'; export { nodesContinuumPNG } from './generated/continuumPNG.js'; -export { nodesCrabSVG } from './generated/crabSVG.js'; export { nodesCrownSterlingPNG } from './generated/crown-sterlingPNG.js'; export { nodesCrustMaxwellSVG } from './generated/crust-maxwellSVG.js'; export { nodesCrustParachainSVG } from './generated/crustParachainSVG.js'; diff --git a/packages/apps-electron/package.json b/packages/apps-electron/package.json index bc9e6dc814b5..ffaf2b023025 100644 --- a/packages/apps-electron/package.json +++ b/packages/apps-electron/package.json @@ -15,7 +15,7 @@ "url": "https://github.com/polkadot-js/apps.git" }, "sideEffects": false, - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "main": "build/electron.js", "dependencies": { "electron-log": "^5.0.1", diff --git a/packages/apps-routing/package.json b/packages/apps-routing/package.json index 1547a98286c0..c12ed907ae22 100644 --- a/packages/apps-routing/package.json +++ b/packages/apps-routing/package.json @@ -14,7 +14,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "peerDependencies": { "react": "*", "react-dom": "*", diff --git a/packages/apps/package.json b/packages/apps/package.json index 1a6332b6a7ba..a2b7bdcf55d8 100644 --- a/packages/apps/package.json +++ b/packages/apps/package.json @@ -14,18 +14,18 @@ }, "sideEffects": true, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { "@acala-network/chopsticks-core": "^1.2.1", - "@polkadot/apps-config": "^0.170.2-2-x", - "@polkadot/apps-routing": "^0.170.2-2-x", + "@polkadot/apps-config": "^0.170.2-5-x", + "@polkadot/apps-routing": "^0.170.2-5-x", "@polkadot/dev": "^0.83.3", - "@polkadot/react-api": "^0.170.2-2-x", - "@polkadot/react-components": "^0.170.2-2-x", - "@polkadot/react-hooks": "^0.170.2-2-x", - "@polkadot/react-params": "^0.170.2-2-x", - "@polkadot/react-query": "^0.170.2-2-x", - "@polkadot/react-signer": "^0.170.2-2-x", + "@polkadot/react-api": "^0.170.2-5-x", + "@polkadot/react-components": "^0.170.2-5-x", + "@polkadot/react-hooks": "^0.170.2-5-x", + "@polkadot/react-params": "^0.170.2-5-x", + "@polkadot/react-query": "^0.170.2-5-x", + "@polkadot/react-signer": "^0.170.2-5-x", "punycode": "^2.3.1", "query-string": "^8.1.0", "react": "^18.2.0", diff --git a/packages/apps/public/locales/fr/translation.json b/packages/apps/public/locales/fr/translation.json index 44dab5270f74..1372910c29cd 100644 --- a/packages/apps/public/locales/fr/translation.json +++ b/packages/apps/public/locales/fr/translation.json @@ -1308,7 +1308,6 @@ "rpc.centrifuge": "Centrifuge", "rpc.chainx": "ChainX", "rpc.clover.finance": "Clover", - "rpc.crab": "Darwinia Crab", "rpc.crust.network": "Crust Maxwell", "rpc.custom": "Environment personnalisé", "rpc.custom.entry": "Personalisé {{WS_URL}}", diff --git a/packages/apps/public/locales/it/translation.json b/packages/apps/public/locales/it/translation.json index b7ec4e053a1a..78be44774a98 100644 --- a/packages/apps/public/locales/it/translation.json +++ b/packages/apps/public/locales/it/translation.json @@ -1754,7 +1754,6 @@ "rpc.kusama.bajun": "", "rpc.kusama.basilisk": "", "rpc.kusama.bifrost": "", - "rpc.kusama.crab-redirect": "", "rpc.kusama.encointer": "", "rpc.kusama.genshiro": "", "rpc.kusama.integritee": "", @@ -1792,7 +1791,6 @@ "rpc.prod.centrifuge": "", "rpc.prod.chainx": "", "rpc.prod.continuum": "", - "rpc.prod.crab": "", "rpc.prod.crust": "", "rpc.prod.darwinia": "", "rpc.prod.dock-pos-mainnet": "", @@ -1821,7 +1819,6 @@ "rpc.rococo.chainx": "", "rpc.rococo.clover": "", "rpc.rococo.contracts": "", - "rpc.rococo.crab": "", "rpc.rococo.crust": "", "rpc.rococo.darwinia": "", "rpc.rococo.datahighway": "", diff --git a/packages/apps/public/locales/ko/translation.json b/packages/apps/public/locales/ko/translation.json index df64d3946661..c69bba93861e 100644 --- a/packages/apps/public/locales/ko/translation.json +++ b/packages/apps/public/locales/ko/translation.json @@ -1271,7 +1271,6 @@ "rpc.beresheet": "베레시트(Edgware 테스트넷, Commonwealth Labs가 운영함)", "rpc.bifrost": "Bifrost Asgard", "rpc.centrifuge": "센츄러퓨지", - "rpc.crab": "다위니아 크랩", "rpc.crust.network": "크러스트 맥스엘 CC2", "rpc.custom": "특수 설정", "rpc.custom.entry": "커스텀 {{WS_URL}}", diff --git a/packages/apps/public/locales/ru/translation.json b/packages/apps/public/locales/ru/translation.json index cd5b41bf0c03..4214ccce90bf 100644 --- a/packages/apps/public/locales/ru/translation.json +++ b/packages/apps/public/locales/ru/translation.json @@ -1245,7 +1245,6 @@ "rpc.kusama.bajun": "Bajun Network", "rpc.kusama.basilisk": "Basilisk", "rpc.kusama.bifrost": "Bifrost (Kusama)", - "rpc.kusama.crab": "Darwinia Crab", "rpc.kusama.encointer": "Encointer Network", "rpc.kusama.genshiro": "Genshiro", "rpc.kusama.heiko": "Parallel Heiko", diff --git a/packages/apps/src/packageInfo.ts b/packages/apps/src/packageInfo.ts index 7589ca8dcbd8..cc3e53ee124b 100644 --- a/packages/apps/src/packageInfo.ts +++ b/packages/apps/src/packageInfo.ts @@ -3,4 +3,4 @@ // Do not edit, auto-generated by @polkadot/dev -export const packageInfo = { name: '@polkadot/apps', path: 'auto', type: 'auto', version: '0.170.2-2-x' }; +export const packageInfo = { name: '@polkadot/apps', path: 'auto', type: 'auto', version: '0.170.2-5-x' }; diff --git a/packages/page-accounts/package.json b/packages/page-accounts/package.json index 14b5a9fd5240..debcffb9a033 100644 --- a/packages/page-accounts/package.json +++ b/packages/page-accounts/package.json @@ -14,19 +14,19 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { "@polkadot/hw-ledger": "^13.5.9", "@polkadot/phishing": "^0.25.23", - "@polkadot/react-components": "^0.170.2-2-x", - "@polkadot/react-hooks": "^0.170.2-2-x", + "@polkadot/react-components": "^0.170.2-5-x", + "@polkadot/react-hooks": "^0.170.2-5-x", "@polkadot/util": "^13.5.9", "@polkadot/vanitygen": "^0.63.19", "detect-browser": "^5.3.0", "file-saver": "^2.0.5" }, "devDependencies": { - "@polkadot/test-support": "0.170.2-2-x" + "@polkadot/test-support": "0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-addresses/package.json b/packages/page-addresses/package.json index c91d25f3e982..4cc7fa9fefc7 100644 --- a/packages/page-addresses/package.json +++ b/packages/page-addresses/package.json @@ -14,9 +14,9 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x", + "@polkadot/react-components": "^0.170.2-5-x", "file-saver": "^2.0.5" }, "devDependencies": { diff --git a/packages/page-alliance/package.json b/packages/page-alliance/package.json index bd587c79edb8..cd7214ee6d62 100644 --- a/packages/page-alliance/package.json +++ b/packages/page-alliance/package.json @@ -14,7 +14,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "peerDependencies": { "react": "*", "react-dom": "*", diff --git a/packages/page-ambassador/package.json b/packages/page-ambassador/package.json index 9a9871fb8f70..6ef6aeae66bd 100644 --- a/packages/page-ambassador/package.json +++ b/packages/page-ambassador/package.json @@ -14,7 +14,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "peerDependencies": { "react": "*", "react-dom": "*", diff --git a/packages/page-assets/package.json b/packages/page-assets/package.json index 3aa06d4a41da..6c74ffb786f6 100644 --- a/packages/page-assets/package.json +++ b/packages/page-assets/package.json @@ -14,9 +14,9 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-bounties/package.json b/packages/page-bounties/package.json index ed66c8a85c25..a458b9ef32ef 100644 --- a/packages/page-bounties/package.json +++ b/packages/page-bounties/package.json @@ -14,12 +14,12 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x" }, "devDependencies": { - "@polkadot/test-support": "0.170.2-2-x" + "@polkadot/test-support": "0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-broker/package.json b/packages/page-broker/package.json index 58090695580a..b35d54f69bb7 100644 --- a/packages/page-broker/package.json +++ b/packages/page-broker/package.json @@ -14,10 +14,10 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "0.170.2-2-x", - "@polkadot/react-query": "0.170.2-2-x" + "@polkadot/react-components": "0.170.2-5-x", + "@polkadot/react-query": "0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-calendar/package.json b/packages/page-calendar/package.json index dd13134e126c..a9c3a5f78f55 100644 --- a/packages/page-calendar/package.json +++ b/packages/page-calendar/package.json @@ -14,9 +14,9 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-claims/package.json b/packages/page-claims/package.json index 565aa9ee11e0..020748b2cce7 100644 --- a/packages/page-claims/package.json +++ b/packages/page-claims/package.json @@ -14,9 +14,9 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x", + "@polkadot/react-components": "^0.170.2-5-x", "secp256k1": "^3.8.0" }, "peerDependencies": { diff --git a/packages/page-collator/package.json b/packages/page-collator/package.json index 7248c236eed8..4d9af8564b57 100644 --- a/packages/page-collator/package.json +++ b/packages/page-collator/package.json @@ -14,7 +14,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "peerDependencies": { "react": "*", "react-dom": "*", diff --git a/packages/page-contracts/package.json b/packages/page-contracts/package.json index b7fbbb2f9c84..d78eb02e6fa8 100644 --- a/packages/page-contracts/package.json +++ b/packages/page-contracts/package.json @@ -14,7 +14,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { "@polkadot/api-contract": "16.5.3", "eventemitter3": "^5.0.1" diff --git a/packages/page-coretime/package.json b/packages/page-coretime/package.json index 30fb86de38f3..379cfd1678b7 100644 --- a/packages/page-coretime/package.json +++ b/packages/page-coretime/package.json @@ -14,10 +14,10 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x", - "@polkadot/react-query": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x", + "@polkadot/react-query": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-council/package.json b/packages/page-council/package.json index a7994f6b6ff3..9806c2fc41a5 100644 --- a/packages/page-council/package.json +++ b/packages/page-council/package.json @@ -14,10 +14,10 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x", - "@polkadot/react-query": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x", + "@polkadot/react-query": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-democracy/package.json b/packages/page-democracy/package.json index 588b5e03dea5..5e14fe4e9961 100644 --- a/packages/page-democracy/package.json +++ b/packages/page-democracy/package.json @@ -14,10 +14,10 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x", - "@polkadot/react-query": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x", + "@polkadot/react-query": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-explorer/package.json b/packages/page-explorer/package.json index c35175282033..f05a2088c78f 100644 --- a/packages/page-explorer/package.json +++ b/packages/page-explorer/package.json @@ -14,9 +14,9 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-extrinsics/package.json b/packages/page-extrinsics/package.json index f7f6d0b009cb..364045542140 100644 --- a/packages/page-extrinsics/package.json +++ b/packages/page-extrinsics/package.json @@ -14,11 +14,11 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x", - "@polkadot/react-params": "^0.170.2-2-x", - "@polkadot/react-signer": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x", + "@polkadot/react-params": "^0.170.2-5-x", + "@polkadot/react-signer": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-fellowship/package.json b/packages/page-fellowship/package.json index 2a086d063bfc..e1c30e468009 100644 --- a/packages/page-fellowship/package.json +++ b/packages/page-fellowship/package.json @@ -14,7 +14,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "peerDependencies": { "react": "*", "react-dom": "*", diff --git a/packages/page-files/package.json b/packages/page-files/package.json index a42d75ff5b22..1da65e8cad39 100644 --- a/packages/page-files/package.json +++ b/packages/page-files/package.json @@ -14,9 +14,9 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x", + "@polkadot/react-components": "^0.170.2-5-x", "axios": "^1.6.2" }, "peerDependencies": { diff --git a/packages/page-gilt/package.json b/packages/page-gilt/package.json index 19da4c435086..d6e68356f078 100644 --- a/packages/page-gilt/package.json +++ b/packages/page-gilt/package.json @@ -14,9 +14,9 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-js/package.json b/packages/page-js/package.json index 9fadbbcb68f3..90b3bbe10564 100644 --- a/packages/page-js/package.json +++ b/packages/page-js/package.json @@ -14,9 +14,9 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-membership/package.json b/packages/page-membership/package.json index f58d7c611cc2..7fd2e1e671f2 100644 --- a/packages/page-membership/package.json +++ b/packages/page-membership/package.json @@ -14,10 +14,10 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x", - "@polkadot/react-query": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x", + "@polkadot/react-query": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-nfts/package.json b/packages/page-nfts/package.json index 71e5d153d32a..0bb242be1f06 100644 --- a/packages/page-nfts/package.json +++ b/packages/page-nfts/package.json @@ -14,9 +14,9 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-nis/package.json b/packages/page-nis/package.json index 2e88704d812d..d1570a664f01 100644 --- a/packages/page-nis/package.json +++ b/packages/page-nis/package.json @@ -14,9 +14,9 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-parachains/package.json b/packages/page-parachains/package.json index f84561293666..338065b5787d 100644 --- a/packages/page-parachains/package.json +++ b/packages/page-parachains/package.json @@ -14,10 +14,10 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x", - "@polkadot/react-query": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x", + "@polkadot/react-query": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-poll/package.json b/packages/page-poll/package.json index fe0d8cde8a74..b1b50b265d6e 100644 --- a/packages/page-poll/package.json +++ b/packages/page-poll/package.json @@ -14,9 +14,9 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-preimages/package.json b/packages/page-preimages/package.json index bebf1f47afb5..99f88d908890 100644 --- a/packages/page-preimages/package.json +++ b/packages/page-preimages/package.json @@ -14,7 +14,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "peerDependencies": { "react": "*", "react-dom": "*", diff --git a/packages/page-ranked/package.json b/packages/page-ranked/package.json index 11ab17f0fc26..70a0ff9db71e 100644 --- a/packages/page-ranked/package.json +++ b/packages/page-ranked/package.json @@ -14,7 +14,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "peerDependencies": { "react": "*", "react-dom": "*", diff --git a/packages/page-referenda/package.json b/packages/page-referenda/package.json index fcdf3320c68c..e994ee932c01 100644 --- a/packages/page-referenda/package.json +++ b/packages/page-referenda/package.json @@ -14,7 +14,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "devDependencies": { "chart.js": "^4.4.1" }, diff --git a/packages/page-rpc/package.json b/packages/page-rpc/package.json index 4c2a41307670..f61f8eef4d67 100644 --- a/packages/page-rpc/package.json +++ b/packages/page-rpc/package.json @@ -14,9 +14,9 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-runtime/package.json b/packages/page-runtime/package.json index e46c36c4cc4c..98f6b9b84a83 100644 --- a/packages/page-runtime/package.json +++ b/packages/page-runtime/package.json @@ -14,9 +14,9 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-scheduler/package.json b/packages/page-scheduler/package.json index 4f2d5fadfeae..9bc38baf60eb 100644 --- a/packages/page-scheduler/package.json +++ b/packages/page-scheduler/package.json @@ -14,7 +14,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "peerDependencies": { "react": "*", "react-dom": "*", diff --git a/packages/page-settings/package.json b/packages/page-settings/package.json index 59c66453fc06..1cc4142530cc 100644 --- a/packages/page-settings/package.json +++ b/packages/page-settings/package.json @@ -14,11 +14,11 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/apps-config": "^0.170.2-2-x", - "@polkadot/react-components": "^0.170.2-2-x", - "@polkadot/react-query": "^0.170.2-2-x", + "@polkadot/apps-config": "^0.170.2-5-x", + "@polkadot/react-components": "^0.170.2-5-x", + "@polkadot/react-query": "^0.170.2-5-x", "query-string": "^8.1.0" }, "peerDependencies": { diff --git a/packages/page-signing/package.json b/packages/page-signing/package.json index f2993d58f9f6..f8ad34dda846 100644 --- a/packages/page-signing/package.json +++ b/packages/page-signing/package.json @@ -14,9 +14,9 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-society/package.json b/packages/page-society/package.json index aae75406bdce..6bf3ef489204 100644 --- a/packages/page-society/package.json +++ b/packages/page-society/package.json @@ -14,9 +14,9 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-staking-async/package.json b/packages/page-staking-async/package.json index 1850bf040ea9..bb3881b4e537 100644 --- a/packages/page-staking-async/package.json +++ b/packages/page-staking-async/package.json @@ -14,7 +14,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "peerDependencies": { "react": "*", "react-dom": "*", diff --git a/packages/page-staking-legacy/package.json b/packages/page-staking-legacy/package.json index 7b7ecfbb47c1..78201188230d 100644 --- a/packages/page-staking-legacy/package.json +++ b/packages/page-staking-legacy/package.json @@ -14,11 +14,11 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/app-explorer": "^0.170.2-2-x", - "@polkadot/react-components": "^0.170.2-2-x", - "@polkadot/react-query": "^0.170.2-2-x" + "@polkadot/app-explorer": "^0.170.2-5-x", + "@polkadot/react-components": "^0.170.2-5-x", + "@polkadot/react-query": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-staking-legacy/src/Query/ChartStake.tsx b/packages/page-staking-legacy/src/Query/ChartStake.tsx index e2f73177c23f..aa152b7eac2b 100644 --- a/packages/page-staking-legacy/src/Query/ChartStake.tsx +++ b/packages/page-staking-legacy/src/Query/ChartStake.tsx @@ -31,7 +31,7 @@ function extractStake (labels: string[], exposures: DeriveOwnExposure[], divisor }, [0, 0]); exposures.forEach(({ clipped, era, exposure }): void => { - // Darwinia Crab doesn't have the total field + // some overrides don't have the total field const cli = balanceToNumber(clipped.total?.unwrap(), divisor); const exp = balanceToNumber(exposure.total?.unwrap(), divisor); const avg = avgCount > 0 diff --git a/packages/page-staking-legacy/src/useSortedTargets.ts b/packages/page-staking-legacy/src/useSortedTargets.ts index a9883c87fc1d..78dfcd6f4348 100644 --- a/packages/page-staking-legacy/src/useSortedTargets.ts +++ b/packages/page-staking-legacy/src/useSortedTargets.ts @@ -135,7 +135,7 @@ function extractSingle (api: ApiPromise, allAccounts: string[], derive: DeriveSt for (let i = 0; i < derive.info.length; i++) { const { accountId, exposureEraStakers = emptyExposure, stakingLedger, validatorPrefs } = derive.info[i]; - // some overrides (e.g. Darwinia Crab) does not have the own/total field in Exposure + // some overrides do not have the own/total field in Exposure let [bondOwn, bondTotal] = exposureEraStakers.total ? [exposureEraStakers.own.unwrap(), exposureEraStakers.total.unwrap()] : [BN_ZERO, BN_ZERO]; @@ -146,7 +146,7 @@ function extractSingle (api: ApiPromise, allAccounts: string[], derive: DeriveSt bondTotal = bondOwn = stakingLedger.total?.unwrap() || BN_ZERO; } - // some overrides (e.g. Darwinia Crab) does not have the value field in IndividualExposure + // some overrides do not have the value field in IndividualExposure const minNominated = (exposureEraStakers.others || []).reduce((min: BN, { value = api.createType('Compact') }): BN => { const actual = value.unwrap(); diff --git a/packages/page-staking/package.json b/packages/page-staking/package.json index 5c8ebc64fa36..dfab2545c96a 100644 --- a/packages/page-staking/package.json +++ b/packages/page-staking/package.json @@ -14,11 +14,11 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/app-explorer": "^0.170.2-2-x", - "@polkadot/react-components": "^0.170.2-2-x", - "@polkadot/react-query": "^0.170.2-2-x" + "@polkadot/app-explorer": "^0.170.2-5-x", + "@polkadot/react-components": "^0.170.2-5-x", + "@polkadot/react-query": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-staking/src/Query/ChartStake.tsx b/packages/page-staking/src/Query/ChartStake.tsx index 2772798ab025..90b4c353455c 100644 --- a/packages/page-staking/src/Query/ChartStake.tsx +++ b/packages/page-staking/src/Query/ChartStake.tsx @@ -34,7 +34,7 @@ function extractStake (labels: string[], exposures: DeriveOwnExposure[], divisor exposures.forEach(({ era, exposureMeta, exposurePaged }): void => { const expPaged = exposurePaged.isSome && exposurePaged.unwrap(); const expMeta = exposureMeta.isSome && exposureMeta.unwrap(); - // Darwinia Crab doesn't have the total field + // some overrides don't have the total field const expP = balanceToNumber((expPaged && expPaged.pageTotal?.unwrap()) || BN_ZERO, divisor); const expM = balanceToNumber((expMeta && expMeta.total?.unwrap()) || BN_ZERO, divisor); const avg = avgCount > 0 diff --git a/packages/page-staking/src/useSortedTargets.ts b/packages/page-staking/src/useSortedTargets.ts index 74ab21d1459d..758c7e485ae3 100644 --- a/packages/page-staking/src/useSortedTargets.ts +++ b/packages/page-staking/src/useSortedTargets.ts @@ -139,7 +139,7 @@ function extractSingle (api: ApiPromise, allAccounts: string[], derive: DeriveSt const { accountId, claimedRewardsEras, exposureMeta, exposurePaged, stakingLedger, validatorPrefs } = derive.info[i]; const exp = exposurePaged.isSome && exposurePaged.unwrap(); const expMeta = exposureMeta.isSome && exposureMeta.unwrap(); - // some overrides (e.g. Darwinia Crab) does not have the own/total field in Exposure + // some overrides do not have the own/total field in Exposure let [bondOwn, bondTotal] = exp && expMeta ? [expMeta.own.unwrap(), expMeta.total.unwrap()] : [BN_ZERO, BN_ZERO]; @@ -150,7 +150,7 @@ function extractSingle (api: ApiPromise, allAccounts: string[], derive: DeriveSt bondTotal = bondOwn = stakingLedger.total?.unwrap() || BN_ZERO; } - // some overrides (e.g. Darwinia Crab) does not have the value field in IndividualExposure + // some overrides do not have the value field in IndividualExposure const minNominated = ((exp && exp.others) || []).reduce((min: BN, { value = api.createType('Compact') }): BN => { const actual = value.unwrap(); diff --git a/packages/page-staking2/package.json b/packages/page-staking2/package.json index 6b365314323d..bf1ccf83ec8c 100644 --- a/packages/page-staking2/package.json +++ b/packages/page-staking2/package.json @@ -14,7 +14,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "peerDependencies": { "react": "*", "react-dom": "*", diff --git a/packages/page-storage/package.json b/packages/page-storage/package.json index c26a187d03fa..07dbf11cffa4 100644 --- a/packages/page-storage/package.json +++ b/packages/page-storage/package.json @@ -14,10 +14,10 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x", - "@polkadot/react-params": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x", + "@polkadot/react-params": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-sudo/package.json b/packages/page-sudo/package.json index 05d7039a9b8e..07b7f6d5be96 100644 --- a/packages/page-sudo/package.json +++ b/packages/page-sudo/package.json @@ -14,9 +14,9 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-tech-comm/package.json b/packages/page-tech-comm/package.json index 8d518f72cfa0..c8eba077b5f9 100644 --- a/packages/page-tech-comm/package.json +++ b/packages/page-tech-comm/package.json @@ -14,10 +14,10 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x", - "@polkadot/react-query": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x", + "@polkadot/react-query": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-treasury/package.json b/packages/page-treasury/package.json index f9713fe06a86..288bdd366a18 100644 --- a/packages/page-treasury/package.json +++ b/packages/page-treasury/package.json @@ -14,10 +14,10 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x", - "@polkadot/react-query": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x", + "@polkadot/react-query": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-utilities/package.json b/packages/page-utilities/package.json index 395762601c3e..7d711357d143 100644 --- a/packages/page-utilities/package.json +++ b/packages/page-utilities/package.json @@ -14,10 +14,10 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x", - "@polkadot/react-params": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x", + "@polkadot/react-params": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/page-whitelist/package.json b/packages/page-whitelist/package.json index 7ba8b52fc1c0..56ff5cc67b49 100644 --- a/packages/page-whitelist/package.json +++ b/packages/page-whitelist/package.json @@ -14,7 +14,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "peerDependencies": { "react": "*", "react-dom": "*", diff --git a/packages/react-api/package.json b/packages/react-api/package.json index 0fbdd9e2b307..3755e93c0d4b 100644 --- a/packages/react-api/package.json +++ b/packages/react-api/package.json @@ -14,7 +14,7 @@ }, "sideEffects": true, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "browser": { "fs": false, "path": false diff --git a/packages/react-components/package.json b/packages/react-components/package.json index 78c9f86434d8..2b0407238f51 100644 --- a/packages/react-components/package.json +++ b/packages/react-components/package.json @@ -14,16 +14,16 @@ }, "sideEffects": true, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { "@fortawesome/fontawesome-svg-core": "^6.5.1", "@fortawesome/free-solid-svg-icons": "^6.5.1", "@fortawesome/react-fontawesome": "^0.2.0", "@polkadot/keyring": "^13.5.9", - "@polkadot/react-api": "^0.170.2-2-x", + "@polkadot/react-api": "^0.170.2-5-x", "@polkadot/react-identicon": "^3.16.4", "@polkadot/react-qr": "^3.16.4", - "@polkadot/react-query": "^0.170.2-2-x", + "@polkadot/react-query": "^0.170.2-5-x", "@polkadot/ui-keyring": "^3.16.4", "@polkadot/ui-settings": "^3.16.4", "@polkadot/util": "^13.5.9", diff --git a/packages/react-hooks/package.json b/packages/react-hooks/package.json index 9054350d5578..29df11f3383f 100644 --- a/packages/react-hooks/package.json +++ b/packages/react-hooks/package.json @@ -14,7 +14,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { "@polkadot/hw-ledger": "^13.5.9", "@polkadot/hw-ledger-transports": "^13.5.9", diff --git a/packages/react-params/package.json b/packages/react-params/package.json index 3e333a5bc242..c6f34c070e5e 100644 --- a/packages/react-params/package.json +++ b/packages/react-params/package.json @@ -14,9 +14,9 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { - "@polkadot/react-components": "^0.170.2-2-x", + "@polkadot/react-components": "^0.170.2-5-x", "multiformats": "^12.1.3" }, "peerDependencies": { diff --git a/packages/react-query/package.json b/packages/react-query/package.json index befa712821c7..dc25f60ba9d9 100644 --- a/packages/react-query/package.json +++ b/packages/react-query/package.json @@ -14,7 +14,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "peerDependencies": { "react": "*", "react-dom": "*", diff --git a/packages/react-signer/package.json b/packages/react-signer/package.json index 95714c9aa969..64dbb98e0464 100644 --- a/packages/react-signer/package.json +++ b/packages/react-signer/package.json @@ -14,11 +14,11 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { "@polkadot-api/merkleize-metadata": "^1.1.27", "@polkadot/hw-ledger": "^13.5.9", - "@polkadot/react-components": "^0.170.2-2-x" + "@polkadot/react-components": "^0.170.2-5-x" }, "peerDependencies": { "react": "*", diff --git a/packages/test-support/package.json b/packages/test-support/package.json index e331b9da4015..d42b8aee8ab6 100644 --- a/packages/test-support/package.json +++ b/packages/test-support/package.json @@ -14,7 +14,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.170.2-2-x", + "version": "0.170.2-5-x", "dependencies": { "@testing-library/react": "^14.1.2", "testcontainers": "^10.4.0" diff --git a/yarn.lock b/yarn.lock index 1ef6d94fcbd0..89f6ca7df6b2 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1581,9 +1581,9 @@ __metadata: dependencies: "@polkadot/hw-ledger": "npm:^13.5.9" "@polkadot/phishing": "npm:^0.25.23" - "@polkadot/react-components": "npm:^0.170.2-2-x" - "@polkadot/react-hooks": "npm:^0.170.2-2-x" - "@polkadot/test-support": "npm:0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" + "@polkadot/react-hooks": "npm:^0.170.2-5-x" + "@polkadot/test-support": "npm:0.170.2-5-x" "@polkadot/util": "npm:^13.5.9" "@polkadot/vanitygen": "npm:^0.63.19" detect-browser: "npm:^5.3.0" @@ -1599,7 +1599,7 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-addresses@workspace:packages/page-addresses" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" "@testing-library/react": "npm:^14.1.2" file-saver: "npm:^2.0.5" testcontainers: "npm:^10.4.0" @@ -1634,7 +1634,7 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-assets@workspace:packages/page-assets" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -1646,8 +1646,8 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-bounties@workspace:packages/page-bounties" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" - "@polkadot/test-support": "npm:0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" + "@polkadot/test-support": "npm:0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -1659,8 +1659,8 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-broker@workspace:packages/page-broker" dependencies: - "@polkadot/react-components": "npm:0.170.2-2-x" - "@polkadot/react-query": "npm:0.170.2-2-x" + "@polkadot/react-components": "npm:0.170.2-5-x" + "@polkadot/react-query": "npm:0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -1672,7 +1672,7 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-calendar@workspace:packages/page-calendar" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -1684,7 +1684,7 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-claims@workspace:packages/page-claims" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" secp256k1: "npm:^3.8.0" peerDependencies: react: "*" @@ -1720,8 +1720,8 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-coretime@workspace:packages/page-coretime" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" - "@polkadot/react-query": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" + "@polkadot/react-query": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -1733,8 +1733,8 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-council@workspace:packages/page-council" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" - "@polkadot/react-query": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" + "@polkadot/react-query": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -1746,8 +1746,8 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-democracy@workspace:packages/page-democracy" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" - "@polkadot/react-query": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" + "@polkadot/react-query": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -1755,11 +1755,11 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/app-explorer@npm:^0.170.2-2-x, @polkadot/app-explorer@workspace:packages/page-explorer": +"@polkadot/app-explorer@npm:^0.170.2-5-x, @polkadot/app-explorer@workspace:packages/page-explorer": version: 0.0.0-use.local resolution: "@polkadot/app-explorer@workspace:packages/page-explorer" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -1771,9 +1771,9 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-extrinsics@workspace:packages/page-extrinsics" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" - "@polkadot/react-params": "npm:^0.170.2-2-x" - "@polkadot/react-signer": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" + "@polkadot/react-params": "npm:^0.170.2-5-x" + "@polkadot/react-signer": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -1795,7 +1795,7 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-files@workspace:packages/page-files" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" axios: "npm:^1.6.2" peerDependencies: react: "*" @@ -1808,7 +1808,7 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-gilt@workspace:packages/page-gilt" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -1820,7 +1820,7 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-js@workspace:packages/page-js" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -1832,8 +1832,8 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-membership@workspace:packages/page-membership" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" - "@polkadot/react-query": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" + "@polkadot/react-query": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -1845,7 +1845,7 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-nfts@workspace:packages/page-nfts" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -1857,7 +1857,7 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-nis@workspace:packages/page-nis" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -1869,8 +1869,8 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-parachains@workspace:packages/page-parachains" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" - "@polkadot/react-query": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" + "@polkadot/react-query": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -1882,7 +1882,7 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-poll@workspace:packages/page-poll" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -1926,7 +1926,7 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-rpc@workspace:packages/page-rpc" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -1938,7 +1938,7 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-runtime@workspace:packages/page-runtime" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -1960,9 +1960,9 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-settings@workspace:packages/page-settings" dependencies: - "@polkadot/apps-config": "npm:^0.170.2-2-x" - "@polkadot/react-components": "npm:^0.170.2-2-x" - "@polkadot/react-query": "npm:^0.170.2-2-x" + "@polkadot/apps-config": "npm:^0.170.2-5-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" + "@polkadot/react-query": "npm:^0.170.2-5-x" query-string: "npm:^8.1.0" peerDependencies: react: "*" @@ -1975,7 +1975,7 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-signing@workspace:packages/page-signing" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -1987,7 +1987,7 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-society@workspace:packages/page-society" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -2009,9 +2009,9 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-staking-legacy@workspace:packages/page-staking-legacy" dependencies: - "@polkadot/app-explorer": "npm:^0.170.2-2-x" - "@polkadot/react-components": "npm:^0.170.2-2-x" - "@polkadot/react-query": "npm:^0.170.2-2-x" + "@polkadot/app-explorer": "npm:^0.170.2-5-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" + "@polkadot/react-query": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -2033,9 +2033,9 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-staking@workspace:packages/page-staking" dependencies: - "@polkadot/app-explorer": "npm:^0.170.2-2-x" - "@polkadot/react-components": "npm:^0.170.2-2-x" - "@polkadot/react-query": "npm:^0.170.2-2-x" + "@polkadot/app-explorer": "npm:^0.170.2-5-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" + "@polkadot/react-query": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -2047,8 +2047,8 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-storage@workspace:packages/page-storage" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" - "@polkadot/react-params": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" + "@polkadot/react-params": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -2060,7 +2060,7 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-sudo@workspace:packages/page-sudo" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -2072,8 +2072,8 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-tech-comm@workspace:packages/page-tech-comm" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" - "@polkadot/react-query": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" + "@polkadot/react-query": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -2085,8 +2085,8 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-treasury@workspace:packages/page-treasury" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" - "@polkadot/react-query": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" + "@polkadot/react-query": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -2098,8 +2098,8 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/app-utilities@workspace:packages/page-utilities" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" - "@polkadot/react-params": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" + "@polkadot/react-params": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -2117,7 +2117,7 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/apps-config@npm:^0.170.2-2-x, @polkadot/apps-config@workspace:packages/apps-config": +"@polkadot/apps-config@npm:^0.170.2-5-x, @polkadot/apps-config@workspace:packages/apps-config": version: 0.0.0-use.local resolution: "@polkadot/apps-config@workspace:packages/apps-config" dependencies: @@ -2190,7 +2190,7 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/apps-routing@npm:^0.170.2-2-x, @polkadot/apps-routing@workspace:packages/apps-routing": +"@polkadot/apps-routing@npm:^0.170.2-5-x, @polkadot/apps-routing@workspace:packages/apps-routing": version: 0.0.0-use.local resolution: "@polkadot/apps-routing@workspace:packages/apps-routing" peerDependencies: @@ -2205,15 +2205,15 @@ __metadata: resolution: "@polkadot/apps@workspace:packages/apps" dependencies: "@acala-network/chopsticks-core": "npm:^1.2.1" - "@polkadot/apps-config": "npm:^0.170.2-2-x" - "@polkadot/apps-routing": "npm:^0.170.2-2-x" + "@polkadot/apps-config": "npm:^0.170.2-5-x" + "@polkadot/apps-routing": "npm:^0.170.2-5-x" "@polkadot/dev": "npm:^0.83.3" - "@polkadot/react-api": "npm:^0.170.2-2-x" - "@polkadot/react-components": "npm:^0.170.2-2-x" - "@polkadot/react-hooks": "npm:^0.170.2-2-x" - "@polkadot/react-params": "npm:^0.170.2-2-x" - "@polkadot/react-query": "npm:^0.170.2-2-x" - "@polkadot/react-signer": "npm:^0.170.2-2-x" + "@polkadot/react-api": "npm:^0.170.2-5-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" + "@polkadot/react-hooks": "npm:^0.170.2-5-x" + "@polkadot/react-params": "npm:^0.170.2-5-x" + "@polkadot/react-query": "npm:^0.170.2-5-x" + "@polkadot/react-signer": "npm:^0.170.2-5-x" "@types/punycode": "npm:^2.1.3" assert: "npm:^2.1.0" buffer: "npm:^6.0.3" @@ -2455,7 +2455,7 @@ __metadata: languageName: node linkType: hard -"@polkadot/react-api@npm:^0.170.2-2-x, @polkadot/react-api@workspace:packages/react-api": +"@polkadot/react-api@npm:^0.170.2-5-x, @polkadot/react-api@workspace:packages/react-api": version: 0.0.0-use.local resolution: "@polkadot/react-api@workspace:packages/react-api" dependencies: @@ -2472,7 +2472,7 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/react-components@npm:0.170.2-2-x, @polkadot/react-components@npm:^0.170.2-2-x, @polkadot/react-components@workspace:packages/react-components": +"@polkadot/react-components@npm:0.170.2-5-x, @polkadot/react-components@npm:^0.170.2-5-x, @polkadot/react-components@workspace:packages/react-components": version: 0.0.0-use.local resolution: "@polkadot/react-components@workspace:packages/react-components" dependencies: @@ -2480,10 +2480,10 @@ __metadata: "@fortawesome/free-solid-svg-icons": "npm:^6.5.1" "@fortawesome/react-fontawesome": "npm:^0.2.0" "@polkadot/keyring": "npm:^13.5.9" - "@polkadot/react-api": "npm:^0.170.2-2-x" + "@polkadot/react-api": "npm:^0.170.2-5-x" "@polkadot/react-identicon": "npm:^3.16.4" "@polkadot/react-qr": "npm:^3.16.4" - "@polkadot/react-query": "npm:^0.170.2-2-x" + "@polkadot/react-query": "npm:^0.170.2-5-x" "@polkadot/ui-keyring": "npm:^3.16.4" "@polkadot/ui-settings": "npm:^3.16.4" "@polkadot/util": "npm:^13.5.9" @@ -2522,7 +2522,7 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/react-hooks@npm:^0.170.2-2-x, @polkadot/react-hooks@workspace:packages/react-hooks": +"@polkadot/react-hooks@npm:^0.170.2-5-x, @polkadot/react-hooks@workspace:packages/react-hooks": version: 0.0.0-use.local resolution: "@polkadot/react-hooks@workspace:packages/react-hooks" dependencies: @@ -2561,11 +2561,11 @@ __metadata: languageName: node linkType: hard -"@polkadot/react-params@npm:^0.170.2-2-x, @polkadot/react-params@workspace:packages/react-params": +"@polkadot/react-params@npm:^0.170.2-5-x, @polkadot/react-params@workspace:packages/react-params": version: 0.0.0-use.local resolution: "@polkadot/react-params@workspace:packages/react-params" dependencies: - "@polkadot/react-components": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" multiformats: "npm:^12.1.3" peerDependencies: react: "*" @@ -2596,7 +2596,7 @@ __metadata: languageName: node linkType: hard -"@polkadot/react-query@npm:0.170.2-2-x, @polkadot/react-query@npm:^0.170.2-2-x, @polkadot/react-query@workspace:packages/react-query": +"@polkadot/react-query@npm:0.170.2-5-x, @polkadot/react-query@npm:^0.170.2-5-x, @polkadot/react-query@workspace:packages/react-query": version: 0.0.0-use.local resolution: "@polkadot/react-query@workspace:packages/react-query" peerDependencies: @@ -2606,13 +2606,13 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/react-signer@npm:^0.170.2-2-x, @polkadot/react-signer@workspace:packages/react-signer": +"@polkadot/react-signer@npm:^0.170.2-5-x, @polkadot/react-signer@workspace:packages/react-signer": version: 0.0.0-use.local resolution: "@polkadot/react-signer@workspace:packages/react-signer" dependencies: "@polkadot-api/merkleize-metadata": "npm:^1.1.27" "@polkadot/hw-ledger": "npm:^13.5.9" - "@polkadot/react-components": "npm:^0.170.2-2-x" + "@polkadot/react-components": "npm:^0.170.2-5-x" peerDependencies: react: "*" react-dom: "*" @@ -2671,7 +2671,7 @@ __metadata: languageName: node linkType: hard -"@polkadot/test-support@npm:0.170.2-2-x, @polkadot/test-support@workspace:packages/test-support": +"@polkadot/test-support@npm:0.170.2-5-x, @polkadot/test-support@workspace:packages/test-support": version: 0.0.0-use.local resolution: "@polkadot/test-support@workspace:packages/test-support" dependencies: