Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cf7e2f01ac | ||
|
|
4863709083 | ||
|
|
a1d7cad9d8 | ||
|
|
7f7acd6421 | ||
|
|
a5c5f76aee | ||
|
|
d0905268a4 |
@@ -1,5 +1,13 @@
|
||||
# CHANGELOG
|
||||
|
||||
## 15.9.1 Mar 27, 2025
|
||||
|
||||
Changes:
|
||||
|
||||
- Fix signAsync() docs ([#6121](https://github.com/polkadot-js/api/pull/6121))
|
||||
- Make TTL configurable on WsProvider & HttpProvider ([#6123](https://github.com/polkadot-js/api/pull/6123))
|
||||
|
||||
|
||||
## 15.8.1 Mar 10, 2025
|
||||
|
||||
Changes:
|
||||
|
||||
+1
-1
@@ -3,9 +3,9 @@
|
||||
83 Amaury Martiny StatementKind: Regular and Saft (#2303)
|
||||
37 Keith Ingram Update contract types and rpc (#4541)
|
||||
35 Stefanie Doll Updated child storage parameters (#1709)
|
||||
21 Valentin Fernandez 15.9.1 (#6124)
|
||||
20 Luke Schoen fix: Fixes TypeError: Cannot read property 'vesting' of undefined (#1970)
|
||||
19 Xiliang Chen no warm for unknown signed extensions (#5601)
|
||||
18 Valentin Fernandez Increase version to 15.8.1 (#6114)
|
||||
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)
|
||||
11 Ian He HttpProvider support clone() (#3949)
|
||||
|
||||
+3
-3
@@ -14,10 +14,10 @@
|
||||
},
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"version": "15.8.1",
|
||||
"version": "15.9.1",
|
||||
"versions": {
|
||||
"git": "15.8.1",
|
||||
"npm": "15.8.1"
|
||||
"git": "15.9.1",
|
||||
"npm": "15.9.1"
|
||||
},
|
||||
"workspaces": [
|
||||
"packages/*"
|
||||
|
||||
@@ -18,14 +18,14 @@
|
||||
"./packageDetect.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "15.8.1",
|
||||
"version": "15.9.1",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"@polkadot/api-base": "15.8.1",
|
||||
"@polkadot/rpc-augment": "15.8.1",
|
||||
"@polkadot/types": "15.8.1",
|
||||
"@polkadot/types-augment": "15.8.1",
|
||||
"@polkadot/types-codec": "15.8.1",
|
||||
"@polkadot/api-base": "15.9.1",
|
||||
"@polkadot/rpc-augment": "15.9.1",
|
||||
"@polkadot/types": "15.9.1",
|
||||
"@polkadot/types-augment": "15.9.1",
|
||||
"@polkadot/types-codec": "15.9.1",
|
||||
"@polkadot/util": "^13.4.3",
|
||||
"tslib": "^2.8.1"
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @polkadot/dev
|
||||
|
||||
export const packageInfo = { name: '@polkadot/api-augment', path: 'auto', type: 'auto', version: '15.8.1' };
|
||||
export const packageInfo = { name: '@polkadot/api-augment', path: 'auto', type: 'auto', version: '15.9.1' };
|
||||
|
||||
@@ -18,11 +18,11 @@
|
||||
"./packageDetect.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "15.8.1",
|
||||
"version": "15.9.1",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"@polkadot/rpc-core": "15.8.1",
|
||||
"@polkadot/types": "15.8.1",
|
||||
"@polkadot/rpc-core": "15.9.1",
|
||||
"@polkadot/types": "15.9.1",
|
||||
"@polkadot/util": "^13.4.3",
|
||||
"rxjs": "^7.8.1",
|
||||
"tslib": "^2.8.1"
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @polkadot/dev
|
||||
|
||||
export const packageInfo = { name: '@polkadot/api-base', path: 'auto', type: 'auto', version: '15.8.1' };
|
||||
export const packageInfo = { name: '@polkadot/api-base', path: 'auto', type: 'auto', version: '15.9.1' };
|
||||
|
||||
@@ -68,13 +68,10 @@ export interface SubmittableExtrinsic<ApiType extends ApiTypes, R extends ISubmi
|
||||
send (statusCb: Callback<R>): SubmittableResultSubscription<ApiType, R>;
|
||||
|
||||
/**
|
||||
* @description Sign and broadcast the constructued transaction.
|
||||
* @description Sign the constructed transaction asynchronously.
|
||||
*
|
||||
* Note for injected signers:
|
||||
* As of v12.0.2 and up the `SignerResult` return type for `signPayload` allows for the `signedTransaction` field.
|
||||
* This allows the signer to input a signed transaction that will modify the payload. This
|
||||
* The api will ensure that the Call Data is not changed. This allows for the signer to modify the payload to add
|
||||
* things like `mode`, and `metadataHash` for signedExtensions such as `CheckMetadataHash`.
|
||||
* The result is a signed extrinsic that is ready to be broadcast to the network via `.send()`, `rpc.author.submitExtrinsic()`, or
|
||||
* any custom submission logic.
|
||||
*/
|
||||
signAsync (account: AddressOrPair, _options?: Partial<SignerOptions>): PromiseOrObs<ApiType, this>;
|
||||
|
||||
|
||||
@@ -18,22 +18,22 @@
|
||||
"./packageDetect.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "15.8.1",
|
||||
"version": "15.9.1",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"@polkadot/api": "15.8.1",
|
||||
"@polkadot/api-augment": "15.8.1",
|
||||
"@polkadot/types": "15.8.1",
|
||||
"@polkadot/types-codec": "15.8.1",
|
||||
"@polkadot/types-create": "15.8.1",
|
||||
"@polkadot/api": "15.9.1",
|
||||
"@polkadot/api-augment": "15.9.1",
|
||||
"@polkadot/types": "15.9.1",
|
||||
"@polkadot/types-codec": "15.9.1",
|
||||
"@polkadot/types-create": "15.9.1",
|
||||
"@polkadot/util": "^13.4.3",
|
||||
"@polkadot/util-crypto": "^13.4.3",
|
||||
"rxjs": "^7.8.1",
|
||||
"tslib": "^2.8.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@polkadot/api-augment": "15.8.1",
|
||||
"@polkadot/api-augment": "15.9.1",
|
||||
"@polkadot/keyring": "^13.4.3",
|
||||
"@polkadot/types-support": "15.8.1"
|
||||
"@polkadot/types-support": "15.9.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @polkadot/dev
|
||||
|
||||
export const packageInfo = { name: '@polkadot/api-contract', path: 'auto', type: 'auto', version: '15.8.1' };
|
||||
export const packageInfo = { name: '@polkadot/api-contract', path: 'auto', type: 'auto', version: '15.9.1' };
|
||||
|
||||
@@ -18,25 +18,25 @@
|
||||
"./packageDetect.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "15.8.1",
|
||||
"version": "15.9.1",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"@polkadot/api": "15.8.1",
|
||||
"@polkadot/api-augment": "15.8.1",
|
||||
"@polkadot/api-base": "15.8.1",
|
||||
"@polkadot/rpc-core": "15.8.1",
|
||||
"@polkadot/types": "15.8.1",
|
||||
"@polkadot/types-codec": "15.8.1",
|
||||
"@polkadot/api": "15.9.1",
|
||||
"@polkadot/api-augment": "15.9.1",
|
||||
"@polkadot/api-base": "15.9.1",
|
||||
"@polkadot/rpc-core": "15.9.1",
|
||||
"@polkadot/types": "15.9.1",
|
||||
"@polkadot/types-codec": "15.9.1",
|
||||
"@polkadot/util": "^13.4.3",
|
||||
"@polkadot/util-crypto": "^13.4.3",
|
||||
"rxjs": "^7.8.1",
|
||||
"tslib": "^2.8.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@polkadot/api": "15.8.1",
|
||||
"@polkadot/api-augment": "15.8.1",
|
||||
"@polkadot/rpc-augment": "15.8.1",
|
||||
"@polkadot/rpc-provider": "15.8.1",
|
||||
"@polkadot/types-support": "15.8.1"
|
||||
"@polkadot/api": "15.9.1",
|
||||
"@polkadot/api-augment": "15.9.1",
|
||||
"@polkadot/rpc-augment": "15.9.1",
|
||||
"@polkadot/rpc-provider": "15.9.1",
|
||||
"@polkadot/types-support": "15.9.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @polkadot/dev
|
||||
|
||||
export const packageInfo = { name: '@polkadot/api-derive', path: 'auto', type: 'auto', version: '15.8.1' };
|
||||
export const packageInfo = { name: '@polkadot/api-derive', path: 'auto', type: 'auto', version: '15.9.1' };
|
||||
|
||||
+14
-14
@@ -18,21 +18,21 @@
|
||||
"./packageDetect.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "15.8.1",
|
||||
"version": "15.9.1",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"@polkadot/api-augment": "15.8.1",
|
||||
"@polkadot/api-base": "15.8.1",
|
||||
"@polkadot/api-derive": "15.8.1",
|
||||
"@polkadot/api-augment": "15.9.1",
|
||||
"@polkadot/api-base": "15.9.1",
|
||||
"@polkadot/api-derive": "15.9.1",
|
||||
"@polkadot/keyring": "^13.4.3",
|
||||
"@polkadot/rpc-augment": "15.8.1",
|
||||
"@polkadot/rpc-core": "15.8.1",
|
||||
"@polkadot/rpc-provider": "15.8.1",
|
||||
"@polkadot/types": "15.8.1",
|
||||
"@polkadot/types-augment": "15.8.1",
|
||||
"@polkadot/types-codec": "15.8.1",
|
||||
"@polkadot/types-create": "15.8.1",
|
||||
"@polkadot/types-known": "15.8.1",
|
||||
"@polkadot/rpc-augment": "15.9.1",
|
||||
"@polkadot/rpc-core": "15.9.1",
|
||||
"@polkadot/rpc-provider": "15.9.1",
|
||||
"@polkadot/types": "15.9.1",
|
||||
"@polkadot/types-augment": "15.9.1",
|
||||
"@polkadot/types-codec": "15.9.1",
|
||||
"@polkadot/types-create": "15.9.1",
|
||||
"@polkadot/types-known": "15.9.1",
|
||||
"@polkadot/util": "^13.4.3",
|
||||
"@polkadot/util-crypto": "^13.4.3",
|
||||
"eventemitter3": "^5.0.1",
|
||||
@@ -40,7 +40,7 @@
|
||||
"tslib": "^2.8.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@polkadot/api-augment": "15.8.1",
|
||||
"@polkadot/types-support": "15.8.1"
|
||||
"@polkadot/api-augment": "15.9.1",
|
||||
"@polkadot/types-support": "15.9.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @polkadot/dev
|
||||
|
||||
export const packageInfo = { name: '@polkadot/api', path: 'auto', type: 'auto', version: '15.8.1' };
|
||||
export const packageInfo = { name: '@polkadot/api', path: 'auto', type: 'auto', version: '15.9.1' };
|
||||
|
||||
@@ -18,12 +18,12 @@
|
||||
"./packageDetect.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "15.8.1",
|
||||
"version": "15.9.1",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"@polkadot/rpc-core": "15.8.1",
|
||||
"@polkadot/types": "15.8.1",
|
||||
"@polkadot/types-codec": "15.8.1",
|
||||
"@polkadot/rpc-core": "15.9.1",
|
||||
"@polkadot/types": "15.9.1",
|
||||
"@polkadot/types-codec": "15.9.1",
|
||||
"@polkadot/util": "^13.4.3",
|
||||
"tslib": "^2.8.1"
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @polkadot/dev
|
||||
|
||||
export const packageInfo = { name: '@polkadot/rpc-augment', path: 'auto', type: 'auto', version: '15.8.1' };
|
||||
export const packageInfo = { name: '@polkadot/rpc-augment', path: 'auto', type: 'auto', version: '15.9.1' };
|
||||
|
||||
@@ -18,18 +18,18 @@
|
||||
"./packageDetect.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "15.8.1",
|
||||
"version": "15.9.1",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"@polkadot/rpc-augment": "15.8.1",
|
||||
"@polkadot/rpc-provider": "15.8.1",
|
||||
"@polkadot/types": "15.8.1",
|
||||
"@polkadot/rpc-augment": "15.9.1",
|
||||
"@polkadot/rpc-provider": "15.9.1",
|
||||
"@polkadot/types": "15.9.1",
|
||||
"@polkadot/util": "^13.4.3",
|
||||
"rxjs": "^7.8.1",
|
||||
"tslib": "^2.8.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@polkadot/keyring": "^13.4.3",
|
||||
"@polkadot/rpc-augment": "15.8.1"
|
||||
"@polkadot/rpc-augment": "15.9.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @polkadot/dev
|
||||
|
||||
export const packageInfo = { name: '@polkadot/rpc-core', path: 'auto', type: 'auto', version: '15.8.1' };
|
||||
export const packageInfo = { name: '@polkadot/rpc-core', path: 'auto', type: 'auto', version: '15.9.1' };
|
||||
|
||||
@@ -18,12 +18,12 @@
|
||||
"./packageDetect.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "15.8.1",
|
||||
"version": "15.9.1",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"@polkadot/keyring": "^13.4.3",
|
||||
"@polkadot/types": "15.8.1",
|
||||
"@polkadot/types-support": "15.8.1",
|
||||
"@polkadot/types": "15.9.1",
|
||||
"@polkadot/types-support": "15.9.1",
|
||||
"@polkadot/util": "^13.4.3",
|
||||
"@polkadot/util-crypto": "^13.4.3",
|
||||
"@polkadot/x-fetch": "^13.4.3",
|
||||
|
||||
@@ -9,7 +9,7 @@ import { fetch } from '@polkadot/x-fetch';
|
||||
|
||||
import { RpcCoder } from '../coder/index.js';
|
||||
import defaults from '../defaults.js';
|
||||
import { DEFAULT_CAPACITY, LRUCache } from '../lru.js';
|
||||
import { DEFAULT_CAPACITY, DEFAULT_TTL, LRUCache } from '../lru.js';
|
||||
|
||||
const ERROR_SUBSCRIBE = 'HTTP Provider does not have subscriptions, use WebSockets instead';
|
||||
|
||||
@@ -45,8 +45,11 @@ export class HttpProvider implements ProviderInterface {
|
||||
|
||||
/**
|
||||
* @param {string} endpoint The endpoint url starting with http://
|
||||
* @param {Record<string, string>} headers The headers provided to the underlying Http Endpoint
|
||||
* @param {number} [cacheCapacity] Custom size of the HttpProvider LRUCache. Defaults to `DEFAULT_CAPACITY` (1024)
|
||||
* @param {number} [cacheTtl] Custom TTL of the HttpProvider LRUCache. Determines how long an object can live in the cache. Defaults to `DEFAULT_TTL` (30000)
|
||||
*/
|
||||
constructor (endpoint: string = defaults.HTTP_URL, headers: Record<string, string> = {}, cacheCapacity?: number) {
|
||||
constructor (endpoint: string = defaults.HTTP_URL, headers: Record<string, string> = {}, cacheCapacity?: number, cacheTtl?: number) {
|
||||
if (!/^(https|http):\/\//.test(endpoint)) {
|
||||
throw new Error(`Endpoint should start with 'http://' or 'https://', received '${endpoint}'`);
|
||||
}
|
||||
@@ -54,7 +57,7 @@ export class HttpProvider implements ProviderInterface {
|
||||
this.#coder = new RpcCoder();
|
||||
this.#endpoint = endpoint;
|
||||
this.#headers = headers;
|
||||
this.#callCache = new LRUCache(cacheCapacity === 0 ? 0 : cacheCapacity || DEFAULT_CAPACITY);
|
||||
this.#callCache = new LRUCache(cacheCapacity === 0 ? 0 : cacheCapacity || DEFAULT_CAPACITY, cacheTtl || DEFAULT_TTL);
|
||||
this.#cacheCapacity = cacheCapacity === 0 ? 0 : cacheCapacity || DEFAULT_CAPACITY;
|
||||
|
||||
this.#stats = {
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
// for Kusama/Polkadot/Substrate falls between 600-750K, 2x for estimate)
|
||||
|
||||
export const DEFAULT_CAPACITY = 1024;
|
||||
export const DEFAULT_TTL = 30000;
|
||||
|
||||
class LRUNode {
|
||||
readonly key: string;
|
||||
@@ -46,7 +47,7 @@ export class LRUCache {
|
||||
|
||||
readonly #ttl: number;
|
||||
|
||||
constructor (capacity = DEFAULT_CAPACITY, ttl = 30000) {
|
||||
constructor (capacity = DEFAULT_CAPACITY, ttl = DEFAULT_TTL) {
|
||||
this.capacity = capacity;
|
||||
this.#ttl = ttl;
|
||||
this.#head = this.#tail = new LRUNode('<empty>', ttl);
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @polkadot/dev
|
||||
|
||||
export const packageInfo = { name: '@polkadot/rpc-provider', path: 'auto', type: 'auto', version: '15.8.1' };
|
||||
export const packageInfo = { name: '@polkadot/rpc-provider', path: 'auto', type: 'auto', version: '15.9.1' };
|
||||
|
||||
@@ -13,7 +13,7 @@ import { WebSocket } from '@polkadot/x-ws';
|
||||
|
||||
import { RpcCoder } from '../coder/index.js';
|
||||
import defaults from '../defaults.js';
|
||||
import { DEFAULT_CAPACITY, LRUCache } from '../lru.js';
|
||||
import { DEFAULT_CAPACITY, DEFAULT_TTL, LRUCache } from '../lru.js';
|
||||
import { getWSErrorString } from './errors.js';
|
||||
|
||||
interface SubscriptionHandler {
|
||||
@@ -110,8 +110,9 @@ export class WsProvider implements ProviderInterface {
|
||||
* @param {Record<string, string>} headers The headers provided to the underlying WebSocket
|
||||
* @param {number} [timeout] Custom timeout value used per request . Defaults to `DEFAULT_TIMEOUT_MS`
|
||||
* @param {number} [cacheCapacity] Custom size of the WsProvider LRUCache. Defaults to `DEFAULT_CAPACITY` (1024)
|
||||
* @param {number} [cacheTtl] Custom TTL of the WsProvider LRUCache. Determines how long an object can live in the cache. Defaults to DEFAULT_TTL` (30000)
|
||||
*/
|
||||
constructor (endpoint: string | string[] = defaults.WS_URL, autoConnectMs: number | false = RETRY_DELAY, headers: Record<string, string> = {}, timeout?: number, cacheCapacity?: number) {
|
||||
constructor (endpoint: string | string[] = defaults.WS_URL, autoConnectMs: number | false = RETRY_DELAY, headers: Record<string, string> = {}, timeout?: number, cacheCapacity?: number, cacheTtl?: number) {
|
||||
const endpoints = Array.isArray(endpoint)
|
||||
? endpoint
|
||||
: [endpoint];
|
||||
@@ -125,7 +126,7 @@ export class WsProvider implements ProviderInterface {
|
||||
throw new Error(`Endpoint should start with 'ws://', received '${endpoint}'`);
|
||||
}
|
||||
});
|
||||
this.#callCache = new LRUCache(cacheCapacity || DEFAULT_CAPACITY);
|
||||
this.#callCache = new LRUCache(cacheCapacity || DEFAULT_CAPACITY, cacheTtl || DEFAULT_TTL);
|
||||
this.#cacheCapacity = cacheCapacity || DEFAULT_CAPACITY;
|
||||
this.#eventemitter = new EventEmitter();
|
||||
this.#autoConnectMs = autoConnectMs || 0;
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
"./packageDetect.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "15.8.1",
|
||||
"version": "15.9.1",
|
||||
"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": "15.8.1",
|
||||
"@polkadot/api-augment": "15.8.1",
|
||||
"@polkadot/api-derive": "15.8.1",
|
||||
"@polkadot/rpc-augment": "15.8.1",
|
||||
"@polkadot/rpc-provider": "15.8.1",
|
||||
"@polkadot/types": "15.8.1",
|
||||
"@polkadot/types-augment": "15.8.1",
|
||||
"@polkadot/types-codec": "15.8.1",
|
||||
"@polkadot/types-create": "15.8.1",
|
||||
"@polkadot/types-support": "15.8.1",
|
||||
"@polkadot/api": "15.9.1",
|
||||
"@polkadot/api-augment": "15.9.1",
|
||||
"@polkadot/api-derive": "15.9.1",
|
||||
"@polkadot/rpc-augment": "15.9.1",
|
||||
"@polkadot/rpc-provider": "15.9.1",
|
||||
"@polkadot/types": "15.9.1",
|
||||
"@polkadot/types-augment": "15.9.1",
|
||||
"@polkadot/types-codec": "15.9.1",
|
||||
"@polkadot/types-create": "15.9.1",
|
||||
"@polkadot/types-support": "15.9.1",
|
||||
"@polkadot/util": "^13.4.3",
|
||||
"@polkadot/util-crypto": "^13.4.3",
|
||||
"@polkadot/x-ws": "^13.4.3",
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @polkadot/dev
|
||||
|
||||
export const packageInfo = { name: '@polkadot/typegen', path: 'auto', type: 'auto', version: '15.8.1' };
|
||||
export const packageInfo = { name: '@polkadot/typegen', path: 'auto', type: 'auto', version: '15.9.1' };
|
||||
|
||||
@@ -18,11 +18,11 @@
|
||||
"./packageDetect.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "15.8.1",
|
||||
"version": "15.9.1",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"@polkadot/types": "15.8.1",
|
||||
"@polkadot/types-codec": "15.8.1",
|
||||
"@polkadot/types": "15.9.1",
|
||||
"@polkadot/types-codec": "15.9.1",
|
||||
"@polkadot/util": "^13.4.3",
|
||||
"tslib": "^2.8.1"
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @polkadot/dev
|
||||
|
||||
export const packageInfo = { name: '@polkadot/types-augment', path: 'auto', type: 'auto', version: '15.8.1' };
|
||||
export const packageInfo = { name: '@polkadot/types-augment', path: 'auto', type: 'auto', version: '15.9.1' };
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
"./packageDetect.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "15.8.1",
|
||||
"version": "15.9.1",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"@polkadot/util": "^13.4.3",
|
||||
@@ -26,9 +26,9 @@
|
||||
"tslib": "^2.8.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@polkadot/types": "15.8.1",
|
||||
"@polkadot/types-augment": "15.8.1",
|
||||
"@polkadot/types-support": "15.8.1",
|
||||
"@polkadot/types": "15.9.1",
|
||||
"@polkadot/types-augment": "15.9.1",
|
||||
"@polkadot/types-support": "15.9.1",
|
||||
"@polkadot/util-crypto": "^13.4.3"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @polkadot/dev
|
||||
|
||||
export const packageInfo = { name: '@polkadot/types-codec', path: 'auto', type: 'auto', version: '15.8.1' };
|
||||
export const packageInfo = { name: '@polkadot/types-codec', path: 'auto', type: 'auto', version: '15.9.1' };
|
||||
|
||||
@@ -18,14 +18,14 @@
|
||||
"./packageDetect.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "15.8.1",
|
||||
"version": "15.9.1",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"@polkadot/types-codec": "15.8.1",
|
||||
"@polkadot/types-codec": "15.9.1",
|
||||
"@polkadot/util": "^13.4.3",
|
||||
"tslib": "^2.8.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@polkadot/types": "15.8.1"
|
||||
"@polkadot/types": "15.9.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @polkadot/dev
|
||||
|
||||
export const packageInfo = { name: '@polkadot/types-create', path: 'auto', type: 'auto', version: '15.8.1' };
|
||||
export const packageInfo = { name: '@polkadot/types-create', path: 'auto', type: 'auto', version: '15.9.1' };
|
||||
|
||||
@@ -18,17 +18,17 @@
|
||||
"./packageDetect.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "15.8.1",
|
||||
"version": "15.9.1",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"@polkadot/networks": "^13.4.3",
|
||||
"@polkadot/types": "15.8.1",
|
||||
"@polkadot/types-codec": "15.8.1",
|
||||
"@polkadot/types-create": "15.8.1",
|
||||
"@polkadot/types": "15.9.1",
|
||||
"@polkadot/types-codec": "15.9.1",
|
||||
"@polkadot/types-create": "15.9.1",
|
||||
"@polkadot/util": "^13.4.3",
|
||||
"tslib": "^2.8.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@polkadot/api": "15.8.1"
|
||||
"@polkadot/api": "15.9.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @polkadot/dev
|
||||
|
||||
export const packageInfo = { name: '@polkadot/types-known', path: 'auto', type: 'auto', version: '15.8.1' };
|
||||
export const packageInfo = { name: '@polkadot/types-known', path: 'auto', type: 'auto', version: '15.9.1' };
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
"./packageDetect.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "15.8.1",
|
||||
"version": "15.9.1",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"@polkadot/util": "^13.4.3",
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @polkadot/dev
|
||||
|
||||
export const packageInfo = { name: '@polkadot/types-support', path: 'auto', type: 'auto', version: '15.8.1' };
|
||||
export const packageInfo = { name: '@polkadot/types-support', path: 'auto', type: 'auto', version: '15.9.1' };
|
||||
|
||||
@@ -18,13 +18,13 @@
|
||||
"./packageDetect.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "15.8.1",
|
||||
"version": "15.9.1",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"@polkadot/keyring": "^13.4.3",
|
||||
"@polkadot/types-augment": "15.8.1",
|
||||
"@polkadot/types-codec": "15.8.1",
|
||||
"@polkadot/types-create": "15.8.1",
|
||||
"@polkadot/types-augment": "15.9.1",
|
||||
"@polkadot/types-codec": "15.9.1",
|
||||
"@polkadot/types-create": "15.9.1",
|
||||
"@polkadot/util": "^13.4.3",
|
||||
"@polkadot/util-crypto": "^13.4.3",
|
||||
"rxjs": "^7.8.1",
|
||||
@@ -32,6 +32,6 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@polkadot/keyring": "^13.4.3",
|
||||
"@polkadot/types-support": "15.8.1"
|
||||
"@polkadot/types-support": "15.9.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @polkadot/dev
|
||||
|
||||
export const packageInfo = { name: '@polkadot/types', path: 'auto', type: 'auto', version: '15.8.1' };
|
||||
export const packageInfo = { name: '@polkadot/types', path: 'auto', type: 'auto', version: '15.9.1' };
|
||||
|
||||
@@ -447,26 +447,26 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@polkadot/api-augment@npm:15.8.1, @polkadot/api-augment@workspace:packages/api-augment":
|
||||
"@polkadot/api-augment@npm:15.9.1, @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:15.8.1"
|
||||
"@polkadot/rpc-augment": "npm:15.8.1"
|
||||
"@polkadot/types": "npm:15.8.1"
|
||||
"@polkadot/types-augment": "npm:15.8.1"
|
||||
"@polkadot/types-codec": "npm:15.8.1"
|
||||
"@polkadot/api-base": "npm:15.9.1"
|
||||
"@polkadot/rpc-augment": "npm:15.9.1"
|
||||
"@polkadot/types": "npm:15.9.1"
|
||||
"@polkadot/types-augment": "npm:15.9.1"
|
||||
"@polkadot/types-codec": "npm:15.9.1"
|
||||
"@polkadot/util": "npm:^13.4.3"
|
||||
tslib: "npm:^2.8.1"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/api-base@npm:15.8.1, @polkadot/api-base@workspace:packages/api-base":
|
||||
"@polkadot/api-base@npm:15.9.1, @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:15.8.1"
|
||||
"@polkadot/types": "npm:15.8.1"
|
||||
"@polkadot/rpc-core": "npm:15.9.1"
|
||||
"@polkadot/types": "npm:15.9.1"
|
||||
"@polkadot/util": "npm:^13.4.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:15.8.1"
|
||||
"@polkadot/api-augment": "npm:15.8.1"
|
||||
"@polkadot/api": "npm:15.9.1"
|
||||
"@polkadot/api-augment": "npm:15.9.1"
|
||||
"@polkadot/keyring": "npm:^13.4.3"
|
||||
"@polkadot/types": "npm:15.8.1"
|
||||
"@polkadot/types-codec": "npm:15.8.1"
|
||||
"@polkadot/types-create": "npm:15.8.1"
|
||||
"@polkadot/types-support": "npm:15.8.1"
|
||||
"@polkadot/types": "npm:15.9.1"
|
||||
"@polkadot/types-codec": "npm:15.9.1"
|
||||
"@polkadot/types-create": "npm:15.9.1"
|
||||
"@polkadot/types-support": "npm:15.9.1"
|
||||
"@polkadot/util": "npm:^13.4.3"
|
||||
"@polkadot/util-crypto": "npm:^13.4.3"
|
||||
rxjs: "npm:^7.8.1"
|
||||
@@ -491,19 +491,19 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/api-derive@npm:15.8.1, @polkadot/api-derive@workspace:packages/api-derive":
|
||||
"@polkadot/api-derive@npm:15.9.1, @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:15.8.1"
|
||||
"@polkadot/api-augment": "npm:15.8.1"
|
||||
"@polkadot/api-base": "npm:15.8.1"
|
||||
"@polkadot/rpc-augment": "npm:15.8.1"
|
||||
"@polkadot/rpc-core": "npm:15.8.1"
|
||||
"@polkadot/rpc-provider": "npm:15.8.1"
|
||||
"@polkadot/types": "npm:15.8.1"
|
||||
"@polkadot/types-codec": "npm:15.8.1"
|
||||
"@polkadot/types-support": "npm:15.8.1"
|
||||
"@polkadot/api": "npm:15.9.1"
|
||||
"@polkadot/api-augment": "npm:15.9.1"
|
||||
"@polkadot/api-base": "npm:15.9.1"
|
||||
"@polkadot/rpc-augment": "npm:15.9.1"
|
||||
"@polkadot/rpc-core": "npm:15.9.1"
|
||||
"@polkadot/rpc-provider": "npm:15.9.1"
|
||||
"@polkadot/types": "npm:15.9.1"
|
||||
"@polkadot/types-codec": "npm:15.9.1"
|
||||
"@polkadot/types-support": "npm:15.9.1"
|
||||
"@polkadot/util": "npm:^13.4.3"
|
||||
"@polkadot/util-crypto": "npm:^13.4.3"
|
||||
rxjs: "npm:^7.8.1"
|
||||
@@ -511,23 +511,23 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/api@npm:15.8.1, @polkadot/api@workspace:packages/api":
|
||||
"@polkadot/api@npm:15.9.1, @polkadot/api@workspace:packages/api":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/api@workspace:packages/api"
|
||||
dependencies:
|
||||
"@polkadot/api-augment": "npm:15.8.1"
|
||||
"@polkadot/api-base": "npm:15.8.1"
|
||||
"@polkadot/api-derive": "npm:15.8.1"
|
||||
"@polkadot/api-augment": "npm:15.9.1"
|
||||
"@polkadot/api-base": "npm:15.9.1"
|
||||
"@polkadot/api-derive": "npm:15.9.1"
|
||||
"@polkadot/keyring": "npm:^13.4.3"
|
||||
"@polkadot/rpc-augment": "npm:15.8.1"
|
||||
"@polkadot/rpc-core": "npm:15.8.1"
|
||||
"@polkadot/rpc-provider": "npm:15.8.1"
|
||||
"@polkadot/types": "npm:15.8.1"
|
||||
"@polkadot/types-augment": "npm:15.8.1"
|
||||
"@polkadot/types-codec": "npm:15.8.1"
|
||||
"@polkadot/types-create": "npm:15.8.1"
|
||||
"@polkadot/types-known": "npm:15.8.1"
|
||||
"@polkadot/types-support": "npm:15.8.1"
|
||||
"@polkadot/rpc-augment": "npm:15.9.1"
|
||||
"@polkadot/rpc-core": "npm:15.9.1"
|
||||
"@polkadot/rpc-provider": "npm:15.9.1"
|
||||
"@polkadot/types": "npm:15.9.1"
|
||||
"@polkadot/types-augment": "npm:15.9.1"
|
||||
"@polkadot/types-codec": "npm:15.9.1"
|
||||
"@polkadot/types-create": "npm:15.9.1"
|
||||
"@polkadot/types-known": "npm:15.9.1"
|
||||
"@polkadot/types-support": "npm:15.9.1"
|
||||
"@polkadot/util": "npm:^13.4.3"
|
||||
"@polkadot/util-crypto": "npm:^13.4.3"
|
||||
eventemitter3: "npm:^5.0.1"
|
||||
@@ -657,39 +657,39 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@polkadot/rpc-augment@npm:15.8.1, @polkadot/rpc-augment@workspace:packages/rpc-augment":
|
||||
"@polkadot/rpc-augment@npm:15.9.1, @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:15.8.1"
|
||||
"@polkadot/types": "npm:15.8.1"
|
||||
"@polkadot/types-codec": "npm:15.8.1"
|
||||
"@polkadot/rpc-core": "npm:15.9.1"
|
||||
"@polkadot/types": "npm:15.9.1"
|
||||
"@polkadot/types-codec": "npm:15.9.1"
|
||||
"@polkadot/util": "npm:^13.4.3"
|
||||
tslib: "npm:^2.8.1"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/rpc-core@npm:15.8.1, @polkadot/rpc-core@workspace:packages/rpc-core":
|
||||
"@polkadot/rpc-core@npm:15.9.1, @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.4.3"
|
||||
"@polkadot/rpc-augment": "npm:15.8.1"
|
||||
"@polkadot/rpc-provider": "npm:15.8.1"
|
||||
"@polkadot/types": "npm:15.8.1"
|
||||
"@polkadot/rpc-augment": "npm:15.9.1"
|
||||
"@polkadot/rpc-provider": "npm:15.9.1"
|
||||
"@polkadot/types": "npm:15.9.1"
|
||||
"@polkadot/util": "npm:^13.4.3"
|
||||
rxjs: "npm:^7.8.1"
|
||||
tslib: "npm:^2.8.1"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/rpc-provider@npm:15.8.1, @polkadot/rpc-provider@workspace:packages/rpc-provider":
|
||||
"@polkadot/rpc-provider@npm:15.9.1, @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.4.3"
|
||||
"@polkadot/types": "npm:15.8.1"
|
||||
"@polkadot/types-support": "npm:15.8.1"
|
||||
"@polkadot/types": "npm:15.9.1"
|
||||
"@polkadot/types-support": "npm:15.9.1"
|
||||
"@polkadot/util": "npm:^13.4.3"
|
||||
"@polkadot/util-crypto": "npm:^13.4.3"
|
||||
"@polkadot/x-fetch": "npm:^13.4.3"
|
||||
@@ -710,16 +710,16 @@ __metadata:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/typegen@workspace:packages/typegen"
|
||||
dependencies:
|
||||
"@polkadot/api": "npm:15.8.1"
|
||||
"@polkadot/api-augment": "npm:15.8.1"
|
||||
"@polkadot/api-derive": "npm:15.8.1"
|
||||
"@polkadot/rpc-augment": "npm:15.8.1"
|
||||
"@polkadot/rpc-provider": "npm:15.8.1"
|
||||
"@polkadot/types": "npm:15.8.1"
|
||||
"@polkadot/types-augment": "npm:15.8.1"
|
||||
"@polkadot/types-codec": "npm:15.8.1"
|
||||
"@polkadot/types-create": "npm:15.8.1"
|
||||
"@polkadot/types-support": "npm:15.8.1"
|
||||
"@polkadot/api": "npm:15.9.1"
|
||||
"@polkadot/api-augment": "npm:15.9.1"
|
||||
"@polkadot/api-derive": "npm:15.9.1"
|
||||
"@polkadot/rpc-augment": "npm:15.9.1"
|
||||
"@polkadot/rpc-provider": "npm:15.9.1"
|
||||
"@polkadot/types": "npm:15.9.1"
|
||||
"@polkadot/types-augment": "npm:15.9.1"
|
||||
"@polkadot/types-codec": "npm:15.9.1"
|
||||
"@polkadot/types-create": "npm:15.9.1"
|
||||
"@polkadot/types-support": "npm:15.9.1"
|
||||
"@polkadot/util": "npm:^13.4.3"
|
||||
"@polkadot/util-crypto": "npm:^13.4.3"
|
||||
"@polkadot/x-ws": "npm:^13.4.3"
|
||||
@@ -737,24 +737,24 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/types-augment@npm:15.8.1, @polkadot/types-augment@workspace:packages/types-augment":
|
||||
"@polkadot/types-augment@npm:15.9.1, @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:15.8.1"
|
||||
"@polkadot/types-codec": "npm:15.8.1"
|
||||
"@polkadot/types": "npm:15.9.1"
|
||||
"@polkadot/types-codec": "npm:15.9.1"
|
||||
"@polkadot/util": "npm:^13.4.3"
|
||||
tslib: "npm:^2.8.1"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/types-codec@npm:15.8.1, @polkadot/types-codec@workspace:packages/types-codec":
|
||||
"@polkadot/types-codec@npm:15.9.1, @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:15.8.1"
|
||||
"@polkadot/types-augment": "npm:15.8.1"
|
||||
"@polkadot/types-support": "npm:15.8.1"
|
||||
"@polkadot/types": "npm:15.9.1"
|
||||
"@polkadot/types-augment": "npm:15.9.1"
|
||||
"@polkadot/types-support": "npm:15.9.1"
|
||||
"@polkadot/util": "npm:^13.4.3"
|
||||
"@polkadot/util-crypto": "npm:^13.4.3"
|
||||
"@polkadot/x-bigint": "npm:^13.4.3"
|
||||
@@ -762,32 +762,32 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/types-create@npm:15.8.1, @polkadot/types-create@workspace:packages/types-create":
|
||||
"@polkadot/types-create@npm:15.9.1, @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:15.8.1"
|
||||
"@polkadot/types-codec": "npm:15.8.1"
|
||||
"@polkadot/types": "npm:15.9.1"
|
||||
"@polkadot/types-codec": "npm:15.9.1"
|
||||
"@polkadot/util": "npm:^13.4.3"
|
||||
tslib: "npm:^2.8.1"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/types-known@npm:15.8.1, @polkadot/types-known@workspace:packages/types-known":
|
||||
"@polkadot/types-known@npm:15.9.1, @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:15.8.1"
|
||||
"@polkadot/api": "npm:15.9.1"
|
||||
"@polkadot/networks": "npm:^13.4.3"
|
||||
"@polkadot/types": "npm:15.8.1"
|
||||
"@polkadot/types-codec": "npm:15.8.1"
|
||||
"@polkadot/types-create": "npm:15.8.1"
|
||||
"@polkadot/types": "npm:15.9.1"
|
||||
"@polkadot/types-codec": "npm:15.9.1"
|
||||
"@polkadot/types-create": "npm:15.9.1"
|
||||
"@polkadot/util": "npm:^13.4.3"
|
||||
tslib: "npm:^2.8.1"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/types-support@npm:15.8.1, @polkadot/types-support@workspace:packages/types-support":
|
||||
"@polkadot/types-support@npm:15.9.1, @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:15.8.1, @polkadot/types@workspace:packages/types":
|
||||
"@polkadot/types@npm:15.9.1, @polkadot/types@workspace:packages/types":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/types@workspace:packages/types"
|
||||
dependencies:
|
||||
"@polkadot/keyring": "npm:^13.4.3"
|
||||
"@polkadot/types-augment": "npm:15.8.1"
|
||||
"@polkadot/types-codec": "npm:15.8.1"
|
||||
"@polkadot/types-create": "npm:15.8.1"
|
||||
"@polkadot/types-support": "npm:15.8.1"
|
||||
"@polkadot/types-augment": "npm:15.9.1"
|
||||
"@polkadot/types-codec": "npm:15.9.1"
|
||||
"@polkadot/types-create": "npm:15.9.1"
|
||||
"@polkadot/types-support": "npm:15.9.1"
|
||||
"@polkadot/util": "npm:^13.4.3"
|
||||
"@polkadot/util-crypto": "npm:^13.4.3"
|
||||
rxjs: "npm:^7.8.1"
|
||||
|
||||
Reference in New Issue
Block a user