@frequency-chain/api-augment
Advanced tools
Comparing version 0.0.0-d9492a to 0.0.0-ebbeb1
@@ -355,3 +355,3 @@ import '@polkadot/api-base/types/errors'; | ||
**/ | ||
DuplicateProviderMetadata: AugmentedError<ApiType>; | ||
DuplicateProviderRegistryEntry: AugmentedError<ApiType>; | ||
/** | ||
@@ -563,3 +563,3 @@ * The maximum length for a provider name has been exceeded | ||
/** | ||
* SchemaCount was attempted to overflow max, means MaxSchemaRegistrations is too big | ||
* CurrentSchemaIdentifierMaximum was attempted to overflow max, means MaxSchemaRegistrations is too big | ||
**/ | ||
@@ -566,0 +566,0 @@ SchemaCountOverflow: AugmentedError<ApiType>; |
@@ -335,5 +335,5 @@ import '@polkadot/api-base/types/events'; | ||
/** | ||
* The Delegator revoked its delegation to the Provider | ||
* A delegation relationship was added with the given provider and delegator | ||
**/ | ||
DelegatorRevokedDelegation: AugmentedEvent<ApiType, [provider: u64, delegator: u64], { | ||
DelegationGranted: AugmentedEvent<ApiType, [provider: u64, delegator: u64], { | ||
provider: u64; | ||
@@ -343,6 +343,7 @@ delegator: u64; | ||
/** | ||
* An AccountId had all permissions revoked from its MessageSourceId | ||
* The Delegator revoked its delegation to the Provider | ||
**/ | ||
KeyRemoved: AugmentedEvent<ApiType, [key: AccountId32], { | ||
key: AccountId32; | ||
DelegatorRevokedDelegation: AugmentedEvent<ApiType, [provider: u64, delegator: u64], { | ||
provider: u64; | ||
delegator: u64; | ||
}>; | ||
@@ -363,12 +364,5 @@ /** | ||
/** | ||
* 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 | ||
**/ | ||
ProviderRegistered: AugmentedEvent<ApiType, [providerMsaId: u64], { | ||
ProviderCreated: AugmentedEvent<ApiType, [providerMsaId: u64], { | ||
providerMsaId: u64; | ||
@@ -391,2 +385,8 @@ }>; | ||
/** | ||
* An AccountId had all permissions revoked from its MessageSourceId | ||
**/ | ||
PublicKeyDeleted: AugmentedEvent<ApiType, [key: AccountId32], { | ||
key: AccountId32; | ||
}>; | ||
/** | ||
* Generic event | ||
@@ -393,0 +393,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, CommonPrimitivesMsaProviderMetadata, 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,13 +294,7 @@ * 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 | ||
* - Key: Provider MSA Id | ||
* - Value: [`ProviderMetadata`](common_primitives::msa::ProviderMetadata) | ||
* - Value: [`ProviderRegistryEntry`](common_primitives::msa::ProviderRegistryEntry) | ||
**/ | ||
providerRegistry: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<CommonPrimitivesMsaProviderMetadata>>, [u64]> & QueryableStorageEntry<ApiType, [u64]>; | ||
providerToRegistryEntry: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<CommonPrimitivesMsaProviderRegistryEntry>>, [u64]> & QueryableStorageEntry<ApiType, [u64]>; | ||
/** | ||
@@ -494,2 +496,8 @@ * Storage type for a reference counter of the number of keys associated to an MSA | ||
/** | ||
* Storage type for current number of schemas | ||
* Useful for retrieving latest schema id | ||
* - Value: Last Schema Id | ||
**/ | ||
currentSchemaIdentifierMaximum: AugmentedQuery<ApiType, () => Observable<u16>, []> & QueryableStorageEntry<ApiType, []>; | ||
/** | ||
* Storage for the Governance managed max bytes for schema model | ||
@@ -501,8 +509,2 @@ * Allows for altering the max bytes without a full chain upgrade | ||
/** | ||
* Storage type for current number of schemas | ||
* Useful for retrieving latest schema id | ||
* - Value: Last Schema Id | ||
**/ | ||
schemaCount: AugmentedQuery<ApiType, () => Observable<u16>, []> & QueryableStorageEntry<ApiType, []>; | ||
/** | ||
* Storage for message schema struct data | ||
@@ -509,0 +511,0 @@ * - Key: Schema Id |
@@ -587,10 +587,10 @@ declare const _default: { | ||
}; | ||
KeyRemoved: { | ||
PublicKeyDeleted: { | ||
key: string; | ||
}; | ||
ProviderAdded: { | ||
DelegationGranted: { | ||
provider: string; | ||
delegator: string; | ||
}; | ||
ProviderRegistered: { | ||
ProviderCreated: { | ||
providerMsaId: string; | ||
@@ -1333,6 +1333,6 @@ }; | ||
}; | ||
register_provider: { | ||
create_provider: { | ||
providerName: string; | ||
}; | ||
add_provider_to_msa: { | ||
grant_delegation: { | ||
delegatorKey: string; | ||
@@ -1342,6 +1342,6 @@ proof: string; | ||
}; | ||
revoke_msa_delegation_by_delegator: { | ||
revoke_delegation_by_delegator: { | ||
providerMsaId: string; | ||
}; | ||
add_key_to_msa: { | ||
add_public_key_to_msa: { | ||
msaOwnerPublicKey: string; | ||
@@ -1353,3 +1353,3 @@ msaOwnerProof: string; | ||
}; | ||
delete_msa_key: { | ||
delete_msa_public_key: { | ||
key: string; | ||
@@ -1423,3 +1423,3 @@ }; | ||
_enum: { | ||
register_schema: { | ||
create_schema: { | ||
model: string; | ||
@@ -1695,20 +1695,16 @@ modelType: 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::ProviderMetadata<T> | ||
**/ | ||
CommonPrimitivesMsaProviderMetadata: { | ||
CommonPrimitivesMsaProviderRegistryEntry: { | ||
providerName: string; | ||
}; | ||
/** | ||
* Lookup243: pallet_msa::pallet::Error<T> | ||
* Lookup245: pallet_msa::pallet::Error<T> | ||
**/ | ||
@@ -1719,3 +1715,3 @@ PalletMsaError: { | ||
/** | ||
* Lookup246: pallet_messages::types::Message<MaxDataSize> | ||
* Lookup248: pallet_messages::types::Message<MaxDataSize> | ||
**/ | ||
@@ -1729,3 +1725,3 @@ PalletMessagesMessage: { | ||
/** | ||
* Lookup252: pallet_messages::pallet::Error<T> | ||
* Lookup254: pallet_messages::pallet::Error<T> | ||
**/ | ||
@@ -1736,3 +1732,3 @@ PalletMessagesError: { | ||
/** | ||
* Lookup253: pallet_schemas::types::Schema<MaxModelSize> | ||
* Lookup255: pallet_schemas::types::Schema<MaxModelSize> | ||
**/ | ||
@@ -1745,3 +1741,3 @@ PalletSchemasSchema: { | ||
/** | ||
* Lookup254: pallet_schemas::pallet::Error<T> | ||
* Lookup256: pallet_schemas::pallet::Error<T> | ||
**/ | ||
@@ -1752,35 +1748,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 | ||
**/ | ||
@@ -1787,0 +1783,0 @@ FrequencyRuntimeRuntime: string; |
@@ -590,10 +590,10 @@ // Auto-generated via `yarn polkadot-types-from-defs`, do not edit | ||
}, | ||
KeyRemoved: { | ||
PublicKeyDeleted: { | ||
key: 'AccountId32', | ||
}, | ||
ProviderAdded: { | ||
DelegationGranted: { | ||
provider: 'u64', | ||
delegator: 'u64', | ||
}, | ||
ProviderRegistered: { | ||
ProviderCreated: { | ||
providerMsaId: 'u64', | ||
@@ -1336,6 +1336,6 @@ }, | ||
}, | ||
register_provider: { | ||
create_provider: { | ||
providerName: 'Bytes', | ||
}, | ||
add_provider_to_msa: { | ||
grant_delegation: { | ||
delegatorKey: 'AccountId32', | ||
@@ -1345,6 +1345,6 @@ proof: 'SpRuntimeMultiSignature', | ||
}, | ||
revoke_msa_delegation_by_delegator: { | ||
revoke_delegation_by_delegator: { | ||
providerMsaId: 'u64', | ||
}, | ||
add_key_to_msa: { | ||
add_public_key_to_msa: { | ||
msaOwnerPublicKey: 'AccountId32', | ||
@@ -1356,3 +1356,3 @@ msaOwnerProof: 'SpRuntimeMultiSignature', | ||
}, | ||
delete_msa_key: { | ||
delete_msa_public_key: { | ||
key: 'AccountId32', | ||
@@ -1426,3 +1426,3 @@ }, | ||
_enum: { | ||
register_schema: { | ||
create_schema: { | ||
model: 'Bytes', | ||
@@ -1698,26 +1698,22 @@ modelType: 'CommonPrimitivesSchemaModelType', | ||
/** | ||
* 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::ProviderMetadata<T> | ||
**/ | ||
CommonPrimitivesMsaProviderMetadata: { | ||
CommonPrimitivesMsaProviderRegistryEntry: { | ||
providerName: 'Bytes' | ||
}, | ||
/** | ||
* Lookup243: pallet_msa::pallet::Error<T> | ||
* Lookup245: pallet_msa::pallet::Error<T> | ||
**/ | ||
PalletMsaError: { | ||
_enum: ['KeyAlreadyRegistered', 'MsaIdOverflow', 'AddKeySignatureVerificationFailed', 'NotMsaOwner', 'InvalidSignature', 'NotKeyOwner', 'NoKeyExists', 'KeyLimitExceeded', 'MoreThanOneKeyExists', 'RegisteredProviderCannotBeRetired', 'InvalidSelfRemoval', 'InvalidSelfProvider', 'InvalidSchemaId', 'DuplicateProvider', 'AddProviderSignatureVerificationFailed', 'UnauthorizedDelegator', 'UnauthorizedProvider', 'DelegationRevoked', 'DelegationNotFound', 'DelegationExpired', 'DuplicateProviderMetadata', 'ExceedsMaxProviderNameSize', 'ExceedsMaxSchemaGrantsPerDelegation', 'SchemaNotGranted', 'ProviderNotRegistered', 'ProofHasExpired', 'ProofNotYetValid', 'SignatureAlreadySubmitted'] | ||
_enum: ['KeyAlreadyRegistered', 'MsaIdOverflow', 'AddKeySignatureVerificationFailed', 'NotMsaOwner', 'InvalidSignature', 'NotKeyOwner', 'NoKeyExists', 'KeyLimitExceeded', 'MoreThanOneKeyExists', 'RegisteredProviderCannotBeRetired', 'InvalidSelfRemoval', 'InvalidSelfProvider', 'InvalidSchemaId', 'DuplicateProvider', 'AddProviderSignatureVerificationFailed', 'UnauthorizedDelegator', 'UnauthorizedProvider', 'DelegationRevoked', 'DelegationNotFound', 'DelegationExpired', 'DuplicateProviderRegistryEntry', 'ExceedsMaxProviderNameSize', 'ExceedsMaxSchemaGrantsPerDelegation', 'SchemaNotGranted', 'ProviderNotRegistered', 'ProofHasExpired', 'ProofNotYetValid', 'SignatureAlreadySubmitted'] | ||
}, | ||
/** | ||
* 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, CommonPrimitivesMsaProviderMetadata, 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; | ||
CommonPrimitivesMsaProviderMetadata: CommonPrimitivesMsaProviderMetadata; | ||
CommonPrimitivesMsaDelegation: CommonPrimitivesMsaDelegation; | ||
CommonPrimitivesMsaProviderRegistryEntry: CommonPrimitivesMsaProviderRegistryEntry; | ||
CommonPrimitivesSchemaModelType: CommonPrimitivesSchemaModelType; | ||
@@ -45,3 +45,2 @@ CommonPrimitivesSchemaPayloadLocation: CommonPrimitivesSchemaPayloadLocation; | ||
FrequencyRuntimeSessionKeys: FrequencyRuntimeSessionKeys; | ||
OrmlUtilitiesOrderedSet: OrmlUtilitiesOrderedSet; | ||
OrmlVestingModuleCall: OrmlVestingModuleCall; | ||
@@ -48,0 +47,0 @@ OrmlVestingModuleError: OrmlVestingModuleError; |
{ | ||
"name": "@frequency-chain/api-augment", | ||
"version": "0.0.0-d9492a", | ||
"version": "0.0.0-ebbeb1", | ||
"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
538089
12487