@frequency-chain/api-augment
Advanced tools
Comparing version 0.0.0-1d6ec0 to 0.0.0-2482d0
@@ -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,15 +343,9 @@ delegator: u64; | ||
/** | ||
* An AccountId has been associated with a MessageSourceId | ||
* The Delegator revoked its delegation to the Provider | ||
**/ | ||
KeyAdded: AugmentedEvent<ApiType, [msaId: u64, key: AccountId32], { | ||
msaId: u64; | ||
key: AccountId32; | ||
DelegatorRevokedDelegation: AugmentedEvent<ApiType, [provider: u64, delegator: u64], { | ||
provider: u64; | ||
delegator: u64; | ||
}>; | ||
/** | ||
* An AccountId had all permissions revoked from its MessageSourceId | ||
**/ | ||
KeyRemoved: AugmentedEvent<ApiType, [key: AccountId32], { | ||
key: AccountId32; | ||
}>; | ||
/** | ||
* A new Message Service Account was created with a new MessageSourceId | ||
@@ -370,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 +378,15 @@ }>; | ||
/** | ||
* An AccountId has been associated with a MessageSourceId | ||
**/ | ||
PublicKeyAdded: AugmentedEvent<ApiType, [msaId: u64, key: AccountId32], { | ||
msaId: u64; | ||
key: AccountId32; | ||
}>; | ||
/** | ||
* 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 |
@@ -583,14 +583,14 @@ declare const _default: { | ||
}; | ||
KeyAdded: { | ||
PublicKeyAdded: { | ||
msaId: string; | ||
key: string; | ||
}; | ||
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,5 +1695,5 @@ modelType: string; | ||
/** | ||
* Lookup237: common_primitives::msa::ProviderInfo<BlockNumber, MaxSchemaGrantsPerDelegation> | ||
* Lookup237: common_primitives::msa::Delegation<BlockNumber, MaxSchemaGrantsPerDelegation> | ||
**/ | ||
CommonPrimitivesMsaProviderInfo: { | ||
CommonPrimitivesMsaDelegation: { | ||
expired: string; | ||
@@ -1707,5 +1707,5 @@ schemas: string; | ||
/** | ||
* Lookup240: common_primitives::msa::ProviderMetadata<T> | ||
* Lookup240: common_primitives::msa::ProviderRegistryEntry<T> | ||
**/ | ||
CommonPrimitivesMsaProviderMetadata: { | ||
CommonPrimitivesMsaProviderRegistryEntry: { | ||
providerName: string; | ||
@@ -1712,0 +1712,0 @@ }; |
@@ -586,14 +586,14 @@ // Auto-generated via `yarn polkadot-types-from-defs`, do not edit | ||
}, | ||
KeyAdded: { | ||
PublicKeyAdded: { | ||
msaId: 'u64', | ||
key: 'AccountId32', | ||
}, | ||
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,5 +1698,5 @@ modelType: 'CommonPrimitivesSchemaModelType', | ||
/** | ||
* Lookup237: common_primitives::msa::ProviderInfo<BlockNumber, MaxSchemaGrantsPerDelegation> | ||
* Lookup237: common_primitives::msa::Delegation<BlockNumber, MaxSchemaGrantsPerDelegation> | ||
**/ | ||
CommonPrimitivesMsaProviderInfo: { | ||
CommonPrimitivesMsaDelegation: { | ||
expired: 'u32', | ||
@@ -1710,5 +1710,5 @@ schemas: 'OrmlUtilitiesOrderedSet' | ||
/** | ||
* Lookup240: common_primitives::msa::ProviderMetadata<T> | ||
* Lookup240: common_primitives::msa::ProviderRegistryEntry<T> | ||
**/ | ||
CommonPrimitivesMsaProviderMetadata: { | ||
CommonPrimitivesMsaProviderRegistryEntry: { | ||
providerName: 'Bytes' | ||
@@ -1720,3 +1720,3 @@ }, | ||
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'] | ||
}, | ||
@@ -1723,0 +1723,0 @@ /** |
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, 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'; | ||
declare module '@polkadot/types/types/registry' { | ||
interface InterfaceTypes { | ||
CommonPrimitivesMsaProviderInfo: CommonPrimitivesMsaProviderInfo; | ||
CommonPrimitivesMsaProviderMetadata: CommonPrimitivesMsaProviderMetadata; | ||
CommonPrimitivesMsaDelegation: CommonPrimitivesMsaDelegation; | ||
CommonPrimitivesMsaProviderRegistryEntry: CommonPrimitivesMsaProviderRegistryEntry; | ||
CommonPrimitivesSchemaModelType: CommonPrimitivesSchemaModelType; | ||
@@ -8,0 +8,0 @@ CommonPrimitivesSchemaPayloadLocation: CommonPrimitivesSchemaPayloadLocation; |
{ | ||
"name": "@frequency-chain/api-augment", | ||
"version": "0.0.0-1d6ec0", | ||
"version": "0.0.0-2482d0", | ||
"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
538204
12491