Skip to content

Commit cdf4d7b

Browse files
[CI Skip] deno.land/x/polkadot@0.0.1
1 parent 5b370db commit cdf4d7b

File tree

679 files changed

+1616
-1614
lines changed

Some content is hidden

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

679 files changed

+1616
-1614
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Access is to be done via the `https://deno.land/x/polkadot[@<version>]/<module>/
99
For example, to access `polkadot/util` & `polkadot/api` interfaces -
1010

1111
```js
12-
import { ApiPromise, WsProvider } from 'https://deno.land/x/polkadot@0.0.0-9/api/mod.ts';
13-
import { stringToU8a } from 'https://deno.land/x/polkadot@0.0.0-9/util/mod.ts';
12+
import { ApiPromise, WsProvider } from 'https://deno.land/x/polkadot@0.0.1/api/mod.ts';
13+
import { stringToU8a } from 'https://deno.land/x/polkadot@0.0.1/util/mod.ts';
1414

1515
const api = await ApiPromise.create({ provider: new WsProvider() });
1616

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/rpc-augment/mod.ts';
6-
import 'https://deno.land/x/polkadot/types-augment/mod.ts';
5+
import 'https://deno.land/x/polkadot@0.0.1/rpc-augment/mod.ts';
6+
import 'https://deno.land/x/polkadot@0.0.1/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/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';
4+
import { packageInfo as baseInfo } from 'https://deno.land/x/polkadot@0.0.1/api-base/packageInfo.ts';
5+
import { packageInfo as typesInfo } from 'https://deno.land/x/polkadot@0.0.1/types/packageInfo.ts';
6+
import { packageInfo as codecInfo } from 'https://deno.land/x/polkadot@0.0.1/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/util/mod.ts';
6+
import { detectPackage } from 'https://deno.land/x/polkadot@0.0.1/util/mod.ts';
77

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

api-augment/kusama/consts.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// Auto-generated via `yarn polkadot-types-from-chain`, do not edit
22
/* eslint-disable */
33

