Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b6af4b9877 | ||
|
|
3f368e721d | ||
|
|
22b4257636 | ||
|
|
ca7a631032 | ||
|
|
da5bbd17af | ||
|
|
b58f3f5c3e | ||
|
|
8c30194f59 | ||
|
|
dc9ec37490 | ||
|
|
5175e77eec | ||
|
|
9553c5467c | ||
|
|
a1f07e3274 | ||
|
|
58deb2eb14 | ||
|
|
83caad7f1b | ||
|
|
26c3cc9126 | ||
|
|
1a231dfb0d | ||
|
|
712d0425d0 | ||
|
|
eaa5db517f | ||
|
|
88c3850d1b | ||
|
|
943df72ae9 | ||
|
|
67ab11a036 |
@@ -1,5 +1,32 @@
|
||||
# CHANGELOG
|
||||
|
||||
## 4.4.1 Apr 5, 2021
|
||||
|
||||
Upgrade priority: Low. Recommended with usage with the Rococo testnet.
|
||||
|
||||
Changes:
|
||||
|
||||
- Add `ServiceQuality` type for Cumulus
|
||||
- Adjust XCM MultiLocation type (X5 to X8 junctions)
|
||||
- Add Polkadot 29 upgrade block
|
||||
|
||||
|
||||
## 4.3.1 Mar 29, 2021
|
||||
|
||||
Upgrade priority: Low.
|
||||
|
||||
Contributed:
|
||||
|
||||
- Fix documentation on ABI parameters (Thanks to https://github.com/vminkov)
|
||||
|
||||
Changes:
|
||||
|
||||
- Warn on usage of deprecated contract interfaces
|
||||
- Update `ParaInfo` type
|
||||
- Council should be optional in treasury derives
|
||||
- Allow extraction of session derives indexes with no staking
|
||||
|
||||
|
||||
## 4.2.1 Mar 22, 2021
|
||||
|
||||
Upgrade priority: Low. Recommended when tracking the latest updates from Substrate.
|
||||
|
||||
+4
-4
@@ -25,14 +25,14 @@
|
||||
"test:watch": "polkadot-dev-run-test --watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.13.10",
|
||||
"@babel/core": "^7.13.13",
|
||||
"@babel/register": "^7.13.8",
|
||||
"@babel/runtime": "^7.13.10",
|
||||
"@polkadot/dev": "^0.62.6",
|
||||
"@polkadot/dev": "^0.62.7",
|
||||
"@polkadot/ts": "^0.3.62",
|
||||
"@polkadot/typegen": "workspace:packages/typegen",
|
||||
"@types/jest": "^26.0.21",
|
||||
"@types/jest": "^26.0.22",
|
||||
"copyfiles": "^2.4.1"
|
||||
},
|
||||
"version": "4.2.1"
|
||||
"version": "4.4.1"
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@ import { Abi } from '@polkadot/api-contract';
|
||||
|
||||
const wsProvider = new WsProvider(<...Node Url...>);
|
||||
const api = await ApiPromise.create({ provider: wsProvider });
|
||||
const abi = new Abi(api.registry, <...JSON ABI...>);
|
||||
const abi = new Abi(<...JSON ABI...>, api.registry.getChainProperties());
|
||||
|
||||
api.tx.contracts
|
||||
.call(<contract addr>, <value>, <max gas>, abi.messages.<method name>(<...params...>))
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@polkadot/api-contract",
|
||||
"version": "4.2.1",
|
||||
"version": "4.4.1",
|
||||
"type": "module",
|
||||
"description": "Interfaces for interacting with contracts and contract ABIs",
|
||||
"main": "index.js",
|
||||
@@ -17,8 +17,8 @@
|
||||
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api-contract#readme",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.13.10",
|
||||
"@polkadot/api": "4.2.1",
|
||||
"@polkadot/types": "4.2.1",
|
||||
"@polkadot/api": "4.4.1",
|
||||
"@polkadot/types": "4.4.1",
|
||||
"@polkadot/util": "^6.0.5",
|
||||
"@polkadot/x-rxjs": "^6.0.5",
|
||||
"bn.js": "^4.11.9"
|
||||
|
||||
@@ -10,7 +10,7 @@ import type { MapConstructorExec } from './types';
|
||||
|
||||
import { SubmittableResult } from '@polkadot/api';
|
||||
import { ApiBase } from '@polkadot/api/base';
|
||||
import { assert, compactAddLength, isFunction, isUndefined, isWasm, stringCamelCase, u8aToU8a } from '@polkadot/util';
|
||||
import { assert, compactAddLength, isFunction, isUndefined, isWasm, logger, stringCamelCase, u8aToU8a } from '@polkadot/util';
|
||||
import { blake2AsU8a } from '@polkadot/util-crypto';
|
||||
|
||||
import { Abi } from '../Abi';
|
||||
@@ -20,6 +20,8 @@ import { Blueprint } from './Blueprint';
|
||||
import { Contract } from './Contract';
|
||||
import { createBluePrintTx, EMPTY_SALT, encodeSalt } from './util';
|
||||
|
||||
const l = logger('Code');
|
||||
|
||||
export class CodeSubmittableResult<ApiType extends ApiTypes> extends SubmittableResult {
|
||||
public readonly blueprint?: Blueprint<ApiType>;
|
||||
public readonly contract?: Contract<ApiType>;
|
||||
@@ -64,22 +66,26 @@ export class Code<ApiType extends ApiTypes> extends Base<ApiType> {
|
||||
* @deprecated Use the `code.tx.<constructor>(...) format to put code and deploy
|
||||
*/
|
||||
public createContract (constructorOrId: AbiConstructor | string | number, options: BlueprintOptions, params: CodecArg[]): SubmittableExtrinsic<ApiType, CodeSubmittableResult<ApiType>> {
|
||||
l.warn('.createContract is deprecated, use code.tx.<constructorName>(...) instead (where code refers to this instance)');
|
||||
|
||||
return this.#instantiate(constructorOrId, options, params);
|
||||
}
|
||||
|
||||
#instantiate = (constructorOrId: AbiConstructor | string | number, options: BlueprintOptions, params: CodecArg[]): SubmittableExtrinsic<ApiType, CodeSubmittableResult<ApiType>> => {
|
||||
return isFunction(this.api.tx.contracts.instantiateWithCode)
|
||||
? this.#instantiateSingle(constructorOrId, options, params)
|
||||
: this.#instantiateBatch(constructorOrId, options, params);
|
||||
? this.#instantiateCurrent(constructorOrId, options, params)
|
||||
: this.#instantiatePrev(constructorOrId, options, params);
|
||||
}
|
||||
|
||||
#instantiateSingle = (constructorOrId: AbiConstructor | string | number, { gasLimit = 0, salt, value = 0 }: BlueprintOptions, params: CodecArg[]): SubmittableExtrinsic<ApiType, CodeSubmittableResult<ApiType>> => {
|
||||
#instantiateCurrent = (constructorOrId: AbiConstructor | string | number, { gasLimit = 0, salt, value = 0 }: BlueprintOptions, params: CodecArg[]): SubmittableExtrinsic<ApiType, CodeSubmittableResult<ApiType>> => {
|
||||
return this.api.tx.contracts
|
||||
.instantiateWithCode(value, gasLimit, compactAddLength(this.code), this.abi.findConstructor(constructorOrId).toU8a(params), encodeSalt(salt))
|
||||
.withResultTransform(this.#transformEvents);
|
||||
}
|
||||
|
||||
#instantiateBatch = (constructorOrId: AbiConstructor | string | number, { gasLimit = 0, salt, value = 0 }: BlueprintOptions, params: CodecArg[]): SubmittableExtrinsic<ApiType, CodeSubmittableResult<ApiType>> => {
|
||||
#instantiatePrev = (constructorOrId: AbiConstructor | string | number, { gasLimit = 0, salt, value = 0 }: BlueprintOptions, params: CodecArg[]): SubmittableExtrinsic<ApiType, CodeSubmittableResult<ApiType>> => {
|
||||
assert(isFunction(this.api.tx.utility?.batch), 'Your chain does not include the utility pallet, for contracts v2 deployment, this is required');
|
||||
|
||||
const encodedSalt = encodeSalt(salt);
|
||||
const withSalt = this.api.tx.contracts.instantiate.meta.args.length === 5;
|
||||
const encoded = this.abi.findConstructor(constructorOrId).toU8a(params, withSalt ? EMPTY_SALT : encodedSalt);
|
||||
|
||||
@@ -23,6 +23,7 @@ import { Base } from './Base';
|
||||
// As per Rust, 5 * GAS_PER_SEC
|
||||
const MAX_CALL_GAS = new BN(5_000_000_000_000).subn(1);
|
||||
const ERROR_NO_CALL = 'Your node does not expose the contracts.call RPC. This is most probably due to a runtime configuration.';
|
||||
|
||||
const l = logger('Contract');
|
||||
|
||||
function createQuery <ApiType extends ApiTypes> (fn: (origin: string | AccountId | Uint8Array, options: ContractOptions, params: CodecArg[]) => ContractCallResult<ApiType, ContractCallOutcome>): ContractQuery<ApiType> {
|
||||
@@ -39,11 +40,14 @@ function createTx <ApiType extends ApiTypes> (fn: (options: ContractOptions, par
|
||||
: fn(...extractOptions(options, params));
|
||||
}
|
||||
|
||||
function createWithId <T> (fn: (messageOrId: AbiMessage | string | number, options: ContractOptions, params: CodecArg[]) => T): ContractGeneric<ContractOptions, T> {
|
||||
return (messageOrId: AbiMessage | string | number, options: BigInt | string | number | BN | ContractOptions, ...params: CodecArg[]): T =>
|
||||
isOptions(options)
|
||||
function createWithId <T> (fn: (messageOrId: AbiMessage | string | number, options: ContractOptions, params: CodecArg[]) => T, warn?: string): ContractGeneric<ContractOptions, T> {
|
||||
return (messageOrId: AbiMessage | string | number, options: BigInt | string | number | BN | ContractOptions, ...params: CodecArg[]): T => {
|
||||
warn && l.warn(warn);
|
||||
|
||||
return isOptions(options)
|
||||
? fn(messageOrId, options, params)
|
||||
: fn(messageOrId, ...extractOptions(options, params));
|
||||
};
|
||||
}
|
||||
|
||||
export class ContractSubmittableResult extends SubmittableResult {
|
||||
@@ -109,8 +113,8 @@ export class Contract<ApiType extends ApiTypes> extends Base<ApiType> {
|
||||
super(api, abi, decorateMethod);
|
||||
|
||||
this.address = this.registry.createType('AccountId', address);
|
||||
this.exec = createWithId(this.#exec);
|
||||
this.read = createWithId(this.#read);
|
||||
this.exec = createWithId(this.#exec, '.exec is deprecated, use contract.tx.<messageName>(...) instead (where contract refers to this instance)');
|
||||
this.read = createWithId(this.#read, '.read is deprecated, use contract.query.<messageName>(...) instead (where contract refers to this instance)');
|
||||
|
||||
this.abi.messages.forEach((m): void => {
|
||||
const messageName = stringCamelCase(m.identifier);
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Auto-generated by @polkadot/dev, do not edit
|
||||
|
||||
export const packageInfo = { name: '@polkadot/api-contract', version: '4.2.1' };
|
||||
export const packageInfo = { name: '@polkadot/api-contract', version: '4.4.1' };
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@polkadot/api-derive",
|
||||
"version": "4.2.1",
|
||||
"version": "4.4.1",
|
||||
"type": "module",
|
||||
"description": "Common functions used across Polkadot, derived from RPC calls and storage queries.",
|
||||
"main": "index.js",
|
||||
@@ -17,9 +17,9 @@
|
||||
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api-derive#readme",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.13.10",
|
||||
"@polkadot/api": "4.2.1",
|
||||
"@polkadot/rpc-core": "4.2.1",
|
||||
"@polkadot/types": "4.2.1",
|
||||
"@polkadot/api": "4.4.1",
|
||||
"@polkadot/rpc-core": "4.4.1",
|
||||
"@polkadot/types": "4.4.1",
|
||||
"@polkadot/util": "^6.0.5",
|
||||
"@polkadot/util-crypto": "^6.0.5",
|
||||
"@polkadot/x-rxjs": "^6.0.5",
|
||||
@@ -27,6 +27,6 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@polkadot/keyring": "^6.0.5",
|
||||
"@polkadot/rpc-provider": "4.2.1"
|
||||
"@polkadot/rpc-provider": "4.4.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -37,12 +37,16 @@ export function bounties (instanceId: string, api: ApiInterfaceRx): () => Observ
|
||||
return memo(instanceId, (): Observable<DeriveBounties> =>
|
||||
combineLatest([
|
||||
bountyBase.bountyCount<BountyIndex>(),
|
||||
api.query.council ? api.query.council.proposalCount<ProposalIndex>() : of(0)
|
||||
api.query.council
|
||||
? api.query.council.proposalCount<ProposalIndex>()
|
||||
: of(0)
|
||||
]).pipe(
|
||||
switchMap(() =>
|
||||
combineLatest([
|
||||
bountyBase.bounties.keys<[BountyIndex]>(),
|
||||
api.derive.council ? api.derive.council.proposals() : of([])
|
||||
api.derive.council
|
||||
? api.derive.council.proposals()
|
||||
: of([])
|
||||
])
|
||||
),
|
||||
switchMap(([keys, proposals]): Observable<Result> => {
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Auto-generated by @polkadot/dev, do not edit
|
||||
|
||||
export const packageInfo = { name: '@polkadot/api-derive', version: '4.2.1' };
|
||||
export const packageInfo = { name: '@polkadot/api-derive', version: '4.4.1' };
|
||||
|
||||
@@ -13,7 +13,7 @@ import { map } from '@polkadot/x-rxjs/operators';
|
||||
import { memo } from '../util';
|
||||
|
||||
// parse into Indexes
|
||||
function parse ([activeEra, activeEraStart, currentEra, currentIndex, validatorCount]: [EraIndex, Option<Moment>, EraIndex, SessionIndex, u32]): DeriveSessionIndexes {
|
||||
function parse ([currentIndex, activeEra, activeEraStart, currentEra, validatorCount]: [SessionIndex, EraIndex, Option<Moment>, EraIndex, u32]): DeriveSessionIndexes {
|
||||
return {
|
||||
activeEra,
|
||||
activeEraStart,
|
||||
@@ -24,42 +24,57 @@ function parse ([activeEra, activeEraStart, currentEra, currentIndex, validatorC
|
||||
}
|
||||
|
||||
// query based on latest
|
||||
function query (api: ApiInterfaceRx): Observable<DeriveSessionIndexes> {
|
||||
return api.queryMulti<[Option<ActiveEraInfo>, Option<EraIndex>, SessionIndex, u32]>([
|
||||
function queryStaking (api: ApiInterfaceRx): Observable<DeriveSessionIndexes> {
|
||||
return api.queryMulti<[SessionIndex, Option<ActiveEraInfo>, Option<EraIndex>, u32]>([
|
||||
api.query.session.currentIndex,
|
||||
api.query.staking.activeEra,
|
||||
api.query.staking.currentEra,
|
||||
api.query.session.currentIndex,
|
||||
api.query.staking.validatorCount
|
||||
]).pipe(
|
||||
map(([activeOpt, currentEra, currentIndex, validatorCount]): DeriveSessionIndexes => {
|
||||
map(([currentIndex, activeOpt, currentEra, validatorCount]): DeriveSessionIndexes => {
|
||||
const { index, start } = activeOpt.unwrapOrDefault();
|
||||
|
||||
return parse([
|
||||
currentIndex,
|
||||
index,
|
||||
start,
|
||||
currentEra.unwrapOrDefault(),
|
||||
currentIndex,
|
||||
validatorCount
|
||||
]);
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
// query based on latest
|
||||
function querySession (api: ApiInterfaceRx): Observable<DeriveSessionIndexes> {
|
||||
return api.query.session.currentIndex().pipe(
|
||||
map((currentIndex): DeriveSessionIndexes => parse([
|
||||
currentIndex,
|
||||
api.registry.createType('EraIndex'),
|
||||
api.registry.createType('Option<Moment>'),
|
||||
api.registry.createType('EraIndex'),
|
||||
api.registry.createType('u32')
|
||||
]))
|
||||
);
|
||||
}
|
||||
|
||||
// empty set when none is available
|
||||
function empty (api: ApiInterfaceRx): Observable<DeriveSessionIndexes> {
|
||||
return of(parse([
|
||||
api.registry.createType('SessionIndex', 1),
|
||||
api.registry.createType('EraIndex'),
|
||||
api.registry.createType('Option<Moment>'),
|
||||
api.registry.createType('EraIndex'),
|
||||
api.registry.createType('SessionIndex', 1),
|
||||
api.registry.createType('u32')
|
||||
]));
|
||||
}
|
||||
|
||||
export function indexes (instanceId: string, api: ApiInterfaceRx): () => Observable<DeriveSessionIndexes> {
|
||||
return memo(instanceId, (): Observable<DeriveSessionIndexes> =>
|
||||
api.query.session && api.query.staking
|
||||
? query(api)
|
||||
api.query.session
|
||||
? api.query.staking
|
||||
? queryStaking(api)
|
||||
: querySession(api)
|
||||
: empty(api)
|
||||
);
|
||||
}
|
||||
|
||||
@@ -61,7 +61,9 @@ function retrieveProposals (api: ApiInterfaceRx, proposalCount: ProposalIndex, a
|
||||
|
||||
return combineLatest([
|
||||
api.query.treasury.proposals.multi<Option<TreasuryProposal>>(allIds),
|
||||
api.derive.council.proposals()
|
||||
api.derive.council
|
||||
? api.derive.council.proposals()
|
||||
: of([] as DeriveCollectiveProposal[])
|
||||
]).pipe(
|
||||
map(([allProposals, councilProposals]: [Option<TreasuryProposal>[], DeriveCollectiveProposal[]]): DeriveTreasuryProposals =>
|
||||
parseResult(api, { allIds, allProposals, approvalIds, councilProposals, proposalCount })
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@polkadot/api",
|
||||
"version": "4.2.1",
|
||||
"version": "4.4.1",
|
||||
"type": "module",
|
||||
"description": "Promise and RxJS wrappers around the Polkadot JS RPC",
|
||||
"main": "index.js",
|
||||
@@ -17,13 +17,13 @@
|
||||
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api#readme",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.13.10",
|
||||
"@polkadot/api-derive": "4.2.1",
|
||||
"@polkadot/api-derive": "4.4.1",
|
||||
"@polkadot/keyring": "^6.0.5",
|
||||
"@polkadot/metadata": "4.2.1",
|
||||
"@polkadot/rpc-core": "4.2.1",
|
||||
"@polkadot/rpc-provider": "4.2.1",
|
||||
"@polkadot/types": "4.2.1",
|
||||
"@polkadot/types-known": "4.2.1",
|
||||
"@polkadot/metadata": "4.4.1",
|
||||
"@polkadot/rpc-core": "4.4.1",
|
||||
"@polkadot/rpc-provider": "4.4.1",
|
||||
"@polkadot/types": "4.4.1",
|
||||
"@polkadot/types-known": "4.4.1",
|
||||
"@polkadot/util": "^6.0.5",
|
||||
"@polkadot/util-crypto": "^6.0.5",
|
||||
"@polkadot/x-rxjs": "^6.0.5",
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Auto-generated by @polkadot/dev, do not edit
|
||||
|
||||
export const packageInfo = { name: '@polkadot/api', version: '4.2.1' };
|
||||
export const packageInfo = { name: '@polkadot/api', version: '4.4.1' };
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@polkadot/metadata",
|
||||
"version": "4.2.1",
|
||||
"version": "4.4.1",
|
||||
"type": "module",
|
||||
"description": "Helpers to extract information from runtime metadata",
|
||||
"main": "index.js",
|
||||
@@ -17,8 +17,8 @@
|
||||
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/type-metadata#readme",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.13.10",
|
||||
"@polkadot/types": "4.2.1",
|
||||
"@polkadot/types-known": "4.2.1",
|
||||
"@polkadot/types": "4.4.1",
|
||||
"@polkadot/types-known": "4.4.1",
|
||||
"@polkadot/util": "^6.0.5",
|
||||
"@polkadot/util-crypto": "^6.0.5",
|
||||
"bn.js": "^4.11.9"
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Auto-generated by @polkadot/dev, do not edit
|
||||
|
||||
export const packageInfo = { name: '@polkadot/metadata', version: '4.2.1' };
|
||||
export const packageInfo = { name: '@polkadot/metadata', version: '4.4.1' };
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@polkadot/rpc-core",
|
||||
"version": "4.2.1",
|
||||
"version": "4.4.1",
|
||||
"type": "module",
|
||||
"description": "A JavaScript wrapper for the Polkadot JsonRPC interface",
|
||||
"main": "index.js",
|
||||
@@ -17,9 +17,9 @@
|
||||
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/rpc-core#readme",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.13.10",
|
||||
"@polkadot/metadata": "4.2.1",
|
||||
"@polkadot/rpc-provider": "4.2.1",
|
||||
"@polkadot/types": "4.2.1",
|
||||
"@polkadot/metadata": "4.4.1",
|
||||
"@polkadot/rpc-provider": "4.4.1",
|
||||
"@polkadot/types": "4.4.1",
|
||||
"@polkadot/util": "^6.0.5",
|
||||
"@polkadot/x-rxjs": "^6.0.5"
|
||||
},
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Auto-generated by @polkadot/dev, do not edit
|
||||
|
||||
export const packageInfo = { name: '@polkadot/rpc-core', version: '4.2.1' };
|
||||
export const packageInfo = { name: '@polkadot/rpc-core', version: '4.4.1' };
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@polkadot/rpc-provider",
|
||||
"version": "4.2.1",
|
||||
"version": "4.4.1",
|
||||
"type": "module",
|
||||
"description": "Transport providers for the API",
|
||||
"main": "index.js",
|
||||
@@ -17,7 +17,7 @@
|
||||
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/rpc-provider#readme",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.13.10",
|
||||
"@polkadot/types": "4.2.1",
|
||||
"@polkadot/types": "4.4.1",
|
||||
"@polkadot/util": "^6.0.5",
|
||||
"@polkadot/util-crypto": "^6.0.5",
|
||||
"@polkadot/x-fetch": "^6.0.5",
|
||||
@@ -28,7 +28,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@polkadot/keyring": "^6.0.5",
|
||||
"@polkadot/metadata": "4.2.1",
|
||||
"@polkadot/metadata": "4.4.1",
|
||||
"mock-socket": "^9.0.3",
|
||||
"nock": "^13.0.11"
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Auto-generated by @polkadot/dev, do not edit
|
||||
|
||||
export const packageInfo = { name: '@polkadot/rpc-provider', version: '4.2.1' };
|
||||
export const packageInfo = { name: '@polkadot/rpc-provider', version: '4.4.1' };
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@polkadot/typegen",
|
||||
"version": "4.2.1",
|
||||
"version": "4.4.1",
|
||||
"type": "module",
|
||||
"description": "Type generation scripts",
|
||||
"main": "index.js",
|
||||
@@ -23,13 +23,13 @@
|
||||
"bugs": "https://github.com/polkadot-js/api/issues",
|
||||
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/typegen#readme",
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.13.10",
|
||||
"@babel/core": "^7.13.13",
|
||||
"@babel/register": "^7.13.8",
|
||||
"@babel/runtime": "^7.13.10",
|
||||
"@polkadot/api": "4.2.1",
|
||||
"@polkadot/metadata": "4.2.1",
|
||||
"@polkadot/rpc-provider": "4.2.1",
|
||||
"@polkadot/types": "4.2.1",
|
||||
"@polkadot/api": "4.4.1",
|
||||
"@polkadot/metadata": "4.4.1",
|
||||
"@polkadot/rpc-provider": "4.4.1",
|
||||
"@polkadot/types": "4.4.1",
|
||||
"@polkadot/util": "^6.0.5",
|
||||
"handlebars": "^4.7.7",
|
||||
"websocket": "^1.0.33",
|
||||
@@ -37,6 +37,6 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/websocket": "^1.0.2",
|
||||
"@types/yargs": "^16.0.0"
|
||||
"@types/yargs": "^16.0.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Auto-generated by @polkadot/dev, do not edit
|
||||
|
||||
export const packageInfo = { name: '@polkadot/typegen', version: '4.2.1' };
|
||||
export const packageInfo = { name: '@polkadot/typegen', version: '4.4.1' };
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@polkadot/types-known",
|
||||
"version": "4.2.1",
|
||||
"version": "4.4.1",
|
||||
"type": "module",
|
||||
"description": "A JavaScript wrapper for the Polkadot JsonRPC interface",
|
||||
"main": "index.js",
|
||||
@@ -18,7 +18,7 @@
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.13.10",
|
||||
"@polkadot/networks": "^6.0.5",
|
||||
"@polkadot/types": "4.2.1",
|
||||
"@polkadot/types": "4.4.1",
|
||||
"@polkadot/util": "^6.0.5",
|
||||
"bn.js": "^4.11.9"
|
||||
},
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Auto-generated by @polkadot/dev, do not edit
|
||||
|
||||
export const packageInfo = { name: '@polkadot/types-known', version: '4.2.1' };
|
||||
export const packageInfo = { name: '@polkadot/types-known', version: '4.4.1' };
|
||||
|
||||
@@ -8,7 +8,7 @@ const upgrades: ChainUpgradesRaw = [
|
||||
[244358, 8], [303079, 9], [314201, 10], [342400, 11], [443963, 12],
|
||||
[528470, 13], [687751, 14], [746085, 15], [787923, 16], [799302, 17],
|
||||
[1205128, 18], [1603423, 23], [1733218, 24], [2005673, 25], [2436698, 26],
|
||||
[3613564, 27], [3899547, 28]
|
||||
[3613564, 27], [3899547, 28], [4345767, 29]
|
||||
];
|
||||
|
||||
export default upgrades;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@polkadot/types",
|
||||
"version": "4.2.1",
|
||||
"version": "4.4.1",
|
||||
"type": "module",
|
||||
"description": "Implementation of the Parity codec",
|
||||
"main": "index.js",
|
||||
@@ -17,7 +17,7 @@
|
||||
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/types#readme",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.13.10",
|
||||
"@polkadot/metadata": "4.2.1",
|
||||
"@polkadot/metadata": "4.4.1",
|
||||
"@polkadot/util": "^6.0.5",
|
||||
"@polkadot/util-crypto": "^6.0.5",
|
||||
"@polkadot/x-rxjs": "^6.0.5",
|
||||
|
||||
@@ -33,7 +33,7 @@ import type { DoubleMapTypeLatest, DoubleMapTypeV10, DoubleMapTypeV11, DoubleMap
|
||||
import type { MmrLeafProof } from '@polkadot/types/interfaces/mmr';
|
||||
import type { StorageKind } from '@polkadot/types/interfaces/offchain';
|
||||
import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';
|
||||
import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AbstractFungible, AbstractNonFungible, AccountId32Junction, AccountIndex64Junction, AccountKey20Junction, AssetInstance, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Balances, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateHash, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, ConcreteFungible, ConcreteNonFungible, CoreAssignment, CoreIndex, CoreOccupied, DepositAsset, DepositReserveAsset, DoubleVoteReport, DownwardMessage, ExchangeAsset, GlobalValidationSchedule, GroupIndex, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InitiateReserveWithdraw, InitiateTeleport, Junction, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiAsset, MultiLocation, NetworkId, NewBidder, Order, OriginKind, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, QueryHolding, QueuedParathread, RegisteredParachainInfo, RelayChainBlockNumber, RelayChainHash, RelayTo, RelayedFrom, Remark, ReserveAssetDeposit, Retriable, Scheduling, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, Statement, SubId, SystemInherentData, TeleportAsset, Transact, TransientValidationData, UpwardMessage, ValidationCode, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, VersionedMultiAsset, VersionedMultiLocation, VersionedXcm, WinnersData, WinnersDataTuple, WinningData, WinningDataEntry, WithdrawAsset, Xcm, XcmError, XcmResult } from '@polkadot/types/interfaces/parachains';
|
||||
import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AbstractFungible, AbstractNonFungible, AccountId32Junction, AccountIndex64Junction, AccountKey20Junction, AssetInstance, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Balances, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateHash, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, ConcreteFungible, ConcreteNonFungible, CoreAssignment, CoreIndex, CoreOccupied, DepositAsset, DepositReserveAsset, DoubleVoteReport, DownwardMessage, ExchangeAsset, GlobalValidationSchedule, GroupIndex, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InitiateReserveWithdraw, InitiateTeleport, Junction, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiAsset, MultiLocation, NetworkId, NewBidder, Order, OriginKind, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, QueryHolding, QueuedParathread, RegisteredParachainInfo, RelayChainBlockNumber, RelayChainHash, RelayTo, RelayedFrom, Remark, ReserveAssetDeposit, Retriable, Scheduling, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, Statement, SubId, SystemInherentData, TeleportAsset, Transact, TransientValidationData, UpwardMessage, ValidationCode, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, VersionedMultiAsset, VersionedMultiLocation, VersionedXcm, WinnersData, WinnersDataTuple, WinningData, WinningDataEntry, WithdrawAsset, Xcm, XcmError, XcmResult } from '@polkadot/types/interfaces/parachains';
|
||||
import type { FeeDetails, InclusionFee, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
|
||||
import type { Approvals } from '@polkadot/types/interfaces/poll';
|
||||
import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';
|
||||
@@ -718,6 +718,7 @@ declare module '@polkadot/types/types/registry' {
|
||||
'Option<SealV0>': Option<SealV0>;
|
||||
'Option<SeatHolder>': Option<SeatHolder>;
|
||||
'Option<SeedOf>': Option<SeedOf>;
|
||||
'Option<ServiceQuality>': Option<ServiceQuality>;
|
||||
'Option<SessionIndex>': Option<SessionIndex>;
|
||||
'Option<SessionInfo>': Option<SessionInfo>;
|
||||
'Option<SessionInfoValidatorGroup>': Option<SessionInfoValidatorGroup>;
|
||||
@@ -1472,6 +1473,7 @@ declare module '@polkadot/types/types/registry' {
|
||||
'Vec<SealV0>': Vec<SealV0>;
|
||||
'Vec<SeatHolder>': Vec<SeatHolder>;
|
||||
'Vec<SeedOf>': Vec<SeedOf>;
|
||||
'Vec<ServiceQuality>': Vec<ServiceQuality>;
|
||||
'Vec<SessionIndex>': Vec<SessionIndex>;
|
||||
'Vec<SessionInfo>': Vec<SessionInfo>;
|
||||
'Vec<SessionInfoValidatorGroup>': Vec<SessionInfoValidatorGroup>;
|
||||
@@ -2226,6 +2228,7 @@ declare module '@polkadot/types/types/registry' {
|
||||
SealV0: SealV0;
|
||||
SeatHolder: SeatHolder;
|
||||
SeedOf: SeedOf;
|
||||
ServiceQuality: ServiceQuality;
|
||||
SessionIndex: SessionIndex;
|
||||
SessionInfo: SessionInfo;
|
||||
SessionInfoValidatorGroup: SessionInfoValidatorGroup;
|
||||
|
||||
@@ -24,11 +24,18 @@ const proposeTypes = {
|
||||
}
|
||||
};
|
||||
|
||||
const cumulusTypes = {
|
||||
ServiceQuality: {
|
||||
_enum: ['Ordered', 'Fast']
|
||||
}
|
||||
};
|
||||
|
||||
export default {
|
||||
rpc: {},
|
||||
types: {
|
||||
...proposeTypes,
|
||||
...cumulusTypes,
|
||||
...hrmpTypes,
|
||||
...proposeTypes,
|
||||
...slotTypes,
|
||||
AbridgedCandidateReceipt: {
|
||||
parachainIndex: 'ParaId',
|
||||
@@ -231,7 +238,8 @@ export default {
|
||||
},
|
||||
ParaId: 'u32',
|
||||
ParaInfo: {
|
||||
scheduling: 'Scheduling'
|
||||
manager: 'AccountId',
|
||||
deposit: 'Balance'
|
||||
},
|
||||
ParaLifecycle: {
|
||||
_enum: ['Onboarding', 'Parathread', 'Parachain', 'UpgradingToParachain', 'DowngradingToParathread', 'OutgoingParathread', 'OutgoingParachain']
|
||||
@@ -406,7 +414,11 @@ export default {
|
||||
X1: 'Junction',
|
||||
X2: '(Junction, Junction)',
|
||||
X3: '(Junction, Junction, Junction)',
|
||||
X4: '(Junction, Junction, Junction, Junction)'
|
||||
X4: '(Junction, Junction, Junction, Junction)',
|
||||
X5: '(Junction, Junction, Junction, Junction, Junction)',
|
||||
X6: '(Junction, Junction, Junction, Junction, Junction, Junction)',
|
||||
X7: '(Junction, Junction, Junction, Junction, Junction, Junction, Junction)',
|
||||
X8: '(Junction, Junction, Junction, Junction, Junction, Junction, Junction, Junction)'
|
||||
}
|
||||
},
|
||||
AccountId32Junction: {
|
||||
|
||||
@@ -492,6 +492,14 @@ export interface MultiLocation extends Enum {
|
||||
readonly asX3: ITuple<[Junction, Junction, Junction]>;
|
||||
readonly isX4: boolean;
|
||||
readonly asX4: ITuple<[Junction, Junction, Junction, Junction]>;
|
||||
readonly isX5: boolean;
|
||||
readonly asX5: ITuple<[Junction, Junction, Junction, Junction, Junction]>;
|
||||
readonly isX6: boolean;
|
||||
readonly asX6: ITuple<[Junction, Junction, Junction, Junction, Junction, Junction]>;
|
||||
readonly isX7: boolean;
|
||||
readonly asX7: ITuple<[Junction, Junction, Junction, Junction, Junction, Junction, Junction]>;
|
||||
readonly isX8: boolean;
|
||||
readonly asX8: ITuple<[Junction, Junction, Junction, Junction, Junction, Junction, Junction, Junction]>;
|
||||
}
|
||||
|
||||
/** @name NetworkId */
|
||||
@@ -575,7 +583,8 @@ export interface ParaId extends u32 {}
|
||||
|
||||
/** @name ParaInfo */
|
||||
export interface ParaInfo extends Struct {
|
||||
readonly scheduling: Scheduling;
|
||||
readonly manager: AccountId;
|
||||
readonly deposit: Balance;
|
||||
}
|
||||
|
||||
/** @name ParaLifecycle */
|
||||
@@ -686,6 +695,12 @@ export interface Scheduling extends Enum {
|
||||
readonly isDynamic: boolean;
|
||||
}
|
||||
|
||||
/** @name ServiceQuality */
|
||||
export interface ServiceQuality extends Enum {
|
||||
readonly isOrdered: boolean;
|
||||
readonly isFast: boolean;
|
||||
}
|
||||
|
||||
/** @name SessionInfo */
|
||||
export interface SessionInfo extends Struct {
|
||||
readonly validators: Vec<ValidatorId>;
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Auto-generated by @polkadot/dev, do not edit
|
||||
|
||||
export const packageInfo = { name: '@polkadot/types', version: '4.2.1' };
|
||||
export const packageInfo = { name: '@polkadot/types', version: '4.4.1' };
|
||||
|
||||
@@ -51,26 +51,26 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/compat-data@npm:^7.13.0, @babel/compat-data@npm:^7.13.8":
|
||||
version: 7.13.8
|
||||
resolution: "@babel/compat-data@npm:7.13.8"
|
||||
checksum: e07e24737973206dd17439224945a354352ce0896d5a0bdd22fc637464eb650bdf6651a42352dc35fa8d55842ce1b66e545a1e3c096ee8f45947dcc32a44be44
|
||||
"@babel/compat-data@npm:^7.13.0, @babel/compat-data@npm:^7.13.12, @babel/compat-data@npm:^7.13.8":
|
||||
version: 7.13.12
|
||||
resolution: "@babel/compat-data@npm:7.13.12"
|
||||
checksum: a7165243d68ee4d3f22cddd431175678df9c01dc12c11621ba8a76af9907d922d68afaa9f32a05ce2b85e55895dd8ca5c9407a8ec72ffcda12400ca24714d15a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/core@npm:7.13.10, @babel/core@npm:^7.1.0, @babel/core@npm:^7.13.10, @babel/core@npm:^7.7.5":
|
||||
version: 7.13.10
|
||||
resolution: "@babel/core@npm:7.13.10"
|
||||
"@babel/core@npm:7.13.13, @babel/core@npm:^7.1.0, @babel/core@npm:^7.13.10, @babel/core@npm:^7.13.13, @babel/core@npm:^7.7.5":
|
||||
version: 7.13.13
|
||||
resolution: "@babel/core@npm:7.13.13"
|
||||
dependencies:
|
||||
"@babel/code-frame": ^7.12.13
|
||||
"@babel/generator": ^7.13.9
|
||||
"@babel/helper-compilation-targets": ^7.13.10
|
||||
"@babel/helper-module-transforms": ^7.13.0
|
||||
"@babel/helper-compilation-targets": ^7.13.13
|
||||
"@babel/helper-module-transforms": ^7.13.12
|
||||
"@babel/helpers": ^7.13.10
|
||||
"@babel/parser": ^7.13.10
|
||||
"@babel/parser": ^7.13.13
|
||||
"@babel/template": ^7.12.13
|
||||
"@babel/traverse": ^7.13.0
|
||||
"@babel/types": ^7.13.0
|
||||
"@babel/traverse": ^7.13.13
|
||||
"@babel/types": ^7.13.13
|
||||
convert-source-map: ^1.7.0
|
||||
debug: ^4.1.0
|
||||
gensync: ^1.0.0-beta.2
|
||||
@@ -78,11 +78,11 @@ __metadata:
|
||||
lodash: ^4.17.19
|
||||
semver: ^6.3.0
|
||||
source-map: ^0.5.0
|
||||
checksum: 728249a0bae293547d987e4d9886a14dda663d8cb629eb59c9d9ad3ee455048c2ccc3858c82305229ad4a415c2f39579abaa3982b653d40de348c39a3beb5e4d
|
||||
checksum: 94436aaafa9536de056528513bcd585e1a862ccf9c94fd0d52bdbb5507cb9b6927ecbd3b9cefed98b74b70d07db1e5b3796926a0d333ba3e10caee3180a06f32
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/generator@npm:^7.13.0, @babel/generator@npm:^7.13.9":
|
||||
"@babel/generator@npm:^7.13.9":
|
||||
version: 7.13.9
|
||||
resolution: "@babel/generator@npm:7.13.9"
|
||||
dependencies:
|
||||
@@ -112,17 +112,17 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.13.10, @babel/helper-compilation-targets@npm:^7.13.8":
|
||||
version: 7.13.10
|
||||
resolution: "@babel/helper-compilation-targets@npm:7.13.10"
|
||||
"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.13.10, @babel/helper-compilation-targets@npm:^7.13.13, @babel/helper-compilation-targets@npm:^7.13.8":
|
||||
version: 7.13.13
|
||||
resolution: "@babel/helper-compilation-targets@npm:7.13.13"
|
||||
dependencies:
|
||||
"@babel/compat-data": ^7.13.8
|
||||
"@babel/compat-data": ^7.13.12
|
||||
"@babel/helper-validator-option": ^7.12.17
|
||||
browserslist: ^4.14.5
|
||||
semver: ^6.3.0
|
||||
peerDependencies:
|
||||
"@babel/core": ^7.0.0
|
||||
checksum: 80eb7a380d01d785de42006370e13bbda63b76745a8da1c68dcbf3dc4bff630bd9db8a76cf3053628c61d91c1452328a4ad9a8d9fc24ed65c02f635327234678
|
||||
checksum: 2d77381d5fa0e488e86b2abbf5c299a6c1b0e490c95d3ca9a63fac8d45713a182a32fedabceb207588681ae09fc1c19c5418c26e686ae752d46102c9537f9ec7
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -210,38 +210,37 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/helper-member-expression-to-functions@npm:^7.13.0":
|
||||
version: 7.13.0
|
||||
resolution: "@babel/helper-member-expression-to-functions@npm:7.13.0"
|
||||
"@babel/helper-member-expression-to-functions@npm:^7.13.0, @babel/helper-member-expression-to-functions@npm:^7.13.12":
|
||||
version: 7.13.12
|
||||
resolution: "@babel/helper-member-expression-to-functions@npm:7.13.12"
|
||||
dependencies:
|
||||
"@babel/types": ^7.13.0
|
||||
checksum: 9baaab9910a96c0f201b71c6cc39037dce5d32a321f61347ac489ddbef2bcbd232adcadeaa8e44d8c9a7216226c009b57f9d65697d90d7a8ed2c27682932d959
|
||||
"@babel/types": ^7.13.12
|
||||
checksum: 2c075f72e5bda1432c74484548272577485d45c4d6c7cc9e84c5d053eaa6e0890e93c9b018bab97f65cbb81ac04dd9cdca73d5ae0e94b03cfc00d10972b99185
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/helper-module-imports@npm:^7.0.0, @babel/helper-module-imports@npm:^7.12.13":
|
||||
version: 7.12.13
|
||||
resolution: "@babel/helper-module-imports@npm:7.12.13"
|
||||
"@babel/helper-module-imports@npm:^7.0.0, @babel/helper-module-imports@npm:^7.12.13, @babel/helper-module-imports@npm:^7.13.12":
|
||||
version: 7.13.12
|
||||
resolution: "@babel/helper-module-imports@npm:7.13.12"
|
||||
dependencies:
|
||||
"@babel/types": ^7.12.13
|
||||
checksum: 9832436fb44361b2d7a0b7d99f18b7c0529afb94202ab92b578147aba062447e9a1cff33bc95db33189686fa922c62f23da296870958eee2f862b3aa89809159
|
||||
"@babel/types": ^7.13.12
|
||||
checksum: 4d1d3364bec0820e50c782b5a5c81e7987c260c14772bc594ca8dbfdb3b6e43bd9b4e5071fd2a5f777c822dc7440781fa904f643e2069755db9ba5033cb2beac
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/helper-module-transforms@npm:^7.13.0":
|
||||
version: 7.13.0
|
||||
resolution: "@babel/helper-module-transforms@npm:7.13.0"
|
||||
"@babel/helper-module-transforms@npm:^7.13.0, @babel/helper-module-transforms@npm:^7.13.12":
|
||||
version: 7.13.12
|
||||
resolution: "@babel/helper-module-transforms@npm:7.13.12"
|
||||
dependencies:
|
||||
"@babel/helper-module-imports": ^7.12.13
|
||||
"@babel/helper-replace-supers": ^7.13.0
|
||||
"@babel/helper-simple-access": ^7.12.13
|
||||
"@babel/helper-module-imports": ^7.13.12
|
||||
"@babel/helper-replace-supers": ^7.13.12
|
||||
"@babel/helper-simple-access": ^7.13.12
|
||||
"@babel/helper-split-export-declaration": ^7.12.13
|
||||
"@babel/helper-validator-identifier": ^7.12.11
|
||||
"@babel/template": ^7.12.13
|
||||
"@babel/traverse": ^7.13.0
|
||||
"@babel/types": ^7.13.0
|
||||
lodash: ^4.17.19
|
||||
checksum: b7e45c67eeaca488fa7a7bb0afebaec25b91f94cb04d32229ef799bd3a31ef5b566737fefd139b20c6525817528816e43bf492372c77e352e2a0e4d03b1fe21b
|
||||
"@babel/types": ^7.13.12
|
||||
checksum: d2f9bb7a62685c54570b5e78a567d2a75748e55eca70bd11924b3a15c50017864dbe37697952889e17e1c1764e99fe28e9ca1959e014e57e56f73cc09f0a2e19
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -272,24 +271,24 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/helper-replace-supers@npm:^7.12.13, @babel/helper-replace-supers@npm:^7.13.0":
|
||||
version: 7.13.0
|
||||
resolution: "@babel/helper-replace-supers@npm:7.13.0"
|
||||
"@babel/helper-replace-supers@npm:^7.12.13, @babel/helper-replace-supers@npm:^7.13.0, @babel/helper-replace-supers@npm:^7.13.12":
|
||||
version: 7.13.12
|
||||
resolution: "@babel/helper-replace-supers@npm:7.13.12"
|
||||
dependencies:
|
||||
"@babel/helper-member-expression-to-functions": ^7.13.0
|
||||
"@babel/helper-member-expression-to-functions": ^7.13.12
|
||||
"@babel/helper-optimise-call-expression": ^7.12.13
|
||||
"@babel/traverse": ^7.13.0
|
||||
"@babel/types": ^7.13.0
|
||||
checksum: b32ab3f4d6a4e7f80c361eb9c0a001c2ae498f885248cb567c8de2475fb3dcbdf7ddd32a9e9a926abf55cf4f46faad7ceebfd3d035dea5508c3d9ba55d4083cc
|
||||
"@babel/types": ^7.13.12
|
||||
checksum: 38b79cb56a9a5324e32567660fcafbac4efae6f2c2c2ef048deb2d022476fc1c7acfda5ab841f7135d07b4f39e62142f9d253cfe824232030432c86f94d226f1
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/helper-simple-access@npm:^7.12.13":
|
||||
version: 7.12.13
|
||||
resolution: "@babel/helper-simple-access@npm:7.12.13"
|
||||
"@babel/helper-simple-access@npm:^7.12.13, @babel/helper-simple-access@npm:^7.13.12":
|
||||
version: 7.13.12
|
||||
resolution: "@babel/helper-simple-access@npm:7.13.12"
|
||||
dependencies:
|
||||
"@babel/types": ^7.12.13
|
||||
checksum: 34f19da4b8129006d660ff6d704d493a447852268a1360727a7de32087c7cead4c2548a3bb73c8fee7afa2dcad85087d53f9b0cabe071f3bf5cc27f35de9e7c8
|
||||
"@babel/types": ^7.13.12
|
||||
checksum: eff532a1572a4ac562c5918a409871ddf9baee9ece197b98a54622184d3b9e01bdd465597f27ca3d452e71638c913a14819cf261dc095a466032dfd92a88bc73
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -359,12 +358,25 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/parser@npm:^7.0.0, @babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.13, @babel/parser@npm:^7.13.0, @babel/parser@npm:^7.13.10":
|
||||
version: 7.13.11
|
||||
resolution: "@babel/parser@npm:7.13.11"
|
||||
"@babel/parser@npm:^7.0.0, @babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.13, @babel/parser@npm:^7.13.13":
|
||||
version: 7.13.13
|
||||
resolution: "@babel/parser@npm:7.13.13"
|
||||
bin:
|
||||
parser: ./bin/babel-parser.js
|
||||
checksum: 3ab6f6097efc72ac9212831f8f1c17fbcf9f0a6d1b12fa2486a51db4674cf3e86674d0ff62ba789933703119e69ac5daf8d1bb9e400eb4a613df8b0103104ab6
|
||||
checksum: ae20be2d964cec7c6e8f1c8154b0b6457852a6269f957964b5cc7f39baa5b71dc733b9e88cc3f5b91de171f4c023d272040bf31065bef1573aa0e88dd0f3ee75
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.13.12":
|
||||
version: 7.13.12
|
||||
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.13.12"
|
||||
dependencies:
|
||||
"@babel/helper-plugin-utils": ^7.13.0
|
||||
"@babel/helper-skip-transparent-expression-wrappers": ^7.12.1
|
||||
"@babel/plugin-proposal-optional-chaining": ^7.13.12
|
||||
peerDependencies:
|
||||
"@babel/core": ^7.13.0
|
||||
checksum: ad0b508a5c3f3436ff0ff598b7aad63686bfe7f846b19c862c09397bc987ab9244b866204440496cf6d1b7ec07ea01a6fe95fd3067dbdf58ec48d9d4d4d9a440
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -492,16 +504,16 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-proposal-optional-chaining@npm:^7.13.8":
|
||||
version: 7.13.8
|
||||
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.13.8"
|
||||
"@babel/plugin-proposal-optional-chaining@npm:^7.13.12":
|
||||
version: 7.13.12
|
||||
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.13.12"
|
||||
dependencies:
|
||||
"@babel/helper-plugin-utils": ^7.13.0
|
||||
"@babel/helper-skip-transparent-expression-wrappers": ^7.12.1
|
||||
"@babel/plugin-syntax-optional-chaining": ^7.8.3
|
||||
peerDependencies:
|
||||
"@babel/core": ^7.0.0-0
|
||||
checksum: 8295f1ceda1bc40eb281b611eeebc087db843de318bbffeecd245b0a0ffe7df723ec99c39579d2e1089af2694abde938f30defb16c5f909423fa6d57a7155598
|
||||
checksum: 8663cfbf5cdfe41f8765976b94de9525c223085d53bb48bd481a03539a7680f2aa3b3fd525d80144e1c1c646cbad817fea7ef8da573bbf0600ddde32fab7420b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1159,14 +1171,15 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/preset-env@npm:^7.13.10":
|
||||
version: 7.13.10
|
||||
resolution: "@babel/preset-env@npm:7.13.10"
|
||||
"@babel/preset-env@npm:^7.13.12":
|
||||
version: 7.13.12
|
||||
resolution: "@babel/preset-env@npm:7.13.12"
|
||||
dependencies:
|
||||
"@babel/compat-data": ^7.13.8
|
||||
"@babel/compat-data": ^7.13.12
|
||||
"@babel/helper-compilation-targets": ^7.13.10
|
||||
"@babel/helper-plugin-utils": ^7.13.0
|
||||
"@babel/helper-validator-option": ^7.12.17
|
||||
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ^7.13.12
|
||||
"@babel/plugin-proposal-async-generator-functions": ^7.13.8
|
||||
"@babel/plugin-proposal-class-properties": ^7.13.0
|
||||
"@babel/plugin-proposal-dynamic-import": ^7.13.8
|
||||
@@ -1177,7 +1190,7 @@ __metadata:
|
||||
"@babel/plugin-proposal-numeric-separator": ^7.12.13
|
||||
"@babel/plugin-proposal-object-rest-spread": ^7.13.8
|
||||
"@babel/plugin-proposal-optional-catch-binding": ^7.13.8
|
||||
"@babel/plugin-proposal-optional-chaining": ^7.13.8
|
||||
"@babel/plugin-proposal-optional-chaining": ^7.13.12
|
||||
"@babel/plugin-proposal-private-methods": ^7.13.0
|
||||
"@babel/plugin-proposal-unicode-property-regex": ^7.12.13
|
||||
"@babel/plugin-syntax-async-generators": ^7.8.4
|
||||
@@ -1225,7 +1238,7 @@ __metadata:
|
||||
"@babel/plugin-transform-unicode-escapes": ^7.12.13
|
||||
"@babel/plugin-transform-unicode-regex": ^7.12.13
|
||||
"@babel/preset-modules": ^0.1.4
|
||||
"@babel/types": ^7.13.0
|
||||
"@babel/types": ^7.13.12
|
||||
babel-plugin-polyfill-corejs2: ^0.1.4
|
||||
babel-plugin-polyfill-corejs3: ^0.1.3
|
||||
babel-plugin-polyfill-regenerator: ^0.1.2
|
||||
@@ -1233,7 +1246,7 @@ __metadata:
|
||||
semver: ^6.3.0
|
||||
peerDependencies:
|
||||
"@babel/core": ^7.0.0-0
|
||||
checksum: 1f23eb25dea448fd75a3e525f71181d535d2884fe50c7fbb9aa29918b997a7d92ba27cfb55f8b4070bc1b0507ab3d2d7ba9ee612a972e0f0b7447d4455d2b447
|
||||
checksum: e86ef0d986e388b5c4efd0b426975cc1e41d0aecea9b94ba54904ad06f2ba92d5ee82c3a073edb21cd7ca15b2a22970478cbdd63a69fb2f01d65161904aa998c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1315,31 +1328,30 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/traverse@npm:^7.1.0, @babel/traverse@npm:^7.13.0":
|
||||
version: 7.13.0
|
||||
resolution: "@babel/traverse@npm:7.13.0"
|
||||
"@babel/traverse@npm:^7.1.0, @babel/traverse@npm:^7.13.0, @babel/traverse@npm:^7.13.13":
|
||||
version: 7.13.13
|
||||
resolution: "@babel/traverse@npm:7.13.13"
|
||||
dependencies:
|
||||
"@babel/code-frame": ^7.12.13
|
||||
"@babel/generator": ^7.13.0
|
||||
"@babel/generator": ^7.13.9
|
||||
"@babel/helper-function-name": ^7.12.13
|
||||
"@babel/helper-split-export-declaration": ^7.12.13
|
||||
"@babel/parser": ^7.13.0
|
||||
"@babel/types": ^7.13.0
|
||||
"@babel/parser": ^7.13.13
|
||||
"@babel/types": ^7.13.13
|
||||
debug: ^4.1.0
|
||||
globals: ^11.1.0
|
||||
lodash: ^4.17.19
|
||||
checksum: e5d1b690157da325b5bea98e472f4df0fff16048242a70880e2da7939b005ccd5b63d2b4527e203cfc71a422da0fa513c0ad84114bff002d583ebd7dbd2c8576
|
||||
checksum: 2669b654730a308747c38c0f89a873fa2452c7e2e23532988e529a4dec6c09a6b862f50a6ea139afc496bd0f85a86c4ff922b262d6c41ab43c1df3886b3bbb1e
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.12.1, @babel/types@npm:^7.12.13, @babel/types@npm:^7.13.0, @babel/types@npm:^7.3.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4, @babel/types@npm:^7.8.3":
|
||||
version: 7.13.0
|
||||
resolution: "@babel/types@npm:7.13.0"
|
||||
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.12.1, @babel/types@npm:^7.12.13, @babel/types@npm:^7.13.0, @babel/types@npm:^7.13.12, @babel/types@npm:^7.13.13, @babel/types@npm:^7.3.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4, @babel/types@npm:^7.8.3":
|
||||
version: 7.13.13
|
||||
resolution: "@babel/types@npm:7.13.13"
|
||||
dependencies:
|
||||
"@babel/helper-validator-identifier": ^7.12.11
|
||||
lodash: ^4.17.19
|
||||
to-fast-properties: ^2.0.0
|
||||
checksum: a47357647a92c08ee2f5059210d37fd7fe190e8d4ef71dd97ba61c6ca7b7e979660bc8ba00fdc51249c037199b634dd984fde8d7a622fdd5e3e2161fe65e94c3
|
||||
checksum: 7c55948f2fc45979f0a7c1a1c9f281a74fc47b0eef0d781d67aeaef8b501eca7ddaf8d29361b147b3bd9cf62985168a4ecc6ff841cd77fcda1f1afd999f3dd3f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1778,24 +1790,24 @@ __metadata:
|
||||
resolution: "@polkadot/api-contract@workspace:packages/api-contract"
|
||||
dependencies:
|
||||
"@babel/runtime": ^7.13.10
|
||||
"@polkadot/api": 4.2.1
|
||||
"@polkadot/types": 4.2.1
|
||||
"@polkadot/api": 4.4.1
|
||||
"@polkadot/types": 4.4.1
|
||||
"@polkadot/util": ^6.0.5
|
||||
"@polkadot/x-rxjs": ^6.0.5
|
||||
bn.js: ^4.11.9
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/api-derive@4.2.1, @polkadot/api-derive@workspace:packages/api-derive":
|
||||
"@polkadot/api-derive@4.4.1, @polkadot/api-derive@workspace:packages/api-derive":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/api-derive@workspace:packages/api-derive"
|
||||
dependencies:
|
||||
"@babel/runtime": ^7.13.10
|
||||
"@polkadot/api": 4.2.1
|
||||
"@polkadot/api": 4.4.1
|
||||
"@polkadot/keyring": ^6.0.5
|
||||
"@polkadot/rpc-core": 4.2.1
|
||||
"@polkadot/rpc-provider": 4.2.1
|
||||
"@polkadot/types": 4.2.1
|
||||
"@polkadot/rpc-core": 4.4.1
|
||||
"@polkadot/rpc-provider": 4.4.1
|
||||
"@polkadot/types": 4.4.1
|
||||
"@polkadot/util": ^6.0.5
|
||||
"@polkadot/util-crypto": ^6.0.5
|
||||
"@polkadot/x-rxjs": ^6.0.5
|
||||
@@ -1803,18 +1815,18 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/api@4.2.1, @polkadot/api@workspace:packages/api":
|
||||
"@polkadot/api@4.4.1, @polkadot/api@workspace:packages/api":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/api@workspace:packages/api"
|
||||
dependencies:
|
||||
"@babel/runtime": ^7.13.10
|
||||
"@polkadot/api-derive": 4.2.1
|
||||
"@polkadot/api-derive": 4.4.1
|
||||
"@polkadot/keyring": ^6.0.5
|
||||
"@polkadot/metadata": 4.2.1
|
||||
"@polkadot/rpc-core": 4.2.1
|
||||
"@polkadot/rpc-provider": 4.2.1
|
||||
"@polkadot/types": 4.2.1
|
||||
"@polkadot/types-known": 4.2.1
|
||||
"@polkadot/metadata": 4.4.1
|
||||
"@polkadot/rpc-core": 4.4.1
|
||||
"@polkadot/rpc-provider": 4.4.1
|
||||
"@polkadot/types": 4.4.1
|
||||
"@polkadot/types-known": 4.4.1
|
||||
"@polkadot/util": ^6.0.5
|
||||
"@polkadot/util-crypto": ^6.0.5
|
||||
"@polkadot/x-rxjs": ^6.0.5
|
||||
@@ -1823,9 +1835,9 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/dev@npm:^0.62.6":
|
||||
version: 0.62.6
|
||||
resolution: "@polkadot/dev@npm:0.62.6"
|
||||
"@polkadot/dev@npm:^0.62.7":
|
||||
version: 0.62.7
|
||||
resolution: "@polkadot/dev@npm:0.62.7"
|
||||
dependencies:
|
||||
"@babel/cli": ^7.13.10
|
||||
"@babel/core": ^7.13.10
|
||||
@@ -1833,7 +1845,7 @@ __metadata:
|
||||
"@babel/plugin-proposal-nullish-coalescing-operator": ^7.13.8
|
||||
"@babel/plugin-proposal-numeric-separator": ^7.12.13
|
||||
"@babel/plugin-proposal-object-rest-spread": ^7.13.8
|
||||
"@babel/plugin-proposal-optional-chaining": ^7.13.8
|
||||
"@babel/plugin-proposal-optional-chaining": ^7.13.12
|
||||
"@babel/plugin-proposal-private-methods": ^7.13.0
|
||||
"@babel/plugin-syntax-bigint": ^7.8.3
|
||||
"@babel/plugin-syntax-dynamic-import": ^7.8.3
|
||||
@@ -1841,14 +1853,14 @@ __metadata:
|
||||
"@babel/plugin-syntax-top-level-await": ^7.12.13
|
||||
"@babel/plugin-transform-regenerator": ^7.12.13
|
||||
"@babel/plugin-transform-runtime": ^7.13.10
|
||||
"@babel/preset-env": ^7.13.10
|
||||
"@babel/preset-env": ^7.13.12
|
||||
"@babel/preset-react": ^7.12.13
|
||||
"@babel/preset-typescript": ^7.13.0
|
||||
"@babel/register": ^7.13.8
|
||||
"@babel/runtime": ^7.13.10
|
||||
"@rushstack/eslint-patch": ^1.0.6
|
||||
"@typescript-eslint/eslint-plugin": 4.18.0
|
||||
"@typescript-eslint/parser": 4.18.0
|
||||
"@typescript-eslint/eslint-plugin": 4.19.0
|
||||
"@typescript-eslint/parser": 4.19.0
|
||||
"@vue/component-compiler-utils": ^3.2.0
|
||||
babel-jest: ^26.6.3
|
||||
babel-plugin-module-extension-resolver: ^1.0.0-rc.2
|
||||
@@ -1905,7 +1917,7 @@ __metadata:
|
||||
polkadot-exec-prettier: scripts/polkadot-exec-prettier.cjs
|
||||
polkadot-exec-tsc: scripts/polkadot-exec-tsc.cjs
|
||||
polkadot-exec-webpack: scripts/polkadot-exec-webpack.cjs
|
||||
checksum: b9de7eafc65ebd6879bbc35120613dc7711c189287096c28eb233ee44cf3a082f9a17a7cbaa91e375198ca74584fd9c4779e3fb967cd6019a79bf1bc9d160b35
|
||||
checksum: 9d9d34d665e5d40a6fe71d7cd63b622df533835680ce0e14d9ee0d7ffca5f5bb082d65563c200bff98670e368dc988b614c7e6184a976a23d125ed0f0e378396
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1923,14 +1935,14 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@polkadot/metadata@4.2.1, @polkadot/metadata@workspace:packages/metadata":
|
||||
"@polkadot/metadata@4.4.1, @polkadot/metadata@workspace:packages/metadata":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/metadata@workspace:packages/metadata"
|
||||
dependencies:
|
||||
"@babel/runtime": ^7.13.10
|
||||
"@polkadot/keyring": ^6.0.5
|
||||
"@polkadot/types": 4.2.1
|
||||
"@polkadot/types-known": 4.2.1
|
||||
"@polkadot/types": 4.4.1
|
||||
"@polkadot/types-known": 4.4.1
|
||||
"@polkadot/util": ^6.0.5
|
||||
"@polkadot/util-crypto": ^6.0.5
|
||||
bn.js: ^4.11.9
|
||||
@@ -1946,28 +1958,28 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@polkadot/rpc-core@4.2.1, @polkadot/rpc-core@workspace:packages/rpc-core":
|
||||
"@polkadot/rpc-core@4.4.1, @polkadot/rpc-core@workspace:packages/rpc-core":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/rpc-core@workspace:packages/rpc-core"
|
||||
dependencies:
|
||||
"@babel/runtime": ^7.13.10
|
||||
"@polkadot/keyring": ^6.0.5
|
||||
"@polkadot/metadata": 4.2.1
|
||||
"@polkadot/rpc-provider": 4.2.1
|
||||
"@polkadot/types": 4.2.1
|
||||
"@polkadot/metadata": 4.4.1
|
||||
"@polkadot/rpc-provider": 4.4.1
|
||||
"@polkadot/types": 4.4.1
|
||||
"@polkadot/util": ^6.0.5
|
||||
"@polkadot/x-rxjs": ^6.0.5
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/rpc-provider@4.2.1, @polkadot/rpc-provider@workspace:packages/rpc-provider":
|
||||
"@polkadot/rpc-provider@4.4.1, @polkadot/rpc-provider@workspace:packages/rpc-provider":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/rpc-provider@workspace:packages/rpc-provider"
|
||||
dependencies:
|
||||
"@babel/runtime": ^7.13.10
|
||||
"@polkadot/keyring": ^6.0.5
|
||||
"@polkadot/metadata": 4.2.1
|
||||
"@polkadot/types": 4.2.1
|
||||
"@polkadot/metadata": 4.4.1
|
||||
"@polkadot/types": 4.4.1
|
||||
"@polkadot/util": ^6.0.5
|
||||
"@polkadot/util-crypto": ^6.0.5
|
||||
"@polkadot/x-fetch": ^6.0.5
|
||||
@@ -1993,16 +2005,16 @@ __metadata:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/typegen@workspace:packages/typegen"
|
||||
dependencies:
|
||||
"@babel/core": ^7.13.10
|
||||
"@babel/core": ^7.13.13
|
||||
"@babel/register": ^7.13.8
|
||||
"@babel/runtime": ^7.13.10
|
||||
"@polkadot/api": 4.2.1
|
||||
"@polkadot/metadata": 4.2.1
|
||||
"@polkadot/rpc-provider": 4.2.1
|
||||
"@polkadot/types": 4.2.1
|
||||
"@polkadot/api": 4.4.1
|
||||
"@polkadot/metadata": 4.4.1
|
||||
"@polkadot/rpc-provider": 4.4.1
|
||||
"@polkadot/types": 4.4.1
|
||||
"@polkadot/util": ^6.0.5
|
||||
"@types/websocket": ^1.0.2
|
||||
"@types/yargs": ^16.0.0
|
||||
"@types/yargs": ^16.0.1
|
||||
handlebars: ^4.7.7
|
||||
websocket: ^1.0.33
|
||||
yargs: ^16.2.0
|
||||
@@ -2015,26 +2027,26 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/types-known@4.2.1, @polkadot/types-known@workspace:packages/types-known":
|
||||
"@polkadot/types-known@4.4.1, @polkadot/types-known@workspace:packages/types-known":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/types-known@workspace:packages/types-known"
|
||||
dependencies:
|
||||
"@babel/runtime": ^7.13.10
|
||||
"@polkadot/networks": ^6.0.5
|
||||
"@polkadot/types": 4.2.1
|
||||
"@polkadot/types": 4.4.1
|
||||
"@polkadot/util": ^6.0.5
|
||||
"@types/bn.js": ^4.11.6
|
||||
bn.js: ^4.11.9
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@polkadot/types@4.2.1, @polkadot/types@workspace:packages/types":
|
||||
"@polkadot/types@4.4.1, @polkadot/types@workspace:packages/types":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@polkadot/types@workspace:packages/types"
|
||||
dependencies:
|
||||
"@babel/runtime": ^7.13.10
|
||||
"@polkadot/keyring": ^6.0.5
|
||||
"@polkadot/metadata": 4.2.1
|
||||
"@polkadot/metadata": 4.4.1
|
||||
"@polkadot/util": ^6.0.5
|
||||
"@polkadot/util-crypto": ^6.0.5
|
||||
"@polkadot/x-rxjs": ^6.0.5
|
||||
@@ -2349,13 +2361,13 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@types/jest@npm:^26.0.21":
|
||||
version: 26.0.21
|
||||
resolution: "@types/jest@npm:26.0.21"
|
||||
"@types/jest@npm:^26.0.22":
|
||||
version: 26.0.22
|
||||
resolution: "@types/jest@npm:26.0.22"
|
||||
dependencies:
|
||||
jest-diff: ^26.0.0
|
||||
pretty-format: ^26.0.0
|
||||
checksum: c219599d663527302a261aaa7cc038b79c428d7af39b0a20c2167cb698ae280f3a238b2ca3594bcabbe7ee441a6370d4b3afd19c4a616aaa5556d5b9e875c081
|
||||
checksum: 4c98ed058522f6cc74bcb47b8b7b104b77b2d4e42e087171f3d2d3ae5338c21f43ec26f2a186bc229c1bd72c3f776ad07faba837f0ec27f22cf94e154516c0b3
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -2454,21 +2466,21 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@types/yargs@npm:^16.0.0":
|
||||
version: 16.0.0
|
||||
resolution: "@types/yargs@npm:16.0.0"
|
||||
"@types/yargs@npm:^16.0.1":
|
||||
version: 16.0.1
|
||||
resolution: "@types/yargs@npm:16.0.1"
|
||||
dependencies:
|
||||
"@types/yargs-parser": "*"
|
||||
checksum: a17fa2814a4c19b7d327c0d6e6ecb9ca6a68fbfded0c1966d0ef6557540c055f7b9c1c1eadde48acb584f75708d4ec96ba59e58e77b8edbb602c23ed3bee76b9
|
||||
checksum: 7b141b6a9efe2da5af054b022f2fbfa3a34d664f1db384babc567b20e9935ac18924c8075780ea22f5e0da4f5714f24dc27b05b6475cd060031648f154183a45
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/eslint-plugin@npm:4.18.0":
|
||||
version: 4.18.0
|
||||
resolution: "@typescript-eslint/eslint-plugin@npm:4.18.0"
|
||||
"@typescript-eslint/eslint-plugin@npm:4.19.0":
|
||||
version: 4.19.0
|
||||
resolution: "@typescript-eslint/eslint-plugin@npm:4.19.0"
|
||||
dependencies:
|
||||
"@typescript-eslint/experimental-utils": 4.18.0
|
||||
"@typescript-eslint/scope-manager": 4.18.0
|
||||
"@typescript-eslint/experimental-utils": 4.19.0
|
||||
"@typescript-eslint/scope-manager": 4.19.0
|
||||
debug: ^4.1.1
|
||||
functional-red-black-tree: ^1.0.1
|
||||
lodash: ^4.17.15
|
||||
@@ -2481,66 +2493,66 @@ __metadata:
|
||||
peerDependenciesMeta:
|
||||
typescript:
|
||||
optional: true
|
||||
checksum: f137baf23f42345986a3570016ef0bacfff9f1e973f87962e09b826dde26b2f3d4c383a2b22839d2cd46baeb54753ac52c8837d41aa6caaf2ce122efdefea689
|
||||
checksum: 49280836614c8143f8a7a873fe7f41c022e4b4c680b2c23bc98cd106a4ec8ae58c856f034c0eb172f38d8ae6e858a3d0f0ea4c384f9859e7a745056c5f20de8a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/experimental-utils@npm:4.18.0":
|
||||
version: 4.18.0
|
||||
resolution: "@typescript-eslint/experimental-utils@npm:4.18.0"
|
||||
"@typescript-eslint/experimental-utils@npm:4.19.0":
|
||||
version: 4.19.0
|
||||
resolution: "@typescript-eslint/experimental-utils@npm:4.19.0"
|
||||
dependencies:
|
||||
"@types/json-schema": ^7.0.3
|
||||
"@typescript-eslint/scope-manager": 4.18.0
|
||||
"@typescript-eslint/types": 4.18.0
|
||||
"@typescript-eslint/typescript-estree": 4.18.0
|
||||
"@typescript-eslint/scope-manager": 4.19.0
|
||||
"@typescript-eslint/types": 4.19.0
|
||||
"@typescript-eslint/typescript-estree": 4.19.0
|
||||
eslint-scope: ^5.0.0
|
||||
eslint-utils: ^2.0.0
|
||||
peerDependencies:
|
||||
eslint: "*"
|
||||
checksum: 1f1357b38aa6e1dc9088abec1c259372ff124be215644283df1725421c3faeeb90ca463c5e549247f10918d18031cd56b58b366d22a5c90e23f601826d1d7f3a
|
||||
checksum: aac92241f5a73e6fb77270a106b8509ff6124873b16faeb1e2f48d492beb9f03cddd069d44c0e184a0621d315751224c957b40e52e25cf9d8bf0b358400316fc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/parser@npm:4.18.0":
|
||||
version: 4.18.0
|
||||
resolution: "@typescript-eslint/parser@npm:4.18.0"
|
||||
"@typescript-eslint/parser@npm:4.19.0":
|
||||
version: 4.19.0
|
||||
resolution: "@typescript-eslint/parser@npm:4.19.0"
|
||||
dependencies:
|
||||
"@typescript-eslint/scope-manager": 4.18.0
|
||||
"@typescript-eslint/types": 4.18.0
|
||||
"@typescript-eslint/typescript-estree": 4.18.0
|
||||
"@typescript-eslint/scope-manager": 4.19.0
|
||||
"@typescript-eslint/types": 4.19.0
|
||||
"@typescript-eslint/typescript-estree": 4.19.0
|
||||
debug: ^4.1.1
|
||||
peerDependencies:
|
||||
eslint: ^5.0.0 || ^6.0.0 || ^7.0.0
|
||||
peerDependenciesMeta:
|
||||
typescript:
|
||||
optional: true
|
||||
checksum: d2f907dc2888078fa6aaca329e39209cc0ceff0dfe43657835b9fbd73678d848077572fdf451dd0cae4ea199b8bfa0f3791037bd9174049668914c7a8ac55157
|
||||
checksum: eb9033469250ca0db08442c0a504cb57db5541fd31d2036d6822bca9966f638fba199eb32b31d9574534c302ffc0ebba65c4dba62dddbe56a2c85df0a5c6597a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/scope-manager@npm:4.18.0":
|
||||
version: 4.18.0
|
||||
resolution: "@typescript-eslint/scope-manager@npm:4.18.0"
|
||||
"@typescript-eslint/scope-manager@npm:4.19.0":
|
||||
version: 4.19.0
|
||||
resolution: "@typescript-eslint/scope-manager@npm:4.19.0"
|
||||
dependencies:
|
||||
"@typescript-eslint/types": 4.18.0
|
||||
"@typescript-eslint/visitor-keys": 4.18.0
|
||||
checksum: c543d4bf73ad0193cca7303c376f15b099ee861be492a210cfc19909d2ec828b7dc898a59e17c89cc91e4cc2ea450731a83671d136cd995fb9b77f8a7db4d440
|
||||
"@typescript-eslint/types": 4.19.0
|
||||
"@typescript-eslint/visitor-keys": 4.19.0
|
||||
checksum: 746c74e40428e7a291832cb87fd96534a6cd081dbb9b4d83bbffa3486ab5e8ac59bacdef82d349e903c77c07f0ff784e3b2abc69022efc0f8f0cb445b91251a5
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/types@npm:4.18.0":
|
||||
version: 4.18.0
|
||||
resolution: "@typescript-eslint/types@npm:4.18.0"
|
||||
checksum: 45d3df0c4993ceab017df2a4502bb2e3d9b21e6554997a539b88dfa5899c83bf6156a823d15eeb679e65dec15ab07ff371c6e5c09f98c166ed94f79a8223ffab
|
||||
"@typescript-eslint/types@npm:4.19.0":
|
||||
version: 4.19.0
|
||||
resolution: "@typescript-eslint/types@npm:4.19.0"
|
||||
checksum: 86378fece710a598683dc172ede1a871290b15329dc60c13674a1d18d9c41a51c4194b8a35f1a253d2ee2b7fc222b4d449329fc68d512e425f36e9b7fd3626bb
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/typescript-estree@npm:4.18.0, @typescript-eslint/typescript-estree@npm:^4.8.2":
|
||||
version: 4.18.0
|
||||
resolution: "@typescript-eslint/typescript-estree@npm:4.18.0"
|
||||
"@typescript-eslint/typescript-estree@npm:4.19.0, @typescript-eslint/typescript-estree@npm:^4.8.2":
|
||||
version: 4.19.0
|
||||
resolution: "@typescript-eslint/typescript-estree@npm:4.19.0"
|
||||
dependencies:
|
||||
"@typescript-eslint/types": 4.18.0
|
||||
"@typescript-eslint/visitor-keys": 4.18.0
|
||||
"@typescript-eslint/types": 4.19.0
|
||||
"@typescript-eslint/visitor-keys": 4.19.0
|
||||
debug: ^4.1.1
|
||||
globby: ^11.0.1
|
||||
is-glob: ^4.0.1
|
||||
@@ -2549,17 +2561,17 @@ __metadata:
|
||||
peerDependenciesMeta:
|
||||
typescript:
|
||||
optional: true
|
||||
checksum: b77e150d281d50aad89f915c05310b5f94fa2b1fc64eada20460d8a7f10c42d4c2a5ccffe185f128c965fc9bd209f77a0df8e1779af18b0a3a383241564ecc4b
|
||||
checksum: 446457f2532f24c12740ffe24453a4ad32c3fc2a4e35c6dd8b8d8cb114c925d37084c4541a7723cd22ccdd83f205bc513134a2db0b6304900609f5acf2f69665
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/visitor-keys@npm:4.18.0":
|
||||
version: 4.18.0
|
||||
resolution: "@typescript-eslint/visitor-keys@npm:4.18.0"
|
||||
"@typescript-eslint/visitor-keys@npm:4.19.0":
|
||||
version: 4.19.0
|
||||
resolution: "@typescript-eslint/visitor-keys@npm:4.19.0"
|
||||
dependencies:
|
||||
"@typescript-eslint/types": 4.18.0
|
||||
"@typescript-eslint/types": 4.19.0
|
||||
eslint-visitor-keys: ^2.0.0
|
||||
checksum: 654576d330531386773facffc715e213602721de8ca2f6268d71186a732975031954119fba414a4d502b4827b3941fae068ebb4368b4b7f94e937597b3f57d82
|
||||
checksum: d9cf3501ae69796850dcdadde7fdaa1f3fc27d54a380396cc6b67706f7d6329b0c35db9b23d96c83a4196a915681129fa6b324383fcee88f413e06f7d05edf16
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -9379,13 +9391,13 @@ fsevents@~2.1.2:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "root-workspace-0b6124@workspace:."
|
||||
dependencies:
|
||||
"@babel/core": ^7.13.10
|
||||
"@babel/core": ^7.13.13
|
||||
"@babel/register": ^7.13.8
|
||||
"@babel/runtime": ^7.13.10
|
||||
"@polkadot/dev": ^0.62.6
|
||||
"@polkadot/dev": ^0.62.7
|
||||
"@polkadot/ts": ^0.3.62
|
||||
"@polkadot/typegen": "workspace:packages/typegen"
|
||||
"@types/jest": ^26.0.21
|
||||
"@types/jest": ^26.0.22
|
||||
copyfiles: ^2.4.1
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
Reference in New Issue
Block a user