@frequency-chain/api-augment
Advanced tools
Comparing version 0.0.0-1aba06 to 0.0.0-1d045c
@@ -21,2 +21,3 @@ declare const _default: { | ||
payload: string; | ||
cid: string; | ||
provider_msa_id: string; | ||
@@ -23,0 +24,0 @@ msa_id: string; |
@@ -26,8 +26,9 @@ export default { | ||
MessageResponse: { | ||
payload: "Vec<u8>", | ||
payload: "Option<Vec<u8>>", | ||
cid: "Option<Vec<u8>>", | ||
provider_msa_id: "MessageSourceId", | ||
msa_id: "MessageSourceId", | ||
msa_id: "Option<MessageSourceId>", | ||
index: "u16", | ||
block_number: "BlockNumber", | ||
payload_length: "u32", | ||
payload_length: "Option<u32>", // Length of IPFS payload file | ||
}, | ||
@@ -34,0 +35,0 @@ BlockPaginationResponseMessage: { |
@@ -5,2 +5,3 @@ import '@polkadot/api-base/types/consts'; | ||
import type { Codec } from '@polkadot/types-codec/types'; | ||
import type { Weight } from '@polkadot/types/interfaces/runtime'; | ||
import type { FrameSupportWeightsRuntimeDbWeight, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion } from '@polkadot/types/lookup'; | ||
@@ -140,3 +141,3 @@ export declare type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>; | ||
**/ | ||
maximumWeight: u64 & AugmentedConst<ApiType>; | ||
maximumWeight: Weight & AugmentedConst<ApiType>; | ||
/** | ||
@@ -188,3 +189,3 @@ * The maximum number of scheduled calls in the queue for a single block. | ||
/** | ||
* The designated SS85 prefix of this chain. | ||
* The designated SS58 prefix of this chain. | ||
* | ||
@@ -191,0 +192,0 @@ * This replaces the "ss58Format" property declared in the chain spec. Reason is |
@@ -323,6 +323,2 @@ import '@polkadot/api-base/types/errors'; | ||
/** | ||
* Invalid Pagination Request | ||
**/ | ||
InvalidPaginationRequest: AugmentedError<ApiType>; | ||
/** | ||
* Invalid payload location | ||
@@ -329,0 +325,0 @@ **/ |
@@ -5,3 +5,3 @@ import '@polkadot/api-base/types/events'; | ||
import type { ITuple } from '@polkadot/types-codec/types'; | ||
import type { AccountId32, H256 } from '@polkadot/types/interfaces/runtime'; | ||
import type { AccountId32, H256, Weight } from '@polkadot/types/interfaces/runtime'; | ||
import type { FrameSupportScheduleLookupError, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletDemocracyVoteAccountVote, PalletDemocracyVoteThreshold, SpRuntimeDispatchError, XcmV1MultiLocation, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup'; | ||
@@ -358,6 +358,6 @@ export declare type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>; | ||
**/ | ||
OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64], { | ||
OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: Weight], { | ||
messageId: U8aFixed; | ||
overweightIndex: u64; | ||
requiredWeight: u64; | ||
requiredWeight: Weight; | ||
}>; | ||
@@ -367,5 +367,5 @@ /** | ||
**/ | ||
OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: u64], { | ||
OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: Weight], { | ||
overweightIndex: u64; | ||
weightUsed: u64; | ||
weightUsed: Weight; | ||
}>; | ||
@@ -381,6 +381,6 @@ /** | ||
**/ | ||
WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64], { | ||
WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: Weight, requiredWeight: Weight], { | ||
messageId: U8aFixed; | ||
remainingWeight: u64; | ||
requiredWeight: u64; | ||
remainingWeight: Weight; | ||
requiredWeight: Weight; | ||
}>; | ||
@@ -463,4 +463,4 @@ /** | ||
**/ | ||
DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: u64, dmqHead: H256], { | ||
weightUsed: u64; | ||
DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: Weight, dmqHead: H256], { | ||
weightUsed: Weight; | ||
dmqHead: H256; | ||
@@ -561,3 +561,3 @@ }>; | ||
**/ | ||
NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, u64, u64]>; | ||
NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, Weight, Weight]>; | ||
/** | ||
@@ -932,6 +932,6 @@ * A given location which had a version change subscription was dropped owing to an error | ||
**/ | ||
Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64], { | ||
Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: Weight], { | ||
messageHash: Option<H256>; | ||
error: XcmV2TraitsError; | ||
weight: u64; | ||
weight: Weight; | ||
}>; | ||
@@ -941,7 +941,7 @@ /** | ||
**/ | ||
OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: u64], { | ||
OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: Weight], { | ||
sender: u32; | ||
sentAt: u32; | ||
index: u64; | ||
required: u64; | ||
required: Weight; | ||
}>; | ||
@@ -951,5 +951,5 @@ /** | ||
**/ | ||
OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: u64], { | ||
OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: Weight], { | ||
index: u64; | ||
used: u64; | ||
used: Weight; | ||
}>; | ||
@@ -959,5 +959,5 @@ /** | ||
**/ | ||
Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: u64], { | ||
Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: Weight], { | ||
messageHash: Option<H256>; | ||
weight: u64; | ||
weight: Weight; | ||
}>; | ||
@@ -964,0 +964,0 @@ /** |
@@ -5,4 +5,4 @@ import '@polkadot/api-base/types/storage'; | ||
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types'; | ||
import type { AccountId32, Call, H256 } from '@polkadot/types/interfaces/runtime'; | ||
import type { CommonPrimitivesMsaProviderInfo, CommonPrimitivesMsaProviderMetadata, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, FrequencyRococoRuntimeSessionKeys, OrmlVestingVestingSchedule, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletCollatorSelectionCandidateInfo, PalletCollectiveVotes, PalletDemocracyPreimageStatus, PalletDemocracyReferendumInfo, PalletDemocracyReleases, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletMessagesMessage, PalletPreimageRequestStatus, PalletSchedulerScheduledV3, PalletSchemasSchema, PalletTransactionPaymentReleases, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof } from '@polkadot/types/lookup'; | ||
import type { AccountId32, Call, H256, Weight } from '@polkadot/types/interfaces/runtime'; | ||
import type { CommonPrimitivesMsaProviderInfo, CommonPrimitivesMsaProviderMetadata, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, FrameSupportWeightsPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, FrequencyRococoRuntimeSessionKeys, OrmlVestingVestingSchedule, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletCollatorSelectionCandidateInfo, PalletCollectiveVotes, PalletDemocracyPreimageStatus, PalletDemocracyReferendumInfo, PalletDemocracyReleases, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletMessagesMessage, PalletPreimageRequestStatus, PalletSchedulerScheduledV3, PalletSchemasSchema, PalletTransactionPaymentReleases, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof } from '@polkadot/types/lookup'; | ||
import type { Observable } from '@polkadot/types/types'; | ||
@@ -438,3 +438,3 @@ export declare type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>; | ||
**/ | ||
reservedDmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<u64>>, []> & QueryableStorageEntry<ApiType, []>; | ||
reservedDmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<Weight>>, []> & QueryableStorageEntry<ApiType, []>; | ||
/** | ||
@@ -444,3 +444,3 @@ * The weight we reserve at the beginning of the block for processing XCMP messages. This | ||
**/ | ||
reservedXcmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<u64>>, []> & QueryableStorageEntry<ApiType, []>; | ||
reservedXcmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<Weight>>, []> & QueryableStorageEntry<ApiType, []>; | ||
/** | ||
@@ -591,3 +591,3 @@ * An option which indicates if the relay-chain restricts signalling a validation code upgrade. | ||
**/ | ||
blockWeight: AugmentedQuery<ApiType, () => Observable<FrameSupportWeightsPerDispatchClassU64>, []> & QueryableStorageEntry<ApiType, []>; | ||
blockWeight: AugmentedQuery<ApiType, () => Observable<FrameSupportWeightsPerDispatchClassWeight>, []> & QueryableStorageEntry<ApiType, []>; | ||
/** | ||
@@ -594,0 +594,0 @@ * Digest of the current block, also part of the block header. |
@@ -144,2 +144,3 @@ import '@polkadot/rpc-core/types/jsonrpc'; | ||
/** | ||
* @deprecated Use the runtime interface `api.call.contractsApi.call` instead | ||
* Executes a call to a contract | ||
@@ -156,2 +157,3 @@ **/ | ||
/** | ||
* @deprecated Use the runtime interface `api.call.contractsApi.getStorage` instead | ||
* Returns the value under a specified storage key in a contract | ||
@@ -161,2 +163,3 @@ **/ | ||
/** | ||
* @deprecated Use the runtime interface `api.call.contractsApi.instantiate` instead | ||
* Instantiate a new contract | ||
@@ -174,2 +177,3 @@ **/ | ||
/** | ||
* @deprecated Not available in newer versions of the contracts interfaces | ||
* Returns the projected time a given contract will be able to sustain paying its rent | ||
@@ -179,2 +183,3 @@ **/ | ||
/** | ||
* @deprecated Use the runtime interface `api.call.contractsApi.uploadCode` instead | ||
* Upload new code without instantiating a contract from it | ||
@@ -539,2 +544,3 @@ **/ | ||
/** | ||
* @deprecated Use `api.rpc.state.getKeysPaged` to retrieve keys | ||
* Retrieves the keys with a certain prefix | ||
@@ -552,2 +558,3 @@ **/ | ||
/** | ||
* @deprecated Use `api.rpc.state.getKeysPaged` to retrieve keys | ||
* Returns the keys with prefix, leave empty to get all the keys (deprecated: Use getKeysPaged) | ||
@@ -554,0 +561,0 @@ **/ |
@@ -20,9 +20,10 @@ import type { MessageSourceId } from '@frequency-chain/api-augment/msa'; | ||
export interface MessageResponse extends Struct { | ||
readonly payload: Bytes; | ||
readonly payload: Option<Bytes>; | ||
readonly cid: Option<Bytes>; | ||
readonly provider_msa_id: MessageSourceId; | ||
readonly msa_id: MessageSourceId; | ||
readonly msa_id: Option<MessageSourceId>; | ||
readonly index: u16; | ||
readonly block_number: BlockNumber; | ||
readonly payload_length: u32; | ||
readonly payload_length: Option<u32>; | ||
} | ||
export declare type PHANTOM_MESSAGES = 'messages'; |
import '@polkadot/types/types/registry'; | ||
import type { CommonPrimitivesDsOrderedSetExt, CommonPrimitivesMsaProviderInfo, CommonPrimitivesMsaProviderMetadata, CommonPrimitivesSchemaModelType, CommonPrimitivesSchemaPayloadLocation, CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, FrameSupportDispatchRawOrigin, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonZeroSender, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, FrequencyRococoRuntimeOriginCaller, FrequencyRococoRuntimeRuntime, FrequencyRococoRuntimeSessionKeys, OrmlUtilitiesOrderedSet, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletAuthorshipCall, PalletAuthorshipError, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionCandidateInfo, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyPreimageStatus, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyReleases, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletMessagesCall, PalletMessagesError, PalletMessagesEvent, PalletMessagesMessage, PalletMsaAddKeyData, PalletMsaAddProvider, PalletMsaCall, PalletMsaCheckFreeExtrinsicUse, PalletMsaError, PalletMsaEvent, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduledV3, PalletSchemasCall, PalletSchemasError, PalletSchemasEvent, PalletSchemasSchema, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup'; | ||
import type { CommonPrimitivesDsOrderedSetExt, CommonPrimitivesMsaProviderInfo, CommonPrimitivesMsaProviderMetadata, CommonPrimitivesSchemaModelType, CommonPrimitivesSchemaPayloadLocation, CommonRuntimeExtensionsCheckNonce, CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, FrameSupportDispatchRawOrigin, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassWeight, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonZeroSender, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, FrequencyRococoRuntimeOriginCaller, FrequencyRococoRuntimeRuntime, FrequencyRococoRuntimeSessionKeys, OrmlUtilitiesOrderedSet, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletAuthorshipCall, PalletAuthorshipError, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionCandidateInfo, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyPreimageStatus, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyReleases, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletMessagesCall, PalletMessagesError, PalletMessagesEvent, PalletMessagesMessage, PalletMsaAddKeyData, PalletMsaAddProvider, PalletMsaCall, PalletMsaCheckFreeExtrinsicUse, PalletMsaError, PalletMsaEvent, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduledV3, PalletSchemasCall, PalletSchemasError, PalletSchemasEvent, PalletSchemasSchema, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup'; | ||
declare module '@polkadot/types/types/registry' { | ||
@@ -10,2 +10,3 @@ interface InterfaceTypes { | ||
CommonPrimitivesSchemaPayloadLocation: CommonPrimitivesSchemaPayloadLocation; | ||
CommonRuntimeExtensionsCheckNonce: CommonRuntimeExtensionsCheckNonce; | ||
CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall; | ||
@@ -40,3 +41,3 @@ CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData; | ||
FrameSupportWeightsPerDispatchClassU32: FrameSupportWeightsPerDispatchClassU32; | ||
FrameSupportWeightsPerDispatchClassU64: FrameSupportWeightsPerDispatchClassU64; | ||
FrameSupportWeightsPerDispatchClassWeight: FrameSupportWeightsPerDispatchClassWeight; | ||
FrameSupportWeightsPerDispatchClassWeightsPerClass: FrameSupportWeightsPerDispatchClassWeightsPerClass; | ||
@@ -51,3 +52,2 @@ FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight; | ||
FrameSystemExtensionsCheckNonZeroSender: FrameSystemExtensionsCheckNonZeroSender; | ||
FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce; | ||
FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion; | ||
@@ -54,0 +54,0 @@ FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion; |
{ | ||
"name": "@frequency-chain/api-augment", | ||
"version": "0.0.0-1aba06", | ||
"version": "0.0.0-1d045c", | ||
"bugs": { | ||
@@ -17,6 +17,6 @@ "url": "https://github.com/LibertyDSNP/frequency/issues" | ||
"devDependencies": { | ||
"@polkadot/api": "^9.2.4", | ||
"@polkadot/rpc-provider": "^9.2.4", | ||
"@polkadot/typegen": "^9.2.4", | ||
"@polkadot/types": "^9.2.4", | ||
"@polkadot/api": "^9.4.3", | ||
"@polkadot/rpc-provider": "^9.4.3", | ||
"@polkadot/typegen": "^9.4.3", | ||
"@polkadot/types": "^9.4.3", | ||
"@types/mocha": "^9.1.1", | ||
@@ -23,0 +23,0 @@ "@typescript-eslint/eslint-plugin": "^5.36.0", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
662588
15831