@frequency-chain/api-augment
Advanced tools
Comparing version 0.0.0-96df23 to 0.0.0-9cc486
@@ -335,2 +335,9 @@ import '@polkadot/api-base/types/events'; | ||
/** | ||
* A delegation relationship was added with the given provider and delegator | ||
**/ | ||
DelegationGranted: AugmentedEvent<ApiType, [provider: u64, delegator: u64], { | ||
provider: u64; | ||
delegator: u64; | ||
}>; | ||
/** | ||
* The Delegator revoked its delegation to the Provider | ||
@@ -356,9 +363,2 @@ **/ | ||
/** | ||
* A delegation relationship was added with the given provider and delegator | ||
**/ | ||
ProviderAdded: AugmentedEvent<ApiType, [provider: u64, delegator: u64], { | ||
provider: u64; | ||
delegator: u64; | ||
}>; | ||
/** | ||
* A Provider-MSA relationship was registered | ||
@@ -365,0 +365,0 @@ **/ |
@@ -6,3 +6,3 @@ import '@polkadot/api-base/types/storage'; | ||
import type { AccountId32, Call, H256, Weight } from '@polkadot/types/interfaces/runtime'; | ||
import type { CommonPrimitivesMsaProviderInfo, CommonPrimitivesMsaProviderRegistryEntry, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, FrameSupportWeightsPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, FrequencyRuntimeSessionKeys, OrmlVestingVestingSchedule, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletCollatorSelectionCandidateInfo, PalletCollectiveVotes, PalletDemocracyPreimageStatus, PalletDemocracyReferendumInfo, PalletDemocracyReleases, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletMessagesMessage, PalletPreimageRequestStatus, PalletSchedulerScheduledV3, PalletSchemasSchema, PalletTransactionPaymentReleases, PalletTreasuryProposal, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpRuntimeMultiSignature, SpTrieStorageProof } from '@polkadot/types/lookup'; | ||
import type { CommonPrimitivesMsaDelegation, CommonPrimitivesMsaProviderRegistryEntry, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, FrameSupportWeightsPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, FrequencyRuntimeSessionKeys, OrmlVestingVestingSchedule, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletCollatorSelectionCandidateInfo, PalletCollectiveVotes, PalletDemocracyPreimageStatus, PalletDemocracyReferendumInfo, PalletDemocracyReleases, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletMessagesMessage, PalletPreimageRequestStatus, PalletSchedulerScheduledV3, PalletSchemasSchema, PalletTransactionPaymentReleases, PalletTreasuryProposal, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpRuntimeMultiSignature, SpTrieStorageProof } from '@polkadot/types/lookup'; | ||
import type { Observable } from '@polkadot/types/types'; | ||
@@ -267,7 +267,15 @@ export declare type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>; | ||
/** | ||
* Storage type for MSA identifier | ||
* Storage type for the current MSA identifier maximum. | ||
* We need to track this value because the identifier maximum | ||
* is incremented each time a new identifier is created. | ||
* - Value: The current maximum MSA Id | ||
**/ | ||
msaIdentifier: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>; | ||
currentMsaIdentifierMaximum: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>; | ||
/** | ||
* Storage type for mapping the relationship between a Delegator and its Provider. | ||
* - Keys: Delegator MSA, Provider MSA | ||
* - Value: [`Delegation`](common_primitives::msa::Delegation) | ||
**/ | ||
delegatorAndProviderToDelegation: AugmentedQuery<ApiType, (arg1: u64 | AnyNumber | Uint8Array, arg2: u64 | AnyNumber | Uint8Array) => Observable<Option<CommonPrimitivesMsaDelegation>>, [u64, u64]> & QueryableStorageEntry<ApiType, [u64, u64]>; | ||
/** | ||
* PayloadSignatureRegistry is used to prevent replay attacks for extrinsics | ||
@@ -286,8 +294,2 @@ * that take an externally-signed payload. | ||
/** | ||
* Storage type for mapping the relationship between a Delegator and its Provider. | ||
* - Keys: Delegator MSA, Provider MSA | ||
* - Value: [`ProviderInfo`](common_primitives::msa::ProviderInfo) | ||
**/ | ||
providerInfoOf: AugmentedQuery<ApiType, (arg1: u64 | AnyNumber | Uint8Array, arg2: u64 | AnyNumber | Uint8Array) => Observable<Option<CommonPrimitivesMsaProviderInfo>>, [u64, u64]> & QueryableStorageEntry<ApiType, [u64, u64]>; | ||
/** | ||
* Provider registration information | ||
@@ -294,0 +296,0 @@ * - Key: Provider MSA Id |
@@ -590,3 +590,3 @@ declare const _default: { | ||
}; | ||
ProviderAdded: { | ||
DelegationGranted: { | ||
provider: string; | ||
@@ -1333,3 +1333,3 @@ delegator: string; | ||
}; | ||
register_provider: { | ||
create_provider: { | ||
providerName: string; | ||
@@ -1345,3 +1345,3 @@ }; | ||
}; | ||
add_key_to_msa: { | ||
add_public_key_to_msa: { | ||
msaOwnerPublicKey: string; | ||
@@ -1693,15 +1693,11 @@ msaOwnerProof: string; | ||
/** | ||
* Lookup237: common_primitives::msa::ProviderInfo<BlockNumber, MaxSchemaGrantsPerDelegation> | ||
* Lookup237: common_primitives::msa::Delegation<SchemaId, BlockNumber, MaxSchemaGrantsPerDelegation> | ||
**/ | ||
CommonPrimitivesMsaProviderInfo: { | ||
expired: string; | ||
schemas: string; | ||
CommonPrimitivesMsaDelegation: { | ||
revokedAt: string; | ||
schemaPermissions: string; | ||
}; | ||
/** | ||
* Lookup238: orml_utilities::ordered_set::OrderedSet<T, S> | ||
* Lookup242: common_primitives::msa::ProviderRegistryEntry<T> | ||
**/ | ||
OrmlUtilitiesOrderedSet: string; | ||
/** | ||
* Lookup240: common_primitives::msa::ProviderRegistryEntry<T> | ||
**/ | ||
CommonPrimitivesMsaProviderRegistryEntry: { | ||
@@ -1711,3 +1707,3 @@ providerName: string; | ||
/** | ||
* Lookup243: pallet_msa::pallet::Error<T> | ||
* Lookup245: pallet_msa::pallet::Error<T> | ||
**/ | ||
@@ -1718,3 +1714,3 @@ PalletMsaError: { | ||
/** | ||
* Lookup246: pallet_messages::types::Message<MaxDataSize> | ||
* Lookup248: pallet_messages::types::Message<MaxDataSize> | ||
**/ | ||
@@ -1728,3 +1724,3 @@ PalletMessagesMessage: { | ||
/** | ||
* Lookup252: pallet_messages::pallet::Error<T> | ||
* Lookup254: pallet_messages::pallet::Error<T> | ||
**/ | ||
@@ -1735,3 +1731,3 @@ PalletMessagesError: { | ||
/** | ||
* Lookup253: pallet_schemas::types::Schema<MaxModelSize> | ||
* Lookup255: pallet_schemas::types::Schema<MaxModelSize> | ||
**/ | ||
@@ -1744,3 +1740,3 @@ PalletSchemasSchema: { | ||
/** | ||
* Lookup254: pallet_schemas::pallet::Error<T> | ||
* Lookup256: pallet_schemas::pallet::Error<T> | ||
**/ | ||
@@ -1751,35 +1747,35 @@ PalletSchemasError: { | ||
/** | ||
* Lookup257: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T> | ||
* Lookup259: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T> | ||
**/ | ||
FrameSystemExtensionsCheckNonZeroSender: string; | ||
/** | ||
* Lookup258: frame_system::extensions::check_spec_version::CheckSpecVersion<T> | ||
* Lookup260: frame_system::extensions::check_spec_version::CheckSpecVersion<T> | ||
**/ | ||
FrameSystemExtensionsCheckSpecVersion: string; | ||
/** | ||
* Lookup259: frame_system::extensions::check_tx_version::CheckTxVersion<T> | ||
* Lookup261: frame_system::extensions::check_tx_version::CheckTxVersion<T> | ||
**/ | ||
FrameSystemExtensionsCheckTxVersion: string; | ||
/** | ||
* Lookup260: frame_system::extensions::check_genesis::CheckGenesis<T> | ||
* Lookup262: frame_system::extensions::check_genesis::CheckGenesis<T> | ||
**/ | ||
FrameSystemExtensionsCheckGenesis: string; | ||
/** | ||
* Lookup263: common_runtime::extensions::check_nonce::CheckNonce<T> | ||
* Lookup265: common_runtime::extensions::check_nonce::CheckNonce<T> | ||
**/ | ||
CommonRuntimeExtensionsCheckNonce: string; | ||
/** | ||
* Lookup264: frame_system::extensions::check_weight::CheckWeight<T> | ||
* Lookup266: frame_system::extensions::check_weight::CheckWeight<T> | ||
**/ | ||
FrameSystemExtensionsCheckWeight: string; | ||
/** | ||
* Lookup265: pallet_transaction_payment::ChargeTransactionPayment<T> | ||
* Lookup267: pallet_transaction_payment::ChargeTransactionPayment<T> | ||
**/ | ||
PalletTransactionPaymentChargeTransactionPayment: string; | ||
/** | ||
* Lookup266: pallet_msa::CheckFreeExtrinsicUse<T> | ||
* Lookup268: pallet_msa::CheckFreeExtrinsicUse<T> | ||
**/ | ||
PalletMsaCheckFreeExtrinsicUse: string; | ||
/** | ||
* Lookup267: frequency_runtime::Runtime | ||
* Lookup269: frequency_runtime::Runtime | ||
**/ | ||
@@ -1786,0 +1782,0 @@ FrequencyRuntimeRuntime: string; |
@@ -593,3 +593,3 @@ // Auto-generated via `yarn polkadot-types-from-defs`, do not edit | ||
}, | ||
ProviderAdded: { | ||
DelegationGranted: { | ||
provider: 'u64', | ||
@@ -1336,3 +1336,3 @@ delegator: 'u64', | ||
}, | ||
register_provider: { | ||
create_provider: { | ||
providerName: 'Bytes', | ||
@@ -1348,3 +1348,3 @@ }, | ||
}, | ||
add_key_to_msa: { | ||
add_public_key_to_msa: { | ||
msaOwnerPublicKey: 'AccountId32', | ||
@@ -1696,15 +1696,11 @@ msaOwnerProof: 'SpRuntimeMultiSignature', | ||
/** | ||
* Lookup237: common_primitives::msa::ProviderInfo<BlockNumber, MaxSchemaGrantsPerDelegation> | ||
* Lookup237: common_primitives::msa::Delegation<SchemaId, BlockNumber, MaxSchemaGrantsPerDelegation> | ||
**/ | ||
CommonPrimitivesMsaProviderInfo: { | ||
expired: 'u32', | ||
schemas: 'OrmlUtilitiesOrderedSet' | ||
CommonPrimitivesMsaDelegation: { | ||
revokedAt: 'u32', | ||
schemaPermissions: 'BTreeMap<u16, Option<u32>>' | ||
}, | ||
/** | ||
* Lookup238: orml_utilities::ordered_set::OrderedSet<T, S> | ||
* Lookup242: common_primitives::msa::ProviderRegistryEntry<T> | ||
**/ | ||
OrmlUtilitiesOrderedSet: 'Vec<u16>', | ||
/** | ||
* Lookup240: common_primitives::msa::ProviderRegistryEntry<T> | ||
**/ | ||
CommonPrimitivesMsaProviderRegistryEntry: { | ||
@@ -1714,3 +1710,3 @@ providerName: 'Bytes' | ||
/** | ||
* Lookup243: pallet_msa::pallet::Error<T> | ||
* Lookup245: pallet_msa::pallet::Error<T> | ||
**/ | ||
@@ -1721,3 +1717,3 @@ PalletMsaError: { | ||
/** | ||
* Lookup246: pallet_messages::types::Message<MaxDataSize> | ||
* Lookup248: pallet_messages::types::Message<MaxDataSize> | ||
**/ | ||
@@ -1731,3 +1727,3 @@ PalletMessagesMessage: { | ||
/** | ||
* Lookup252: pallet_messages::pallet::Error<T> | ||
* Lookup254: pallet_messages::pallet::Error<T> | ||
**/ | ||
@@ -1738,3 +1734,3 @@ PalletMessagesError: { | ||
/** | ||
* Lookup253: pallet_schemas::types::Schema<MaxModelSize> | ||
* Lookup255: pallet_schemas::types::Schema<MaxModelSize> | ||
**/ | ||
@@ -1747,3 +1743,3 @@ PalletSchemasSchema: { | ||
/** | ||
* Lookup254: pallet_schemas::pallet::Error<T> | ||
* Lookup256: pallet_schemas::pallet::Error<T> | ||
**/ | ||
@@ -1754,37 +1750,37 @@ PalletSchemasError: { | ||
/** | ||
* Lookup257: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T> | ||
* Lookup259: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T> | ||
**/ | ||
FrameSystemExtensionsCheckNonZeroSender: 'Null', | ||
/** | ||
* Lookup258: frame_system::extensions::check_spec_version::CheckSpecVersion<T> | ||
* Lookup260: frame_system::extensions::check_spec_version::CheckSpecVersion<T> | ||
**/ | ||
FrameSystemExtensionsCheckSpecVersion: 'Null', | ||
/** | ||
* Lookup259: frame_system::extensions::check_tx_version::CheckTxVersion<T> | ||
* Lookup261: frame_system::extensions::check_tx_version::CheckTxVersion<T> | ||
**/ | ||
FrameSystemExtensionsCheckTxVersion: 'Null', | ||
/** | ||
* Lookup260: frame_system::extensions::check_genesis::CheckGenesis<T> | ||
* Lookup262: frame_system::extensions::check_genesis::CheckGenesis<T> | ||
**/ | ||
FrameSystemExtensionsCheckGenesis: 'Null', | ||
/** | ||
* Lookup263: common_runtime::extensions::check_nonce::CheckNonce<T> | ||
* Lookup265: common_runtime::extensions::check_nonce::CheckNonce<T> | ||
**/ | ||
CommonRuntimeExtensionsCheckNonce: 'Compact<u32>', | ||
/** | ||
* Lookup264: frame_system::extensions::check_weight::CheckWeight<T> | ||
* Lookup266: frame_system::extensions::check_weight::CheckWeight<T> | ||
**/ | ||
FrameSystemExtensionsCheckWeight: 'Null', | ||
/** | ||
* Lookup265: pallet_transaction_payment::ChargeTransactionPayment<T> | ||
* Lookup267: pallet_transaction_payment::ChargeTransactionPayment<T> | ||
**/ | ||
PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>', | ||
/** | ||
* Lookup266: pallet_msa::CheckFreeExtrinsicUse<T> | ||
* Lookup268: pallet_msa::CheckFreeExtrinsicUse<T> | ||
**/ | ||
PalletMsaCheckFreeExtrinsicUse: 'Null', | ||
/** | ||
* Lookup267: frequency_runtime::Runtime | ||
* Lookup269: frequency_runtime::Runtime | ||
**/ | ||
FrequencyRuntimeRuntime: 'Null' | ||
}; |
import '@polkadot/types/types/registry'; | ||
import type { CommonPrimitivesMsaProviderInfo, CommonPrimitivesMsaProviderRegistryEntry, CommonPrimitivesSchemaModelType, CommonPrimitivesSchemaPayloadLocation, CommonRuntimeExtensionsCheckNonce, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPrimitivesParachainInherentParachainInherentData, FrameSupportDispatchRawOrigin, FrameSupportPalletId, 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, FrequencyRuntimeOriginCaller, FrequencyRuntimeRuntime, FrequencyRuntimeSessionKeys, 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, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion } from '@polkadot/types/lookup'; | ||
import type { CommonPrimitivesMsaDelegation, CommonPrimitivesMsaProviderRegistryEntry, CommonPrimitivesSchemaModelType, CommonPrimitivesSchemaPayloadLocation, CommonRuntimeExtensionsCheckNonce, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPrimitivesParachainInherentParachainInherentData, FrameSupportDispatchRawOrigin, FrameSupportPalletId, 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, FrequencyRuntimeOriginCaller, FrequencyRuntimeRuntime, FrequencyRuntimeSessionKeys, 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, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion } from '@polkadot/types/lookup'; | ||
declare module '@polkadot/types/types/registry' { | ||
interface InterfaceTypes { | ||
CommonPrimitivesMsaProviderInfo: CommonPrimitivesMsaProviderInfo; | ||
CommonPrimitivesMsaDelegation: CommonPrimitivesMsaDelegation; | ||
CommonPrimitivesMsaProviderRegistryEntry: CommonPrimitivesMsaProviderRegistryEntry; | ||
@@ -45,3 +45,2 @@ CommonPrimitivesSchemaModelType: CommonPrimitivesSchemaModelType; | ||
FrequencyRuntimeSessionKeys: FrequencyRuntimeSessionKeys; | ||
OrmlUtilitiesOrderedSet: OrmlUtilitiesOrderedSet; | ||
OrmlVestingModuleCall: OrmlVestingModuleCall; | ||
@@ -48,0 +47,0 @@ OrmlVestingModuleError: OrmlVestingModuleError; |
{ | ||
"name": "@frequency-chain/api-augment", | ||
"version": "0.0.0-96df23", | ||
"version": "0.0.0-9cc486", | ||
"bugs": { | ||
@@ -5,0 +5,0 @@ "url": "https://github.com/LibertyDSNP/frequency/issues" |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
537833
12479