From a50faf2054e0109dccebe7da92a6401d1a784b31 Mon Sep 17 00:00:00 2001 From: Yongfeng LI Date: Wed, 30 Oct 2024 15:38:17 +0800 Subject: [PATCH] Update dependency to @polkadot/api (#4995) * Update dependency to @polkadot/api - Update delegation list when removed my delegation * Remove disable status for delegation removing button * Reduce delegation updation times * Fix lint errors --- packages/kintsugi-next/package.json | 4 +- .../delegation/undelegatePopup/index.js | 3 +- .../democracyAllMyDelegationPopup/remove.js | 29 +- packages/next-common/package.json | 8 +- packages/next/package.json | 2 +- yarn.lock | 930 +++++++----------- 6 files changed, 377 insertions(+), 599 deletions(-) diff --git a/packages/kintsugi-next/package.json b/packages/kintsugi-next/package.json index 12c491cbb8..1b27a728cc 100644 --- a/packages/kintsugi-next/package.json +++ b/packages/kintsugi-next/package.json @@ -12,8 +12,8 @@ "dependencies": { "@interlay/monetary-js": "^0.5.3", "@next/env": "^13.3.0", - "@osn/icons": "^1.144.0", - "@polkadot/util-crypto": "^13.1.1", + "@osn/icons": "^1.146.0", + "@polkadot/util-crypto": "^13.2.2", "@svgr/webpack": "^7.0.0", "bignumber.js": "^9.0.2", "clsx": "^1.2.1", diff --git a/packages/next-common/components/summary/delegation/undelegatePopup/index.js b/packages/next-common/components/summary/delegation/undelegatePopup/index.js index 55049d2784..008f43fe5f 100644 --- a/packages/next-common/components/summary/delegation/undelegatePopup/index.js +++ b/packages/next-common/components/summary/delegation/undelegatePopup/index.js @@ -3,7 +3,7 @@ import { useCallback } from "react"; import SimpleTxPopup from "next-common/components/simpleTxPopup"; import { useContextApi } from "next-common/context/api"; -export default function UndelegatePopup({ trackId, onClose }) { +export default function UndelegatePopup({ trackId, onClose, onInBlock }) { const api = useContextApi(); const getTxFunc = useCallback(async () => { @@ -15,6 +15,7 @@ export default function UndelegatePopup({ trackId, onClose }) { title="Undelegate" getTxFunc={getTxFunc} onClose={onClose} + onInBlock={onInBlock} noSwitchSigner /> ); diff --git a/packages/next-common/components/summary/democracyAllMyDelegationPopup/remove.js b/packages/next-common/components/summary/democracyAllMyDelegationPopup/remove.js index d4b2c69db1..d256cf3a3f 100644 --- a/packages/next-common/components/summary/democracyAllMyDelegationPopup/remove.js +++ b/packages/next-common/components/summary/democracyAllMyDelegationPopup/remove.js @@ -1,9 +1,14 @@ import RemoveButton from "next-common/components/removeButton"; -import { useState } from "react"; +import { useCallback, useState } from "react"; import { useDispatch } from "react-redux"; -import { incMyReferendaDelegationsTrigger } from "next-common/store/reducers/myOnChainData/referenda/myReferendaDelegations"; +import { + incMyReferendaDelegationsTrigger, +} from "next-common/store/reducers/myOnChainData/referenda/myReferendaDelegations"; import Tooltip from "next-common/components/tooltip"; import dynamicPopup from "next-common/lib/dynamic/popup"; +import getChainSettings from "next-common/utils/consts/settings"; +import { defaultBlockTime } from "next-common/utils/constants"; +import { sleep } from "next-common/utils"; const UndelegatePopup = dynamicPopup(() => import("../delegation/undelegatePopup"), @@ -12,22 +17,28 @@ const UndelegatePopup = dynamicPopup(() => export default function RemoveDelegation({ trackId }) { const dispatch = useDispatch(); const [showPopup, setShowPopup] = useState(false); - const [isLoading, setIsLoading] = useState(false); + + const updateDelegationsFn = useCallback(async () => { + const blockTime = + getChainSettings(process.env.NEXT_PUBLIC_CHAIN).blockTime || + defaultBlockTime; + + for (let i = 0; i < 3; i++) { + dispatch(incMyReferendaDelegationsTrigger()); + await sleep(blockTime); + } + }, [dispatch]); return ( <> - setShowPopup(true)} /> + setShowPopup(true)} /> {showPopup && ( setShowPopup(false)} - isLoading={isLoading} - setIsLoading={setIsLoading} - onInBlock={() => { - dispatch(incMyReferendaDelegationsTrigger()); - }} + onInBlock={updateDelegationsFn} /> )} diff --git a/packages/next-common/package.json b/packages/next-common/package.json index ef46272cf3..27e3385f11 100644 --- a/packages/next-common/package.json +++ b/packages/next-common/package.json @@ -22,10 +22,10 @@ "@osn/provider-options": "1.1.0", "@osn/react-cmdk": "^1.2.1", "@osn/rich-text-editor": "^0.7.2", - "@polkadot/api": "^13.2.1", - "@polkadot/extension-dapp": "^0.52.3", - "@polkadot/util": "^13.1.1", - "@polkadot/util-crypto": "^13.1.1", + "@polkadot/api": "14.2.1", + "@polkadot/extension-dapp": "0.55.1", + "@polkadot/util": "13.2.2", + "@polkadot/util-crypto": "13.2.2", "@polkagate/extension-dapp": "^0.48.2", "@radix-ui/react-dialog": "^1.0.4", "@radix-ui/react-hover-card": "^1.0.6", diff --git a/packages/next/package.json b/packages/next/package.json index c283dd8768..9060e256a8 100644 --- a/packages/next/package.json +++ b/packages/next/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@next/env": "^13.3.0", - "@osn/icons": "^1.144.0", + "@osn/icons": "^1.146.0", "@svgr/webpack": "^7.0.0", "bignumber.js": "^9.0.2", "chartjs-plugin-gradient": "^0.6.1", diff --git a/yarn.lock b/yarn.lock index b2c1dfeee3..f1277a4ba5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2894,6 +2894,13 @@ __metadata: languageName: node linkType: hard +"@osn/icons@npm:^1.146.0": + version: 1.148.0 + resolution: "@osn/icons@npm:1.148.0" + checksum: 8759ed255d62be2f533ad4a2b616f8232c5de0a5333bcf7872dbc7f09a42200e32f1fa9538052841c7b4acd1c56a1f3ae5dfccb28f5d434598e31f8fc4c74c4f + languageName: node + linkType: hard + "@osn/polkadot-react-identicon@npm:^1.0.8": version: 1.0.8 resolution: "@osn/polkadot-react-identicon@npm:1.0.8" @@ -3274,33 +3281,18 @@ __metadata: languageName: node linkType: hard -"@polkadot/api-augment@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/api-augment@npm:12.4.2" - dependencies: - "@polkadot/api-base": 12.4.2 - "@polkadot/rpc-augment": 12.4.2 - "@polkadot/types": 12.4.2 - "@polkadot/types-augment": 12.4.2 - "@polkadot/types-codec": 12.4.2 - "@polkadot/util": ^13.0.2 - tslib: ^2.6.3 - checksum: 95ca6ad35b682918d989523ec25153dc1d4beab51b7dba2d8cf0a699b6337db85715dbe32bd704e47ffe964226ee2054def76f87f2c932f5d4ee2be0164c1131 - languageName: node - linkType: hard - -"@polkadot/api-augment@npm:13.2.1": - version: 13.2.1 - resolution: "@polkadot/api-augment@npm:13.2.1" +"@polkadot/api-augment@npm:14.2.1": + version: 14.2.1 + resolution: "@polkadot/api-augment@npm:14.2.1" dependencies: - "@polkadot/api-base": 13.2.1 - "@polkadot/rpc-augment": 13.2.1 - "@polkadot/types": 13.2.1 - "@polkadot/types-augment": 13.2.1 - "@polkadot/types-codec": 13.2.1 - "@polkadot/util": ^13.1.1 - tslib: ^2.7.0 - checksum: f8402367ea9eedc66e4fdbe46535a89e96fb58ccd6b26c31bee49d4aa5a7ee4d2fa67301a96fb2d10033764a999eb793903e3cf0c7389cd3b373c2c42b86c20b + "@polkadot/api-base": 14.2.1 + "@polkadot/rpc-augment": 14.2.1 + "@polkadot/types": 14.2.1 + "@polkadot/types-augment": 14.2.1 + "@polkadot/types-codec": 14.2.1 + "@polkadot/util": ^13.2.2 + tslib: ^2.8.0 + checksum: 073b2dacb2f9573d6b7da58cd2d69a21261c43a18856dd0a2fe53d8eaf80527c2791359fa7fc1aed482f110536192788f24759a4f2268b805fd75486ffb7f038 languageName: node linkType: hard @@ -3317,29 +3309,16 @@ __metadata: languageName: node linkType: hard -"@polkadot/api-base@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/api-base@npm:12.4.2" +"@polkadot/api-base@npm:14.2.1": + version: 14.2.1 + resolution: "@polkadot/api-base@npm:14.2.1" dependencies: - "@polkadot/rpc-core": 12.4.2 - "@polkadot/types": 12.4.2 - "@polkadot/util": ^13.0.2 + "@polkadot/rpc-core": 14.2.1 + "@polkadot/types": 14.2.1 + "@polkadot/util": ^13.2.2 rxjs: ^7.8.1 - tslib: ^2.6.3 - checksum: 56c5933217f14e034db39c81f6fa308f2604507bbde820ca67f316ba6a390200dafade1d990ba4d6f1d2bedb94d567cb27435efe341dabf06af2388d457fc4b7 - languageName: node - linkType: hard - -"@polkadot/api-base@npm:13.2.1": - version: 13.2.1 - resolution: "@polkadot/api-base@npm:13.2.1" - dependencies: - "@polkadot/rpc-core": 13.2.1 - "@polkadot/types": 13.2.1 - "@polkadot/util": ^13.1.1 - rxjs: ^7.8.1 - tslib: ^2.7.0 - checksum: 00ceedaaf021feae3ab9379eef91c3ee32d605d7fdb4c03868ac7817decab6dbfac86f85ceec7678f61e96033bac107406575f84a08cb3484c4c86fc71a40f46 + tslib: ^2.8.0 + checksum: 7e4254b9dc9c0ce71e0f6eade18b8be5668aa0cd889c506ec9205f58b9575d7e63d669ed94695671572358b6bb98a17217ffcc484a7d87f5ca2b4dbcdcc781ce languageName: node linkType: hard @@ -3361,39 +3340,21 @@ __metadata: languageName: node linkType: hard -"@polkadot/api-derive@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/api-derive@npm:12.4.2" +"@polkadot/api-derive@npm:14.2.1": + version: 14.2.1 + resolution: "@polkadot/api-derive@npm:14.2.1" dependencies: - "@polkadot/api": 12.4.2 - "@polkadot/api-augment": 12.4.2 - "@polkadot/api-base": 12.4.2 - "@polkadot/rpc-core": 12.4.2 - "@polkadot/types": 12.4.2 - "@polkadot/types-codec": 12.4.2 - "@polkadot/util": ^13.0.2 - "@polkadot/util-crypto": ^13.0.2 + "@polkadot/api": 14.2.1 + "@polkadot/api-augment": 14.2.1 + "@polkadot/api-base": 14.2.1 + "@polkadot/rpc-core": 14.2.1 + "@polkadot/types": 14.2.1 + "@polkadot/types-codec": 14.2.1 + "@polkadot/util": ^13.2.2 + "@polkadot/util-crypto": ^13.2.2 rxjs: ^7.8.1 - tslib: ^2.6.3 - checksum: a209e498772ea33fe587327196f13b9779b7054bd986c48c8efeb8fe9c298a375ef478c72fe39f0afec303d418859deb2d8822b554b55640caf1c06e12beeaf1 - languageName: node - linkType: hard - -"@polkadot/api-derive@npm:13.2.1": - version: 13.2.1 - resolution: "@polkadot/api-derive@npm:13.2.1" - dependencies: - "@polkadot/api": 13.2.1 - "@polkadot/api-augment": 13.2.1 - "@polkadot/api-base": 13.2.1 - "@polkadot/rpc-core": 13.2.1 - "@polkadot/types": 13.2.1 - "@polkadot/types-codec": 13.2.1 - "@polkadot/util": ^13.1.1 - "@polkadot/util-crypto": ^13.1.1 - rxjs: ^7.8.1 - tslib: ^2.7.0 - checksum: 646a30f6474c69264260d4f1e71f9fab8f312611b534ee8829045ff62469761f4d9b29e24249fed807e7b419f7b91987e606f307a12c4df4ac8bd474cb34009c + tslib: ^2.8.0 + checksum: 3d1ceafce2b5414d72fd46c9115bb67922586b76b52abd0cf8edd87095f5ae6beb8b530105b2f17d2a3e26eb9b6d4e7267daee64412b6714575b30af8ff402a0 languageName: node linkType: hard @@ -3422,69 +3383,44 @@ __metadata: languageName: node linkType: hard -"@polkadot/api@npm:12.4.2, @polkadot/api@npm:^12.4.1": - version: 12.4.2 - resolution: "@polkadot/api@npm:12.4.2" - dependencies: - "@polkadot/api-augment": 12.4.2 - "@polkadot/api-base": 12.4.2 - "@polkadot/api-derive": 12.4.2 - "@polkadot/keyring": ^13.0.2 - "@polkadot/rpc-augment": 12.4.2 - "@polkadot/rpc-core": 12.4.2 - "@polkadot/rpc-provider": 12.4.2 - "@polkadot/types": 12.4.2 - "@polkadot/types-augment": 12.4.2 - "@polkadot/types-codec": 12.4.2 - "@polkadot/types-create": 12.4.2 - "@polkadot/types-known": 12.4.2 - "@polkadot/util": ^13.0.2 - "@polkadot/util-crypto": ^13.0.2 - eventemitter3: ^5.0.1 - rxjs: ^7.8.1 - tslib: ^2.6.3 - checksum: 763e24b6d65c6a573d5d02153b35be9a4f7fa76101e3ad163dbfb46d7c0cd27904d28e92058c405dcd5ea2585788663ccaae406da09479b4bce4496e8f8a6f11 - languageName: node - linkType: hard - -"@polkadot/api@npm:13.2.1, @polkadot/api@npm:^13.2.1": - version: 13.2.1 - resolution: "@polkadot/api@npm:13.2.1" - dependencies: - "@polkadot/api-augment": 13.2.1 - "@polkadot/api-base": 13.2.1 - "@polkadot/api-derive": 13.2.1 - "@polkadot/keyring": ^13.1.1 - "@polkadot/rpc-augment": 13.2.1 - "@polkadot/rpc-core": 13.2.1 - "@polkadot/rpc-provider": 13.2.1 - "@polkadot/types": 13.2.1 - "@polkadot/types-augment": 13.2.1 - "@polkadot/types-codec": 13.2.1 - "@polkadot/types-create": 13.2.1 - "@polkadot/types-known": 13.2.1 - "@polkadot/util": ^13.1.1 - "@polkadot/util-crypto": ^13.1.1 +"@polkadot/api@npm:14.2.1, @polkadot/api@npm:^14.1.1": + version: 14.2.1 + resolution: "@polkadot/api@npm:14.2.1" + dependencies: + "@polkadot/api-augment": 14.2.1 + "@polkadot/api-base": 14.2.1 + "@polkadot/api-derive": 14.2.1 + "@polkadot/keyring": ^13.2.2 + "@polkadot/rpc-augment": 14.2.1 + "@polkadot/rpc-core": 14.2.1 + "@polkadot/rpc-provider": 14.2.1 + "@polkadot/types": 14.2.1 + "@polkadot/types-augment": 14.2.1 + "@polkadot/types-codec": 14.2.1 + "@polkadot/types-create": 14.2.1 + "@polkadot/types-known": 14.2.1 + "@polkadot/util": ^13.2.2 + "@polkadot/util-crypto": ^13.2.2 eventemitter3: ^5.0.1 rxjs: ^7.8.1 - tslib: ^2.7.0 - checksum: 1cd5cd681173dee93279e149f923939f12e275d9c3278d3c63e1bb10249bdbd213b5d9b023620ff636ade6df353f08c3d18c83aa9f236e0b85fb5f2b1c74a8f2 + tslib: ^2.8.0 + checksum: ec35c575ac5368007a003dc660dfd6b524702581eb738592028afb5a2542f5f1bc7e95ce0b7570e3a2caab9184bd32fc7b1f26fd92a194c68fa4cc1c7881583f languageName: node linkType: hard -"@polkadot/extension-dapp@npm:^0.52.3": - version: 0.52.3 - resolution: "@polkadot/extension-dapp@npm:0.52.3" +"@polkadot/extension-dapp@npm:0.55.1": + version: 0.55.1 + resolution: "@polkadot/extension-dapp@npm:0.55.1" dependencies: - "@polkadot/extension-inject": 0.52.3 - "@polkadot/util": ^13.0.2 - "@polkadot/util-crypto": ^13.0.2 + "@polkadot/extension-inject": 0.55.1 + "@polkadot/util": ^13.2.1 + "@polkadot/util-crypto": ^13.2.1 tslib: ^2.6.2 peerDependencies: "@polkadot/api": "*" "@polkadot/util": "*" "@polkadot/util-crypto": "*" - checksum: 74284ae6d48099bf697134796782f1985f903d85964f7f36c8d044a8ac357e565fa28a0a54fc27c1019ded0375e7b7c9d151d7ada91884d9e146d2fefeddb788 + checksum: 190afaeb24d59c04c8d3c7609990a96c6be95b0a6f93b9e64f88946eddaa13a326ada6e367e03824ecaacd04c04acb82311b99d8fe48b63d8e4e6aaf8b842f35 languageName: node linkType: hard @@ -3506,21 +3442,21 @@ __metadata: languageName: node linkType: hard -"@polkadot/extension-inject@npm:0.52.3": - version: 0.52.3 - resolution: "@polkadot/extension-inject@npm:0.52.3" +"@polkadot/extension-inject@npm:0.55.1": + version: 0.55.1 + resolution: "@polkadot/extension-inject@npm:0.55.1" dependencies: - "@polkadot/api": ^12.4.1 - "@polkadot/rpc-provider": ^12.4.1 - "@polkadot/types": ^12.4.1 - "@polkadot/util": ^13.0.2 - "@polkadot/util-crypto": ^13.0.2 - "@polkadot/x-global": ^13.0.2 + "@polkadot/api": ^14.1.1 + "@polkadot/rpc-provider": ^14.1.1 + "@polkadot/types": ^14.1.1 + "@polkadot/util": ^13.2.1 + "@polkadot/util-crypto": ^13.2.1 + "@polkadot/x-global": ^13.2.1 tslib: ^2.6.2 peerDependencies: "@polkadot/api": "*" "@polkadot/util": "*" - checksum: d3bb7d7f9ece9d21978561925d11ddfc4cf78206cca6b68d55fe53a9e0196eedddf6d087764f4fe76e63d7f2898e588c5f9bbe71727a2baa84b2d3c97e59074f + checksum: 3c37db98688bd9f94d5efc6fff9a18fdae20bfcafc576298823c7886798f2a35d1c7bbc79891b54aa94501f86665a411c3478a8bab9ab7f479447266950e2008 languageName: node linkType: hard @@ -3538,31 +3474,17 @@ __metadata: languageName: node linkType: hard -"@polkadot/keyring@npm:^13.0.2": - version: 13.0.2 - resolution: "@polkadot/keyring@npm:13.0.2" +"@polkadot/keyring@npm:^13.2.2": + version: 13.2.2 + resolution: "@polkadot/keyring@npm:13.2.2" dependencies: - "@polkadot/util": 13.0.2 - "@polkadot/util-crypto": 13.0.2 - tslib: ^2.6.2 + "@polkadot/util": 13.2.2 + "@polkadot/util-crypto": 13.2.2 + tslib: ^2.8.0 peerDependencies: - "@polkadot/util": 13.0.2 - "@polkadot/util-crypto": 13.0.2 - checksum: 334aaee396e3f624341ac87bbf9288b3ae0b7c5d8ef222741b802563b1ae88c47f2b8ec2a1989cd62403e1ae0261b4380218c5e112d8a44674cf432216f5c3bb - languageName: node - linkType: hard - -"@polkadot/keyring@npm:^13.1.1": - version: 13.1.1 - resolution: "@polkadot/keyring@npm:13.1.1" - dependencies: - "@polkadot/util": 13.1.1 - "@polkadot/util-crypto": 13.1.1 - tslib: ^2.7.0 - peerDependencies: - "@polkadot/util": 13.1.1 - "@polkadot/util-crypto": 13.1.1 - checksum: 415077740d4971e4697f20e28705f7ee9c819f8f1f05f2ab3c52342cb23240028bb0dfce683f7e1ed46a66c1c290d2a688edbb29d594bbf0b57eb9a842e5f809 + "@polkadot/util": 13.2.2 + "@polkadot/util-crypto": 13.2.2 + checksum: a71a2dd6ddf6c5fef3504d994c7f2359f205f51fccb045b6a6cd95232df6266af165e7fcb05adf9a8ff6021d7f9cd5ad6744ff8ceefaab0faeda0ed68c8c7b9c languageName: node linkType: hard @@ -3577,25 +3499,14 @@ __metadata: languageName: node linkType: hard -"@polkadot/networks@npm:13.0.2, @polkadot/networks@npm:^13.0.2": - version: 13.0.2 - resolution: "@polkadot/networks@npm:13.0.2" - dependencies: - "@polkadot/util": 13.0.2 - "@substrate/ss58-registry": ^1.46.0 - tslib: ^2.6.2 - checksum: 4bc02ae6a95c0bf770ab2ba99af59013665edf4e759a228148289859dcc171be61d93359f6846a5d248707eb215bcbf2ca69ae9f63eb1720caa38ceb3dab7587 - languageName: node - linkType: hard - -"@polkadot/networks@npm:13.1.1, @polkadot/networks@npm:^13.1.1": - version: 13.1.1 - resolution: "@polkadot/networks@npm:13.1.1" +"@polkadot/networks@npm:13.2.2, @polkadot/networks@npm:^13.2.2": + version: 13.2.2 + resolution: "@polkadot/networks@npm:13.2.2" dependencies: - "@polkadot/util": 13.1.1 - "@substrate/ss58-registry": ^1.50.0 - tslib: ^2.7.0 - checksum: 82c11848e900259dc4c7a9b4829b566003bfb1db815316047042704d73820fb4658e1acdeb71a87de3bcbf531f89180de2f51ca8ef83659126073ef16efadb16 + "@polkadot/util": 13.2.2 + "@substrate/ss58-registry": ^1.51.0 + tslib: ^2.8.0 + checksum: 9f12a399fb12f1e6e9b2b8d746f7b1819a2dae5c4cc5145567198460b823a0acc01222e81660e2a4ae0d33904f13c18c67701cdcab41cb713d2f856632e2c460 languageName: node linkType: hard @@ -3612,29 +3523,16 @@ __metadata: languageName: node linkType: hard -"@polkadot/rpc-augment@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/rpc-augment@npm:12.4.2" +"@polkadot/rpc-augment@npm:14.2.1": + version: 14.2.1 + resolution: "@polkadot/rpc-augment@npm:14.2.1" dependencies: - "@polkadot/rpc-core": 12.4.2 - "@polkadot/types": 12.4.2 - "@polkadot/types-codec": 12.4.2 - "@polkadot/util": ^13.0.2 - tslib: ^2.6.3 - checksum: 0b329278b8b7217cdb87d451ed16e57f0d357db4e62f06d0315eea3f18db5be0078594dd0984896483f78c81d12e9bb62314c141d0a895f4e997ff49e981d2c5 - languageName: node - linkType: hard - -"@polkadot/rpc-augment@npm:13.2.1": - version: 13.2.1 - resolution: "@polkadot/rpc-augment@npm:13.2.1" - dependencies: - "@polkadot/rpc-core": 13.2.1 - "@polkadot/types": 13.2.1 - "@polkadot/types-codec": 13.2.1 - "@polkadot/util": ^13.1.1 - tslib: ^2.7.0 - checksum: f998195128f37ab0bb0d3b5729cd05293c73e7e56e78fd17b0495878d87033978a7c85b8adec5c14752f32394d34042a2aed79ccdb318c4a1688732fb76ad5ac + "@polkadot/rpc-core": 14.2.1 + "@polkadot/types": 14.2.1 + "@polkadot/types-codec": 14.2.1 + "@polkadot/util": ^13.2.2 + tslib: ^2.8.0 + checksum: 9415607166626ca3cc017085aec160db13b8d203a2408da2d914ef094a1eacf787f502d7edf4fde4540ede38f6072037d969beeac5cc68a29685773b9a12a238 languageName: node linkType: hard @@ -3652,31 +3550,17 @@ __metadata: languageName: node linkType: hard -"@polkadot/rpc-core@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/rpc-core@npm:12.4.2" +"@polkadot/rpc-core@npm:14.2.1": + version: 14.2.1 + resolution: "@polkadot/rpc-core@npm:14.2.1" dependencies: - "@polkadot/rpc-augment": 12.4.2 - "@polkadot/rpc-provider": 12.4.2 - "@polkadot/types": 12.4.2 - "@polkadot/util": ^13.0.2 + "@polkadot/rpc-augment": 14.2.1 + "@polkadot/rpc-provider": 14.2.1 + "@polkadot/types": 14.2.1 + "@polkadot/util": ^13.2.2 rxjs: ^7.8.1 - tslib: ^2.6.3 - checksum: 5a925296e14b4db61b1e37597934ad6a75b8cd7c195d5ef4a50dc200b453fdd86908770308076fe89364be280ad5777b187657b465486767baae67c163906258 - languageName: node - linkType: hard - -"@polkadot/rpc-core@npm:13.2.1": - version: 13.2.1 - resolution: "@polkadot/rpc-core@npm:13.2.1" - dependencies: - "@polkadot/rpc-augment": 13.2.1 - "@polkadot/rpc-provider": 13.2.1 - "@polkadot/types": 13.2.1 - "@polkadot/util": ^13.1.1 - rxjs: ^7.8.1 - tslib: ^2.7.0 - checksum: f2751d9e516d6452f62f603baf1b64fcbef8617b14398b6bd28a5152c7f9771ece3ad97e08a955bd930343a05d6ac58d2c9bf3c10de7a412976839452f6f2d8e + tslib: ^2.8.0 + checksum: b9550f61de431013c5d6f0eb0bbf1502e3a489038da3de5b32375eddd835b3a32d35565392c22d8640b167a06332eb58c8d2d9e5668f0b8c6cd481c60595045f languageName: node linkType: hard @@ -3704,51 +3588,27 @@ __metadata: languageName: node linkType: hard -"@polkadot/rpc-provider@npm:12.4.2, @polkadot/rpc-provider@npm:^12.4.1": - version: 12.4.2 - resolution: "@polkadot/rpc-provider@npm:12.4.2" +"@polkadot/rpc-provider@npm:14.2.1, @polkadot/rpc-provider@npm:^14.1.1": + version: 14.2.1 + resolution: "@polkadot/rpc-provider@npm:14.2.1" dependencies: - "@polkadot/keyring": ^13.0.2 - "@polkadot/types": 12.4.2 - "@polkadot/types-support": 12.4.2 - "@polkadot/util": ^13.0.2 - "@polkadot/util-crypto": ^13.0.2 - "@polkadot/x-fetch": ^13.0.2 - "@polkadot/x-global": ^13.0.2 - "@polkadot/x-ws": ^13.0.2 + "@polkadot/keyring": ^13.2.2 + "@polkadot/types": 14.2.1 + "@polkadot/types-support": 14.2.1 + "@polkadot/util": ^13.2.2 + "@polkadot/util-crypto": ^13.2.2 + "@polkadot/x-fetch": ^13.2.2 + "@polkadot/x-global": ^13.2.2 + "@polkadot/x-ws": ^13.2.2 "@substrate/connect": 0.8.11 eventemitter3: ^5.0.1 mock-socket: ^9.3.1 - nock: ^13.5.4 - tslib: ^2.6.3 + nock: ^13.5.5 + tslib: ^2.8.0 dependenciesMeta: "@substrate/connect": optional: true - checksum: 029c2e7628271f5bb7ab4688adc14dcb3a6d13c00a2e1404f96f8a81188c51573d116e4c869b55faae54979afe319e4121404b956487784d52b5fd4a4c59bf26 - languageName: node - linkType: hard - -"@polkadot/rpc-provider@npm:13.2.1": - version: 13.2.1 - resolution: "@polkadot/rpc-provider@npm:13.2.1" - dependencies: - "@polkadot/keyring": ^13.1.1 - "@polkadot/types": 13.2.1 - "@polkadot/types-support": 13.2.1 - "@polkadot/util": ^13.1.1 - "@polkadot/util-crypto": ^13.1.1 - "@polkadot/x-fetch": ^13.1.1 - "@polkadot/x-global": ^13.1.1 - "@polkadot/x-ws": ^13.1.1 - "@substrate/connect": 0.8.11 - eventemitter3: ^5.0.1 - mock-socket: ^9.3.1 - nock: ^13.5.4 - tslib: ^2.7.0 - dependenciesMeta: - "@substrate/connect": - optional: true - checksum: df0507226679bc77dcfdbd311aa7abaad2be2283727677c5e2fff024ce63401d032578d323b5588e5f15b38861e310fdc8e9978086ebd4725c49317b151c5077 + checksum: 2fd4ed20769fb5d96daee666f0c2d3c890f68e7d05aace64fb1f5d54f4105f823b47c4833650f9be3f6ed435765fcad1d9b46f9ccdb8960fda53c1f7794a2284 languageName: node linkType: hard @@ -3764,27 +3624,15 @@ __metadata: languageName: node linkType: hard -"@polkadot/types-augment@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/types-augment@npm:12.4.2" - dependencies: - "@polkadot/types": 12.4.2 - "@polkadot/types-codec": 12.4.2 - "@polkadot/util": ^13.0.2 - tslib: ^2.6.3 - checksum: 15c0d82e190e97dd91df068d3cd9717364fbdfb1c8f3f873ff5c9156b76ee0ae78550d935dd2f4cf7e47d477e7132575d1154c27f3eccb78676e001fea9945c1 - languageName: node - linkType: hard - -"@polkadot/types-augment@npm:13.2.1": - version: 13.2.1 - resolution: "@polkadot/types-augment@npm:13.2.1" +"@polkadot/types-augment@npm:14.2.1": + version: 14.2.1 + resolution: "@polkadot/types-augment@npm:14.2.1" dependencies: - "@polkadot/types": 13.2.1 - "@polkadot/types-codec": 13.2.1 - "@polkadot/util": ^13.1.1 - tslib: ^2.7.0 - checksum: 4d2247471c959e2c6ac9b5483a7e963f939a7fadbc65a9745de33585e2796e467a97e3ebe8bf2b20cd3eecef6dd17080c647778365dd45a84836efe2ea54a5f1 + "@polkadot/types": 14.2.1 + "@polkadot/types-codec": 14.2.1 + "@polkadot/util": ^13.2.2 + tslib: ^2.8.0 + checksum: 250d564f2c9d195d6c85ebeec6199745d3cb2ab49d1406b9acbb57b50ca2a1e902c84a78d579ffeda956804fcf2360b325f04350f48db06c6102ba0b7364698c languageName: node linkType: hard @@ -3799,25 +3647,14 @@ __metadata: languageName: node linkType: hard -"@polkadot/types-codec@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/types-codec@npm:12.4.2" +"@polkadot/types-codec@npm:14.2.1": + version: 14.2.1 + resolution: "@polkadot/types-codec@npm:14.2.1" dependencies: - "@polkadot/util": ^13.0.2 - "@polkadot/x-bigint": ^13.0.2 - tslib: ^2.6.3 - checksum: d5357e70c1e48a3e34bfffdbc1c88d59fa014c984bcdb09fa61153ed0afe96908852c235112b215b26e4ff8cd86e7167fad8a73a57cc6da473ef5d0e214ee8ec - languageName: node - linkType: hard - -"@polkadot/types-codec@npm:13.2.1": - version: 13.2.1 - resolution: "@polkadot/types-codec@npm:13.2.1" - dependencies: - "@polkadot/util": ^13.1.1 - "@polkadot/x-bigint": ^13.1.1 - tslib: ^2.7.0 - checksum: afb485abd10d8f2c27d3304de0ad68158ea848036cc25cb48f0b02a5342202f0bceb4361d225217678196e5c3aba6e864e48c076e18bbf6eb01f904a228b11b4 + "@polkadot/util": ^13.2.2 + "@polkadot/x-bigint": ^13.2.2 + tslib: ^2.8.0 + checksum: fbfb2922422ed6723b5a7c2a4f8f91b7e841aa82311d8af71fabfaa320eb944a6a6935593ac4e942d6c240ff9aa048cff46b196ab8f4a944683f6dba0af6744f languageName: node linkType: hard @@ -3832,25 +3669,14 @@ __metadata: languageName: node linkType: hard -"@polkadot/types-create@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/types-create@npm:12.4.2" +"@polkadot/types-create@npm:14.2.1": + version: 14.2.1 + resolution: "@polkadot/types-create@npm:14.2.1" dependencies: - "@polkadot/types-codec": 12.4.2 - "@polkadot/util": ^13.0.2 - tslib: ^2.6.3 - checksum: 44b2491a1feaba192f818e9ab3ace507e8c6d155f5451f3324342edee1bd2a21b65020a41c4e258ce4900c7209d7dffe7f31b1a9425dad44a26d7f28fe8480a5 - languageName: node - linkType: hard - -"@polkadot/types-create@npm:13.2.1": - version: 13.2.1 - resolution: "@polkadot/types-create@npm:13.2.1" - dependencies: - "@polkadot/types-codec": 13.2.1 - "@polkadot/util": ^13.1.1 - tslib: ^2.7.0 - checksum: 6af005ee71e862be7e23409a3947e22280f627026d314ca7eab3ea00273006fb1e83305651f6011605532be63892a9e13509f9fdfe8a4f7905209abc00b68cdb + "@polkadot/types-codec": 14.2.1 + "@polkadot/util": ^13.2.2 + tslib: ^2.8.0 + checksum: 176db32e5fba4e0aadc420fac545429513ae23eed3cf09710ce6976a6100290c289d16ba4eb90b479c47ef303eda9c8460528b93899f513b119ae7075474a53d languageName: node linkType: hard @@ -3868,31 +3694,17 @@ __metadata: languageName: node linkType: hard -"@polkadot/types-known@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/types-known@npm:12.4.2" +"@polkadot/types-known@npm:14.2.1": + version: 14.2.1 + resolution: "@polkadot/types-known@npm:14.2.1" dependencies: - "@polkadot/networks": ^13.0.2 - "@polkadot/types": 12.4.2 - "@polkadot/types-codec": 12.4.2 - "@polkadot/types-create": 12.4.2 - "@polkadot/util": ^13.0.2 - tslib: ^2.6.3 - checksum: 9410347693b1c14d8a1fa52e3a633b1345ceae34ca6e63f86dd87666bf752da47dff7f8aa60f249d640151025034078cf837c18929ac0d72d626159c045a1a02 - languageName: node - linkType: hard - -"@polkadot/types-known@npm:13.2.1": - version: 13.2.1 - resolution: "@polkadot/types-known@npm:13.2.1" - dependencies: - "@polkadot/networks": ^13.1.1 - "@polkadot/types": 13.2.1 - "@polkadot/types-codec": 13.2.1 - "@polkadot/types-create": 13.2.1 - "@polkadot/util": ^13.1.1 - tslib: ^2.7.0 - checksum: ff26b3781e6c9d761c6d72bc30471f19ddcfe3513f6747125a63fed69d26e06b5c7cae2cb725953ab4837b8106835c4b56c5a07e68292a36d9be8b5d98bbebff + "@polkadot/networks": ^13.2.2 + "@polkadot/types": 14.2.1 + "@polkadot/types-codec": 14.2.1 + "@polkadot/types-create": 14.2.1 + "@polkadot/util": ^13.2.2 + tslib: ^2.8.0 + checksum: 62c5b79cea8ba0ec4d6a83cdda79620c79a1d6f5321273b570d412462ece18457b3025068009cc9ca709a9b805a1fbe0f731885bda084401363f64192de99b10 languageName: node linkType: hard @@ -3906,23 +3718,13 @@ __metadata: languageName: node linkType: hard -"@polkadot/types-support@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/types-support@npm:12.4.2" - dependencies: - "@polkadot/util": ^13.0.2 - tslib: ^2.6.3 - checksum: 77b96fa39717fbe0104b995a95b90e51e849f151de8d922e75f03a99c1b60aa1ee65029832b16e791692b4f3c17668ad8777fb6d2ce3f6019ca9aa01ba2135b0 - languageName: node - linkType: hard - -"@polkadot/types-support@npm:13.2.1": - version: 13.2.1 - resolution: "@polkadot/types-support@npm:13.2.1" +"@polkadot/types-support@npm:14.2.1": + version: 14.2.1 + resolution: "@polkadot/types-support@npm:14.2.1" dependencies: - "@polkadot/util": ^13.1.1 - tslib: ^2.7.0 - checksum: 7861aaab3249252d530995c7ba7f56ff16577b98cb589ea54261aa827ba45e70e4bdd94a411797ab9ccafd08590c66f6219685b9802443d4f4e59b58750fdc25 + "@polkadot/util": ^13.2.2 + tslib: ^2.8.0 + checksum: e6d230b7a74bcfb3297a088a8ca84cf87f3f449ca3eeff1d774807d70f39878882d89fd20fc8195a55d10f69b8e446cdd5b1ce31034859ecceb5cc73fb66c608 languageName: node linkType: hard @@ -3942,35 +3744,19 @@ __metadata: languageName: node linkType: hard -"@polkadot/types@npm:12.4.2, @polkadot/types@npm:^12.4.1": - version: 12.4.2 - resolution: "@polkadot/types@npm:12.4.2" +"@polkadot/types@npm:14.2.1, @polkadot/types@npm:^14.1.1": + version: 14.2.1 + resolution: "@polkadot/types@npm:14.2.1" dependencies: - "@polkadot/keyring": ^13.0.2 - "@polkadot/types-augment": 12.4.2 - "@polkadot/types-codec": 12.4.2 - "@polkadot/types-create": 12.4.2 - "@polkadot/util": ^13.0.2 - "@polkadot/util-crypto": ^13.0.2 + "@polkadot/keyring": ^13.2.2 + "@polkadot/types-augment": 14.2.1 + "@polkadot/types-codec": 14.2.1 + "@polkadot/types-create": 14.2.1 + "@polkadot/util": ^13.2.2 + "@polkadot/util-crypto": ^13.2.2 rxjs: ^7.8.1 - tslib: ^2.6.3 - checksum: 7916d6ce73bc36e03582113114df01677f0cbfb780349d630f0da7a3413da42dbf9e9d5c97abdfb1918d67f6954c06ea3380cb162297c26503aa18b220ecec9d - languageName: node - linkType: hard - -"@polkadot/types@npm:13.2.1": - version: 13.2.1 - resolution: "@polkadot/types@npm:13.2.1" - dependencies: - "@polkadot/keyring": ^13.1.1 - "@polkadot/types-augment": 13.2.1 - "@polkadot/types-codec": 13.2.1 - "@polkadot/types-create": 13.2.1 - "@polkadot/util": ^13.1.1 - "@polkadot/util-crypto": ^13.1.1 - rxjs: ^7.8.1 - tslib: ^2.7.0 - checksum: 7a2a970907c6d0a4cf4018cea940dc42d7900a8a770cb436e6075a99db9e13c53ca359212d95fb4979c9c97924f7355803ffd68a0fff5f0522a86ed40695deae + tslib: ^2.8.0 + checksum: 7d249df568e76602db686eea5e6299a99f98ce5ebdf4663c0e1d58a7e83ce99fdccdd54846744fbe9f6eb61a43fdd72ab3a46a6acd943a4534520c18bf9d4d86 languageName: node linkType: hard @@ -3994,43 +3780,23 @@ __metadata: languageName: node linkType: hard -"@polkadot/util-crypto@npm:13.0.2, @polkadot/util-crypto@npm:^13.0.2": - version: 13.0.2 - resolution: "@polkadot/util-crypto@npm:13.0.2" +"@polkadot/util-crypto@npm:13.2.2, @polkadot/util-crypto@npm:^13.2.1, @polkadot/util-crypto@npm:^13.2.2": + version: 13.2.2 + resolution: "@polkadot/util-crypto@npm:13.2.2" dependencies: "@noble/curves": ^1.3.0 "@noble/hashes": ^1.3.3 - "@polkadot/networks": 13.0.2 - "@polkadot/util": 13.0.2 - "@polkadot/wasm-crypto": ^7.3.2 - "@polkadot/wasm-util": ^7.3.2 - "@polkadot/x-bigint": 13.0.2 - "@polkadot/x-randomvalues": 13.0.2 - "@scure/base": ^1.1.5 - tslib: ^2.6.2 - peerDependencies: - "@polkadot/util": 13.0.2 - checksum: 025bb2179d77b73dd8af775192627fe31e985e365fbecf38d7903a663aa11b703fa3f23fbb65e53d0a9710cc087e0cb9a113b0a660d8e9b36de21c36c1bc40d7 - languageName: node - linkType: hard - -"@polkadot/util-crypto@npm:13.1.1, @polkadot/util-crypto@npm:^13.1.1": - version: 13.1.1 - resolution: "@polkadot/util-crypto@npm:13.1.1" - dependencies: - "@noble/curves": ^1.3.0 - "@noble/hashes": ^1.3.3 - "@polkadot/networks": 13.1.1 - "@polkadot/util": 13.1.1 - "@polkadot/wasm-crypto": ^7.3.2 - "@polkadot/wasm-util": ^7.3.2 - "@polkadot/x-bigint": 13.1.1 - "@polkadot/x-randomvalues": 13.1.1 + "@polkadot/networks": 13.2.2 + "@polkadot/util": 13.2.2 + "@polkadot/wasm-crypto": ^7.4.1 + "@polkadot/wasm-util": ^7.4.1 + "@polkadot/x-bigint": 13.2.2 + "@polkadot/x-randomvalues": 13.2.2 "@scure/base": ^1.1.7 - tslib: ^2.7.0 + tslib: ^2.8.0 peerDependencies: - "@polkadot/util": 13.1.1 - checksum: 54a99d68ffe3cc2c455f4a919e5b64e801f0a029b22823d8fb387a97ca70dafaf125449a9f0d713abce96f7e3cb997f1920c6a669f42f3c162792fb48f18e7b8 + "@polkadot/util": 13.2.2 + checksum: 8dbfd95f9b9134ff0320d461a86b374333854334f65b4ef1e31f2932866679544fd1502ddd7b568191f38f53df376e2401057682709a032e5b489b5bd7d754a4 languageName: node linkType: hard @@ -4049,33 +3815,18 @@ __metadata: languageName: node linkType: hard -"@polkadot/util@npm:13.0.2, @polkadot/util@npm:^13.0.2": - version: 13.0.2 - resolution: "@polkadot/util@npm:13.0.2" +"@polkadot/util@npm:13.2.2, @polkadot/util@npm:^13.2.1, @polkadot/util@npm:^13.2.2": + version: 13.2.2 + resolution: "@polkadot/util@npm:13.2.2" dependencies: - "@polkadot/x-bigint": 13.0.2 - "@polkadot/x-global": 13.0.2 - "@polkadot/x-textdecoder": 13.0.2 - "@polkadot/x-textencoder": 13.0.2 - "@types/bn.js": ^5.1.5 + "@polkadot/x-bigint": 13.2.2 + "@polkadot/x-global": 13.2.2 + "@polkadot/x-textdecoder": 13.2.2 + "@polkadot/x-textencoder": 13.2.2 + "@types/bn.js": ^5.1.6 bn.js: ^5.2.1 - tslib: ^2.6.2 - checksum: c7d71898395d2e9fb994ed53be10e9b44e9cb6f6bd502ce31a48848dda032a9e3f462a6039759798023425c6e17d5a7515784f0a8c0ab74c1a0a2691b0ef3660 - languageName: node - linkType: hard - -"@polkadot/util@npm:13.1.1, @polkadot/util@npm:^13.1.1": - version: 13.1.1 - resolution: "@polkadot/util@npm:13.1.1" - dependencies: - "@polkadot/x-bigint": 13.1.1 - "@polkadot/x-global": 13.1.1 - "@polkadot/x-textdecoder": 13.1.1 - "@polkadot/x-textencoder": 13.1.1 - "@types/bn.js": ^5.1.5 - bn.js: ^5.2.1 - tslib: ^2.7.0 - checksum: 88c2095454539f9583b1cef96b7265c9890bd7c345823f572ea345f0ee7d9f8b088144a34b84d43a298f3e41fc5f2932e7ec95e137aa09891f28509d0a3d5733 + tslib: ^2.8.0 + checksum: 26150ecf09251c1d12f48587618ac33647d6a0d0e2f18eb459157b1c7c45b9f62ef65104d77732d2d9eab309c2d209a8d3a09c773c4542b8cd6536fa5d7fc578 languageName: node linkType: hard @@ -4092,6 +3843,19 @@ __metadata: languageName: node linkType: hard +"@polkadot/wasm-bridge@npm:7.4.1": + version: 7.4.1 + resolution: "@polkadot/wasm-bridge@npm:7.4.1" + dependencies: + "@polkadot/wasm-util": 7.4.1 + tslib: ^2.7.0 + peerDependencies: + "@polkadot/util": "*" + "@polkadot/x-randomvalues": "*" + checksum: 2cb4389853764eccebbe37a36e583a240b06e20c726247173c3ff5d85e198544c17ebef302da2e40ccd67f4fdb81454ab01cfbfc2fb93b1b3553d5bcdf4fe1bc + languageName: node + linkType: hard + "@polkadot/wasm-crypto-asmjs@npm:7.3.2": version: 7.3.2 resolution: "@polkadot/wasm-crypto-asmjs@npm:7.3.2" @@ -4103,6 +3867,17 @@ __metadata: languageName: node linkType: hard +"@polkadot/wasm-crypto-asmjs@npm:7.4.1": + version: 7.4.1 + resolution: "@polkadot/wasm-crypto-asmjs@npm:7.4.1" + dependencies: + tslib: ^2.7.0 + peerDependencies: + "@polkadot/util": "*" + checksum: 983c345b034723d1967349f446682f79c1ee02030895153fd4aa137cd00bbf8788ddfeb0825e2118ee5db2894707f4224d61eabe931c028d22d1f10e52a1acd8 + languageName: node + linkType: hard + "@polkadot/wasm-crypto-init@npm:7.3.2": version: 7.3.2 resolution: "@polkadot/wasm-crypto-init@npm:7.3.2" @@ -4119,6 +3894,22 @@ __metadata: languageName: node linkType: hard +"@polkadot/wasm-crypto-init@npm:7.4.1": + version: 7.4.1 + resolution: "@polkadot/wasm-crypto-init@npm:7.4.1" + dependencies: + "@polkadot/wasm-bridge": 7.4.1 + "@polkadot/wasm-crypto-asmjs": 7.4.1 + "@polkadot/wasm-crypto-wasm": 7.4.1 + "@polkadot/wasm-util": 7.4.1 + tslib: ^2.7.0 + peerDependencies: + "@polkadot/util": "*" + "@polkadot/x-randomvalues": "*" + checksum: fc697dc76d99b9597750abe3739da28ed3731b199eb8efc522bab03bca4fb9b34ece091ebd9bd26509d75a9785078724417754ac45e1fec4ed541b805fc75025 + languageName: node + linkType: hard + "@polkadot/wasm-crypto-wasm@npm:7.3.2": version: 7.3.2 resolution: "@polkadot/wasm-crypto-wasm@npm:7.3.2" @@ -4131,6 +3922,18 @@ __metadata: languageName: node linkType: hard +"@polkadot/wasm-crypto-wasm@npm:7.4.1": + version: 7.4.1 + resolution: "@polkadot/wasm-crypto-wasm@npm:7.4.1" + dependencies: + "@polkadot/wasm-util": 7.4.1 + tslib: ^2.7.0 + peerDependencies: + "@polkadot/util": "*" + checksum: 303c53cdb5a9219f52827cb51bae8be3e897317280adea8a6507a5cbf3ad4b4bd62b5ca7ceba02f972dc0df1e36a4a169b9eaf863076a913c2a612e9c71742f4 + languageName: node + linkType: hard + "@polkadot/wasm-crypto@npm:^7.3.2": version: 7.3.2 resolution: "@polkadot/wasm-crypto@npm:7.3.2" @@ -4148,6 +3951,23 @@ __metadata: languageName: node linkType: hard +"@polkadot/wasm-crypto@npm:^7.4.1": + version: 7.4.1 + resolution: "@polkadot/wasm-crypto@npm:7.4.1" + dependencies: + "@polkadot/wasm-bridge": 7.4.1 + "@polkadot/wasm-crypto-asmjs": 7.4.1 + "@polkadot/wasm-crypto-init": 7.4.1 + "@polkadot/wasm-crypto-wasm": 7.4.1 + "@polkadot/wasm-util": 7.4.1 + tslib: ^2.7.0 + peerDependencies: + "@polkadot/util": "*" + "@polkadot/x-randomvalues": "*" + checksum: c3c155ad08a3be5b3de22743a3e8f3658082150138e770d4604e55256671021fb9d2f191fc228b0a7893a1af1cfce21daa11f7300a8b4cf1037de01aad583dcf + languageName: node + linkType: hard + "@polkadot/wasm-util@npm:7.3.2, @polkadot/wasm-util@npm:^7.3.2": version: 7.3.2 resolution: "@polkadot/wasm-util@npm:7.3.2" @@ -4159,6 +3979,17 @@ __metadata: languageName: node linkType: hard +"@polkadot/wasm-util@npm:7.4.1, @polkadot/wasm-util@npm:^7.4.1": + version: 7.4.1 + resolution: "@polkadot/wasm-util@npm:7.4.1" + dependencies: + tslib: ^2.7.0 + peerDependencies: + "@polkadot/util": "*" + checksum: 16995482059ea7b3fa95ecb8bddd1465af64ca8b0b42b9942839fd0aa7bf556b7f4c914eb3bfe035d73ec5f1dc91f1b0b5d502bfb9d8b809d4399cd15b934e70 + languageName: node + linkType: hard + "@polkadot/x-bigint@npm:12.6.2, @polkadot/x-bigint@npm:^12.6.2": version: 12.6.2 resolution: "@polkadot/x-bigint@npm:12.6.2" @@ -4169,23 +4000,13 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-bigint@npm:13.0.2, @polkadot/x-bigint@npm:^13.0.2": - version: 13.0.2 - resolution: "@polkadot/x-bigint@npm:13.0.2" +"@polkadot/x-bigint@npm:13.2.2, @polkadot/x-bigint@npm:^13.2.2": + version: 13.2.2 + resolution: "@polkadot/x-bigint@npm:13.2.2" dependencies: - "@polkadot/x-global": 13.0.2 - tslib: ^2.6.2 - checksum: a1c9d9ab3aa27f7a68a879c76cea38ca4757ae4802c6d2a7402dbfbf31468c4dd3c4f1e852e62c0a1bff18889fccac1ccbc38649bf96e9473948ea7d7c2899f3 - languageName: node - linkType: hard - -"@polkadot/x-bigint@npm:13.1.1, @polkadot/x-bigint@npm:^13.1.1": - version: 13.1.1 - resolution: "@polkadot/x-bigint@npm:13.1.1" - dependencies: - "@polkadot/x-global": 13.1.1 - tslib: ^2.7.0 - checksum: 1c2ca55a7e49306a1c5ae5110c5dd13ad7c14e8a6f0ec36226571ab8c4ad468351f97c36ddea2ad88bd540c786dc27941db6ee92dfede42e75e053982e439559 + "@polkadot/x-global": 13.2.2 + tslib: ^2.8.0 + checksum: 983001a8b12ed3f4f226c7a58726fcb762c6bc93c451892fb8a998e6c22057cf6f35d909cd5435ca0baddebcdc389f0adae1f3106a5190b602e9d426eaaed884 languageName: node linkType: hard @@ -4200,25 +4021,14 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-fetch@npm:^13.0.2": - version: 13.0.2 - resolution: "@polkadot/x-fetch@npm:13.0.2" +"@polkadot/x-fetch@npm:^13.2.2": + version: 13.2.2 + resolution: "@polkadot/x-fetch@npm:13.2.2" dependencies: - "@polkadot/x-global": 13.0.2 + "@polkadot/x-global": 13.2.2 node-fetch: ^3.3.2 - tslib: ^2.6.2 - checksum: 459948a2b95601b0a39a7eb55277e80bd33e2df1ecab133dbe9823e020d3d5f2a64056911fc2072d0c328550c510e7e0ec45327b354530ae83306d536c616e29 - languageName: node - linkType: hard - -"@polkadot/x-fetch@npm:^13.1.1": - version: 13.1.1 - resolution: "@polkadot/x-fetch@npm:13.1.1" - dependencies: - "@polkadot/x-global": 13.1.1 - node-fetch: ^3.3.2 - tslib: ^2.7.0 - checksum: 4b94ec5d4f05981ab7256998f2aafbf1137ec65efb3084fc6f9ee025267f1a3f032fed3e598eabf367f572098a2d773bcf5760762bce59fa3c2af49e4d9e4925 + tslib: ^2.8.0 + checksum: 53d3e279cae86fe0b5ef929049fbec85b40c13e8c8de1601e68bd036090085e3edc964cf2cc1d7a9022ca4e15e6353b905b32d95d8b8ba760278de2e52fee67a languageName: node linkType: hard @@ -4231,21 +4041,12 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-global@npm:13.0.2, @polkadot/x-global@npm:^13.0.2": - version: 13.0.2 - resolution: "@polkadot/x-global@npm:13.0.2" +"@polkadot/x-global@npm:13.2.2, @polkadot/x-global@npm:^13.2.1, @polkadot/x-global@npm:^13.2.2": + version: 13.2.2 + resolution: "@polkadot/x-global@npm:13.2.2" dependencies: - tslib: ^2.6.2 - checksum: b487bf2a15d77681efae5e928364526102cff48207a871662515c500404ae58d9d08df813fd675c8bf0a2744dbf4648db6a0fe927993e597e8391349295560c8 - languageName: node - linkType: hard - -"@polkadot/x-global@npm:13.1.1, @polkadot/x-global@npm:^13.1.1": - version: 13.1.1 - resolution: "@polkadot/x-global@npm:13.1.1" - dependencies: - tslib: ^2.7.0 - checksum: 0cea1b38cb19b07ec1d50d2913f3187e1ecd7a72e58c49017cad93d1f944d0236842e224b5f4ebe5d1f99ca31483643c33500e385553ed774128e0f00edecee8 + tslib: ^2.8.0 + checksum: e779b89dc9aa2fcb56d82b7f98bf213abca90c0176c9e1c40931c3c98f5a4a95ceebc826024f479a897ac408323ed8de71735b2f5513a98a0c50afacbd48d9cb languageName: node linkType: hard @@ -4262,29 +4063,16 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-randomvalues@npm:13.0.2": - version: 13.0.2 - resolution: "@polkadot/x-randomvalues@npm:13.0.2" +"@polkadot/x-randomvalues@npm:13.2.2": + version: 13.2.2 + resolution: "@polkadot/x-randomvalues@npm:13.2.2" dependencies: - "@polkadot/x-global": 13.0.2 - tslib: ^2.6.2 + "@polkadot/x-global": 13.2.2 + tslib: ^2.8.0 peerDependencies: - "@polkadot/util": 13.0.2 + "@polkadot/util": 13.2.2 "@polkadot/wasm-util": "*" - checksum: 3968ca273ccdc3055466a8bdeae64141ef20dd5451f7fc750eaef28465460e41d28cdd4eadedf3b4ca94024c9ebae023a8a04eb946b9fd17a1ff9c105ebfe39c - languageName: node - linkType: hard - -"@polkadot/x-randomvalues@npm:13.1.1": - version: 13.1.1 - resolution: "@polkadot/x-randomvalues@npm:13.1.1" - dependencies: - "@polkadot/x-global": 13.1.1 - tslib: ^2.7.0 - peerDependencies: - "@polkadot/util": 13.1.1 - "@polkadot/wasm-util": "*" - checksum: 30d8d0c4063d5f85d6f4e55c14822dc0304bb115c46a040f8a74a89fecbe20cfc8f8ef826ab816eedc0b80986ecec20d6d76de2095fa7caf203c761a6c2f1a45 + checksum: 7405e7a0e72cd47c5b7b3c8c68f816e3f01fc98443f2fa8f862bbf5b92067d0ea75ca50c838e5206614eec850be34f373bbc63e710530509defe68421645a66b languageName: node linkType: hard @@ -4298,23 +4086,13 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-textdecoder@npm:13.0.2": - version: 13.0.2 - resolution: "@polkadot/x-textdecoder@npm:13.0.2" +"@polkadot/x-textdecoder@npm:13.2.2": + version: 13.2.2 + resolution: "@polkadot/x-textdecoder@npm:13.2.2" dependencies: - "@polkadot/x-global": 13.0.2 - tslib: ^2.6.2 - checksum: 586c970c66a014471b5354d41a55aa6dbeaa4aec041153d294205d7f86f93cfb6cb5c274b6ef38b0923b515b531bc8608fea7cdc6116c6dc61c370d892b207e4 - languageName: node - linkType: hard - -"@polkadot/x-textdecoder@npm:13.1.1": - version: 13.1.1 - resolution: "@polkadot/x-textdecoder@npm:13.1.1" - dependencies: - "@polkadot/x-global": 13.1.1 - tslib: ^2.7.0 - checksum: 03007249aee07501e8747a2e19448cb435ee5ca7c4e7dc1de667e811ee813e960311f26f1c1ca989391fb5d28600f68b72eded96ee643d0673b4d8e84cfb2ca0 + "@polkadot/x-global": 13.2.2 + tslib: ^2.8.0 + checksum: f311f8092dc07f979ed7d4299967b0055d6c258c6357e60c0ceda2a0f4defbdfbdd321ff442db258fde6a82425728e995cf2e08b92362fed6d0ee54e3098534f languageName: node linkType: hard @@ -4328,23 +4106,13 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-textencoder@npm:13.0.2": - version: 13.0.2 - resolution: "@polkadot/x-textencoder@npm:13.0.2" +"@polkadot/x-textencoder@npm:13.2.2": + version: 13.2.2 + resolution: "@polkadot/x-textencoder@npm:13.2.2" dependencies: - "@polkadot/x-global": 13.0.2 - tslib: ^2.6.2 - checksum: b2db5ab0fd94b8a13816f028f9fb52e0f00c43df4a727c01911902b5fc11bec476b02b92aee5a98adabf4696907e828752c6e0eb9bece79f0440675e4eb030c9 - languageName: node - linkType: hard - -"@polkadot/x-textencoder@npm:13.1.1": - version: 13.1.1 - resolution: "@polkadot/x-textencoder@npm:13.1.1" - dependencies: - "@polkadot/x-global": 13.1.1 - tslib: ^2.7.0 - checksum: 9a72e477a3db29c273f245317cfc72e2752322a3317bc5aa6818e3c620e17551f5bd0685290ed7b67ccc8d3bf94118d806f6c64cff958983e6d8f45278769f29 + "@polkadot/x-global": 13.2.2 + tslib: ^2.8.0 + checksum: dcc46246d15a5064bd29dc219805135368655f55c863343e5d5af20b51b87c18f7d9f67d015799eb9c33d3c7dd2107b2c324e411bb07555d38ad46cf0c023928 languageName: node linkType: hard @@ -4359,25 +4127,14 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-ws@npm:^13.0.2": - version: 13.0.2 - resolution: "@polkadot/x-ws@npm:13.0.2" - dependencies: - "@polkadot/x-global": 13.0.2 - tslib: ^2.6.2 - ws: ^8.16.0 - checksum: c5aad76a3e121016dd740eddaf5601b2d98b7e568da51b6a0ffe4bced6dfb7373a15067d0c5c267e6daed40ea55014ef4b875c5eaf395c8b3fcd9e85047d2dd9 - languageName: node - linkType: hard - -"@polkadot/x-ws@npm:^13.1.1": - version: 13.1.1 - resolution: "@polkadot/x-ws@npm:13.1.1" +"@polkadot/x-ws@npm:^13.2.2": + version: 13.2.2 + resolution: "@polkadot/x-ws@npm:13.2.2" dependencies: - "@polkadot/x-global": 13.1.1 - tslib: ^2.7.0 - ws: ^8.16.0 - checksum: 10d1f191d19179054c5dd6896b6e5668ffab249f5e301e94f14006a8319dacc292bf4c6a323549e156d98dcbdd9c67659888039847a0c6c7cd0437bbf0f3cdb2 + "@polkadot/x-global": 13.2.2 + tslib: ^2.8.0 + ws: ^8.18.0 + checksum: b488d524ae12ff19d7bab28a5cbc8e58a0cfe44dc829f7d3bdc949936af566f2737500d3c0cd33e8434d5b389d26670ed0c856a3eb5dd3df3f5bd193e2396b2a languageName: node linkType: hard @@ -5527,8 +5284,8 @@ __metadata: "@interlay/monetary-js": ^0.5.3 "@next/env": ^13.3.0 "@osn/eslint-config": ^1.0.2 - "@osn/icons": ^1.144.0 - "@polkadot/util-crypto": ^13.1.1 + "@osn/icons": ^1.146.0 + "@polkadot/util-crypto": ^13.2.2 "@svgr/webpack": ^7.0.0 "@types/lodash-es": ^4.17.12 bignumber.js: ^9.0.2 @@ -5563,7 +5320,7 @@ __metadata: "@next/bundle-analyzer": ^14.2.4 "@next/env": ^13.3.0 "@osn/eslint-config": ^1.0.2 - "@osn/icons": ^1.144.0 + "@osn/icons": ^1.146.0 "@svgr/webpack": ^7.0.0 "@types/lodash-es": ^4.17.12 bignumber.js: ^9.0.2 @@ -5680,17 +5437,10 @@ __metadata: languageName: node linkType: hard -"@substrate/ss58-registry@npm:^1.46.0": - version: 1.49.0 - resolution: "@substrate/ss58-registry@npm:1.49.0" - checksum: 917437915d5ba98c46c650dce2fbe1f6a7bbcf2a6fa058df2a751743c774db37d6b5dacab4c2ce8bdf9d52275b2d325fcc63f6f08d37e5428fa133ff72e19c56 - languageName: node - linkType: hard - -"@substrate/ss58-registry@npm:^1.50.0": - version: 1.50.0 - resolution: "@substrate/ss58-registry@npm:1.50.0" - checksum: d19d933fadf9bfbebd1c4a62c750620de34bd920ca6beb3ad8d66147c6d672e0773b57fce8394ec52a36c60d0564a92b7961ed1eac8508bca0248e23f62b8460 +"@substrate/ss58-registry@npm:^1.51.0": + version: 1.51.0 + resolution: "@substrate/ss58-registry@npm:1.51.0" + checksum: bfcba035e14648801f74802c76b195c22a86875cca89a577e21f5edd3e800578486f964a5117bad4b272f21695f8557fe713c3031c0c81269b76259470eb5a74 languageName: node linkType: hard @@ -5986,6 +5736,15 @@ __metadata: languageName: node linkType: hard +"@types/bn.js@npm:^5.1.6": + version: 5.1.6 + resolution: "@types/bn.js@npm:5.1.6" + dependencies: + "@types/node": "*" + checksum: 887411126d40e3d28aef2df8075cda2832db2b0e926bb4046039bbb026f2e3cfbcf1a3ce90bd935be0fcc039f8009e32026dfbb84a11c1f5d051cd7f8194ba23 + languageName: node + linkType: hard + "@types/debug@npm:^4.1.7": version: 4.1.12 resolution: "@types/debug@npm:4.1.12" @@ -13007,10 +12766,10 @@ __metadata: "@osn/provider-options": 1.1.0 "@osn/react-cmdk": ^1.2.1 "@osn/rich-text-editor": ^0.7.2 - "@polkadot/api": ^13.2.1 - "@polkadot/extension-dapp": ^0.52.3 - "@polkadot/util": ^13.1.1 - "@polkadot/util-crypto": ^13.1.1 + "@polkadot/api": 14.2.1 + "@polkadot/extension-dapp": 0.55.1 + "@polkadot/util": 13.2.2 + "@polkadot/util-crypto": 13.2.2 "@polkagate/extension-dapp": ^0.48.2 "@radix-ui/react-dialog": ^1.0.4 "@radix-ui/react-hover-card": ^1.0.6 @@ -13138,7 +12897,7 @@ __metadata: languageName: node linkType: hard -"nock@npm:^13.5.4": +"nock@npm:^13.5.5": version: 13.5.5 resolution: "nock@npm:13.5.5" dependencies: @@ -16570,7 +16329,7 @@ __metadata: languageName: node linkType: hard -"tslib@npm:2.7.0, tslib@npm:^2.6.3, tslib@npm:^2.7.0": +"tslib@npm:2.7.0, tslib@npm:^2.7.0": version: 2.7.0 resolution: "tslib@npm:2.7.0" checksum: 1606d5c89f88d466889def78653f3aab0f88692e80bb2066d090ca6112ae250ec1cfa9dbfaab0d17b60da15a4186e8ec4d893801c67896b277c17374e36e1d28 @@ -16598,6 +16357,13 @@ __metadata: languageName: node linkType: hard +"tslib@npm:^2.8.0": + version: 2.8.0 + resolution: "tslib@npm:2.8.0" + checksum: de852ecd81adfdb4870927e250763345f07dc13fe7f395ce261424966bb122a0992ad844c3ec875c9e63e72afe2220a150712984e44dfd1a8a7e538a064e3d46 + languageName: node + linkType: hard + "tsscmp@npm:1.0.6": version: 1.0.6 resolution: "tsscmp@npm:1.0.6" @@ -17597,7 +17363,7 @@ __metadata: languageName: node linkType: hard -"ws@npm:8.18.0, ws@npm:^8.16.0": +"ws@npm:8.18.0, ws@npm:^8.18.0": version: 8.18.0 resolution: "ws@npm:8.18.0" peerDependencies: