Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@frequency-chain/api-augment

Package Overview
Dependencies
Maintainers
3
Versions
631
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@frequency-chain/api-augment - npm Package Compare versions

Comparing version 0.0.0-3cd432 to 0.0.0-404b57

27

interfaces/augment-api-consts.d.ts

@@ -119,6 +119,2 @@ import '@polkadot/api-base/types/consts';

/**
* Maximum count of keys allowed per MSA
**/
maxKeys: u8 & AugmentedConst<ApiType>;
/**
* Maximum provider name size allowed per MSA association

@@ -128,6 +124,27 @@ **/

/**
* Maximum count of keys allowed per MSA
**/
maxPublicKeysPerMsa: u8 & AugmentedConst<ApiType>;
/**
* Maximum count of schemas granted for publishing data per Provider
**/
maxSchemaGrants: u32 & AugmentedConst<ApiType>;
maxSchemaGrantsPerDelegation: u32 & AugmentedConst<ApiType>;
/**
* The maximum number of signatures that can be assigned to a virtual bucket. In other
* words, no more than this many signatures can be assigned a specific first-key value.
**/
maxSignaturesPerBucket: u32 & AugmentedConst<ApiType>;
/**
* The number of blocks per virtual "bucket" in the PayloadSignatureRegistry
* Virtual buckets are the first part of the double key in the PayloadSignatureRegistry
* StorageDoubleMap. This permits a key grouping that enables mass removal
* of stale signatures which are no longer at risk of replay.
**/
mortalityWindowSize: u32 & AugmentedConst<ApiType>;
/**
* The total number of virtual buckets
* There are exactly NumberOfBuckets first-key values in PayloadSignatureRegistry.
**/
numberOfBuckets: u32 & AugmentedConst<ApiType>;
/**
* Generic const

@@ -134,0 +151,0 @@ **/

@@ -355,3 +355,3 @@ import '@polkadot/api-base/types/errors';

**/
DuplicateProviderMetadata: AugmentedError<ApiType>;
DuplicateProviderRegistryEntry: AugmentedError<ApiType>;
/**

@@ -364,4 +364,8 @@ * The maximum length for a provider name has been exceeded

**/
ExceedsMaxSchemaGrants: AugmentedError<ApiType>;
ExceedsMaxSchemaGrantsPerDelegation: AugmentedError<ApiType>;
/**
* An invalid schema Id was provided
**/
InvalidSchemaId: AugmentedError<ApiType>;
/**
* An MSA may not be its own delegate

@@ -427,2 +431,6 @@ **/

/**
* Attempted to add a signature when the signature is already in the registry
**/
SignatureAlreadySubmitted: AugmentedError<ApiType>;
/**
* Origin attempted to add a delegate for someone else's MSA

@@ -429,0 +437,0 @@ **/

28

interfaces/augment-api-events.d.ts

@@ -342,15 +342,2 @@ import '@polkadot/api-base/types/events';

/**
* An AccountId has been associated with a MessageSourceId
**/
KeyAdded: AugmentedEvent<ApiType, [msaId: u64, key: AccountId32], {
msaId: u64;
key: AccountId32;
}>;
/**
* 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

@@ -378,3 +365,3 @@ **/

**/
ProviderRegistered: AugmentedEvent<ApiType, [providerMsaId: u64], {
ProviderCreated: AugmentedEvent<ApiType, [providerMsaId: u64], {
providerMsaId: u64;

@@ -390,2 +377,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

@@ -392,0 +392,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, SpTrieStorageProof } from '@polkadot/types/lookup';
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 { Observable } from '@polkadot/types/types';

@@ -267,8 +267,2 @@ export declare type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;

/**
* Storage type for key to MSA information
* - Key: AccountId
* - Value: [`MessageSourceId`]
**/
messageSourceIdOf: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<u64>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
/**
* Storage type for MSA identifier

@@ -279,7 +273,14 @@ * - Value: The current maximum MSA Id

/**
* Storage type for a reference counter of the number of keys associated to an MSA
* - Key: MSA Id
* - Value: [`u8`] Counter of Keys associated with the MSA
* PayloadSignatureRegistry is used to prevent replay attacks for extrinsics
* that take an externally-signed payload.
* For this to work, the payload must include a mortality block number, which
* is used in lieu of a monotonically increasing nonce.
**/
msaInfoOf: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<u8>, [u64]> & QueryableStorageEntry<ApiType, [u64]>;
payloadSignatureRegistry: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: SpRuntimeMultiSignature | {
Ed25519: any;
} | {
Sr25519: any;
} | {
Ecdsa: any;
} | string | Uint8Array) => Observable<Option<u32>>, [u32, SpRuntimeMultiSignature]> & QueryableStorageEntry<ApiType, [u32, SpRuntimeMultiSignature]>;
/**

@@ -294,6 +295,18 @@ * Storage type for mapping the relationship between a Delegator and its Provider.

* - 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]>;
/**
* Storage type for a reference counter of the number of keys associated to an MSA
* - Key: MSA Id
* - Value: [`u8`] Counter of Keys associated with the MSA
**/
publicKeyCountForMsaId: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<u8>, [u64]> & QueryableStorageEntry<ApiType, [u64]>;
/**
* Storage type for key to MSA information
* - Key: AccountId
* - Value: [`MessageSourceId`]
**/
publicKeyToMsaId: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<u64>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
/**
* Generic query

@@ -300,0 +313,0 @@ **/

@@ -583,7 +583,7 @@ declare const _default: {

};
KeyAdded: {
PublicKeyAdded: {
msaId: string;
key: string;
};
KeyRemoved: {
PublicKeyDeleted: {
key: string;

@@ -595,3 +595,3 @@ };

};
ProviderRegistered: {
ProviderCreated: {
providerMsaId: string;

@@ -1337,3 +1337,3 @@ };

};
add_provider_to_msa: {
grant_delegation: {
delegatorKey: string;

@@ -1343,11 +1343,13 @@ proof: string;

};
revoke_msa_delegation_by_delegator: {
revoke_delegation_by_delegator: {
providerMsaId: string;
};
add_key_to_msa: {
key: string;
proof: string;
msaOwnerPublicKey: string;
msaOwnerProof: string;
newPublicKey: string;
newKeyOwnerProof: string;
addKeyPayload: string;
};
delete_msa_key: {
delete_msa_public_key: {
key: string;

@@ -1692,3 +1694,3 @@ };

/**
* Lookup237: common_primitives::msa::ProviderInfo<BlockNumber, MaxSchemaGrants>
* Lookup237: common_primitives::msa::ProviderInfo<BlockNumber, MaxSchemaGrantsPerDelegation>
**/

@@ -1704,9 +1706,9 @@ CommonPrimitivesMsaProviderInfo: {

/**
* Lookup240: common_primitives::msa::ProviderMetadata<T>
* Lookup240: common_primitives::msa::ProviderRegistryEntry<T>
**/
CommonPrimitivesMsaProviderMetadata: {
CommonPrimitivesMsaProviderRegistryEntry: {
providerName: string;
};
/**
* Lookup242: pallet_msa::pallet::Error<T>
* Lookup243: pallet_msa::pallet::Error<T>
**/

@@ -1717,3 +1719,3 @@ PalletMsaError: {

/**
* Lookup245: pallet_messages::types::Message<MaxDataSize>
* Lookup246: pallet_messages::types::Message<MaxDataSize>
**/

@@ -1727,3 +1729,3 @@ PalletMessagesMessage: {

/**
* Lookup251: pallet_messages::pallet::Error<T>
* Lookup252: pallet_messages::pallet::Error<T>
**/

@@ -1734,3 +1736,3 @@ PalletMessagesError: {

/**
* Lookup252: pallet_schemas::types::Schema<MaxModelSize>
* Lookup253: pallet_schemas::types::Schema<MaxModelSize>
**/

@@ -1743,3 +1745,3 @@ PalletSchemasSchema: {

/**
* Lookup253: pallet_schemas::pallet::Error<T>
* Lookup254: pallet_schemas::pallet::Error<T>
**/

@@ -1750,35 +1752,35 @@ PalletSchemasError: {

/**
* Lookup256: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
* Lookup257: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
**/
FrameSystemExtensionsCheckNonZeroSender: string;
/**
* Lookup257: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
* Lookup258: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: string;
/**
* Lookup258: frame_system::extensions::check_tx_version::CheckTxVersion<T>
* Lookup259: frame_system::extensions::check_tx_version::CheckTxVersion<T>
**/
FrameSystemExtensionsCheckTxVersion: string;
/**
* Lookup259: frame_system::extensions::check_genesis::CheckGenesis<T>
* Lookup260: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: string;
/**
* Lookup262: common_runtime::extensions::check_nonce::CheckNonce<T>
* Lookup263: common_runtime::extensions::check_nonce::CheckNonce<T>
**/
CommonRuntimeExtensionsCheckNonce: string;
/**
* Lookup263: frame_system::extensions::check_weight::CheckWeight<T>
* Lookup264: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: string;
/**
* Lookup264: pallet_transaction_payment::ChargeTransactionPayment<T>
* Lookup265: pallet_transaction_payment::ChargeTransactionPayment<T>
**/
PalletTransactionPaymentChargeTransactionPayment: string;
/**
* Lookup265: pallet_msa::CheckFreeExtrinsicUse<T>
* Lookup266: pallet_msa::CheckFreeExtrinsicUse<T>
**/
PalletMsaCheckFreeExtrinsicUse: string;
/**
* Lookup266: frequency_runtime::Runtime
* Lookup267: frequency_runtime::Runtime
**/

@@ -1785,0 +1787,0 @@ FrequencyRuntimeRuntime: string;

@@ -586,7 +586,7 @@ // Auto-generated via `yarn polkadot-types-from-defs`, do not edit

},
KeyAdded: {
PublicKeyAdded: {
msaId: 'u64',
key: 'AccountId32',
},
KeyRemoved: {
PublicKeyDeleted: {
key: 'AccountId32',

@@ -598,3 +598,3 @@ },

},
ProviderRegistered: {
ProviderCreated: {
providerMsaId: 'u64',

@@ -1340,3 +1340,3 @@ },

},
add_provider_to_msa: {
grant_delegation: {
delegatorKey: 'AccountId32',

@@ -1346,11 +1346,13 @@ proof: 'SpRuntimeMultiSignature',

},
revoke_msa_delegation_by_delegator: {
revoke_delegation_by_delegator: {
providerMsaId: 'u64',
},
add_key_to_msa: {
key: 'AccountId32',
proof: 'SpRuntimeMultiSignature',
msaOwnerPublicKey: 'AccountId32',
msaOwnerProof: 'SpRuntimeMultiSignature',
newPublicKey: 'AccountId32',
newKeyOwnerProof: 'SpRuntimeMultiSignature',
addKeyPayload: 'PalletMsaAddKeyData',
},
delete_msa_key: {
delete_msa_public_key: {
key: 'AccountId32',

@@ -1695,3 +1697,3 @@ },

/**
* Lookup237: common_primitives::msa::ProviderInfo<BlockNumber, MaxSchemaGrants>
* Lookup237: common_primitives::msa::ProviderInfo<BlockNumber, MaxSchemaGrantsPerDelegation>
**/

@@ -1707,15 +1709,15 @@ CommonPrimitivesMsaProviderInfo: {

/**
* Lookup240: common_primitives::msa::ProviderMetadata<T>
* Lookup240: common_primitives::msa::ProviderRegistryEntry<T>
**/
CommonPrimitivesMsaProviderMetadata: {
CommonPrimitivesMsaProviderRegistryEntry: {
providerName: 'Bytes'
},
/**
* Lookup242: pallet_msa::pallet::Error<T>
* Lookup243: pallet_msa::pallet::Error<T>
**/
PalletMsaError: {
_enum: ['KeyAlreadyRegistered', 'MsaIdOverflow', 'AddKeySignatureVerificationFailed', 'NotMsaOwner', 'InvalidSignature', 'NotKeyOwner', 'NoKeyExists', 'KeyLimitExceeded', 'MoreThanOneKeyExists', 'RegisteredProviderCannotBeRetired', 'InvalidSelfRemoval', 'InvalidSelfProvider', 'DuplicateProvider', 'AddProviderSignatureVerificationFailed', 'UnauthorizedDelegator', 'UnauthorizedProvider', 'DelegationRevoked', 'DelegationNotFound', 'DelegationExpired', 'DuplicateProviderMetadata', 'ExceedsMaxProviderNameSize', 'ExceedsMaxSchemaGrants', 'SchemaNotGranted', 'ProviderNotRegistered', 'ProofHasExpired', 'ProofNotYetValid']
_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']
},
/**
* Lookup245: pallet_messages::types::Message<MaxDataSize>
* Lookup246: pallet_messages::types::Message<MaxDataSize>
**/

@@ -1729,3 +1731,3 @@ PalletMessagesMessage: {

/**
* Lookup251: pallet_messages::pallet::Error<T>
* Lookup252: pallet_messages::pallet::Error<T>
**/

@@ -1736,3 +1738,3 @@ PalletMessagesError: {

/**
* Lookup252: pallet_schemas::types::Schema<MaxModelSize>
* Lookup253: pallet_schemas::types::Schema<MaxModelSize>
**/

@@ -1745,3 +1747,3 @@ PalletSchemasSchema: {

/**
* Lookup253: pallet_schemas::pallet::Error<T>
* Lookup254: pallet_schemas::pallet::Error<T>
**/

@@ -1752,37 +1754,37 @@ PalletSchemasError: {

/**
* Lookup256: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
* Lookup257: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
**/
FrameSystemExtensionsCheckNonZeroSender: 'Null',
/**
* Lookup257: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
* Lookup258: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
* Lookup258: frame_system::extensions::check_tx_version::CheckTxVersion<T>
* Lookup259: frame_system::extensions::check_tx_version::CheckTxVersion<T>
**/
FrameSystemExtensionsCheckTxVersion: 'Null',
/**
* Lookup259: frame_system::extensions::check_genesis::CheckGenesis<T>
* Lookup260: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
* Lookup262: common_runtime::extensions::check_nonce::CheckNonce<T>
* Lookup263: common_runtime::extensions::check_nonce::CheckNonce<T>
**/
CommonRuntimeExtensionsCheckNonce: 'Compact<u32>',
/**
* Lookup263: frame_system::extensions::check_weight::CheckWeight<T>
* Lookup264: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
* Lookup264: pallet_transaction_payment::ChargeTransactionPayment<T>
* Lookup265: pallet_transaction_payment::ChargeTransactionPayment<T>
**/
PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
* Lookup265: pallet_msa::CheckFreeExtrinsicUse<T>
* Lookup266: pallet_msa::CheckFreeExtrinsicUse<T>
**/
PalletMsaCheckFreeExtrinsicUse: 'Null',
/**
* Lookup266: frequency_runtime::Runtime
* Lookup267: 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 { 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';
declare module '@polkadot/types/types/registry' {
interface InterfaceTypes {
CommonPrimitivesMsaProviderInfo: CommonPrimitivesMsaProviderInfo;
CommonPrimitivesMsaProviderMetadata: CommonPrimitivesMsaProviderMetadata;
CommonPrimitivesMsaProviderRegistryEntry: CommonPrimitivesMsaProviderRegistryEntry;
CommonPrimitivesSchemaModelType: CommonPrimitivesSchemaModelType;

@@ -8,0 +8,0 @@ CommonPrimitivesSchemaPayloadLocation: CommonPrimitivesSchemaPayloadLocation;

{
"name": "@frequency-chain/api-augment",
"version": "0.0.0-3cd432",
"version": "0.0.0-404b57",
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc