Skip to content

Commit ec45d3f

Browse files
api, api-{augment, base, contract, derive}, rpc-{augment, core, provider}, types, types-{augment, codec, create, known} 9.0.1
1 parent 08fd599 commit ec45d3f

File tree

483 files changed

+1772
-1890
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

483 files changed

+1772
-1890
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## master
44

5+
- api, api-{augment, base, contract, derive}, rpc-{augment, core, provider}, types, types-{augment, codec, create, known} 9.0.1
56
- phishing 0.18.2
67
- hw-{ledger, ledger-transports}, keyring, networks, util, util-crypto, x-{bigint, fetch, global, randomvalues, textdecoder, textencoder, ws} 10.1.2
78

api-augment/base.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
// SPDX-License-Identifier: Apache-2.0
33

44
// for the API, we decorate not only the endpoints, but all types
5-
import 'https://deno.land/x/polkadot@0.0.8/rpc-augment/mod.ts';
6-
import 'https://deno.land/x/polkadot@0.0.8/types-augment/mod.ts';
5+
import 'https://deno.land/x/polkadot/rpc-augment/mod.ts';
6+
import 'https://deno.land/x/polkadot/types-augment/mod.ts';

api-augment/detectOther.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright 2017-2022 @polkadot/api-augment authors & contributors
22
// SPDX-License-Identifier: Apache-2.0
33

4-
import { packageInfo as baseInfo } from 'https://deno.land/x/polkadot@0.0.8/api-base/packageInfo.ts';
5-
import { packageInfo as typesInfo } from 'https://deno.land/x/polkadot@0.0.8/types/packageInfo.ts';
6-
import { packageInfo as codecInfo } from 'https://deno.land/x/polkadot@0.0.8/types-codec/packageInfo.ts';
4+
import { packageInfo as baseInfo } from 'https://deno.land/x/polkadot/api-base/packageInfo.ts';
5+
import { packageInfo as typesInfo } from 'https://deno.land/x/polkadot/types/packageInfo.ts';
6+
import { packageInfo as codecInfo } from 'https://deno.land/x/polkadot/types-codec/packageInfo.ts';
77

88
export default [baseInfo, typesInfo, codecInfo];

api-augment/detectPackage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
// Do not edit, auto-generated by @polkadot/dev
55

6-
import { detectPackage } from 'https://deno.land/x/polkadot@0.0.8/util/mod.ts';
6+
import { detectPackage } from 'https://deno.land/x/polkadot/util/mod.ts';
77

88
import others from './detectOther.ts';
99
import { packageInfo } from './packageInfo.ts';

api-augment/kusama/consts.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33

44
// import type lookup before we augment - in some environments
55
// this is required to allow for ambient/previous definitions
6-
import 'https://deno.land/x/polkadot@0.0.8/api-base/types/consts.ts';
6+
import 'https://deno.land/x/polkadot/api-base/types/consts.ts';
77

8-
import type { ApiTypes, AugmentedConst } from 'https://deno.land/x/polkadot@0.0.8/api-base/types/index.ts';
9-
import type { Bytes, Option, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from 'https://deno.land/x/polkadot@0.0.8/types-codec/mod.ts';
10-
import type { Codec } from 'https://deno.land/x/polkadot@0.0.8/types-codec/types/index.ts';
11-
import type { Perbill, Percent, Permill } from 'https://deno.land/x/polkadot@0.0.8/types/interfaces/runtime/index.ts';
12-
import type { FrameSupportPalletId, FrameSupportWeightsRuntimeDbWeight, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion } from 'https://deno.land/x/polkadot@0.0.8/types/lookup.ts';
8+
import type { ApiTypes, AugmentedConst } from 'https://deno.land/x/polkadot/api-base/types/index.ts';
9+
import type { Bytes, Option, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from 'https://deno.land/x/polkadot/types-codec/mod.ts';
10+
import type { Codec } from 'https://deno.land/x/polkadot/types-codec/types/index.ts';
11+
import type { Perbill, Percent, Permill } from 'https://deno.land/x/polkadot/types/interfaces/runtime/index.ts';
12+
import type { FrameSupportPalletId, FrameSupportWeightsRuntimeDbWeight, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion } from 'https://deno.land/x/polkadot/types/lookup.ts';
1313

1414
export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
1515

16-
declare module 'https://deno.land/x/polkadot@0.0.8/api-base/types/consts.ts' {
16+
declare module 'https://deno.land/x/polkadot/api-base/types/consts.ts' {
1717
interface AugmentedConsts<ApiType extends ApiTypes> {
1818
auctions: {
1919
/**

api-augment/kusama/errors.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33

44
// import type lookup before we augment - in some environments
55
// this is required to allow for ambient/previous definitions
6-
import 'https://deno.land/x/polkadot@0.0.8/api-base/types/errors.ts';
6+
import 'https://deno.land/x/polkadot/api-base/types/errors.ts';
77

8-
import type { ApiTypes, AugmentedError } from 'https://deno.land/x/polkadot@0.0.8/api-base/types/index.ts';
8+
import type { ApiTypes, AugmentedError } from 'https://deno.land/x/polkadot/api-base/types/index.ts';
99

1010
export type __AugmentedError<ApiType extends ApiTypes> = AugmentedError<ApiType>;
1111

12-
declare module 'https://deno.land/x/polkadot@0.0.8/api-base/types/errors.ts' {
12+
declare module 'https://deno.land/x/polkadot/api-base/types/errors.ts' {
1313
interface AugmentedErrors<ApiType extends ApiTypes> {
1414
auctions: {
1515
/**

api-augment/kusama/events.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33

44
// import type lookup before we augment - in some environments
55
// this is required to allow for ambient/previous definitions
6-
import 'https://deno.land/x/polkadot@0.0.8/api-base/types/events.ts';
6+
import 'https://deno.land/x/polkadot/api-base/types/events.ts';
77

8-
import type { ApiTypes, AugmentedEvent } from 'https://deno.land/x/polkadot@0.0.8/api-base/types/index.ts';
9-
import type { Bytes, Null, Option, Result, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from 'https://deno.land/x/polkadot@0.0.8/types-codec/mod.ts';
10-
import type { ITuple } from 'https://deno.land/x/polkadot@0.0.8/types-codec/types/index.ts';
11-
import type { EthereumAddress } from 'https://deno.land/x/polkadot@0.0.8/types/interfaces/eth/index.ts';
12-
import type { AccountId32, H256 } from 'https://deno.land/x/polkadot@0.0.8/types/interfaces/runtime/index.ts';
13-
import type { FrameSupportScheduleLookupError, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, KusamaRuntimeProxyType, PalletDemocracyVoteAccountVote, PalletDemocracyVoteThreshold, PalletElectionProviderMultiPhaseElectionCompute, PalletImOnlineSr25519AppSr25519Public, PalletMultisigTimepoint, PalletNominationPoolsPoolState, PalletStakingExposure, PalletStakingValidatorPrefs, PolkadotParachainPrimitivesHrmpChannelId, PolkadotPrimitivesV2CandidateReceipt, PolkadotRuntimeParachainsDisputesDisputeLocation, PolkadotRuntimeParachainsDisputesDisputeResult, SpFinalityGrandpaAppPublic, SpRuntimeDispatchError, XcmV1MultiLocation, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from 'https://deno.land/x/polkadot@0.0.8/types/lookup.ts';
8+
import type { ApiTypes, AugmentedEvent } from 'https://deno.land/x/polkadot/api-base/types/index.ts';
9+
import type { Bytes, Null, Option, Result, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from 'https://deno.land/x/polkadot/types-codec/mod.ts';
10+
import type { ITuple } from 'https://deno.land/x/polkadot/types-codec/types/index.ts';
11+
import type { EthereumAddress } from 'https://deno.land/x/polkadot/types/interfaces/eth/index.ts';
12+
import type { AccountId32, H256 } from 'https://deno.land/x/polkadot/types/interfaces/runtime/index.ts';
13+
import type { FrameSupportScheduleLookupError, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, KusamaRuntimeProxyType, PalletDemocracyVoteAccountVote, PalletDemocracyVoteThreshold, PalletElectionProviderMultiPhaseElectionCompute, PalletImOnlineSr25519AppSr25519Public, PalletMultisigTimepoint, PalletNominationPoolsPoolState, PalletStakingExposure, PalletStakingValidatorPrefs, PolkadotParachainPrimitivesHrmpChannelId, PolkadotPrimitivesV2CandidateReceipt, PolkadotRuntimeParachainsDisputesDisputeLocation, PolkadotRuntimeParachainsDisputesDisputeResult, SpFinalityGrandpaAppPublic, SpRuntimeDispatchError, XcmV1MultiLocation, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from 'https://deno.land/x/polkadot/types/lookup.ts';
1414

1515
export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;
1616

17-
declare module 'https://deno.land/x/polkadot@0.0.8/api-base/types/events.ts' {
17+
declare module 'https://deno.land/x/polkadot/api-base/types/events.ts' {
1818
interface AugmentedEvents<ApiType extends ApiTypes> {
1919
auctions: {
2020
/**
@@ -585,12 +585,12 @@ declare module 'https://deno.land/x/polkadot@0.0.8/api-base/types/events.ts' {
585585
* pool.
586586
* - `points` is the number of points that are issued as a result of `balance` being
587587
* dissolved into the corresponding unbonding pool.
588-
*
588+
* - `era` is the era in which the balance will be unbonded.
589589
* In the absence of slashing, these values will match. In the presence of slashing, the
590590
* number of points that are issued in the unbonding pool will be less than the amount
591591
* requested to be unbonded.
592592
**/
593-
Unbonded: AugmentedEvent<ApiType, [member: AccountId32, poolId: u32, balance: u128, points: u128], { member: AccountId32, poolId: u32, balance: u128, points: u128 }>;
593+
Unbonded: AugmentedEvent<ApiType, [member: AccountId32, poolId: u32, balance: u128, points: u128, era: u32], { member: AccountId32, poolId: u32, balance: u128, points: u128, era: u32 }>;
594594
/**
595595
* The unbond pool at `era` of pool `pool_id` has been slashed to `balance`.
596596
**/

api-augment/kusama/query.ts

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33

44
// import type lookup before we augment - in some environments
55
// this is required to allow for ambient/previous definitions
6-
import 'https://deno.land/x/polkadot@0.0.8/api-base/types/storage.ts';
6+
import 'https://deno.land/x/polkadot/api-base/types/storage.ts';
77

8-
import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from 'https://deno.land/x/polkadot@0.0.8/api-base/types/index.ts';
9-
import type { Data } from 'https://deno.land/x/polkadot@0.0.8/types/mod.ts';
10-
import type { BTreeMap, Bytes, Null, Option, U8aFixed, Vec, WrapperKeepOpaque, WrapperOpaque, bool, u128, u32, u64 } from 'https://deno.land/x/polkadot@0.0.8/types-codec/mod.ts';
11-
import type { AnyNumber, ITuple } from 'https://deno.land/x/polkadot@0.0.8/types-codec/types/index.ts';
12-
import type { EthereumAddress } from 'https://deno.land/x/polkadot@0.0.8/types/interfaces/eth/index.ts';
13-
import type { AccountId32, Call, H256, Perbill, Percent } from 'https://deno.land/x/polkadot@0.0.8/types/interfaces/runtime/index.ts';
14-
import type { FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, KusamaRuntimeSessionKeys, PalletAuthorshipUncleEntryItem, PalletBagsListListBag, PalletBagsListListNode, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletBountiesBounty, PalletChildBountiesChildBounty, PalletCollectiveVotes, PalletDemocracyPreimageStatus, PalletDemocracyReferendumInfo, PalletDemocracyReleases, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletElectionProviderMultiPhasePhase, PalletElectionProviderMultiPhaseReadySolution, PalletElectionProviderMultiPhaseRoundSnapshot, PalletElectionProviderMultiPhaseSignedSignedSubmission, PalletElectionProviderMultiPhaseSolutionOrSnapshotSize, PalletElectionsPhragmenSeatHolder, PalletElectionsPhragmenVoter, PalletGiltActiveGilt, PalletGiltActiveGiltsTotal, PalletGiltGiltBid, PalletGrandpaStoredPendingChange, PalletGrandpaStoredState, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletImOnlineBoundedOpaqueNetworkState, PalletImOnlineSr25519AppSr25519Public, PalletMultisigMultisig, PalletNominationPoolsBondedPoolInner, PalletNominationPoolsPoolMember, PalletNominationPoolsRewardPool, PalletNominationPoolsSubPools, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyProxyDefinition, PalletRecoveryActiveRecovery, PalletRecoveryRecoveryConfig, PalletSchedulerScheduledV3, PalletSocietyBid, PalletSocietyBidKind, PalletSocietyVote, PalletSocietyVouchingStatus, PalletStakingActiveEraInfo, PalletStakingEraRewardPoints, PalletStakingExposure, PalletStakingForcing, PalletStakingNominations, PalletStakingReleases, PalletStakingRewardDestination, PalletStakingSlashingSlashingSpans, PalletStakingSlashingSpanRecord, PalletStakingStakingLedger, PalletStakingUnappliedSlash, PalletStakingValidatorPrefs, PalletTipsOpenTip, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletVestingReleases, PalletVestingVestingInfo, PalletXcmQueryStatus, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotParachainPrimitivesHrmpChannelId, PolkadotPrimitivesV2AssignmentAppPublic, PolkadotPrimitivesV2CandidateCommitments, PolkadotPrimitivesV2CoreOccupied, PolkadotPrimitivesV2DisputeState, PolkadotPrimitivesV2ScrapedOnChainVotes, PolkadotPrimitivesV2SessionInfo, PolkadotPrimitivesV2UpgradeGoAhead, PolkadotPrimitivesV2UpgradeRestriction, PolkadotPrimitivesV2ValidatorAppPublic, PolkadotRuntimeCommonClaimsStatementKind, PolkadotRuntimeCommonCrowdloanFundInfo, PolkadotRuntimeCommonParasRegistrarParaInfo, PolkadotRuntimeParachainsConfigurationHostConfiguration, PolkadotRuntimeParachainsHrmpHrmpChannel, PolkadotRuntimeParachainsHrmpHrmpOpenChannelRequest, PolkadotRuntimeParachainsInclusionAvailabilityBitfieldRecord, PolkadotRuntimeParachainsInclusionCandidatePendingAvailability, PolkadotRuntimeParachainsInitializerBufferedSessionChange, PolkadotRuntimeParachainsParasParaGenesisArgs, PolkadotRuntimeParachainsParasParaLifecycle, PolkadotRuntimeParachainsParasParaPastCodeMeta, PolkadotRuntimeParachainsParasPvfCheckActiveVoteState, PolkadotRuntimeParachainsSchedulerCoreAssignment, PolkadotRuntimeParachainsSchedulerParathreadClaimQueue, SpConsensusBabeAppPublic, SpConsensusBabeBabeEpochConfiguration, SpConsensusBabeDigestsNextConfigDescriptor, SpConsensusBabeDigestsPreDigest, SpCoreCryptoKeyTypeId, SpNposElectionsElectionScore, SpRuntimeDigest, SpStakingOffenceOffenceDetails, XcmVersionedMultiLocation } from 'https://deno.land/x/polkadot@0.0.8/types/lookup.ts';
15-
import type { Observable } from 'https://deno.land/x/polkadot@0.0.8/types/types/index.ts';
8+
import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from 'https://deno.land/x/polkadot/api-base/types/index.ts';
9+
import type { Data } from 'https://deno.land/x/polkadot/types/mod.ts';
10+
import type { BTreeMap, Bytes, Null, Option, U8aFixed, Vec, WrapperKeepOpaque, WrapperOpaque, bool, u128, u32, u64 } from 'https://deno.land/x/polkadot/types-codec/mod.ts';
11+
import type { AnyNumber, ITuple } from 'https://deno.land/x/polkadot/types-codec/types/index.ts';
12+
import type { EthereumAddress } from 'https://deno.land/x/polkadot/types/interfaces/eth/index.ts';
13+
import type { AccountId32, Call, H256, Perbill, Percent } from 'https://deno.land/x/polkadot/types/interfaces/runtime/index.ts';
14+
import type { FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, KusamaRuntimeSessionKeys, PalletAuthorshipUncleEntryItem, PalletBagsListListBag, PalletBagsListListNode, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletBountiesBounty, PalletChildBountiesChildBounty, PalletCollectiveVotes, PalletDemocracyPreimageStatus, PalletDemocracyReferendumInfo, PalletDemocracyReleases, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletElectionProviderMultiPhasePhase, PalletElectionProviderMultiPhaseReadySolution, PalletElectionProviderMultiPhaseRoundSnapshot, PalletElectionProviderMultiPhaseSignedSignedSubmission, PalletElectionProviderMultiPhaseSolutionOrSnapshotSize, PalletElectionsPhragmenSeatHolder, PalletElectionsPhragmenVoter, PalletGiltActiveGilt, PalletGiltActiveGiltsTotal, PalletGiltGiltBid, PalletGrandpaStoredPendingChange, PalletGrandpaStoredState, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletImOnlineBoundedOpaqueNetworkState, PalletImOnlineSr25519AppSr25519Public, PalletMultisigMultisig, PalletNominationPoolsBondedPoolInner, PalletNominationPoolsPoolMember, PalletNominationPoolsRewardPool, PalletNominationPoolsSubPools, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyProxyDefinition, PalletRecoveryActiveRecovery, PalletRecoveryRecoveryConfig, PalletSchedulerScheduledV3, PalletSocietyBid, PalletSocietyBidKind, PalletSocietyVote, PalletSocietyVouchingStatus, PalletStakingActiveEraInfo, PalletStakingEraRewardPoints, PalletStakingExposure, PalletStakingForcing, PalletStakingNominations, PalletStakingReleases, PalletStakingRewardDestination, PalletStakingSlashingSlashingSpans, PalletStakingSlashingSpanRecord, PalletStakingStakingLedger, PalletStakingUnappliedSlash, PalletStakingValidatorPrefs, PalletTipsOpenTip, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletVestingReleases, PalletVestingVestingInfo, PalletXcmQueryStatus, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotParachainPrimitivesHrmpChannelId, PolkadotPrimitivesV2AssignmentAppPublic, PolkadotPrimitivesV2CandidateCommitments, PolkadotPrimitivesV2CoreOccupied, PolkadotPrimitivesV2DisputeState, PolkadotPrimitivesV2ScrapedOnChainVotes, PolkadotPrimitivesV2SessionInfo, PolkadotPrimitivesV2UpgradeGoAhead, PolkadotPrimitivesV2UpgradeRestriction, PolkadotPrimitivesV2ValidatorAppPublic, PolkadotRuntimeCommonClaimsStatementKind, PolkadotRuntimeCommonCrowdloanFundInfo, PolkadotRuntimeCommonParasRegistrarParaInfo, PolkadotRuntimeParachainsConfigurationHostConfiguration, PolkadotRuntimeParachainsHrmpHrmpChannel, PolkadotRuntimeParachainsHrmpHrmpOpenChannelRequest, PolkadotRuntimeParachainsInclusionAvailabilityBitfieldRecord, PolkadotRuntimeParachainsInclusionCandidatePendingAvailability, PolkadotRuntimeParachainsInitializerBufferedSessionChange, PolkadotRuntimeParachainsParasParaGenesisArgs, PolkadotRuntimeParachainsParasParaLifecycle, PolkadotRuntimeParachainsParasParaPastCodeMeta, PolkadotRuntimeParachainsParasPvfCheckActiveVoteState, PolkadotRuntimeParachainsSchedulerCoreAssignment, PolkadotRuntimeParachainsSchedulerParathreadClaimQueue, SpConsensusBabeAppPublic, SpConsensusBabeBabeEpochConfiguration, SpConsensusBabeDigestsNextConfigDescriptor, SpConsensusBabeDigestsPreDigest, SpCoreCryptoKeyTypeId, SpNposElectionsElectionScore, SpRuntimeDigest, SpStakingOffenceOffenceDetails, XcmVersionedMultiLocation } from 'https://deno.land/x/polkadot/types/lookup.ts';
15+
import type { Observable } from 'https://deno.land/x/polkadot/types/types/index.ts';
1616

1717
export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
1818
export type __QueryableStorageEntry<ApiType extends ApiTypes> = QueryableStorageEntry<ApiType>;
1919

20-
declare module 'https://deno.land/x/polkadot@0.0.8/api-base/types/storage.ts' {
20+
declare module 'https://deno.land/x/polkadot/api-base/types/storage.ts' {
2121
interface AugmentedQueries<ApiType extends ApiTypes> {
2222
auctions: {
2323
/**
@@ -1532,10 +1532,6 @@ declare module 'https://deno.land/x/polkadot@0.0.8/api-base/types/storage.ts' {
15321532
* This is basically in sync with the call to [`pallet_session::SessionManager::new_session`].
15331533
**/
15341534
currentPlannedSession: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
1535-
/**
1536-
* The earliest era for which we have a pending, unapplied slash.
1537-
**/
1538-
earliestUnappliedSlash: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
15391535
/**
15401536
* Rewards for the last `HISTORY_DEPTH` eras.
15411537
* If reward hasn't been set or has been removed then 0 reward is returned.

api-augment/kusama/registry.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017-2022 @polkadot/api-augment authors & contributors
22
// SPDX-License-Identifier: Apache-2.0
33

4-
import 'https://deno.land/x/polkadot@0.0.8/types-augment/registry/substrate.ts';
5-
import 'https://deno.land/x/polkadot@0.0.8/types-augment/registry/polkadot.ts';
6-
import 'https://deno.land/x/polkadot@0.0.8/types-augment/registry/kusama.ts';
4+
import 'https://deno.land/x/polkadot/types-augment/registry/substrate.ts';
5+
import 'https://deno.land/x/polkadot/types-augment/registry/polkadot.ts';
6+
import 'https://deno.land/x/polkadot/types-augment/registry/kusama.ts';

0 commit comments

Comments
 (0)