Compare commits

...
4 Commits
Author SHA1 Message Date
github-actions[bot] f5cc1b203d [CI Skip] release/stable 16.4.2
skip-checks: true
2025-07-22 13:49:00 +00:00
rajk93 0009649d15 16.4.2 (#6190) 2025-07-22 19:13:11 +05:30
github-actions[bot] 63afa969e0 [CI Skip] bump/beta 16.4.2-0-x
skip-checks: true
2025-07-21 12:15:25 +00:00
Arjun Porwal 29ce33fe64 Add validation for cache capacity and TTL in LRUCache (#6187)
* fix: lru cache validation

* chore: increased ttl to 30 mins

* fix: tests
2025-07-21 17:39:35 +05:30
37 changed files with 219 additions and 188 deletions
+5
View File
@@ -1,5 +1,10 @@
# CHANGELOG
## 16.4.2 Jul 22, 2025
- Add validation for cache capacity and TTL in LRUCache ([#6187](https://github.com/polkadot-js/api/pull/6187))
## 16.4.1 Jul 8, 2025
- Update Kusama types to 1.6.0 ([#6175](https://github.com/polkadot-js/api/pull/6175))
+2 -2
View File
@@ -11,14 +11,14 @@
11 Ian He HttpProvider support clone() (#3949)
10 Axel Chalon Make Enum/Tuple constructor use value directly if instance (#1954)
6 Andreea Eftene Update check for contract instantiation (#5699)
6 Arjun Porwal Add validation for cache capacity and TTL in LRUCache (#6187)
6 Branislav Kontur Fix for fungiblesApi (#5944)
6 rajk93 16.4.2 (#6190)
5 Alberto Nicolas Penayo added use of accountNonceApi (#5915)
5 Arjun Porwal Fix signature issue in `signAsync` + `send` flow (#6177)
5 Chevdor Fix metadata package link (#3458)
5 Jake Naviasky Fixing approvalFlagsToBools. (#1250)
5 Julien Eluard General WsProvider extensibility improvements (#5467)
5 Matias Volpe Bump @substrate/connect to 0.8.10 (#5863)
5 rajk93 chore: update kusama types to 1.6.0 (#6175)
5 Thibaut Sardan Allow external signers to modify the payload (#6030)
4 Alex D Use derive customAccount and customLocks for balance overrides (#3248)
4 Alex Wang fix issue that creates duplicate providers (#983)
+3 -3
View File
@@ -14,10 +14,10 @@
},
"sideEffects": false,
"type": "module",
"version": "16.4.1",
"version": "16.4.2",
"versions": {
"git": "16.4.1",
"npm": "16.4.1"
"git": "16.4.2",
"npm": "16.4.2"
},
"workspaces": [
"packages/*"
+6 -6
View File
@@ -18,14 +18,14 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.4.1",
"version": "16.4.2",
"main": "index.js",
"dependencies": {
"@polkadot/api-base": "16.4.1",
"@polkadot/rpc-augment": "16.4.1",
"@polkadot/types": "16.4.1",
"@polkadot/types-augment": "16.4.1",
"@polkadot/types-codec": "16.4.1",
"@polkadot/api-base": "16.4.2",
"@polkadot/rpc-augment": "16.4.2",
"@polkadot/types": "16.4.2",
"@polkadot/types-augment": "16.4.2",
"@polkadot/types-codec": "16.4.2",
"@polkadot/util": "^13.5.3",
"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.4.1' };
export const packageInfo = { name: '@polkadot/api-augment', path: 'auto', type: 'auto', version: '16.4.2' };
+3 -3
View File
@@ -18,11 +18,11 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.4.1",
"version": "16.4.2",
"main": "index.js",
"dependencies": {
"@polkadot/rpc-core": "16.4.1",
"@polkadot/types": "16.4.1",
"@polkadot/rpc-core": "16.4.2",
"@polkadot/types": "16.4.2",
"@polkadot/util": "^13.5.3",
"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.4.1' };
export const packageInfo = { name: '@polkadot/api-base', path: 'auto', type: 'auto', version: '16.4.2' };
+8 -8
View File
@@ -18,22 +18,22 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.4.1",
"version": "16.4.2",
"main": "index.js",
"dependencies": {
"@polkadot/api": "16.4.1",
"@polkadot/api-augment": "16.4.1",
"@polkadot/types": "16.4.1",
"@polkadot/types-codec": "16.4.1",
"@polkadot/types-create": "16.4.1",
"@polkadot/api": "16.4.2",
"@polkadot/api-augment": "16.4.2",
"@polkadot/types": "16.4.2",
"@polkadot/types-codec": "16.4.2",
"@polkadot/types-create": "16.4.2",
"@polkadot/util": "^13.5.3",
"@polkadot/util-crypto": "^13.5.3",
"rxjs": "^7.8.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@polkadot/api-augment": "16.4.1",
"@polkadot/api-augment": "16.4.2",
"@polkadot/keyring": "^13.5.3",
"@polkadot/types-support": "16.4.1"
"@polkadot/types-support": "16.4.2"
}
}
+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.4.1' };
export const packageInfo = { name: '@polkadot/api-contract', path: 'auto', type: 'auto', version: '16.4.2' };
+12 -12
View File
@@ -18,25 +18,25 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.4.1",
"version": "16.4.2",
"main": "index.js",
"dependencies": {
"@polkadot/api": "16.4.1",
"@polkadot/api-augment": "16.4.1",
"@polkadot/api-base": "16.4.1",
"@polkadot/rpc-core": "16.4.1",
"@polkadot/types": "16.4.1",
"@polkadot/types-codec": "16.4.1",
"@polkadot/api": "16.4.2",
"@polkadot/api-augment": "16.4.2",
"@polkadot/api-base": "16.4.2",
"@polkadot/rpc-core": "16.4.2",
"@polkadot/types": "16.4.2",
"@polkadot/types-codec": "16.4.2",
"@polkadot/util": "^13.5.3",
"@polkadot/util-crypto": "^13.5.3",
"rxjs": "^7.8.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@polkadot/api": "16.4.1",
"@polkadot/api-augment": "16.4.1",
"@polkadot/rpc-augment": "16.4.1",
"@polkadot/rpc-provider": "16.4.1",
"@polkadot/types-support": "16.4.1"
"@polkadot/api": "16.4.2",
"@polkadot/api-augment": "16.4.2",
"@polkadot/rpc-augment": "16.4.2",
"@polkadot/rpc-provider": "16.4.2",
"@polkadot/types-support": "16.4.2"
}
}
+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.4.1' };
export const packageInfo = { name: '@polkadot/api-derive', path: 'auto', type: 'auto', version: '16.4.2' };
+14 -14
View File
@@ -18,21 +18,21 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.4.1",
"version": "16.4.2",
"main": "index.js",
"dependencies": {
"@polkadot/api-augment": "16.4.1",
"@polkadot/api-base": "16.4.1",
"@polkadot/api-derive": "16.4.1",
"@polkadot/api-augment": "16.4.2",
"@polkadot/api-base": "16.4.2",
"@polkadot/api-derive": "16.4.2",
"@polkadot/keyring": "^13.5.3",
"@polkadot/rpc-augment": "16.4.1",
"@polkadot/rpc-core": "16.4.1",
"@polkadot/rpc-provider": "16.4.1",
"@polkadot/types": "16.4.1",
"@polkadot/types-augment": "16.4.1",
"@polkadot/types-codec": "16.4.1",
"@polkadot/types-create": "16.4.1",
"@polkadot/types-known": "16.4.1",
"@polkadot/rpc-augment": "16.4.2",
"@polkadot/rpc-core": "16.4.2",
"@polkadot/rpc-provider": "16.4.2",
"@polkadot/types": "16.4.2",
"@polkadot/types-augment": "16.4.2",
"@polkadot/types-codec": "16.4.2",
"@polkadot/types-create": "16.4.2",
"@polkadot/types-known": "16.4.2",
"@polkadot/util": "^13.5.3",
"@polkadot/util-crypto": "^13.5.3",
"eventemitter3": "^5.0.1",
@@ -40,7 +40,7 @@
"tslib": "^2.8.1"
},
"devDependencies": {
"@polkadot/api-augment": "16.4.1",
"@polkadot/types-support": "16.4.1"
"@polkadot/api-augment": "16.4.2",
"@polkadot/types-support": "16.4.2"
}
}
+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.4.1' };
export const packageInfo = { name: '@polkadot/api', path: 'auto', type: 'auto', version: '16.4.2' };
+4 -4
View File
@@ -18,12 +18,12 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.4.1",
"version": "16.4.2",
"main": "index.js",
"dependencies": {
"@polkadot/rpc-core": "16.4.1",
"@polkadot/types": "16.4.1",
"@polkadot/types-codec": "16.4.1",
"@polkadot/rpc-core": "16.4.2",
"@polkadot/types": "16.4.2",
"@polkadot/types-codec": "16.4.2",
"@polkadot/util": "^13.5.3",
"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.4.1' };
export const packageInfo = { name: '@polkadot/rpc-augment', path: 'auto', type: 'auto', version: '16.4.2' };
+5 -5
View File
@@ -18,18 +18,18 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.4.1",
"version": "16.4.2",
"main": "index.js",
"dependencies": {
"@polkadot/rpc-augment": "16.4.1",
"@polkadot/rpc-provider": "16.4.1",
"@polkadot/types": "16.4.1",
"@polkadot/rpc-augment": "16.4.2",
"@polkadot/rpc-provider": "16.4.2",
"@polkadot/types": "16.4.2",
"@polkadot/util": "^13.5.3",
"rxjs": "^7.8.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@polkadot/keyring": "^13.5.3",
"@polkadot/rpc-augment": "16.4.1"
"@polkadot/rpc-augment": "16.4.2"
}
}
+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.4.1' };
export const packageInfo = { name: '@polkadot/rpc-core', path: 'auto', type: 'auto', version: '16.4.2' };
+3 -3
View File
@@ -18,12 +18,12 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.4.1",
"version": "16.4.2",
"main": "index.js",
"dependencies": {
"@polkadot/keyring": "^13.5.3",
"@polkadot/types": "16.4.1",
"@polkadot/types-support": "16.4.1",
"@polkadot/types": "16.4.2",
"@polkadot/types-support": "16.4.2",
"@polkadot/util": "^13.5.3",
"@polkadot/util-crypto": "^13.5.3",
"@polkadot/x-fetch": "^13.5.3",
@@ -31,6 +31,16 @@ describe('Http', (): void => {
).not.toThrow();
});
it('should throw error on negative cache capacity or TTL', () => {
expect(() =>
new HttpProvider(TEST_HTTP_URL, {}, -5, 30000)
).toThrow(/'capacity' must be a non-negative integer/);
expect(() =>
new HttpProvider(TEST_HTTP_URL, {}, 1024, -1000)
).toThrow(/'ttl' must be between 0 and 1800000 ms or null to disable/);
});
it('allow clone', (): void => {
const clone = http.clone();
/* eslint-disable */
+12 -1
View File
@@ -6,7 +6,8 @@
// for Kusama/Polkadot/Substrate falls between 600-750K, 2x for estimate)
export const DEFAULT_CAPACITY = 1024;
export const DEFAULT_TTL = 30000;
export const DEFAULT_TTL = 30000; // 30 seconds
const MAX_TTL = 1800_000; // 30 minutes
// If the user decides to disable the TTL we set the value
// to a very high number (A year = 365 * 24 * 60 * 60 * 1000).
@@ -52,6 +53,16 @@ export class LRUCache {
readonly #ttl: number;
constructor (capacity = DEFAULT_CAPACITY, ttl: number | null = DEFAULT_TTL) {
// Validate capacity
if (!Number.isInteger(capacity) || capacity < 0) {
throw new Error(`LRUCache initialization error: 'capacity' must be a non-negative integer. Received: ${capacity}`);
}
// Validate ttl
if (ttl !== null && (!Number.isFinite(ttl) || ttl < 0 || ttl > MAX_TTL)) {
throw new Error(`LRUCache initialization error: 'ttl' must be between 0 and ${MAX_TTL} ms or null to disable. Received: ${ttl}`);
}
this.capacity = capacity;
ttl ? this.#ttl = ttl : this.#ttl = DISABLED_TTL;
this.#head = this.#tail = new LRUNode('<empty>', this.#ttl);
+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.4.1' };
export const packageInfo = { name: '@polkadot/rpc-provider', path: 'auto', type: 'auto', version: '16.4.2' };
@@ -60,6 +60,11 @@ describe('Endpoint Parsing', (): void => {
new WsProvider(TEST_WS_URL, 0);
});
it('should throw error on negative cache capacity or TTL', () => {
expect(() => new WsProvider(TEST_WS_URL, false, {}, undefined, -5, 30000)).toThrow(/'capacity' must be a non-negative integer/);
expect(() => new WsProvider(TEST_WS_URL, false, {}, undefined, 1024, -1000)).toThrow(/'ttl' must be between 0 and 1800000 ms or null to disable/);
});
it('Throws when WsProvider endpoint is an invalid string', () => {
expect(
() => new WsProvider('http://127.0.0.1:9955', 0)
+11 -11
View File
@@ -18,7 +18,7 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.4.1",
"version": "16.4.2",
"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.4.1",
"@polkadot/api-augment": "16.4.1",
"@polkadot/api-derive": "16.4.1",
"@polkadot/rpc-augment": "16.4.1",
"@polkadot/rpc-provider": "16.4.1",
"@polkadot/types": "16.4.1",
"@polkadot/types-augment": "16.4.1",
"@polkadot/types-codec": "16.4.1",
"@polkadot/types-create": "16.4.1",
"@polkadot/types-support": "16.4.1",
"@polkadot/api": "16.4.2",
"@polkadot/api-augment": "16.4.2",
"@polkadot/api-derive": "16.4.2",
"@polkadot/rpc-augment": "16.4.2",
"@polkadot/rpc-provider": "16.4.2",
"@polkadot/types": "16.4.2",
"@polkadot/types-augment": "16.4.2",
"@polkadot/types-codec": "16.4.2",
"@polkadot/types-create": "16.4.2",
"@polkadot/types-support": "16.4.2",
"@polkadot/util": "^13.5.3",
"@polkadot/util-crypto": "^13.5.3",
"@polkadot/x-ws": "^13.5.3",
+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.4.1' };
export const packageInfo = { name: '@polkadot/typegen', path: 'auto', type: 'auto', version: '16.4.2' };
+3 -3
View File
@@ -18,11 +18,11 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.4.1",
"version": "16.4.2",
"main": "index.js",
"dependencies": {
"@polkadot/types": "16.4.1",
"@polkadot/types-codec": "16.4.1",
"@polkadot/types": "16.4.2",
"@polkadot/types-codec": "16.4.2",
"@polkadot/util": "^13.5.3",
"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.4.1' };
export const packageInfo = { name: '@polkadot/types-augment', path: 'auto', type: 'auto', version: '16.4.2' };
+4 -4
View File
@@ -18,7 +18,7 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.4.1",
"version": "16.4.2",
"main": "index.js",
"dependencies": {
"@polkadot/util": "^13.5.3",
@@ -26,9 +26,9 @@
"tslib": "^2.8.1"
},
"devDependencies": {
"@polkadot/types": "16.4.1",
"@polkadot/types-augment": "16.4.1",
"@polkadot/types-support": "16.4.1",
"@polkadot/types": "16.4.2",
"@polkadot/types-augment": "16.4.2",
"@polkadot/types-support": "16.4.2",
"@polkadot/util-crypto": "^13.5.3"
}
}
+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.4.1' };
export const packageInfo = { name: '@polkadot/types-codec', path: 'auto', type: 'auto', version: '16.4.2' };
+3 -3
View File
@@ -18,14 +18,14 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.4.1",
"version": "16.4.2",
"main": "index.js",
"dependencies": {
"@polkadot/types-codec": "16.4.1",
"@polkadot/types-codec": "16.4.2",
"@polkadot/util": "^13.5.3",
"tslib": "^2.8.1"
},
"devDependencies": {
"@polkadot/types": "16.4.1"
"@polkadot/types": "16.4.2"
}
}
+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.4.1' };
export const packageInfo = { name: '@polkadot/types-create', path: 'auto', type: 'auto', version: '16.4.2' };
+5 -5
View File
@@ -18,17 +18,17 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.4.1",
"version": "16.4.2",
"main": "index.js",
"dependencies": {
"@polkadot/networks": "^13.5.3",
"@polkadot/types": "16.4.1",
"@polkadot/types-codec": "16.4.1",
"@polkadot/types-create": "16.4.1",
"@polkadot/types": "16.4.2",
"@polkadot/types-codec": "16.4.2",
"@polkadot/types-create": "16.4.2",
"@polkadot/util": "^13.5.3",
"tslib": "^2.8.1"
},
"devDependencies": {
"@polkadot/api": "16.4.1"
"@polkadot/api": "16.4.2"
}
}
+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.4.1' };
export const packageInfo = { name: '@polkadot/types-known', path: 'auto', type: 'auto', version: '16.4.2' };
+1 -1
View File
@@ -18,7 +18,7 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.4.1",
"version": "16.4.2",
"main": "index.js",
"dependencies": {
"@polkadot/util": "^13.5.3",
+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.4.1' };
export const packageInfo = { name: '@polkadot/types-support', path: 'auto', type: 'auto', version: '16.4.2' };
+5 -5
View File
@@ -18,13 +18,13 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "16.4.1",
"version": "16.4.2",
"main": "index.js",
"dependencies": {
"@polkadot/keyring": "^13.5.3",
"@polkadot/types-augment": "16.4.1",
"@polkadot/types-codec": "16.4.1",
"@polkadot/types-create": "16.4.1",
"@polkadot/types-augment": "16.4.2",
"@polkadot/types-codec": "16.4.2",
"@polkadot/types-create": "16.4.2",
"@polkadot/util": "^13.5.3",
"@polkadot/util-crypto": "^13.5.3",
"rxjs": "^7.8.1",
@@ -32,6 +32,6 @@
},
"devDependencies": {
"@polkadot/keyring": "^13.5.3",
"@polkadot/types-support": "16.4.1"
"@polkadot/types-support": "16.4.2"
}
}
+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.4.1' };
export const packageInfo = { name: '@polkadot/types', path: 'auto', type: 'auto', version: '16.4.2' };
+80 -80
View File
@@ -447,26 +447,26 @@ __metadata:
languageName: node
linkType: hard
"@polkadot/api-augment@npm:16.4.1, @polkadot/api-augment@workspace:packages/api-augment":
"@polkadot/api-augment@npm:16.4.2, @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.4.1"
"@polkadot/rpc-augment": "npm:16.4.1"
"@polkadot/types": "npm:16.4.1"
"@polkadot/types-augment": "npm:16.4.1"
"@polkadot/types-codec": "npm:16.4.1"
"@polkadot/api-base": "npm:16.4.2"
"@polkadot/rpc-augment": "npm:16.4.2"
"@polkadot/types": "npm:16.4.2"
"@polkadot/types-augment": "npm:16.4.2"
"@polkadot/types-codec": "npm:16.4.2"
"@polkadot/util": "npm:^13.5.3"
tslib: "npm:^2.8.1"
languageName: unknown
linkType: soft
"@polkadot/api-base@npm:16.4.1, @polkadot/api-base@workspace:packages/api-base":
"@polkadot/api-base@npm:16.4.2, @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.4.1"
"@polkadot/types": "npm:16.4.1"
"@polkadot/rpc-core": "npm:16.4.2"
"@polkadot/types": "npm:16.4.2"
"@polkadot/util": "npm:^13.5.3"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.8.1"
@@ -477,13 +477,13 @@ __metadata:
version: 0.0.0-use.local
resolution: "@polkadot/api-contract@workspace:packages/api-contract"
dependencies:
"@polkadot/api": "npm:16.4.1"
"@polkadot/api-augment": "npm:16.4.1"
"@polkadot/api": "npm:16.4.2"
"@polkadot/api-augment": "npm:16.4.2"
"@polkadot/keyring": "npm:^13.5.3"
"@polkadot/types": "npm:16.4.1"
"@polkadot/types-codec": "npm:16.4.1"
"@polkadot/types-create": "npm:16.4.1"
"@polkadot/types-support": "npm:16.4.1"
"@polkadot/types": "npm:16.4.2"
"@polkadot/types-codec": "npm:16.4.2"
"@polkadot/types-create": "npm:16.4.2"
"@polkadot/types-support": "npm:16.4.2"
"@polkadot/util": "npm:^13.5.3"
"@polkadot/util-crypto": "npm:^13.5.3"
rxjs: "npm:^7.8.1"
@@ -491,19 +491,19 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/api-derive@npm:16.4.1, @polkadot/api-derive@workspace:packages/api-derive":
"@polkadot/api-derive@npm:16.4.2, @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.4.1"
"@polkadot/api-augment": "npm:16.4.1"
"@polkadot/api-base": "npm:16.4.1"
"@polkadot/rpc-augment": "npm:16.4.1"
"@polkadot/rpc-core": "npm:16.4.1"
"@polkadot/rpc-provider": "npm:16.4.1"
"@polkadot/types": "npm:16.4.1"
"@polkadot/types-codec": "npm:16.4.1"
"@polkadot/types-support": "npm:16.4.1"
"@polkadot/api": "npm:16.4.2"
"@polkadot/api-augment": "npm:16.4.2"
"@polkadot/api-base": "npm:16.4.2"
"@polkadot/rpc-augment": "npm:16.4.2"
"@polkadot/rpc-core": "npm:16.4.2"
"@polkadot/rpc-provider": "npm:16.4.2"
"@polkadot/types": "npm:16.4.2"
"@polkadot/types-codec": "npm:16.4.2"
"@polkadot/types-support": "npm:16.4.2"
"@polkadot/util": "npm:^13.5.3"
"@polkadot/util-crypto": "npm:^13.5.3"
rxjs: "npm:^7.8.1"
@@ -511,23 +511,23 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/api@npm:16.4.1, @polkadot/api@workspace:packages/api":
"@polkadot/api@npm:16.4.2, @polkadot/api@workspace:packages/api":
version: 0.0.0-use.local
resolution: "@polkadot/api@workspace:packages/api"
dependencies:
"@polkadot/api-augment": "npm:16.4.1"
"@polkadot/api-base": "npm:16.4.1"
"@polkadot/api-derive": "npm:16.4.1"
"@polkadot/api-augment": "npm:16.4.2"
"@polkadot/api-base": "npm:16.4.2"
"@polkadot/api-derive": "npm:16.4.2"
"@polkadot/keyring": "npm:^13.5.3"
"@polkadot/rpc-augment": "npm:16.4.1"
"@polkadot/rpc-core": "npm:16.4.1"
"@polkadot/rpc-provider": "npm:16.4.1"
"@polkadot/types": "npm:16.4.1"
"@polkadot/types-augment": "npm:16.4.1"
"@polkadot/types-codec": "npm:16.4.1"
"@polkadot/types-create": "npm:16.4.1"
"@polkadot/types-known": "npm:16.4.1"
"@polkadot/types-support": "npm:16.4.1"
"@polkadot/rpc-augment": "npm:16.4.2"
"@polkadot/rpc-core": "npm:16.4.2"
"@polkadot/rpc-provider": "npm:16.4.2"
"@polkadot/types": "npm:16.4.2"
"@polkadot/types-augment": "npm:16.4.2"
"@polkadot/types-codec": "npm:16.4.2"
"@polkadot/types-create": "npm:16.4.2"
"@polkadot/types-known": "npm:16.4.2"
"@polkadot/types-support": "npm:16.4.2"
"@polkadot/util": "npm:^13.5.3"
"@polkadot/util-crypto": "npm:^13.5.3"
eventemitter3: "npm:^5.0.1"
@@ -657,39 +657,39 @@ __metadata:
languageName: node
linkType: hard
"@polkadot/rpc-augment@npm:16.4.1, @polkadot/rpc-augment@workspace:packages/rpc-augment":
"@polkadot/rpc-augment@npm:16.4.2, @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.4.1"
"@polkadot/types": "npm:16.4.1"
"@polkadot/types-codec": "npm:16.4.1"
"@polkadot/rpc-core": "npm:16.4.2"
"@polkadot/types": "npm:16.4.2"
"@polkadot/types-codec": "npm:16.4.2"
"@polkadot/util": "npm:^13.5.3"
tslib: "npm:^2.8.1"
languageName: unknown
linkType: soft
"@polkadot/rpc-core@npm:16.4.1, @polkadot/rpc-core@workspace:packages/rpc-core":
"@polkadot/rpc-core@npm:16.4.2, @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:^13.5.3"
"@polkadot/rpc-augment": "npm:16.4.1"
"@polkadot/rpc-provider": "npm:16.4.1"
"@polkadot/types": "npm:16.4.1"
"@polkadot/rpc-augment": "npm:16.4.2"
"@polkadot/rpc-provider": "npm:16.4.2"
"@polkadot/types": "npm:16.4.2"
"@polkadot/util": "npm:^13.5.3"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.8.1"
languageName: unknown
linkType: soft
"@polkadot/rpc-provider@npm:16.4.1, @polkadot/rpc-provider@workspace:packages/rpc-provider":
"@polkadot/rpc-provider@npm:16.4.2, @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:^13.5.3"
"@polkadot/types": "npm:16.4.1"
"@polkadot/types-support": "npm:16.4.1"
"@polkadot/types": "npm:16.4.2"
"@polkadot/types-support": "npm:16.4.2"
"@polkadot/util": "npm:^13.5.3"
"@polkadot/util-crypto": "npm:^13.5.3"
"@polkadot/x-fetch": "npm:^13.5.3"
@@ -710,16 +710,16 @@ __metadata:
version: 0.0.0-use.local
resolution: "@polkadot/typegen@workspace:packages/typegen"
dependencies:
"@polkadot/api": "npm:16.4.1"
"@polkadot/api-augment": "npm:16.4.1"
"@polkadot/api-derive": "npm:16.4.1"
"@polkadot/rpc-augment": "npm:16.4.1"
"@polkadot/rpc-provider": "npm:16.4.1"
"@polkadot/types": "npm:16.4.1"
"@polkadot/types-augment": "npm:16.4.1"
"@polkadot/types-codec": "npm:16.4.1"
"@polkadot/types-create": "npm:16.4.1"
"@polkadot/types-support": "npm:16.4.1"
"@polkadot/api": "npm:16.4.2"
"@polkadot/api-augment": "npm:16.4.2"
"@polkadot/api-derive": "npm:16.4.2"
"@polkadot/rpc-augment": "npm:16.4.2"
"@polkadot/rpc-provider": "npm:16.4.2"
"@polkadot/types": "npm:16.4.2"
"@polkadot/types-augment": "npm:16.4.2"
"@polkadot/types-codec": "npm:16.4.2"
"@polkadot/types-create": "npm:16.4.2"
"@polkadot/types-support": "npm:16.4.2"
"@polkadot/util": "npm:^13.5.3"
"@polkadot/util-crypto": "npm:^13.5.3"
"@polkadot/x-ws": "npm:^13.5.3"
@@ -737,24 +737,24 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/types-augment@npm:16.4.1, @polkadot/types-augment@workspace:packages/types-augment":
"@polkadot/types-augment@npm:16.4.2, @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.4.1"
"@polkadot/types-codec": "npm:16.4.1"
"@polkadot/types": "npm:16.4.2"
"@polkadot/types-codec": "npm:16.4.2"
"@polkadot/util": "npm:^13.5.3"
tslib: "npm:^2.8.1"
languageName: unknown
linkType: soft
"@polkadot/types-codec@npm:16.4.1, @polkadot/types-codec@workspace:packages/types-codec":
"@polkadot/types-codec@npm:16.4.2, @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.4.1"
"@polkadot/types-augment": "npm:16.4.1"
"@polkadot/types-support": "npm:16.4.1"
"@polkadot/types": "npm:16.4.2"
"@polkadot/types-augment": "npm:16.4.2"
"@polkadot/types-support": "npm:16.4.2"
"@polkadot/util": "npm:^13.5.3"
"@polkadot/util-crypto": "npm:^13.5.3"
"@polkadot/x-bigint": "npm:^13.5.3"
@@ -762,32 +762,32 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/types-create@npm:16.4.1, @polkadot/types-create@workspace:packages/types-create":
"@polkadot/types-create@npm:16.4.2, @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.4.1"
"@polkadot/types-codec": "npm:16.4.1"
"@polkadot/types": "npm:16.4.2"
"@polkadot/types-codec": "npm:16.4.2"
"@polkadot/util": "npm:^13.5.3"
tslib: "npm:^2.8.1"
languageName: unknown
linkType: soft
"@polkadot/types-known@npm:16.4.1, @polkadot/types-known@workspace:packages/types-known":
"@polkadot/types-known@npm:16.4.2, @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.4.1"
"@polkadot/api": "npm:16.4.2"
"@polkadot/networks": "npm:^13.5.3"
"@polkadot/types": "npm:16.4.1"
"@polkadot/types-codec": "npm:16.4.1"
"@polkadot/types-create": "npm:16.4.1"
"@polkadot/types": "npm:16.4.2"
"@polkadot/types-codec": "npm:16.4.2"
"@polkadot/types-create": "npm:16.4.2"
"@polkadot/util": "npm:^13.5.3"
tslib: "npm:^2.8.1"
languageName: unknown
linkType: soft
"@polkadot/types-support@npm:16.4.1, @polkadot/types-support@workspace:packages/types-support":
"@polkadot/types-support@npm:16.4.2, @polkadot/types-support@workspace:packages/types-support":
version: 0.0.0-use.local
resolution: "@polkadot/types-support@workspace:packages/types-support"
dependencies:
@@ -796,15 +796,15 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/types@npm:16.4.1, @polkadot/types@workspace:packages/types":
"@polkadot/types@npm:16.4.2, @polkadot/types@workspace:packages/types":
version: 0.0.0-use.local
resolution: "@polkadot/types@workspace:packages/types"
dependencies:
"@polkadot/keyring": "npm:^13.5.3"
"@polkadot/types-augment": "npm:16.4.1"
"@polkadot/types-codec": "npm:16.4.1"
"@polkadot/types-create": "npm:16.4.1"
"@polkadot/types-support": "npm:16.4.1"
"@polkadot/types-augment": "npm:16.4.2"
"@polkadot/types-codec": "npm:16.4.2"
"@polkadot/types-create": "npm:16.4.2"
"@polkadot/types-support": "npm:16.4.2"
"@polkadot/util": "npm:^13.5.3"
"@polkadot/util-crypto": "npm:^13.5.3"
rxjs: "npm:^7.8.1"