diff --git a/CHANGELOG.md b/CHANGELOG.md index 17e25cdf940d..f9805eb25863 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 1.13.0-beta.x +# 1.13.1 May 6, 2020 - Add support for ECDSA keypairs in extrinsic signers (Thanks to https://github.com/akru) - Rework type generation to use templating for better maintenance (Thanks to https://github.com/xlc) @@ -8,6 +8,7 @@ - Revert error swallow for wrong preimage data (temp. override for Kusama upgrade with no migration) - Fix `.encodedLength` calculation on `[Type; N]` types - Update types & metadata as per latest Substrate master +- Adjust Centrifuge starting version # 1.12.2 Apr 30, 2020 diff --git a/lerna.json b/lerna.json index 05ab28578471..73932a0d9aeb 100644 --- a/lerna.json +++ b/lerna.json @@ -9,5 +9,5 @@ "packages": [ "packages/*" ], - "version": "1.13.0-beta.19" + "version": "1.13.0" } diff --git a/packages/api-contract/package.json b/packages/api-contract/package.json index 84e435fe233c..062e5c075345 100644 --- a/packages/api-contract/package.json +++ b/packages/api-contract/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/api-contract", - "version": "1.13.0-beta.19", + "version": "1.13.0", "description": "Interfaces for interacting with contracts and contract ABIs", "main": "index.js", "keywords": [ @@ -27,9 +27,9 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/api-contract#readme", "dependencies": { "@babel/runtime": "^7.9.6", - "@polkadot/api": "1.13.0-beta.19", - "@polkadot/rpc-core": "1.13.0-beta.19", - "@polkadot/types": "1.13.0-beta.19", + "@polkadot/api": "1.13.0", + "@polkadot/rpc-core": "1.13.0", + "@polkadot/types": "1.13.0", "@polkadot/util": "^2.9.1", "bn.js": "^5.1.1", "rxjs": "^6.5.5" diff --git a/packages/api-derive/package.json b/packages/api-derive/package.json index 179b3b7bd1e1..0fe2fc856ee3 100644 --- a/packages/api-derive/package.json +++ b/packages/api-derive/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/api-derive", - "version": "1.13.0-beta.19", + "version": "1.13.0", "description": "Common functions used across Polkadot, derived from RPC calls and storage queries.", "main": "index.js", "keywords": [ @@ -28,10 +28,10 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/api-derive#readme", "dependencies": { "@babel/runtime": "^7.9.6", - "@polkadot/api": "1.13.0-beta.19", - "@polkadot/rpc-core": "1.13.0-beta.19", - "@polkadot/rpc-provider": "1.13.0-beta.19", - "@polkadot/types": "1.13.0-beta.19", + "@polkadot/api": "1.13.0", + "@polkadot/rpc-core": "1.13.0", + "@polkadot/rpc-provider": "1.13.0", + "@polkadot/types": "1.13.0", "@polkadot/util": "^2.9.1", "@polkadot/util-crypto": "^2.9.1", "bn.js": "^5.1.1", diff --git a/packages/api/package.json b/packages/api/package.json index 7e369da3d271..1e4609f805fe 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/api", - "version": "1.13.0-beta.19", + "version": "1.13.0", "description": "Promise and RxJS wrappers around the Polkadot JS RPC", "main": "index.js", "keywords": [ @@ -27,13 +27,13 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/api#readme", "dependencies": { "@babel/runtime": "^7.9.6", - "@polkadot/api-derive": "1.13.0-beta.19", + "@polkadot/api-derive": "1.13.0", "@polkadot/keyring": "^2.9.1", - "@polkadot/metadata": "1.13.0-beta.19", - "@polkadot/rpc-core": "1.13.0-beta.19", - "@polkadot/rpc-provider": "1.13.0-beta.19", - "@polkadot/types": "1.13.0-beta.19", - "@polkadot/types-known": "1.13.0-beta.19", + "@polkadot/metadata": "1.13.0", + "@polkadot/rpc-core": "1.13.0", + "@polkadot/rpc-provider": "1.13.0", + "@polkadot/types": "1.13.0", + "@polkadot/types-known": "1.13.0", "@polkadot/util": "^2.9.1", "@polkadot/util-crypto": "^2.9.1", "bn.js": "^5.1.1", diff --git a/packages/api/src/augment/rpc.ts b/packages/api/src/augment/rpc.ts index 02503c72917b..e40af2067034 100644 --- a/packages/api/src/augment/rpc.ts +++ b/packages/api/src/augment/rpc.ts @@ -13,6 +13,7 @@ import { AuthorityId } from '@polkadot/types/interfaces/consensus'; import { ContractCallRequest, ContractExecResult } from '@polkadot/types/interfaces/contracts'; import { CreatedBlock } from '@polkadot/types/interfaces/engine'; import { Extrinsic } from '@polkadot/types/interfaces/extrinsics'; +import { ReportedRoundStates } from '@polkadot/types/interfaces/grandpa'; import { StorageKind } from '@polkadot/types/interfaces/offchain'; import { RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment'; import { RpcMethods } from '@polkadot/types/interfaces/rpc'; @@ -140,6 +141,12 @@ declare module '@polkadot/rpc-core/types.jsonrpc' { **/ finalizeBlock: AugmentedRpc<(hash: BlockHash | string | Uint8Array, justification?: Justification | string | Uint8Array) => Observable>; }; + grandpa: { + /** + * Returns the state of the current best round state as well as the ongoing background rounds + **/ + roundState: AugmentedRpc<() => Observable>; + }; offchain: { /** * Get offchain local storage under given key and prefix diff --git a/packages/metadata/package.json b/packages/metadata/package.json index 365a16ff4b59..0a112d4dd8ed 100644 --- a/packages/metadata/package.json +++ b/packages/metadata/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/metadata", - "version": "1.13.0-beta.19", + "version": "1.13.0", "description": "Helpers to extract information from runtime metadata", "main": "index.js", "publishConfig": { @@ -27,8 +27,8 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/type-metadata#readme", "dependencies": { "@babel/runtime": "^7.9.6", - "@polkadot/types": "1.13.0-beta.19", - "@polkadot/types-known": "1.13.0-beta.19", + "@polkadot/types": "1.13.0", + "@polkadot/types-known": "1.13.0", "@polkadot/util": "^2.9.1", "@polkadot/util-crypto": "^2.9.1", "bn.js": "^5.1.1" diff --git a/packages/rpc-core/package.json b/packages/rpc-core/package.json index 3e647f0013b2..cc2c303a4619 100644 --- a/packages/rpc-core/package.json +++ b/packages/rpc-core/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/rpc-core", - "version": "1.13.0-beta.19", + "version": "1.13.0", "description": "A JavaScript wrapper for the Polkadot JsonRPC interface", "main": "index.js", "keywords": [ @@ -27,9 +27,9 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/rpc-core#readme", "dependencies": { "@babel/runtime": "^7.9.6", - "@polkadot/metadata": "1.13.0-beta.19", - "@polkadot/rpc-provider": "1.13.0-beta.19", - "@polkadot/types": "1.13.0-beta.19", + "@polkadot/metadata": "1.13.0", + "@polkadot/rpc-provider": "1.13.0", + "@polkadot/types": "1.13.0", "@polkadot/util": "^2.9.1", "memoizee": "^0.4.14", "rxjs": "^6.5.5" diff --git a/packages/rpc-core/src/index.ts b/packages/rpc-core/src/index.ts index 2dd281193547..0a7ae19f2c50 100644 --- a/packages/rpc-core/src/index.ts +++ b/packages/rpc-core/src/index.ts @@ -89,6 +89,8 @@ export default class Rpc implements RpcInterface { public readonly engine!: RpcInterface['engine']; + public readonly grandpa!: RpcInterface['grandpa']; + public readonly offchain!: RpcInterface['offchain']; public readonly payment!: RpcInterface['payment']; diff --git a/packages/rpc-provider/package.json b/packages/rpc-provider/package.json index d03e958ba92c..e9096010aa91 100644 --- a/packages/rpc-provider/package.json +++ b/packages/rpc-provider/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/rpc-provider", - "version": "1.13.0-beta.19", + "version": "1.13.0", "description": "Transport providers for the API", "main": "index.js", "keywords": [ @@ -27,8 +27,8 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/rpc-provider#readme", "dependencies": { "@babel/runtime": "^7.9.6", - "@polkadot/metadata": "1.13.0-beta.19", - "@polkadot/types": "1.13.0-beta.19", + "@polkadot/metadata": "1.13.0", + "@polkadot/types": "1.13.0", "@polkadot/util": "^2.9.1", "@polkadot/util-crypto": "^2.9.1", "bn.js": "^5.1.1", diff --git a/packages/typegen/package.json b/packages/typegen/package.json index 2c41a979736b..d8bfe1f0344e 100644 --- a/packages/typegen/package.json +++ b/packages/typegen/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/typegen", - "version": "1.13.0-beta.19", + "version": "1.13.0", "description": "Type generation scripts", "main": "index.js", "bin": { @@ -36,10 +36,10 @@ "@babel/core": "^7.9.6", "@babel/register": "^7.9.0", "@babel/runtime": "^7.9.6", - "@polkadot/api": "1.13.0-beta.19", - "@polkadot/metadata": "1.13.0-beta.19", - "@polkadot/rpc-provider": "1.13.0-beta.19", - "@polkadot/types": "1.13.0-beta.19", + "@polkadot/api": "1.13.0", + "@polkadot/metadata": "1.13.0", + "@polkadot/rpc-provider": "1.13.0", + "@polkadot/types": "1.13.0", "@polkadot/util": "^2.9.1", "handlebars": "^4.7.6", "websocket": "^1.0.31", diff --git a/packages/types-known/package.json b/packages/types-known/package.json index 4c57ba293356..624fba1c1c98 100644 --- a/packages/types-known/package.json +++ b/packages/types-known/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/types-known", - "version": "1.13.0-beta.19", + "version": "1.13.0", "description": "A JavaScript wrapper for the Polkadot JsonRPC interface", "main": "index.js", "keywords": [ @@ -27,7 +27,7 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/types-known#readme", "dependencies": { "@babel/runtime": "^7.9.6", - "@polkadot/types": "1.13.0-beta.19", + "@polkadot/types": "1.13.0", "@polkadot/util": "^2.9.1", "bn.js": "^5.1.1" }, diff --git a/packages/types/package.json b/packages/types/package.json index 5c6ebbc347aa..41dd7738b7b6 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/types", - "version": "1.13.0-beta.19", + "version": "1.13.0", "description": "Implementation of the Parity codec", "main": "index.js", "keywords": [ @@ -27,7 +27,7 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/types#readme", "dependencies": { "@babel/runtime": "^7.9.6", - "@polkadot/metadata": "1.13.0-beta.19", + "@polkadot/metadata": "1.13.0", "@polkadot/util": "^2.9.1", "@polkadot/util-crypto": "^2.9.1", "@types/bn.js": "^4.11.6", diff --git a/packages/types/src/augment/registry.ts b/packages/types/src/augment/registry.ts index f9698c738332..caa60cb5c6aa 100644 --- a/packages/types/src/augment/registry.ts +++ b/packages/types/src/augment/registry.ts @@ -21,7 +21,7 @@ import { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine'; import { Account, Log } from '@polkadot/types/interfaces/evm'; import { EcdsaSignature, Ed25519Signature, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV1, ExtrinsicPayloadV2, ExtrinsicPayloadV3, ExtrinsicPayloadV4, ExtrinsicSignatureV1, ExtrinsicSignatureV2, ExtrinsicSignatureV3, ExtrinsicSignatureV4, ExtrinsicUnknown, ExtrinsicV1, ExtrinsicV2, ExtrinsicV3, ExtrinsicV4, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from '@polkadot/types/interfaces/extrinsics'; import { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset'; -import { AuthorityIndex, AuthorityList, AuthorityWeight, Equivocation, EquivocationProof, GrandpaEquivocation, GrandpaPrevote, KeyOwnerProof, NextAuthority, PendingPause, PendingResume, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa'; +import { AuthorityIndex, AuthorityList, AuthorityWeight, Equivocation, EquivocationProof, GrandpaEquivocation, GrandpaPrevote, KeyOwnerProof, NextAuthority, PendingPause, PendingResume, Precommits, Prevotes, ReportedRoundStates, RoundState, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa'; import { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement } from '@polkadot/types/interfaces/identity'; import { AuthIndex, AuthoritySignature, Heartbeat, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline'; import { CallMetadataV0, DoubleMapTypeLatest, DoubleMapTypeV10, DoubleMapTypeV11, DoubleMapTypeV3, DoubleMapTypeV4, DoubleMapTypeV5, DoubleMapTypeV6, DoubleMapTypeV7, DoubleMapTypeV8, DoubleMapTypeV9, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV8, ErrorMetadataV9, EventMetadataLatest, EventMetadataV0, EventMetadataV1, EventMetadataV10, EventMetadataV11, EventMetadataV2, EventMetadataV3, EventMetadataV4, EventMetadataV5, EventMetadataV6, EventMetadataV7, EventMetadataV8, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV0, FunctionArgumentMetadataV1, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV2, FunctionArgumentMetadataV3, FunctionArgumentMetadataV4, FunctionArgumentMetadataV5, FunctionArgumentMetadataV6, FunctionArgumentMetadataV7, FunctionArgumentMetadataV8, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV0, FunctionMetadataV1, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV2, FunctionMetadataV3, FunctionMetadataV4, FunctionMetadataV5, FunctionMetadataV6, FunctionMetadataV7, FunctionMetadataV8, FunctionMetadataV9, MapTypeLatest, MapTypeV0, MapTypeV10, MapTypeV11, MapTypeV2, MapTypeV3, MapTypeV4, MapTypeV5, MapTypeV6, MapTypeV7, MapTypeV8, MapTypeV9, MetadataAll, MetadataLatest, MetadataV0, MetadataV1, MetadataV10, MetadataV11, MetadataV2, MetadataV3, MetadataV4, MetadataV5, MetadataV6, MetadataV7, MetadataV8, MetadataV9, ModuleConstantMetadataLatest, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV6, ModuleConstantMetadataV7, ModuleConstantMetadataV8, ModuleConstantMetadataV9, ModuleMetadataLatest, ModuleMetadataV0, ModuleMetadataV1, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV2, ModuleMetadataV3, ModuleMetadataV4, ModuleMetadataV5, ModuleMetadataV6, ModuleMetadataV7, ModuleMetadataV8, ModuleMetadataV9, OuterDispatchCallV0, OuterDispatchMetadataV0, OuterEventEventMetadataEventsV0, OuterEventEventMetadataV0, OuterEventMetadataV0, PlainTypeLatest, PlainTypeV0, PlainTypeV10, PlainTypeV11, PlainTypeV2, PlainTypeV3, PlainTypeV4, PlainTypeV5, PlainTypeV6, PlainTypeV7, PlainTypeV8, PlainTypeV9, RuntimeModuleMetadataV0, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV6, StorageEntryMetadataV7, StorageEntryMetadataV8, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV6, StorageEntryModifierV7, StorageEntryModifierV8, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV6, StorageEntryTypeV7, StorageEntryTypeV8, StorageEntryTypeV9, StorageFunctionMetadataV0, StorageFunctionMetadataV1, StorageFunctionMetadataV2, StorageFunctionMetadataV3, StorageFunctionMetadataV4, StorageFunctionMetadataV5, StorageFunctionModifierV0, StorageFunctionModifierV1, StorageFunctionModifierV2, StorageFunctionModifierV3, StorageFunctionModifierV4, StorageFunctionModifierV5, StorageFunctionTypeV0, StorageFunctionTypeV1, StorageFunctionTypeV2, StorageFunctionTypeV3, StorageFunctionTypeV4, StorageFunctionTypeV5, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV4, StorageHasherV5, StorageHasherV6, StorageHasherV7, StorageHasherV8, StorageHasherV9, StorageMetadataLatest, StorageMetadataV0, StorageMetadataV10, StorageMetadataV11, StorageMetadataV7, StorageMetadataV8, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata'; @@ -657,6 +657,18 @@ declare module '@polkadot/types/types/registry' { PendingResume: PendingResume; 'Option': Option; 'Vec': Vec; + Precommits: Precommits; + 'Option': Option; + 'Vec': Vec; + Prevotes: Prevotes; + 'Option': Option; + 'Vec': Vec; + ReportedRoundStates: ReportedRoundStates; + 'Option': Option; + 'Vec': Vec; + RoundState: RoundState; + 'Option': Option; + 'Vec': Vec; SetId: SetId; 'Compact': Compact; 'Option': Option; diff --git a/packages/types/src/interfaces/grandpa/definitions.ts b/packages/types/src/interfaces/grandpa/definitions.ts index 28d77a300f77..0e18bc1fa37c 100644 --- a/packages/types/src/interfaces/grandpa/definitions.ts +++ b/packages/types/src/interfaces/grandpa/definitions.ts @@ -8,7 +8,13 @@ import { Definitions } from '../../types'; export default { - rpc: {}, + rpc: { + roundState: { + description: 'Returns the state of the current best round state as well as the ongoing background rounds', + params: [], + type: 'ReportedRoundStates' + } + }, types: { AuthorityIndex: 'u64', AuthorityList: 'Vec', @@ -47,6 +53,26 @@ export default { /// Number of blocks after which the change will be enacted. delay: 'BlockNumber' }, + Precommits: { + currentWeight: 'u32', + missing: 'BTreeSet' + }, + Prevotes: { + currentWeight: 'u32', + missing: 'BTreeSet' + }, + ReportedRoundStates: { + setId: 'u32', + best: 'RoundState', + background: 'Vec' + }, + RoundState: { + round: 'u32', + totalWeight: 'u32', + thresholdWeight: 'u32', + prevotes: 'Prevotes', + precommits: 'Precommits' + }, SetId: 'u64', StoredPendingChange: { scheduledAt: 'BlockNumber', diff --git a/packages/types/src/interfaces/grandpa/types.ts b/packages/types/src/interfaces/grandpa/types.ts index 8dde9b92d593..443e0b168143 100644 --- a/packages/types/src/interfaces/grandpa/types.ts +++ b/packages/types/src/interfaces/grandpa/types.ts @@ -2,8 +2,8 @@ /* eslint-disable */ import { ITuple } from '@polkadot/types/types'; -import { Enum, Struct, Vec } from '@polkadot/types/codec'; -import { u64 } from '@polkadot/types/primitive'; +import { BTreeSet, Enum, Struct, Vec } from '@polkadot/types/codec'; +import { u32, u64 } from '@polkadot/types/primitive'; import { AuthorityId } from '@polkadot/types/interfaces/consensus'; import { AuthoritySignature } from '@polkadot/types/interfaces/imOnline'; import { BlockNumber, Hash } from '@polkadot/types/interfaces/runtime'; @@ -64,6 +64,34 @@ export interface PendingResume extends Struct { readonly delay: BlockNumber; } +/** @name Precommits */ +export interface Precommits extends Struct { + readonly currentWeight: u32; + readonly missing: BTreeSet; +} + +/** @name Prevotes */ +export interface Prevotes extends Struct { + readonly currentWeight: u32; + readonly missing: BTreeSet; +} + +/** @name ReportedRoundStates */ +export interface ReportedRoundStates extends Struct { + readonly setId: u32; + readonly best: RoundState; + readonly background: Vec; +} + +/** @name RoundState */ +export interface RoundState extends Struct { + readonly round: u32; + readonly totalWeight: u32; + readonly thresholdWeight: u32; + readonly prevotes: Prevotes; + readonly precommits: Precommits; +} + /** @name SetId */ export interface SetId extends u64 {} diff --git a/yarn.lock b/yarn.lock index 7c37a80e8206..b1023d4c7c07 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2621,25 +2621,25 @@ __metadata: resolution: "@polkadot/api-contract@workspace:packages/api-contract" dependencies: "@babel/runtime": ^7.9.6 - "@polkadot/api": 1.13.0-beta.19 - "@polkadot/rpc-core": 1.13.0-beta.19 - "@polkadot/types": 1.13.0-beta.19 + "@polkadot/api": 1.13.0 + "@polkadot/rpc-core": 1.13.0 + "@polkadot/types": 1.13.0 "@polkadot/util": ^2.9.1 bn.js: ^5.1.1 rxjs: ^6.5.5 languageName: unknown linkType: soft -"@polkadot/api-derive@1.13.0-beta.19, @polkadot/api-derive@workspace:packages/api-derive": +"@polkadot/api-derive@1.13.0, @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.9.6 - "@polkadot/api": 1.13.0-beta.19 + "@polkadot/api": 1.13.0 "@polkadot/keyring": ^2.9.1 - "@polkadot/rpc-core": 1.13.0-beta.19 - "@polkadot/rpc-provider": 1.13.0-beta.19 - "@polkadot/types": 1.13.0-beta.19 + "@polkadot/rpc-core": 1.13.0 + "@polkadot/rpc-provider": 1.13.0 + "@polkadot/types": 1.13.0 "@polkadot/util": ^2.9.1 "@polkadot/util-crypto": ^2.9.1 bn.js: ^5.1.1 @@ -2648,18 +2648,18 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/api@1.13.0-beta.19, @polkadot/api@workspace:packages/api": +"@polkadot/api@1.13.0, @polkadot/api@workspace:packages/api": version: 0.0.0-use.local resolution: "@polkadot/api@workspace:packages/api" dependencies: "@babel/runtime": ^7.9.6 - "@polkadot/api-derive": 1.13.0-beta.19 + "@polkadot/api-derive": 1.13.0 "@polkadot/keyring": ^2.9.1 - "@polkadot/metadata": 1.13.0-beta.19 - "@polkadot/rpc-core": 1.13.0-beta.19 - "@polkadot/rpc-provider": 1.13.0-beta.19 - "@polkadot/types": 1.13.0-beta.19 - "@polkadot/types-known": 1.13.0-beta.19 + "@polkadot/metadata": 1.13.0 + "@polkadot/rpc-core": 1.13.0 + "@polkadot/rpc-provider": 1.13.0 + "@polkadot/types": 1.13.0 + "@polkadot/types-known": 1.13.0 "@polkadot/util": ^2.9.1 "@polkadot/util-crypto": ^2.9.1 bn.js: ^5.1.1 @@ -2766,43 +2766,43 @@ __metadata: languageName: node linkType: hard -"@polkadot/metadata@1.13.0-beta.19, @polkadot/metadata@workspace:packages/metadata": +"@polkadot/metadata@1.13.0, @polkadot/metadata@workspace:packages/metadata": version: 0.0.0-use.local resolution: "@polkadot/metadata@workspace:packages/metadata" dependencies: "@babel/runtime": ^7.9.6 "@polkadot/keyring": ^2.9.1 - "@polkadot/types": 1.13.0-beta.19 - "@polkadot/types-known": 1.13.0-beta.19 + "@polkadot/types": 1.13.0 + "@polkadot/types-known": 1.13.0 "@polkadot/util": ^2.9.1 "@polkadot/util-crypto": ^2.9.1 bn.js: ^5.1.1 languageName: unknown linkType: soft -"@polkadot/rpc-core@1.13.0-beta.19, @polkadot/rpc-core@workspace:packages/rpc-core": +"@polkadot/rpc-core@1.13.0, @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.9.6 "@polkadot/keyring": ^2.9.1 - "@polkadot/metadata": 1.13.0-beta.19 - "@polkadot/rpc-provider": 1.13.0-beta.19 - "@polkadot/types": 1.13.0-beta.19 + "@polkadot/metadata": 1.13.0 + "@polkadot/rpc-provider": 1.13.0 + "@polkadot/types": 1.13.0 "@polkadot/util": ^2.9.1 memoizee: ^0.4.14 rxjs: ^6.5.5 languageName: unknown linkType: soft -"@polkadot/rpc-provider@1.13.0-beta.19, @polkadot/rpc-provider@workspace:packages/rpc-provider": +"@polkadot/rpc-provider@1.13.0, @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.9.6 "@polkadot/keyring": ^2.9.1 - "@polkadot/metadata": 1.13.0-beta.19 - "@polkadot/types": 1.13.0-beta.19 + "@polkadot/metadata": 1.13.0 + "@polkadot/types": 1.13.0 "@polkadot/util": ^2.9.1 "@polkadot/util-crypto": ^2.9.1 bn.js: ^5.1.1 @@ -2830,10 +2830,10 @@ __metadata: "@babel/core": ^7.9.6 "@babel/register": ^7.9.0 "@babel/runtime": ^7.9.6 - "@polkadot/api": 1.13.0-beta.19 - "@polkadot/metadata": 1.13.0-beta.19 - "@polkadot/rpc-provider": 1.13.0-beta.19 - "@polkadot/types": 1.13.0-beta.19 + "@polkadot/api": 1.13.0 + "@polkadot/metadata": 1.13.0 + "@polkadot/rpc-provider": 1.13.0 + "@polkadot/types": 1.13.0 "@polkadot/util": ^2.9.1 "@types/websocket": ^1.0.0 "@types/yargs": ^15.0.4 @@ -2849,25 +2849,25 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/types-known@1.13.0-beta.19, @polkadot/types-known@workspace:packages/types-known": +"@polkadot/types-known@1.13.0, @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.9.6 - "@polkadot/types": 1.13.0-beta.19 + "@polkadot/types": 1.13.0 "@polkadot/util": ^2.9.1 "@types/bn.js": ^4.11.6 bn.js: ^5.1.1 languageName: unknown linkType: soft -"@polkadot/types@1.13.0-beta.19, @polkadot/types@workspace:packages/types": +"@polkadot/types@1.13.0, @polkadot/types@workspace:packages/types": version: 0.0.0-use.local resolution: "@polkadot/types@workspace:packages/types" dependencies: "@babel/runtime": ^7.9.6 "@polkadot/keyring": ^2.9.1 - "@polkadot/metadata": 1.13.0-beta.19 + "@polkadot/metadata": 1.13.0 "@polkadot/util": ^2.9.1 "@polkadot/util-crypto": ^2.9.1 "@types/bn.js": ^4.11.6