4-
import type { ApiTypes } from 'https://deno.land/x/polkadot/api-base/types/index.ts';
5-
import type { Bytes, Option, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from 'https://deno.land/x/polkadot/types-codec/mod.ts';
6-
import type { Codec } from 'https://deno.land/x/polkadot/types-codec/types/index.ts';
7-
import type { Perbill, Percent, Permill } from 'https://deno.land/x/polkadot/types/interfaces/runtime/index.ts';
8-
import type { FrameSupportPalletId, FrameSupportWeightsRuntimeDbWeight, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion } from 'https://deno.land/x/polkadot/types/lookup.ts';
4+
import type { ApiTypes } from 'https://deno.land/x/polkadot@0.0.1/api-base/types/index.ts';
5+
import type { Bytes, Option, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from 'https://deno.land/x/polkadot@0.0.1/types-codec/mod.ts';
6+
import type { Codec } from 'https://deno.land/x/polkadot@0.0.1/types-codec/types/index.ts';
7+
import type { Perbill, Percent, Permill } from 'https://deno.land/x/polkadot@0.0.1/types/interfaces/runtime/index.ts';
8+
import type { FrameSupportPalletId, FrameSupportWeightsRuntimeDbWeight, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion } from 'https://deno.land/x/polkadot@0.0.1/types/lookup.ts';
99

10-
declare module 'https://deno.land/x/polkadot/api-base/types/consts.ts' {
10+
declare module 'https://deno.land/x/polkadot@0.0.1/api-base/types/consts.ts' {
1111
export interface AugmentedConsts<ApiType extends ApiTypes> {
1212
auctions: {
1313
/**

api-augment/kusama/errors.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Auto-generated via `yarn polkadot-types-from-chain`, do not edit
22
/* eslint-disable */
33

4-
import type { ApiTypes } from 'https://deno.land/x/polkadot/api-base/types/index.ts';
4+
import type { ApiTypes } from 'https://deno.land/x/polkadot@0.0.1/api-base/types/index.ts';
55

6-
declare module 'https://deno.land/x/polkadot/api-base/types/errors.ts' {
6+
declare module 'https://deno.land/x/polkadot@0.0.1/api-base/types/errors.ts' {
77
export interface AugmentedErrors<ApiType extends ApiTypes> {
88
auctions: {
99
/**

api-augment/kusama/events.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
// Auto-generated via `yarn polkadot-types-from-chain`, do not edit
22
/* eslint-disable */
33

4-
import type { ApiTypes } from 'https://deno.land/x/polkadot/api-base/types/index.ts';
5-
import type { Bytes, Null, Option, Result, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from 'https://deno.land/x/polkadot/types-codec/mod.ts';
6-
import type { ITuple } from 'https://deno.land/x/polkadot/types-codec/types/index.ts';
7-
import type { EthereumAddress } from 'https://deno.land/x/polkadot/types/interfaces/eth/index.ts';
8-
import type { AccountId32, H256 } from 'https://deno.land/x/polkadot/types/interfaces/runtime/index.ts';
9-
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';
4+
import type { ApiTypes } from 'https://deno.land/x/polkadot@0.0.1/api-base/types/index.ts';
5+
import type { Bytes, Null, Option, Result, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from 'https://deno.land/x/polkadot@0.0.1/types-codec/mod.ts';
6+
import type { ITuple } from 'https://deno.land/x/polkadot@0.0.1/types-codec/types/index.ts';
7+
import type { EthereumAddress } from 'https://deno.land/x/polkadot@0.0.1/types/interfaces/eth/index.ts';
8+
import type { AccountId32, H256 } from 'https://deno.land/x/polkadot@0.0.1/types/interfaces/runtime/index.ts';
9+
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.1/types/lookup.ts';
1010

11-
declare module 'https://deno.land/x/polkadot/api-base/types/events.ts' {
11+
declare module 'https://deno.land/x/polkadot@0.0.1/api-base/types/events.ts' {
1212
export interface AugmentedEvents<ApiType extends ApiTypes> {
1313
auctions: {
1414
/**

api-augment/kusama/query.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
// Auto-generated via `yarn polkadot-types-from-chain`, do not edit
22
/* eslint-disable */
33

4-
import type { ApiTypes } from 'https://deno.land/x/polkadot/api-base/types/index.ts';
5-
import type { Data } from 'https://deno.land/x/polkadot/types/mod.ts';
6-
import type { BTreeMap, Bytes, Null, Option, U8aFixed, Vec, WrapperKeepOpaque, WrapperOpaque, bool, u128, u32, u64 } from 'https://deno.land/x/polkadot/types-codec/mod.ts';
7-
import type { AnyNumber, ITuple } from 'https://deno.land/x/polkadot/types-codec/types/index.ts';
8-
import type { EthereumAddress } from 'https://deno.land/x/polkadot/types/interfaces/eth/index.ts';
9-
import type { AccountId32, Call, H256, Perbill, Percent } from 'https://deno.land/x/polkadot/types/interfaces/runtime/index.ts';
10-
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';
11-
import type { Observable } from 'https://deno.land/x/polkadot/types/types/index.ts';
4+
import type { ApiTypes } from 'https://deno.land/x/polkadot@0.0.1/api-base/types/index.ts';
5+
import type { Data } from 'https://deno.land/x/polkadot@0.0.1/types/mod.ts';
6+
import type { BTreeMap, Bytes, Null, Option, U8aFixed, Vec, WrapperKeepOpaque, WrapperOpaque, bool, u128, u32, u64 } from 'https://deno.land/x/polkadot@0.0.1/types-codec/mod.ts';
7+
import type { AnyNumber, ITuple } from 'https://deno.land/x/polkadot@0.0.1/types-codec/types/index.ts';
8+
import type { EthereumAddress } from 'https://deno.land/x/polkadot@0.0.1/types/interfaces/eth/index.ts';
9+
import type { AccountId32, Call, H256, Perbill, Percent } from 'https://deno.land/x/polkadot@0.0.1/types/interfaces/runtime/index.ts';
10+
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.1/types/lookup.ts';
11+
import type { Observable } from 'https://deno.land/x/polkadot@0.0.1/types/types/index.ts';
1212

13-
declare module 'https://deno.land/x/polkadot/api-base/types/storage.ts' {
13+
declare module 'https://deno.land/x/polkadot@0.0.1/api-base/types/storage.ts' {
1414
export interface AugmentedQueries<ApiType extends ApiTypes> {
1515
auctions: {
1616
/**

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/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';
4+
import 'https://deno.land/x/polkadot@0.0.1/types-augment/registry/substrate.ts';
5+
import 'https://deno.land/x/polkadot@0.0.1/types-augment/registry/polkadot.ts';
6+
import 'https://deno.land/x/polkadot@0.0.1/types-augment/registry/kusama.ts';

0 commit comments

Comments
 (0)