Compare commits

...
8 Commits
Author SHA1 Message Date
Github Actions b6af4b9877 [CI Skip] release/stable 4.4.1
skip-checks: true
2021-04-05 11:30:23 +00:00
Jaco Greeff 3f368e721d 4.4 (#3371)
* 4.4

* CHANGELOG
2021-04-05 13:20:18 +02:00
Github Actions 22b4257636 [CI Skip] release/beta 4.3.2-2
skip-checks: true
2021-04-03 06:15:11 +00:00
Jaco Greeff ca7a631032 Add cumulus ServiceQuality type (#3368) 2021-04-03 08:04:42 +02:00
Github Actions da5bbd17af [CI Skip] release/beta 4.3.2-1
skip-checks: true
2021-03-30 09:52:02 +00:00
Jaco Greeff b58f3f5c3e Multilocation update (X5-X8) (#3362) 2021-03-30 11:42:27 +02:00
Github Actions 8c30194f59 [CI Skip] release/beta 4.3.2-0
skip-checks: true
2021-03-30 09:03:06 +00:00
Jaco Greeff dc9ec37490 Add Polkadot 29 upgrade block (#3361) 2021-03-30 10:53:30 +02:00
25 changed files with 119 additions and 80 deletions
+11
View File
@@ -1,5 +1,16 @@
# 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.
+1 -1
View File
@@ -34,5 +34,5 @@
"@types/jest": "^26.0.22",
"copyfiles": "^2.4.1"
},
"version": "4.3.1"
"version": "4.4.1"
}
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/api-contract",
"version": "4.3.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.3.1",
"@polkadot/types": "4.3.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"
+1 -1
View File
@@ -3,4 +3,4 @@
// Auto-generated by @polkadot/dev, do not edit
export const packageInfo = { name: '@polkadot/api-contract', version: '4.3.1' };
export const packageInfo = { name: '@polkadot/api-contract', version: '4.4.1' };
+5 -5
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/api-derive",
"version": "4.3.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.3.1",
"@polkadot/rpc-core": "4.3.1",
"@polkadot/types": "4.3.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.3.1"
"@polkadot/rpc-provider": "4.4.1"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Auto-generated by @polkadot/dev, do not edit
export const packageInfo = { name: '@polkadot/api-derive', version: '4.3.1' };
export const packageInfo = { name: '@polkadot/api-derive', version: '4.4.1' };
+7 -7
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/api",
"version": "4.3.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.3.1",
"@polkadot/api-derive": "4.4.1",
"@polkadot/keyring": "^6.0.5",
"@polkadot/metadata": "4.3.1",
"@polkadot/rpc-core": "4.3.1",
"@polkadot/rpc-provider": "4.3.1",
"@polkadot/types": "4.3.1",
"@polkadot/types-known": "4.3.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",
+1 -1
View File
@@ -3,4 +3,4 @@
// Auto-generated by @polkadot/dev, do not edit
export const packageInfo = { name: '@polkadot/api', version: '4.3.1' };
export const packageInfo = { name: '@polkadot/api', version: '4.4.1' };
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/metadata",
"version": "4.3.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.3.1",
"@polkadot/types-known": "4.3.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"
+1 -1
View File
@@ -3,4 +3,4 @@
// Auto-generated by @polkadot/dev, do not edit
export const packageInfo = { name: '@polkadot/metadata', version: '4.3.1' };
export const packageInfo = { name: '@polkadot/metadata', version: '4.4.1' };
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/rpc-core",
"version": "4.3.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.3.1",
"@polkadot/rpc-provider": "4.3.1",
"@polkadot/types": "4.3.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"
},
+1 -1
View File
@@ -3,4 +3,4 @@
// Auto-generated by @polkadot/dev, do not edit
export const packageInfo = { name: '@polkadot/rpc-core', version: '4.3.1' };
export const packageInfo = { name: '@polkadot/rpc-core', version: '4.4.1' };
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/rpc-provider",
"version": "4.3.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.3.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.3.1",
"@polkadot/metadata": "4.4.1",
"mock-socket": "^9.0.3",
"nock": "^13.0.11"
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Auto-generated by @polkadot/dev, do not edit
export const packageInfo = { name: '@polkadot/rpc-provider', version: '4.3.1' };
export const packageInfo = { name: '@polkadot/rpc-provider', version: '4.4.1' };
+5 -5
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/typegen",
"version": "4.3.1",
"version": "4.4.1",
"type": "module",
"description": "Type generation scripts",
"main": "index.js",
@@ -26,10 +26,10 @@
"@babel/core": "^7.13.13",
"@babel/register": "^7.13.8",
"@babel/runtime": "^7.13.10",
"@polkadot/api": "4.3.1",
"@polkadot/metadata": "4.3.1",
"@polkadot/rpc-provider": "4.3.1",
"@polkadot/types": "4.3.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",
+1 -1
View File
@@ -3,4 +3,4 @@
// Auto-generated by @polkadot/dev, do not edit
export const packageInfo = { name: '@polkadot/typegen', version: '4.3.1' };
export const packageInfo = { name: '@polkadot/typegen', version: '4.4.1' };
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/types-known",
"version": "4.3.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.3.1",
"@polkadot/types": "4.4.1",
"@polkadot/util": "^6.0.5",
"bn.js": "^4.11.9"
},
+1 -1
View File
@@ -3,4 +3,4 @@
// Auto-generated by @polkadot/dev, do not edit
export const packageInfo = { name: '@polkadot/types-known', version: '4.3.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;
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@polkadot/types",
"version": "4.3.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.3.1",
"@polkadot/metadata": "4.4.1",
"@polkadot/util": "^6.0.5",
"@polkadot/util-crypto": "^6.0.5",
"@polkadot/x-rxjs": "^6.0.5",
+4 -1
View File
@@ -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',
@@ -407,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 */
@@ -687,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>;
+1 -1
View File
@@ -3,4 +3,4 @@
// Auto-generated by @polkadot/dev, do not edit
export const packageInfo = { name: '@polkadot/types', version: '4.3.1' };
export const packageInfo = { name: '@polkadot/types', version: '4.4.1' };
+32 -32
View File
@@ -1790,24 +1790,24 @@ __metadata:
resolution: "@polkadot/api-contract@workspace:packages/api-contract"
dependencies:
"@babel/runtime": ^7.13.10
"@polkadot/api": 4.3.1
"@polkadot/types": 4.3.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.3.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.3.1
"@polkadot/api": 4.4.1
"@polkadot/keyring": ^6.0.5
"@polkadot/rpc-core": 4.3.1
"@polkadot/rpc-provider": 4.3.1
"@polkadot/types": 4.3.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
@@ -1815,18 +1815,18 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/api@4.3.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.3.1
"@polkadot/api-derive": 4.4.1
"@polkadot/keyring": ^6.0.5
"@polkadot/metadata": 4.3.1
"@polkadot/rpc-core": 4.3.1
"@polkadot/rpc-provider": 4.3.1
"@polkadot/types": 4.3.1
"@polkadot/types-known": 4.3.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
@@ -1935,14 +1935,14 @@ __metadata:
languageName: node
linkType: hard
"@polkadot/metadata@4.3.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.3.1
"@polkadot/types-known": 4.3.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
@@ -1958,28 +1958,28 @@ __metadata:
languageName: node
linkType: hard
"@polkadot/rpc-core@4.3.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.3.1
"@polkadot/rpc-provider": 4.3.1
"@polkadot/types": 4.3.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.3.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.3.1
"@polkadot/types": 4.3.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
@@ -2008,10 +2008,10 @@ __metadata:
"@babel/core": ^7.13.13
"@babel/register": ^7.13.8
"@babel/runtime": ^7.13.10
"@polkadot/api": 4.3.1
"@polkadot/metadata": 4.3.1
"@polkadot/rpc-provider": 4.3.1
"@polkadot/types": 4.3.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.1
@@ -2027,26 +2027,26 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/types-known@4.3.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.3.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.3.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.3.1
"@polkadot/metadata": 4.4.1
"@polkadot/util": ^6.0.5
"@polkadot/util-crypto": ^6.0.5
"@polkadot/x-rxjs": ^6.0.5