Compare commits

..
4 Commits
Author SHA1 Message Date
github-actions[bot] eb34741c87 [CI Skip] release/stable 16.5.5
skip-checks: true
2025-12-16 15:08:11 +00:00
Arjun Porwal 27b311bbec 16.5.5 (#6237) 2025-12-16 20:32:29 +05:30
github-actions[bot] ac684a400a [CI Skip] bump/beta 16.5.5-0-x
skip-checks: true
2025-12-16 13:49:35 +00:00
Arjun Porwal 3c812931ea Improve subscriptions for observable handling (#6236)
* fix: subscribeNewHeads for improved observable handling

* fix: replace switchMap with mergeMap for improved subscription handling
2025-12-16 19:14:04 +05:30
38 changed files with 201 additions and 194 deletions
+7
View File
@@ -1,5 +1,12 @@
# CHANGELOG
## 16.5.5 Dec 16, 2025
Changes:
- Improve subscriptions for observable handling ([#6236](https://github.com/polkadot-js/api/pull/6236))
## 16.5.4 Dec 9, 2025
Changes:
+1 -1
View File
@@ -9,8 +9,8 @@
18 rajk93 16.5.4 (#6234)
15 Jeremías Díaz feat(types): add correct tuple type to storage key (#3054)
14 Nikos Kontakis Bump substrate connect to 0.7.16 (#5307)
12 Arjun Porwal 16.5.5 (#6237)
11 Ian He HttpProvider support clone() (#3949)
10 Arjun Porwal Upgrade Polkadot and Polkadot Asset Hub types for 2000000 (#6219)
10 Axel Chalon Make Enum/Tuple constructor use value directly if instance (#1954)
6 Andreea Eftene Update check for contract instantiation (#5699)
6 Branislav Kontur Fix for fungiblesApi (#5944)
+3 -3
View File
@@ -14,10 +14,10 @@
},
"sideEffects": false,
"type": "module",
"version": "16.5.4",
"version": "16.5.5",
"versions": {
"git": "16.5.4",
"npm": "16.5.4"
"git": "16.5.5",
"npm": "16.5.5"
},
"workspaces": [
"packages/*"
+6 -6
View File
@@ -18,14 +18,14 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.5.4",
"version": "16.5.5",
"main": "index.js",
"dependencies": {
"@polkadot/api-base": "16.5.4",
"@polkadot/rpc-augment": "16.5.4",
"@polkadot/types": "16.5.4",
"@polkadot/types-augment": "16.5.4",
"@polkadot/types-codec": "16.5.4",
"@polkadot/api-base": "16.5.5",
"@polkadot/rpc-augment": "16.5.5",
"@polkadot/types": "16.5.5",
"@polkadot/types-augment": "16.5.5",
"@polkadot/types-codec": "16.5.5",
"@polkadot/util": "^14.0.1",
"tslib": "^2.8.1"
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/api-augment', path: 'auto', type: 'auto', version: '16.5.4' };
export const packageInfo = { name: '@polkadot/api-augment', path: 'auto', type: 'auto', version: '16.5.5' };
+3 -3
View File
@@ -18,11 +18,11 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.5.4",
"version": "16.5.5",
"main": "index.js",
"dependencies": {
"@polkadot/rpc-core": "16.5.4",
"@polkadot/types": "16.5.4",
"@polkadot/rpc-core": "16.5.5",
"@polkadot/types": "16.5.5",
"@polkadot/util": "^14.0.1",
"rxjs": "^7.8.1",
"tslib": "^2.8.1"
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/api-base', path: 'auto', type: 'auto', version: '16.5.4' };
export const packageInfo = { name: '@polkadot/api-base', path: 'auto', type: 'auto', version: '16.5.5' };
+8 -8
View File
@@ -18,22 +18,22 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.5.4",
"version": "16.5.5",
"main": "index.js",
"dependencies": {
"@polkadot/api": "16.5.4",
"@polkadot/api-augment": "16.5.4",
"@polkadot/types": "16.5.4",
"@polkadot/types-codec": "16.5.4",
"@polkadot/types-create": "16.5.4",
"@polkadot/api": "16.5.5",
"@polkadot/api-augment": "16.5.5",
"@polkadot/types": "16.5.5",
"@polkadot/types-codec": "16.5.5",
"@polkadot/types-create": "16.5.5",
"@polkadot/util": "^14.0.1",
"@polkadot/util-crypto": "^14.0.1",
"rxjs": "^7.8.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@polkadot/api-augment": "16.5.4",
"@polkadot/api-augment": "16.5.5",
"@polkadot/keyring": "^14.0.1",
"@polkadot/types-support": "16.5.4"
"@polkadot/types-support": "16.5.5"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/api-contract', path: 'auto', type: 'auto', version: '16.5.4' };
export const packageInfo = { name: '@polkadot/api-contract', path: 'auto', type: 'auto', version: '16.5.5' };
+12 -12
View File
@@ -18,25 +18,25 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.5.4",
"version": "16.5.5",
"main": "index.js",
"dependencies": {
"@polkadot/api": "16.5.4",
"@polkadot/api-augment": "16.5.4",
"@polkadot/api-base": "16.5.4",
"@polkadot/rpc-core": "16.5.4",
"@polkadot/types": "16.5.4",
"@polkadot/types-codec": "16.5.4",
"@polkadot/api": "16.5.5",
"@polkadot/api-augment": "16.5.5",
"@polkadot/api-base": "16.5.5",
"@polkadot/rpc-core": "16.5.5",
"@polkadot/types": "16.5.5",
"@polkadot/types-codec": "16.5.5",
"@polkadot/util": "^14.0.1",
"@polkadot/util-crypto": "^14.0.1",
"rxjs": "^7.8.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@polkadot/api": "16.5.4",
"@polkadot/api-augment": "16.5.4",
"@polkadot/rpc-augment": "16.5.4",
"@polkadot/rpc-provider": "16.5.4",
"@polkadot/types-support": "16.5.4"
"@polkadot/api": "16.5.5",
"@polkadot/api-augment": "16.5.5",
"@polkadot/rpc-augment": "16.5.5",
"@polkadot/rpc-provider": "16.5.5",
"@polkadot/types-support": "16.5.5"
}
}
@@ -5,7 +5,7 @@ import type { Observable } from 'rxjs';
import type { SignedBlockExtended } from '../type/types.js';
import type { DeriveApi } from '../types.js';
import { switchMap } from 'rxjs';
import { mergeMap } from 'rxjs';
import { memo } from '../util/index.js';
@@ -22,7 +22,7 @@ import { memo } from '../util/index.js';
export function subscribeFinalizedBlocks (instanceId: string, api: DeriveApi): () => Observable<SignedBlockExtended> {
return memo(instanceId, (): Observable<SignedBlockExtended> =>
api.derive.chain.subscribeFinalizedHeads().pipe(
switchMap((header) =>
mergeMap((header) =>
api.derive.chain.getBlock(header.createdAtHash || header.hash)
)
)
@@ -5,7 +5,7 @@ import type { Observable } from 'rxjs';
import type { Hash, Header } from '@polkadot/types/interfaces';
import type { DeriveApi } from '../types.js';
import { from, of, switchMap } from 'rxjs';
import { from, mergeMap, of, switchMap } from 'rxjs';
import { memo } from '../util/index.js';
@@ -43,7 +43,7 @@ export function subscribeFinalizedHeads (instanceId: string, api: DeriveApi): ()
let prevHash: Hash | null = null;
return api.rpc.chain.subscribeFinalizedHeads().pipe(
switchMap((header) => {
mergeMap((header) => {
const endHash = prevHash;
const startHash = header.parentHash;
@@ -5,7 +5,7 @@ import type { Observable } from 'rxjs';
import type { SignedBlockExtended } from '../type/types.js';
import type { DeriveApi } from '../types.js';
import { switchMap } from 'rxjs';
import { mergeMap } from 'rxjs';
import { memo } from '../util/index.js';
@@ -22,7 +22,7 @@ import { memo } from '../util/index.js';
export function subscribeNewBlocks (instanceId: string, api: DeriveApi): () => Observable<SignedBlockExtended> {
return memo(instanceId, (): Observable<SignedBlockExtended> =>
api.derive.chain.subscribeNewHeads().pipe(
switchMap((header) =>
mergeMap((header) =>
api.derive.chain.getBlock(header.createdAtHash || header.hash)
)
)
@@ -5,7 +5,7 @@ import type { Observable } from 'rxjs';
import type { HeaderExtended } from '../type/types.js';
import type { DeriveApi } from '../types.js';
import { map, switchMap } from 'rxjs';
import { map, mergeMap } from 'rxjs';
import { createHeaderExtended } from '../type/index.js';
import { memo } from '../util/index.js';
@@ -25,7 +25,7 @@ import { getAuthorDetails } from './util.js';
export function subscribeNewHeads (instanceId: string, api: DeriveApi): () => Observable<HeaderExtended> {
return memo(instanceId, (): Observable<HeaderExtended> =>
api.rpc.chain.subscribeNewHeads().pipe(
switchMap((header) =>
mergeMap((header) =>
getAuthorDetails(api, header)
),
map(([header, validators, author]): HeaderExtended => {
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/api-derive', path: 'auto', type: 'auto', version: '16.5.4' };
export const packageInfo = { name: '@polkadot/api-derive', path: 'auto', type: 'auto', version: '16.5.5' };
+14 -14
View File
@@ -18,21 +18,21 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.5.4",
"version": "16.5.5",
"main": "index.js",
"dependencies": {
"@polkadot/api-augment": "16.5.4",
"@polkadot/api-base": "16.5.4",
"@polkadot/api-derive": "16.5.4",
"@polkadot/api-augment": "16.5.5",
"@polkadot/api-base": "16.5.5",
"@polkadot/api-derive": "16.5.5",
"@polkadot/keyring": "^14.0.1",
"@polkadot/rpc-augment": "16.5.4",
"@polkadot/rpc-core": "16.5.4",
"@polkadot/rpc-provider": "16.5.4",
"@polkadot/types": "16.5.4",
"@polkadot/types-augment": "16.5.4",
"@polkadot/types-codec": "16.5.4",
"@polkadot/types-create": "16.5.4",
"@polkadot/types-known": "16.5.4",
"@polkadot/rpc-augment": "16.5.5",
"@polkadot/rpc-core": "16.5.5",
"@polkadot/rpc-provider": "16.5.5",
"@polkadot/types": "16.5.5",
"@polkadot/types-augment": "16.5.5",
"@polkadot/types-codec": "16.5.5",
"@polkadot/types-create": "16.5.5",
"@polkadot/types-known": "16.5.5",
"@polkadot/util": "^14.0.1",
"@polkadot/util-crypto": "^14.0.1",
"eventemitter3": "^5.0.1",
@@ -40,7 +40,7 @@
"tslib": "^2.8.1"
},
"devDependencies": {
"@polkadot/api-augment": "16.5.4",
"@polkadot/types-support": "16.5.4"
"@polkadot/api-augment": "16.5.5",
"@polkadot/types-support": "16.5.5"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/api', path: 'auto', type: 'auto', version: '16.5.4' };
export const packageInfo = { name: '@polkadot/api', path: 'auto', type: 'auto', version: '16.5.5' };
+4 -4
View File
@@ -18,12 +18,12 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.5.4",
"version": "16.5.5",
"main": "index.js",
"dependencies": {
"@polkadot/rpc-core": "16.5.4",
"@polkadot/types": "16.5.4",
"@polkadot/types-codec": "16.5.4",
"@polkadot/rpc-core": "16.5.5",
"@polkadot/types": "16.5.5",
"@polkadot/types-codec": "16.5.5",
"@polkadot/util": "^14.0.1",
"tslib": "^2.8.1"
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/rpc-augment', path: 'auto', type: 'auto', version: '16.5.4' };
export const packageInfo = { name: '@polkadot/rpc-augment', path: 'auto', type: 'auto', version: '16.5.5' };
+5 -5
View File
@@ -18,18 +18,18 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.5.4",
"version": "16.5.5",
"main": "index.js",
"dependencies": {
"@polkadot/rpc-augment": "16.5.4",
"@polkadot/rpc-provider": "16.5.4",
"@polkadot/types": "16.5.4",
"@polkadot/rpc-augment": "16.5.5",
"@polkadot/rpc-provider": "16.5.5",
"@polkadot/types": "16.5.5",
"@polkadot/util": "^14.0.1",
"rxjs": "^7.8.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@polkadot/keyring": "^14.0.1",
"@polkadot/rpc-augment": "16.5.4"
"@polkadot/rpc-augment": "16.5.5"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/rpc-core', path: 'auto', type: 'auto', version: '16.5.4' };
export const packageInfo = { name: '@polkadot/rpc-core', path: 'auto', type: 'auto', version: '16.5.5' };
+3 -3
View File
@@ -18,12 +18,12 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.5.4",
"version": "16.5.5",
"main": "index.js",
"dependencies": {
"@polkadot/keyring": "^14.0.1",
"@polkadot/types": "16.5.4",
"@polkadot/types-support": "16.5.4",
"@polkadot/types": "16.5.5",
"@polkadot/types-support": "16.5.5",
"@polkadot/util": "^14.0.1",
"@polkadot/util-crypto": "^14.0.1",
"@polkadot/x-fetch": "^14.0.1",
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/rpc-provider', path: 'auto', type: 'auto', version: '16.5.4' };
export const packageInfo = { name: '@polkadot/rpc-provider', path: 'auto', type: 'auto', version: '16.5.5' };
+11 -11
View File
@@ -18,7 +18,7 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.5.4",
"version": "16.5.5",
"main": "index.js",
"bin": {
"polkadot-types-chain-info": "./scripts/polkadot-types-chain-info.mjs",
@@ -28,16 +28,16 @@
"polkadot-types-internal-metadata": "./scripts/polkadot-types-internal-metadata.mjs"
},
"dependencies": {
"@polkadot/api": "16.5.4",
"@polkadot/api-augment": "16.5.4",
"@polkadot/api-derive": "16.5.4",
"@polkadot/rpc-augment": "16.5.4",
"@polkadot/rpc-provider": "16.5.4",
"@polkadot/types": "16.5.4",
"@polkadot/types-augment": "16.5.4",
"@polkadot/types-codec": "16.5.4",
"@polkadot/types-create": "16.5.4",
"@polkadot/types-support": "16.5.4",
"@polkadot/api": "16.5.5",
"@polkadot/api-augment": "16.5.5",
"@polkadot/api-derive": "16.5.5",
"@polkadot/rpc-augment": "16.5.5",
"@polkadot/rpc-provider": "16.5.5",
"@polkadot/types": "16.5.5",
"@polkadot/types-augment": "16.5.5",
"@polkadot/types-codec": "16.5.5",
"@polkadot/types-create": "16.5.5",
"@polkadot/types-support": "16.5.5",
"@polkadot/util": "^14.0.1",
"@polkadot/util-crypto": "^14.0.1",
"@polkadot/x-ws": "^14.0.1",
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/typegen', path: 'auto', type: 'auto', version: '16.5.4' };
export const packageInfo = { name: '@polkadot/typegen', path: 'auto', type: 'auto', version: '16.5.5' };
+3 -3
View File
@@ -18,11 +18,11 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.5.4",
"version": "16.5.5",
"main": "index.js",
"dependencies": {
"@polkadot/types": "16.5.4",
"@polkadot/types-codec": "16.5.4",
"@polkadot/types": "16.5.5",
"@polkadot/types-codec": "16.5.5",
"@polkadot/util": "^14.0.1",
"tslib": "^2.8.1"
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/types-augment', path: 'auto', type: 'auto', version: '16.5.4' };
export const packageInfo = { name: '@polkadot/types-augment', path: 'auto', type: 'auto', version: '16.5.5' };
+4 -4
View File
@@ -18,7 +18,7 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.5.4",
"version": "16.5.5",
"main": "index.js",
"dependencies": {
"@polkadot/util": "^14.0.1",
@@ -26,9 +26,9 @@
"tslib": "^2.8.1"
},
"devDependencies": {
"@polkadot/types": "16.5.4",
"@polkadot/types-augment": "16.5.4",
"@polkadot/types-support": "16.5.4",
"@polkadot/types": "16.5.5",
"@polkadot/types-augment": "16.5.5",
"@polkadot/types-support": "16.5.5",
"@polkadot/util-crypto": "^14.0.1"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/types-codec', path: 'auto', type: 'auto', version: '16.5.4' };
export const packageInfo = { name: '@polkadot/types-codec', path: 'auto', type: 'auto', version: '16.5.5' };
+3 -3
View File
@@ -18,14 +18,14 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.5.4",
"version": "16.5.5",
"main": "index.js",
"dependencies": {
"@polkadot/types-codec": "16.5.4",
"@polkadot/types-codec": "16.5.5",
"@polkadot/util": "^14.0.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@polkadot/types": "16.5.4"
"@polkadot/types": "16.5.5"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/types-create', path: 'auto', type: 'auto', version: '16.5.4' };
export const packageInfo = { name: '@polkadot/types-create', path: 'auto', type: 'auto', version: '16.5.5' };
+5 -5
View File
@@ -18,17 +18,17 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.5.4",
"version": "16.5.5",
"main": "index.js",
"dependencies": {
"@polkadot/networks": "^14.0.1",
"@polkadot/types": "16.5.4",
"@polkadot/types-codec": "16.5.4",
"@polkadot/types-create": "16.5.4",
"@polkadot/types": "16.5.5",
"@polkadot/types-codec": "16.5.5",
"@polkadot/types-create": "16.5.5",
"@polkadot/util": "^14.0.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@polkadot/api": "16.5.4"
"@polkadot/api": "16.5.5"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/types-known', path: 'auto', type: 'auto', version: '16.5.4' };
export const packageInfo = { name: '@polkadot/types-known', path: 'auto', type: 'auto', version: '16.5.5' };
+1 -1
View File
@@ -18,7 +18,7 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.5.4",
"version": "16.5.5",
"main": "index.js",
"dependencies": {
"@polkadot/util": "^14.0.1",
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/types-support', path: 'auto', type: 'auto', version: '16.5.4' };
export const packageInfo = { name: '@polkadot/types-support', path: 'auto', type: 'auto', version: '16.5.5' };
+5 -5
View File
@@ -18,13 +18,13 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.5.4",
"version": "16.5.5",
"main": "index.js",
"dependencies": {
"@polkadot/keyring": "^14.0.1",
"@polkadot/types-augment": "16.5.4",
"@polkadot/types-codec": "16.5.4",
"@polkadot/types-create": "16.5.4",
"@polkadot/types-augment": "16.5.5",
"@polkadot/types-codec": "16.5.5",
"@polkadot/types-create": "16.5.5",
"@polkadot/util": "^14.0.1",
"@polkadot/util-crypto": "^14.0.1",
"rxjs": "^7.8.1",
@@ -32,6 +32,6 @@
},
"devDependencies": {
"@polkadot/keyring": "^14.0.1",
"@polkadot/types-support": "16.5.4"
"@polkadot/types-support": "16.5.5"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/types', path: 'auto', type: 'auto', version: '16.5.4' };
export const packageInfo = { name: '@polkadot/types', path: 'auto', type: 'auto', version: '16.5.5' };
+80 -80
View File
@@ -463,26 +463,26 @@ __metadata:
languageName: node
linkType: hard
"@polkadot/api-augment@npm:16.5.4, @polkadot/api-augment@workspace:packages/api-augment":
"@polkadot/api-augment@npm:16.5.5, @polkadot/api-augment@workspace:packages/api-augment":
version: 0.0.0-use.local
resolution: "@polkadot/api-augment@workspace:packages/api-augment"
dependencies:
"@polkadot/api-base": "npm:16.5.4"
"@polkadot/rpc-augment": "npm:16.5.4"
"@polkadot/types": "npm:16.5.4"
"@polkadot/types-augment": "npm:16.5.4"
"@polkadot/types-codec": "npm:16.5.4"
"@polkadot/api-base": "npm:16.5.5"
"@polkadot/rpc-augment": "npm:16.5.5"
"@polkadot/types": "npm:16.5.5"
"@polkadot/types-augment": "npm:16.5.5"
"@polkadot/types-codec": "npm:16.5.5"
"@polkadot/util": "npm:^14.0.1"
tslib: "npm:^2.8.1"
languageName: unknown
linkType: soft
"@polkadot/api-base@npm:16.5.4, @polkadot/api-base@workspace:packages/api-base":
"@polkadot/api-base@npm:16.5.5, @polkadot/api-base@workspace:packages/api-base":
version: 0.0.0-use.local
resolution: "@polkadot/api-base@workspace:packages/api-base"
dependencies:
"@polkadot/rpc-core": "npm:16.5.4"
"@polkadot/types": "npm:16.5.4"
"@polkadot/rpc-core": "npm:16.5.5"
"@polkadot/types": "npm:16.5.5"
"@polkadot/util": "npm:^14.0.1"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.8.1"
@@ -493,13 +493,13 @@ __metadata:
version: 0.0.0-use.local
resolution: "@polkadot/api-contract@workspace:packages/api-contract"
dependencies:
"@polkadot/api": "npm:16.5.4"
"@polkadot/api-augment": "npm:16.5.4"
"@polkadot/api": "npm:16.5.5"
"@polkadot/api-augment": "npm:16.5.5"
"@polkadot/keyring": "npm:^14.0.1"
"@polkadot/types": "npm:16.5.4"
"@polkadot/types-codec": "npm:16.5.4"
"@polkadot/types-create": "npm:16.5.4"
"@polkadot/types-support": "npm:16.5.4"
"@polkadot/types": "npm:16.5.5"
"@polkadot/types-codec": "npm:16.5.5"
"@polkadot/types-create": "npm:16.5.5"
"@polkadot/types-support": "npm:16.5.5"
"@polkadot/util": "npm:^14.0.1"
"@polkadot/util-crypto": "npm:^14.0.1"
rxjs: "npm:^7.8.1"
@@ -507,19 +507,19 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/api-derive@npm:16.5.4, @polkadot/api-derive@workspace:packages/api-derive":
"@polkadot/api-derive@npm:16.5.5, @polkadot/api-derive@workspace:packages/api-derive":
version: 0.0.0-use.local
resolution: "@polkadot/api-derive@workspace:packages/api-derive"
dependencies:
"@polkadot/api": "npm:16.5.4"
"@polkadot/api-augment": "npm:16.5.4"
"@polkadot/api-base": "npm:16.5.4"
"@polkadot/rpc-augment": "npm:16.5.4"
"@polkadot/rpc-core": "npm:16.5.4"
"@polkadot/rpc-provider": "npm:16.5.4"
"@polkadot/types": "npm:16.5.4"
"@polkadot/types-codec": "npm:16.5.4"
"@polkadot/types-support": "npm:16.5.4"
"@polkadot/api": "npm:16.5.5"
"@polkadot/api-augment": "npm:16.5.5"
"@polkadot/api-base": "npm:16.5.5"
"@polkadot/rpc-augment": "npm:16.5.5"
"@polkadot/rpc-core": "npm:16.5.5"
"@polkadot/rpc-provider": "npm:16.5.5"
"@polkadot/types": "npm:16.5.5"
"@polkadot/types-codec": "npm:16.5.5"
"@polkadot/types-support": "npm:16.5.5"
"@polkadot/util": "npm:^14.0.1"
"@polkadot/util-crypto": "npm:^14.0.1"
rxjs: "npm:^7.8.1"
@@ -527,23 +527,23 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/api@npm:16.5.4, @polkadot/api@workspace:packages/api":
"@polkadot/api@npm:16.5.5, @polkadot/api@workspace:packages/api":
version: 0.0.0-use.local
resolution: "@polkadot/api@workspace:packages/api"
dependencies:
"@polkadot/api-augment": "npm:16.5.4"
"@polkadot/api-base": "npm:16.5.4"
"@polkadot/api-derive": "npm:16.5.4"
"@polkadot/api-augment": "npm:16.5.5"
"@polkadot/api-base": "npm:16.5.5"
"@polkadot/api-derive": "npm:16.5.5"
"@polkadot/keyring": "npm:^14.0.1"
"@polkadot/rpc-augment": "npm:16.5.4"
"@polkadot/rpc-core": "npm:16.5.4"
"@polkadot/rpc-provider": "npm:16.5.4"
"@polkadot/types": "npm:16.5.4"
"@polkadot/types-augment": "npm:16.5.4"
"@polkadot/types-codec": "npm:16.5.4"
"@polkadot/types-create": "npm:16.5.4"
"@polkadot/types-known": "npm:16.5.4"
"@polkadot/types-support": "npm:16.5.4"
"@polkadot/rpc-augment": "npm:16.5.5"
"@polkadot/rpc-core": "npm:16.5.5"
"@polkadot/rpc-provider": "npm:16.5.5"
"@polkadot/types": "npm:16.5.5"
"@polkadot/types-augment": "npm:16.5.5"
"@polkadot/types-codec": "npm:16.5.5"
"@polkadot/types-create": "npm:16.5.5"
"@polkadot/types-known": "npm:16.5.5"
"@polkadot/types-support": "npm:16.5.5"
"@polkadot/util": "npm:^14.0.1"
"@polkadot/util-crypto": "npm:^14.0.1"
eventemitter3: "npm:^5.0.1"
@@ -673,39 +673,39 @@ __metadata:
languageName: node
linkType: hard
"@polkadot/rpc-augment@npm:16.5.4, @polkadot/rpc-augment@workspace:packages/rpc-augment":
"@polkadot/rpc-augment@npm:16.5.5, @polkadot/rpc-augment@workspace:packages/rpc-augment":
version: 0.0.0-use.local
resolution: "@polkadot/rpc-augment@workspace:packages/rpc-augment"
dependencies:
"@polkadot/rpc-core": "npm:16.5.4"
"@polkadot/types": "npm:16.5.4"
"@polkadot/types-codec": "npm:16.5.4"
"@polkadot/rpc-core": "npm:16.5.5"
"@polkadot/types": "npm:16.5.5"
"@polkadot/types-codec": "npm:16.5.5"
"@polkadot/util": "npm:^14.0.1"
tslib: "npm:^2.8.1"
languageName: unknown
linkType: soft
"@polkadot/rpc-core@npm:16.5.4, @polkadot/rpc-core@workspace:packages/rpc-core":
"@polkadot/rpc-core@npm:16.5.5, @polkadot/rpc-core@workspace:packages/rpc-core":
version: 0.0.0-use.local
resolution: "@polkadot/rpc-core@workspace:packages/rpc-core"
dependencies:
"@polkadot/keyring": "npm:^14.0.1"
"@polkadot/rpc-augment": "npm:16.5.4"
"@polkadot/rpc-provider": "npm:16.5.4"
"@polkadot/types": "npm:16.5.4"
"@polkadot/rpc-augment": "npm:16.5.5"
"@polkadot/rpc-provider": "npm:16.5.5"
"@polkadot/types": "npm:16.5.5"
"@polkadot/util": "npm:^14.0.1"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.8.1"
languageName: unknown
linkType: soft
"@polkadot/rpc-provider@npm:16.5.4, @polkadot/rpc-provider@workspace:packages/rpc-provider":
"@polkadot/rpc-provider@npm:16.5.5, @polkadot/rpc-provider@workspace:packages/rpc-provider":
version: 0.0.0-use.local
resolution: "@polkadot/rpc-provider@workspace:packages/rpc-provider"
dependencies:
"@polkadot/keyring": "npm:^14.0.1"
"@polkadot/types": "npm:16.5.4"
"@polkadot/types-support": "npm:16.5.4"
"@polkadot/types": "npm:16.5.5"
"@polkadot/types-support": "npm:16.5.5"
"@polkadot/util": "npm:^14.0.1"
"@polkadot/util-crypto": "npm:^14.0.1"
"@polkadot/x-fetch": "npm:^14.0.1"
@@ -726,16 +726,16 @@ __metadata:
version: 0.0.0-use.local
resolution: "@polkadot/typegen@workspace:packages/typegen"
dependencies:
"@polkadot/api": "npm:16.5.4"
"@polkadot/api-augment": "npm:16.5.4"
"@polkadot/api-derive": "npm:16.5.4"
"@polkadot/rpc-augment": "npm:16.5.4"
"@polkadot/rpc-provider": "npm:16.5.4"
"@polkadot/types": "npm:16.5.4"
"@polkadot/types-augment": "npm:16.5.4"
"@polkadot/types-codec": "npm:16.5.4"
"@polkadot/types-create": "npm:16.5.4"
"@polkadot/types-support": "npm:16.5.4"
"@polkadot/api": "npm:16.5.5"
"@polkadot/api-augment": "npm:16.5.5"
"@polkadot/api-derive": "npm:16.5.5"
"@polkadot/rpc-augment": "npm:16.5.5"
"@polkadot/rpc-provider": "npm:16.5.5"
"@polkadot/types": "npm:16.5.5"
"@polkadot/types-augment": "npm:16.5.5"
"@polkadot/types-codec": "npm:16.5.5"
"@polkadot/types-create": "npm:16.5.5"
"@polkadot/types-support": "npm:16.5.5"
"@polkadot/util": "npm:^14.0.1"
"@polkadot/util-crypto": "npm:^14.0.1"
"@polkadot/x-ws": "npm:^14.0.1"
@@ -753,24 +753,24 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/types-augment@npm:16.5.4, @polkadot/types-augment@workspace:packages/types-augment":
"@polkadot/types-augment@npm:16.5.5, @polkadot/types-augment@workspace:packages/types-augment":
version: 0.0.0-use.local
resolution: "@polkadot/types-augment@workspace:packages/types-augment"
dependencies:
"@polkadot/types": "npm:16.5.4"
"@polkadot/types-codec": "npm:16.5.4"
"@polkadot/types": "npm:16.5.5"
"@polkadot/types-codec": "npm:16.5.5"
"@polkadot/util": "npm:^14.0.1"
tslib: "npm:^2.8.1"
languageName: unknown
linkType: soft
"@polkadot/types-codec@npm:16.5.4, @polkadot/types-codec@workspace:packages/types-codec":
"@polkadot/types-codec@npm:16.5.5, @polkadot/types-codec@workspace:packages/types-codec":
version: 0.0.0-use.local
resolution: "@polkadot/types-codec@workspace:packages/types-codec"
dependencies:
"@polkadot/types": "npm:16.5.4"
"@polkadot/types-augment": "npm:16.5.4"
"@polkadot/types-support": "npm:16.5.4"
"@polkadot/types": "npm:16.5.5"
"@polkadot/types-augment": "npm:16.5.5"
"@polkadot/types-support": "npm:16.5.5"
"@polkadot/util": "npm:^14.0.1"
"@polkadot/util-crypto": "npm:^14.0.1"
"@polkadot/x-bigint": "npm:^14.0.1"
@@ -778,32 +778,32 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/types-create@npm:16.5.4, @polkadot/types-create@workspace:packages/types-create":
"@polkadot/types-create@npm:16.5.5, @polkadot/types-create@workspace:packages/types-create":
version: 0.0.0-use.local
resolution: "@polkadot/types-create@workspace:packages/types-create"
dependencies:
"@polkadot/types": "npm:16.5.4"
"@polkadot/types-codec": "npm:16.5.4"
"@polkadot/types": "npm:16.5.5"
"@polkadot/types-codec": "npm:16.5.5"
"@polkadot/util": "npm:^14.0.1"
tslib: "npm:^2.8.1"
languageName: unknown
linkType: soft
"@polkadot/types-known@npm:16.5.4, @polkadot/types-known@workspace:packages/types-known":
"@polkadot/types-known@npm:16.5.5, @polkadot/types-known@workspace:packages/types-known":
version: 0.0.0-use.local
resolution: "@polkadot/types-known@workspace:packages/types-known"
dependencies:
"@polkadot/api": "npm:16.5.4"
"@polkadot/api": "npm:16.5.5"
"@polkadot/networks": "npm:^14.0.1"
"@polkadot/types": "npm:16.5.4"
"@polkadot/types-codec": "npm:16.5.4"
"@polkadot/types-create": "npm:16.5.4"
"@polkadot/types": "npm:16.5.5"
"@polkadot/types-codec": "npm:16.5.5"
"@polkadot/types-create": "npm:16.5.5"
"@polkadot/util": "npm:^14.0.1"
tslib: "npm:^2.8.1"
languageName: unknown
linkType: soft
"@polkadot/types-support@npm:16.5.4, @polkadot/types-support@workspace:packages/types-support":
"@polkadot/types-support@npm:16.5.5, @polkadot/types-support@workspace:packages/types-support":
version: 0.0.0-use.local
resolution: "@polkadot/types-support@workspace:packages/types-support"
dependencies:
@@ -812,15 +812,15 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/types@npm:16.5.4, @polkadot/types@workspace:packages/types":
"@polkadot/types@npm:16.5.5, @polkadot/types@workspace:packages/types":
version: 0.0.0-use.local
resolution: "@polkadot/types@workspace:packages/types"
dependencies:
"@polkadot/keyring": "npm:^14.0.1"
"@polkadot/types-augment": "npm:16.5.4"
"@polkadot/types-codec": "npm:16.5.4"
"@polkadot/types-create": "npm:16.5.4"
"@polkadot/types-support": "npm:16.5.4"
"@polkadot/types-augment": "npm:16.5.5"
"@polkadot/types-codec": "npm:16.5.5"
"@polkadot/types-create": "npm:16.5.5"
"@polkadot/types-support": "npm:16.5.5"
"@polkadot/util": "npm:^14.0.1"
"@polkadot/util-crypto": "npm:^14.0.1"
rxjs: "npm:^7.8.1"