diff --git a/.github/workflows/get-fellows.yml b/.github/workflows/get-fellows.yml index 607c631..a206283 100644 --- a/.github/workflows/get-fellows.yml +++ b/.github/workflows/get-fellows.yml @@ -8,6 +8,7 @@ on: jobs: mention-fellows: runs-on: ubuntu-latest + timeout-minutes: 10 steps: - uses: paritytech/get-fellows-action@main id: fellows diff --git a/README.md b/README.md index bf39cfc..90455d0 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ on: [push] jobs: mention-fellows: runs-on: ubuntu-latest + timeout-minutes: 10 steps: - uses: paritytech/get-fellows-action id: fellows diff --git a/package.json b/package.json index b5c424e..b64625a 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "start": "node dist", "build": "ncc build --license LICENSE", "postinstall": "papi", - "test": "jest --forceExit", + "test": "jest", "fix": "eslint --fix 'src/**/*'", "lint": "eslint 'src/**/*'" }, @@ -25,10 +25,10 @@ "@actions/core": "^1.10.1", "@actions/github": "^5.1.1", "@octokit/webhooks-types": "^7.3.1", - "@polkadot-api/cli": "^0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0", - "@polkadot-api/client": "^0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0", - "@polkadot-api/node-polkadot-provider": "^0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0", - "@polkadot-api/sm-provider": "^0.0.1-2ade456e6ac9a1106b115cb8f44eed4f897e6017.1.0", + "@polkadot-api/cli": "^0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0", + "@polkadot-api/client": "^0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0", + "@polkadot-api/node-polkadot-provider": "^0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0", + "@polkadot-api/sm-provider": "^0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0", "@substrate/connect-known-chains": "^1.1.2", "smoldot": "^2.0.22" }, diff --git a/src/fellows.ts b/src/fellows.ts index 4e22a2d..61a56d2 100644 --- a/src/fellows.ts +++ b/src/fellows.ts @@ -24,7 +24,6 @@ export const fetchAllFellows = async ( ): Promise => { logger.info("Initializing smoldot"); const smoldot = start(); - const SmProvider = getSmProvider(smoldot); // TODO: Replace once https://github.com/paritytech/opstooling/discussions/373 is fixed let polkadotClient: ReturnType | null = null; @@ -39,13 +38,14 @@ export const fetchAllFellows = async ( potentialRelayChains: [relayChain], }); + const SmProviderCollectives = getSmProvider(smoldot, { + potentialRelayChains: [relayChain], + chainSpec: polkadot_collectives, + }); logger.info("Initializing PAPI"); polkadotClient = createClient( getChain({ - provider: SmProvider({ - potentialRelayChains: [relayChain], - chainSpec: polkadot_collectives, - }), + provider: SmProviderCollectives, keyring: [], }), ); @@ -72,12 +72,13 @@ export const fetchAllFellows = async ( logger.debug("Connecting to relay parachain."); // We move into the relay chain + const SmProviderRelay = getSmProvider(smoldot, { + potentialRelayChains: [relayChain], + chainSpec: polkadot, + }); polkadotClient = createClient( getChain({ - provider: SmProvider({ - potentialRelayChains: [relayChain], - chainSpec: polkadot, - }), + provider: SmProviderRelay, keyring: [], }), ); diff --git a/src/index.ts b/src/index.ts index e155349..ea24edd 100644 --- a/src/index.ts +++ b/src/index.ts @@ -32,15 +32,7 @@ const mapFellows = async (fellows: FellowObject[]) => { } } - await summary.addHeading("Fellows").addTable(table).write(); - - // TODO: Remove this once https://github.com/polkadot-api/polkadot-api/issues/327 is fixed - process.exit(0); + return await summary.addHeading("Fellows").addTable(table).write(); }; -fetchAllFellows(logger) - .then(mapFellows) - .catch((err) => { - setFailed(err as Error); - process.exit(1); - }); +fetchAllFellows(logger).then(mapFellows).catch(setFailed); diff --git a/yarn.lock b/yarn.lock index f5ebffd..5e76651 100644 --- a/yarn.lock +++ b/yarn.lock @@ -790,22 +790,22 @@ picocolors "^1.0.0" tslib "^2.6.0" -"@polkadot-api/cli@^0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0": - version "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - resolved "https://registry.yarnpkg.com/@polkadot-api/cli/-/cli-0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0.tgz#5c5d4cf1b87b6d7dd7642243e131fccde44c8b52" - integrity sha512-avpc6tPUUniTcrkuXb9jLxVXJLvwe1WVn3DIU5ydzGaF7fwd8LsNSPmZpsy1ScUFDuI2B7fGom9rKq8TWjjJ4g== +"@polkadot-api/cli@^0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0": + version "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + resolved "https://registry.yarnpkg.com/@polkadot-api/cli/-/cli-0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0.tgz#39513b6a20cced021029ce1bd370287f320e79c4" + integrity sha512-+/qw+9F+G9NS46mPjiHLMXo9oOR70MZJY6+621kevCup80cKAqbe0i7yqCApwGSWdnkStKP55NBtxja2dQ7V4g== dependencies: "@commander-js/extra-typings" "^12.0.1" - "@polkadot-api/client" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/codegen" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/json-rpc-provider" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/json-rpc-provider-proxy" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/metadata-builders" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/sc-provider" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/substrate-bindings" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/substrate-client" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/utils" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/ws-provider" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" + "@polkadot-api/client" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/codegen" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/json-rpc-provider" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/json-rpc-provider-proxy" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/metadata-builders" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/sc-provider" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/substrate-bindings" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/substrate-client" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/utils" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/ws-provider" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" "@substrate/connect" "^0.7.32" "@types/node" "^20.9.0" commander "^11.0.0" @@ -829,54 +829,44 @@ "@polkadot-api/substrate-client" "0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0" "@polkadot-api/utils" "0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0" -"@polkadot-api/client@0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0", "@polkadot-api/client@^0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0": - version "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - resolved "https://registry.yarnpkg.com/@polkadot-api/client/-/client-0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0.tgz#ee2ceedb504489a821e3e56344cc74e60c3b0fe9" - integrity sha512-gfOIw7gBrpal0L0Ph1gc0sa+k5JGVnx+bXerbxA654wBoYo+4GhAEBO9R+ONKX8mDX34tbUOlhZvgs95xpVpiA== +"@polkadot-api/client@0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0", "@polkadot-api/client@^0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0": + version "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + resolved "https://registry.yarnpkg.com/@polkadot-api/client/-/client-0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0.tgz#6c0d32790306c83ca1d8e0d9705df3b44a0a3e0d" + integrity sha512-X/Pd7yKEp0dhfFRsYxKfIXoAUGXeSZm38YPNoUUnTfBGnph3rY2dI0IkHmk3mv45wT4oHIxOnKUxk1ZfFVxUzA== dependencies: - "@polkadot-api/metadata-builders" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/substrate-bindings" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/substrate-client" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/utils" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" + "@polkadot-api/metadata-builders" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/substrate-bindings" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/substrate-client" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/utils" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" -"@polkadot-api/codegen@0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0": - version "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - resolved "https://registry.yarnpkg.com/@polkadot-api/codegen/-/codegen-0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0.tgz#f6e896f5c607cc456a1384231bce8c7f9d967384" - integrity sha512-qjeDrDPNXi3kDSoppb6KP3dEG769u9gIdRShD776utie9YvBfNA5xK7yGpxGL7CVX7ZQeJTHKZLLPNCgYc3qpg== +"@polkadot-api/codegen@0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0": + version "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + resolved "https://registry.yarnpkg.com/@polkadot-api/codegen/-/codegen-0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0.tgz#97a4891feb36e91dd443985f57c5837788130a01" + integrity sha512-AnPLVdUn1eSthpc9FuKcbAKrEBsthWjllWxvxyz/PyuO06HCYoWIyA2H7Wn1kXWfNgmoOAtz+9Nco7SiamtzKw== dependencies: - "@polkadot-api/metadata-builders" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/substrate-bindings" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/utils" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - -"@polkadot-api/json-rpc-provider-proxy@0.0.1-2ade456e6ac9a1106b115cb8f44eed4f897e6017.1.0": - version "0.0.1-2ade456e6ac9a1106b115cb8f44eed4f897e6017.1.0" - resolved "https://registry.yarnpkg.com/@polkadot-api/json-rpc-provider-proxy/-/json-rpc-provider-proxy-0.0.1-2ade456e6ac9a1106b115cb8f44eed4f897e6017.1.0.tgz#7d569682ffebc1f9c6e66f2991d0e7f80c7b0d8d" - integrity sha512-BPKNMhK8Ul3INzojQOaqv37tspS4baHW4o9g6ZSVlonLTF3PWC2hwXors2ujfWKS9ojAf00N8ln30LrWZJ9zUQ== + "@polkadot-api/metadata-builders" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/substrate-bindings" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/utils" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" "@polkadot-api/json-rpc-provider-proxy@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0": version "0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0" resolved "https://registry.yarnpkg.com/@polkadot-api/json-rpc-provider-proxy/-/json-rpc-provider-proxy-0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0.tgz#cc28fb801db6a47824261a709ab924ec6951eb96" integrity sha512-0hZ8vtjcsyCX8AyqP2sqUHa1TFFfxGWmlXJkit0Nqp9b32MwZqn5eaUAiV2rNuEpoglKOdKnkGtUF8t5MoodKw== -"@polkadot-api/json-rpc-provider-proxy@0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0": - version "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - resolved "https://registry.yarnpkg.com/@polkadot-api/json-rpc-provider-proxy/-/json-rpc-provider-proxy-0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0.tgz#e3858dc39eb0b8c663842db5485158b9627ba26e" - integrity sha512-N6Yhhj3avdwe/ZTP7MV9Se+OWuQuugvv3ayqkTSeM/m6HytCKoubCmb94nLi+ondyR7mp0pb5kmcBSiusSVA2Q== - -"@polkadot-api/json-rpc-provider@0.0.1-2ade456e6ac9a1106b115cb8f44eed4f897e6017.1.0": - version "0.0.1-2ade456e6ac9a1106b115cb8f44eed4f897e6017.1.0" - resolved "https://registry.yarnpkg.com/@polkadot-api/json-rpc-provider/-/json-rpc-provider-0.0.1-2ade456e6ac9a1106b115cb8f44eed4f897e6017.1.0.tgz#fca0acae6d167abf58a7a1b939379292785f21ee" - integrity sha512-MkpsFQtD+53DlOFQ6XOEJWLEx3c2NaPOyy7CiS1MN33khwJOYfy5rI/Xb/4Uj7tsM59KrTwRiTFj4rtwc38n/Q== +"@polkadot-api/json-rpc-provider-proxy@0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0": + version "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + resolved "https://registry.yarnpkg.com/@polkadot-api/json-rpc-provider-proxy/-/json-rpc-provider-proxy-0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0.tgz#6746921a5eeec974ba94162225e1a0bb6ab217cf" + integrity sha512-y0b7lHqmuXZ2deeYWBexwwJ2wtiwgxYXBD7mMk3y0RnpjBvM69b5SY90fsNwwR66wVkVxOcEpbETNQU8j9juig== "@polkadot-api/json-rpc-provider@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0": version "0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0" resolved "https://registry.yarnpkg.com/@polkadot-api/json-rpc-provider/-/json-rpc-provider-0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0.tgz#2f71bfb192d28dd4c400ef8b1c5f934c676950f3" integrity sha512-EaUS9Fc3wsiUr6ZS43PQqaRScW7kM6DYbuM/ou0aYjm8N9MBqgDbGm2oL6RE1vAVmOfEuHcXZuZkhzWtyvQUtA== -"@polkadot-api/json-rpc-provider@0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0": - version "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - resolved "https://registry.yarnpkg.com/@polkadot-api/json-rpc-provider/-/json-rpc-provider-0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0.tgz#3756d67251b85ff3f751eb7f9501b0ff79434545" - integrity sha512-3i4nvpVh/A9fHd5ewlnR9ejyqx06vkhJ9uwXQMhpF+lhCjAPhW1+Wxwjno/qzJTiEDQrUox1y+yDqy84O5J5HA== +"@polkadot-api/json-rpc-provider@0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0": + version "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + resolved "https://registry.yarnpkg.com/@polkadot-api/json-rpc-provider/-/json-rpc-provider-0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0.tgz#88eb1b3be832103c0475e2c8550a3d96d4cbc85a" + integrity sha512-AZkXKrSnTUKsTuNo6ibbmBz2elCRMw2bxsEUFbAldKlBAY04JM0keztfiMTY3Hw+8FQ53VmnPICFHSUfYDid5w== "@polkadot-api/metadata-builders@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0": version "0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0" @@ -886,46 +876,46 @@ "@polkadot-api/substrate-bindings" "0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0" "@polkadot-api/utils" "0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0" -"@polkadot-api/metadata-builders@0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0": - version "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - resolved "https://registry.yarnpkg.com/@polkadot-api/metadata-builders/-/metadata-builders-0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0.tgz#02de37edf89295c8380b21efff99c4ce283b8166" - integrity sha512-QHD9oCR9aKSs2Y+lOUB/CT8GEY6qpKvGguNRtFdjqFGMQWG5RE0sRdt21JfxGoGJy9tzASCBuFm6NgSoK0wfbw== +"@polkadot-api/metadata-builders@0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0": + version "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + resolved "https://registry.yarnpkg.com/@polkadot-api/metadata-builders/-/metadata-builders-0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0.tgz#f63550c5a08cce89eb42b75140fd7612f862d4fc" + integrity sha512-A83aa3GJTXs5vN7U8T5qge52uMF9rsna0aZvtd7wZ3TCOJZgf6krlZstWgCOEAdFeSUL9ky7Xw9D+aIIT3D9kQ== dependencies: - "@polkadot-api/substrate-bindings" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/utils" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" + "@polkadot-api/substrate-bindings" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/utils" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" -"@polkadot-api/node-polkadot-provider@^0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0": - version "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - resolved "https://registry.yarnpkg.com/@polkadot-api/node-polkadot-provider/-/node-polkadot-provider-0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0.tgz#832cad6165fed8478b4e58b0cd6107b8db35e3f9" - integrity sha512-aVK8w3yBEQw3CBQS0zpP+PhYwU7bmVjycQF3f7lJnE1hJTTLjjzUcoFpr2LXf/ISwDxf51QXYbZA5SGJ7EuyBQ== +"@polkadot-api/node-polkadot-provider@^0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0": + version "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + resolved "https://registry.yarnpkg.com/@polkadot-api/node-polkadot-provider/-/node-polkadot-provider-0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0.tgz#e57018738f30d19ccf6f07bdf4fbbbeba0ea16fb" + integrity sha512-RBW28tJ9p21wiqAmLpTUN6V6pj722yOj1vlTf8GjCdJtnWM8GVaJ4hqNc7NvKZW78GQDh96NIr9bd2VjULm62Q== dependencies: "@noble/hashes" "^1.3.1" - "@polkadot-api/client" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/json-rpc-provider" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/metadata-builders" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/sc-provider" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/substrate-bindings" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/substrate-client" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/tx-helper" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/utils" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" + "@polkadot-api/client" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/json-rpc-provider" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/metadata-builders" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/sc-provider" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/substrate-bindings" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/substrate-client" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/tx-helper" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/utils" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" "@substrate/connect" "^0.7.32" rxjs "^7.8.1" -"@polkadot-api/sc-provider@0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0": - version "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - resolved "https://registry.yarnpkg.com/@polkadot-api/sc-provider/-/sc-provider-0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0.tgz#671022dc14c72c2cc91f08cf53d34c8e005258e8" - integrity sha512-kCA019pC/mDSZRc5gTnsv4q2oljPlaG7R7Ka/UENoJOqwSAa1BFIt+ro0DGFL4ofyf2HUg+Ubn6h8MwROinBNw== +"@polkadot-api/sc-provider@0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0": + version "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + resolved "https://registry.yarnpkg.com/@polkadot-api/sc-provider/-/sc-provider-0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0.tgz#27740f6b8eb7e1558c7128c3b762d269505c70a1" + integrity sha512-qeM9s6uReaUPHqafn1gOIIShsIIKO3wPNVpdMVFszDUMGg+g0oaWHE42lCg6c6NVMe5+1R0J4B6cqBNXxYpPaw== dependencies: - "@polkadot-api/json-rpc-provider-proxy" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" + "@polkadot-api/json-rpc-provider-proxy" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" "@substrate/connect" "^0.8.4" -"@polkadot-api/sm-provider@^0.0.1-2ade456e6ac9a1106b115cb8f44eed4f897e6017.1.0": - version "0.0.1-2ade456e6ac9a1106b115cb8f44eed4f897e6017.1.0" - resolved "https://registry.yarnpkg.com/@polkadot-api/sm-provider/-/sm-provider-0.0.1-2ade456e6ac9a1106b115cb8f44eed4f897e6017.1.0.tgz#14e35a1ef5015fed051a9dedc3b951a29dc5d8a8" - integrity sha512-zb7i0OoeOa34L0y62IztLVORgRXrjwxp7fcR6l2pX6jVq5bJnbLsv62cQietBEtV7mGV0ntyBNyJFdThgZYXjQ== +"@polkadot-api/sm-provider@^0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0": + version "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + resolved "https://registry.yarnpkg.com/@polkadot-api/sm-provider/-/sm-provider-0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0.tgz#7906470c6eb145fd05284a4c016d314436bebd95" + integrity sha512-7aV4YSBLmIzm9kvAZS+XshDGEACP4KT4T9e+l6MPJvJHyW/dikf1PPGTB6T3ODE+X5kfFU/WNPEJLAc1Ss6WCg== dependencies: - "@polkadot-api/json-rpc-provider" "0.0.1-2ade456e6ac9a1106b115cb8f44eed4f897e6017.1.0" - "@polkadot-api/json-rpc-provider-proxy" "0.0.1-2ade456e6ac9a1106b115cb8f44eed4f897e6017.1.0" + "@polkadot-api/json-rpc-provider" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/json-rpc-provider-proxy" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" "@polkadot-api/substrate-bindings@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0": version "0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0" @@ -937,13 +927,13 @@ "@scure/base" "^1.1.1" scale-ts "^1.6.0" -"@polkadot-api/substrate-bindings@0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0": - version "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - resolved "https://registry.yarnpkg.com/@polkadot-api/substrate-bindings/-/substrate-bindings-0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0.tgz#967549f73ce7c3f6516c04dae80796625f3949ae" - integrity sha512-A4HgEKNLVYQi8n5v8cqelrNl9dzwwfKQj9VB2oFx3UPVbS7e+nDrFdK3EaZDLDm+ETTmU+nu0HFFh1chIUSqiA== +"@polkadot-api/substrate-bindings@0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0": + version "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + resolved "https://registry.yarnpkg.com/@polkadot-api/substrate-bindings/-/substrate-bindings-0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0.tgz#32b18945f8a6fcfc3f6982e5654abc381d4f6caf" + integrity sha512-Vyla35dm4YBbPWSgfTzpC2XkdZOk3Bpf/1zDDQVKA+mqQqqQdr+xpWDDhuKOtuYOY1AS2aUMq2An47mAHCe95g== dependencies: "@noble/hashes" "^1.3.1" - "@polkadot-api/utils" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" + "@polkadot-api/utils" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" "@scure/base" "^1.1.1" scale-ts "^1.6.0" @@ -952,24 +942,24 @@ resolved "https://registry.yarnpkg.com/@polkadot-api/substrate-client/-/substrate-client-0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0.tgz#55ae463f4143495e328465dd16b03e71663ef4c4" integrity sha512-lcdvd2ssUmB1CPzF8s2dnNOqbrDa+nxaaGbuts+Vo8yjgSKwds2Lo7Oq+imZN4VKW7t9+uaVcKFLMF7PdH0RWw== -"@polkadot-api/substrate-client@0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0": - version "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - resolved "https://registry.yarnpkg.com/@polkadot-api/substrate-client/-/substrate-client-0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0.tgz#4e249bc266f68786cbfd555418ab6132d696d878" - integrity sha512-5h5gFA+6o0d7EAlhGXC6sdizZOEYuLKPE4zsWWEOeXN0YV8rJp6cpfjTr5DNVjgetpl269QoRGm0Si6Vnkw/sg== +"@polkadot-api/substrate-client@0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0": + version "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + resolved "https://registry.yarnpkg.com/@polkadot-api/substrate-client/-/substrate-client-0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0.tgz#b01f5ed6ca369118b2c66a27c1af7573793f85e5" + integrity sha512-xwz3AZrkOsrYLK/pqNITwAPJbtKDOSF/hGiky+lconxb9IJkaMzvbOzQKy2T98PkjuyZis+VX4w2jO4p3hemsw== -"@polkadot-api/tx-helper@0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0": - version "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - resolved "https://registry.yarnpkg.com/@polkadot-api/tx-helper/-/tx-helper-0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0.tgz#ceb5eba8a17a003e8d04a7300db3411bc3195cda" - integrity sha512-TtJlhciqHFI8Y9ZkkIyBF7xZ8CNPEmfRASdmbmWtLLhfZaIuNdWQXIMlrNWq9VCGNaV9/Zjs467z2jSsasMj9w== +"@polkadot-api/tx-helper@0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0": + version "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + resolved "https://registry.yarnpkg.com/@polkadot-api/tx-helper/-/tx-helper-0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0.tgz#4837d1be013452391be6b05eca2ebe9d9c3729dc" + integrity sha512-hkLk2PrhSfzHbYurSW6kp1gSKVpSyGNBOqfQI0AWE5m3gmkKoAcyX4RTg8htmxzTgczVwPImXu+Yx7aLZzP1IQ== dependencies: "@noble/hashes" "^1.3.1" - "@polkadot-api/client" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/json-rpc-provider" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/metadata-builders" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/sc-provider" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/substrate-bindings" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/substrate-client" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/utils" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" + "@polkadot-api/client" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/json-rpc-provider" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/metadata-builders" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/sc-provider" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/substrate-bindings" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/substrate-client" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/utils" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" rxjs "^7.8.1" "@polkadot-api/utils@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0": @@ -977,18 +967,18 @@ resolved "https://registry.yarnpkg.com/@polkadot-api/utils/-/utils-0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0.tgz#759698dcf948745ea37cc5ab6abd49a00f1b0c31" integrity sha512-0CYaCjfLQJTCRCiYvZ81OncHXEKPzAexCMoVloR+v2nl/O2JRya/361MtPkeNLC6XBoaEgLAG9pWQpH3WePzsw== -"@polkadot-api/utils@0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0": - version "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - resolved "https://registry.yarnpkg.com/@polkadot-api/utils/-/utils-0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0.tgz#03533d8a23169b3412be1dd56cb6751cb8fbb3f2" - integrity sha512-VH7EgZtRJWEyl7JmaE3maK3w07Fpj4Lk6hx3NqvQcbbK6LngemkkqIEztOsHHdJPR5QSKtiNPQJXORx72DieJA== +"@polkadot-api/utils@0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0": + version "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + resolved "https://registry.yarnpkg.com/@polkadot-api/utils/-/utils-0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0.tgz#ffcd75767f079e24efd522f3f518d54ae2cb264e" + integrity sha512-NbJVFgHCqJlq/YazT7zT9+Bi0ARt7jFtlWVA9fum5R9lJdXvX5JBmO+EW/jN8YXmERsFLddXAh2pgWWXpdYVyQ== -"@polkadot-api/ws-provider@0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0": - version "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - resolved "https://registry.yarnpkg.com/@polkadot-api/ws-provider/-/ws-provider-0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0.tgz#d6721245d8af7e31c5ae0ce8c25841ebfb41a13e" - integrity sha512-1RJsUPnm2gEtiifbu0PNMk64fdG+BvsJhgyamuEgX+HOBCDz8fAD+xxWr4UfVKH3ErdMlrhWNdf4bE17C3TJ3w== +"@polkadot-api/ws-provider@0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0": + version "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + resolved "https://registry.yarnpkg.com/@polkadot-api/ws-provider/-/ws-provider-0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0.tgz#39ed2044936e51a1a087c9a476053db353ac03e6" + integrity sha512-McyITA/yzv6G+yN3D744PXNM2lNzs8PA6Mnzqv6EY9vwyxZWo+gUM42uioFkSbYfajLUgHAXAc67ut7UXF91AQ== dependencies: - "@polkadot-api/json-rpc-provider" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" - "@polkadot-api/json-rpc-provider-proxy" "0.0.1-a88cc12e054d60b3c599baf69bf41b99204e053d.1.0" + "@polkadot-api/json-rpc-provider" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" + "@polkadot-api/json-rpc-provider-proxy" "0.0.1-b0f30456ec8e18fce96b1a2a2a9f7418a4f5b837.1.0" ws "^8.14.2" "@scure/base@^1.1.1":