@kiltprotocol/augment-api
Advanced tools
Comparing version 0.33.1 to 0.33.2-0
@@ -126,6 +126,7 @@ import '@polkadot/api-base/types/consts'; | ||
* The amount of balance that will be taken for each DID as a deposit | ||
* to incentivise fair use of the on chain storage. The deposit can be | ||
* reclaimed when the DID is deleted. | ||
* to incentivise fair use of the on chain storage. The deposits | ||
* increase by the amount of used keys and service endpoints. The | ||
* deposit can be reclaimed when the DID is deleted. | ||
**/ | ||
deposit: u128 & AugmentedConst<ApiType>; | ||
baseDeposit: u128 & AugmentedConst<ApiType>; | ||
/** | ||
@@ -138,2 +139,7 @@ * The amount of balance that will be taken for each DID as a fee to | ||
/** | ||
* The amount of balance that will be taken for each added key as a | ||
* deposit to incentivise fair use of the on chain storage. | ||
**/ | ||
keyDeposit: u128 & AugmentedConst<ApiType>; | ||
/** | ||
* The maximum number of blocks a DID-authorized operation is | ||
@@ -185,2 +191,9 @@ * considered valid after its creation. | ||
maxTotalKeyAgreementKeys: u32 & AugmentedConst<ApiType>; | ||
/** | ||
* The amount of balance that will be taken for each service endpoint | ||
* as a deposit to incentivise fair use of the on chain storage. The | ||
* deposit can be reclaimed when the service endpoint is removed or the | ||
* DID deleted. | ||
**/ | ||
serviceEndpointDeposit: u128 & AugmentedConst<ApiType>; | ||
}; | ||
@@ -214,2 +227,23 @@ didLookup: { | ||
}; | ||
multisig: { | ||
/** | ||
* The base amount of currency needed to reserve for creating a multisig execution or to | ||
* store a dispatch call for later. | ||
* | ||
* This is held for an additional storage item whose value size is | ||
* `4 + sizeof((BlockNumber, Balance, AccountId))` bytes and whose key size is | ||
* `32 + sizeof(AccountId)` bytes. | ||
**/ | ||
depositBase: u128 & AugmentedConst<ApiType>; | ||
/** | ||
* The amount of currency needed per unit threshold when creating a multisig execution. | ||
* | ||
* This is held for adding 32 bytes more into a pre-existing storage value. | ||
**/ | ||
depositFactor: u128 & AugmentedConst<ApiType>; | ||
/** | ||
* The maximum amount of signatories allowed in the multisig. | ||
**/ | ||
maxSignatories: u32 & AugmentedConst<ApiType>; | ||
}; | ||
parachainStaking: { | ||
@@ -216,0 +250,0 @@ /** |
@@ -285,2 +285,6 @@ import '@polkadot/api-base/types/errors'; | ||
/** | ||
* The preimage does not exist. | ||
**/ | ||
PreimageNotExist: AugmentedError<ApiType>; | ||
/** | ||
* Proposal still blacklisted | ||
@@ -498,2 +502,60 @@ **/ | ||
}; | ||
multisig: { | ||
/** | ||
* Call is already approved by this signatory. | ||
**/ | ||
AlreadyApproved: AugmentedError<ApiType>; | ||
/** | ||
* The data to be stored is already stored. | ||
**/ | ||
AlreadyStored: AugmentedError<ApiType>; | ||
/** | ||
* The maximum weight information provided was too low. | ||
**/ | ||
MaxWeightTooLow: AugmentedError<ApiType>; | ||
/** | ||
* Threshold must be 2 or greater. | ||
**/ | ||
MinimumThreshold: AugmentedError<ApiType>; | ||
/** | ||
* Call doesn't need any (more) approvals. | ||
**/ | ||
NoApprovalsNeeded: AugmentedError<ApiType>; | ||
/** | ||
* Multisig operation not found when attempting to cancel. | ||
**/ | ||
NotFound: AugmentedError<ApiType>; | ||
/** | ||
* No timepoint was given, yet the multisig operation is already underway. | ||
**/ | ||
NoTimepoint: AugmentedError<ApiType>; | ||
/** | ||
* Only the account that originally created the multisig is able to cancel it. | ||
**/ | ||
NotOwner: AugmentedError<ApiType>; | ||
/** | ||
* The sender was contained in the other signatories; it shouldn't be. | ||
**/ | ||
SenderInSignatories: AugmentedError<ApiType>; | ||
/** | ||
* The signatories were provided out of order; they should be ordered. | ||
**/ | ||
SignatoriesOutOfOrder: AugmentedError<ApiType>; | ||
/** | ||
* There are too few signatories in the list. | ||
**/ | ||
TooFewSignatories: AugmentedError<ApiType>; | ||
/** | ||
* There are too many signatories in the list. | ||
**/ | ||
TooManySignatories: AugmentedError<ApiType>; | ||
/** | ||
* A timepoint was given, yet no multisig operation is underway. | ||
**/ | ||
UnexpectedTimepoint: AugmentedError<ApiType>; | ||
/** | ||
* A different timepoint was given to the multisig operation that is underway. | ||
**/ | ||
WrongTimepoint: AugmentedError<ApiType>; | ||
}; | ||
parachainStaking: { | ||
@@ -655,3 +717,3 @@ /** | ||
/** | ||
* The inherent which supplies the host configuration did not run this block | ||
* The inherent which supplies the host configuration did not run this block. | ||
**/ | ||
@@ -668,7 +730,7 @@ HostConfigurationNotAvailable: AugmentedError<ApiType>; | ||
/** | ||
* Attempt to upgrade validation function while existing upgrade pending | ||
* Attempt to upgrade validation function while existing upgrade pending. | ||
**/ | ||
OverlappingUpgrades: AugmentedError<ApiType>; | ||
/** | ||
* Polkadot currently prohibits this parachain from upgrading its validation function | ||
* Polkadot currently prohibits this parachain from upgrading its validation function. | ||
**/ | ||
@@ -678,3 +740,3 @@ ProhibitedByPolkadot: AugmentedError<ApiType>; | ||
* The supplied validation function has compiled into a blob larger than Polkadot is | ||
* willing to run | ||
* willing to run. | ||
**/ | ||
@@ -687,3 +749,3 @@ TooBig: AugmentedError<ApiType>; | ||
/** | ||
* The inherent which supplies the validation data did not run this block | ||
* The inherent which supplies the validation data did not run this block. | ||
**/ | ||
@@ -690,0 +752,0 @@ ValidationDataNotAvailable: AugmentedError<ApiType>; |
@@ -6,3 +6,3 @@ import '@polkadot/api-base/types/events'; | ||
import type { AccountId32, H256, Perquintill } from '@polkadot/types/interfaces/runtime'; | ||
import type { DelegationDelegationHierarchyPermissions, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, PalletDemocracyVoteAccountVote, PalletDemocracyVoteThreshold, PalletDidLookupLinkableAccountLinkableAccountId, RuntimeCommonAssetsAssetDid, RuntimeCommonAuthorizationAuthorizationId, SpRuntimeDispatchError, SpWeightsWeightV2Weight, SpiritnetRuntimeProxyType, XcmV3MultiLocation, XcmV3MultiassetMultiAssets, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup'; | ||
import type { DelegationDelegationHierarchyPermissions, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, PalletDemocracyMetadataOwner, PalletDemocracyVoteAccountVote, PalletDemocracyVoteThreshold, PalletDidLookupLinkableAccountLinkableAccountId, PalletMultisigTimepoint, RuntimeCommonAssetsAssetDid, RuntimeCommonAuthorizationAuthorizationId, SpRuntimeDispatchError, SpWeightsWeightV2Weight, SpiritnetRuntimeProxyType, XcmV3MultiLocation, XcmV3MultiassetMultiAssets, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup'; | ||
export declare type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>; | ||
@@ -260,2 +260,24 @@ declare module '@polkadot/api-base/types/events' { | ||
/** | ||
* Metadata for a proposal or a referendum has been cleared. | ||
**/ | ||
MetadataCleared: AugmentedEvent<ApiType, [owner: PalletDemocracyMetadataOwner, hash_: H256], { | ||
owner: PalletDemocracyMetadataOwner; | ||
hash_: H256; | ||
}>; | ||
/** | ||
* Metadata for a proposal or a referendum has been set. | ||
**/ | ||
MetadataSet: AugmentedEvent<ApiType, [owner: PalletDemocracyMetadataOwner, hash_: H256], { | ||
owner: PalletDemocracyMetadataOwner; | ||
hash_: H256; | ||
}>; | ||
/** | ||
* Metadata has been transferred to new owner. | ||
**/ | ||
MetadataTransferred: AugmentedEvent<ApiType, [prevOwner: PalletDemocracyMetadataOwner, owner: PalletDemocracyMetadataOwner, hash_: H256], { | ||
prevOwner: PalletDemocracyMetadataOwner; | ||
owner: PalletDemocracyMetadataOwner; | ||
hash_: H256; | ||
}>; | ||
/** | ||
* A proposal has been rejected by referendum. | ||
@@ -384,2 +406,8 @@ **/ | ||
/** | ||
* The maximum number of downward messages was. | ||
**/ | ||
MaxMessagesExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed], { | ||
messageId: U8aFixed; | ||
}>; | ||
/** | ||
* Downward message is overweight and was placed in the overweight queue. | ||
@@ -436,2 +464,40 @@ **/ | ||
}; | ||
multisig: { | ||
/** | ||
* A multisig operation has been approved by someone. | ||
**/ | ||
MultisigApproval: AugmentedEvent<ApiType, [approving: AccountId32, timepoint: PalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed], { | ||
approving: AccountId32; | ||
timepoint: PalletMultisigTimepoint; | ||
multisig: AccountId32; | ||
callHash: U8aFixed; | ||
}>; | ||
/** | ||
* A multisig operation has been cancelled. | ||
**/ | ||
MultisigCancelled: AugmentedEvent<ApiType, [cancelling: AccountId32, timepoint: PalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed], { | ||
cancelling: AccountId32; | ||
timepoint: PalletMultisigTimepoint; | ||
multisig: AccountId32; | ||
callHash: U8aFixed; | ||
}>; | ||
/** | ||
* A multisig operation has been executed. | ||
**/ | ||
MultisigExecuted: AugmentedEvent<ApiType, [approving: AccountId32, timepoint: PalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed, result: Result<Null, SpRuntimeDispatchError>], { | ||
approving: AccountId32; | ||
timepoint: PalletMultisigTimepoint; | ||
multisig: AccountId32; | ||
callHash: U8aFixed; | ||
result: Result<Null, SpRuntimeDispatchError>; | ||
}>; | ||
/** | ||
* A new multisig operation has begun. | ||
**/ | ||
NewMultisig: AugmentedEvent<ApiType, [approving: AccountId32, multisig: AccountId32, callHash: U8aFixed], { | ||
approving: AccountId32; | ||
multisig: AccountId32; | ||
callHash: U8aFixed; | ||
}>; | ||
}; | ||
parachainStaking: { | ||
@@ -438,0 +504,0 @@ /** |
@@ -6,3 +6,3 @@ import '@polkadot/api-base/types/storage'; | ||
import type { AccountId32, Call, H256 } from '@polkadot/types/interfaces/runtime'; | ||
import type { AttestationAttestationsAttestationDetails, CtypeCtypeEntry, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, DelegationDelegationHierarchyDelegationHierarchyDetails, DelegationDelegationHierarchyDelegationNode, DidDidDetails, DidServiceEndpointsDidEndpoint, FrameSupportDispatchPerDispatchClassWeight, FrameSupportPreimagesBounded, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletCollectiveVotes, PalletDemocracyReferendumInfo, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletDidLookupConnectionRecord, PalletDidLookupLinkableAccountLinkableAccountId, PalletDidLookupMigrationState, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyProxyDefinition, PalletSchedulerScheduled, PalletTipsOpenTip, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletVestingReleases, PalletVestingVestingInfo, PalletWeb3NamesWeb3NameWeb3NameOwnership, ParachainStakingCandidate, ParachainStakingDelegationCounter, ParachainStakingInflationInflationInfo, ParachainStakingRoundInfo, ParachainStakingStake, ParachainStakingTotalStake, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, PublicCredentialsCredentialsCredentialEntry, RuntimeCommonAssetsAssetDid, RuntimeCommonAuthorizationAuthorizationId, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, SpiritnetRuntimeSessionKeys } from '@polkadot/types/lookup'; | ||
import type { AttestationAttestationsAttestationDetails, CtypeCtypeEntry, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, DelegationDelegationHierarchyDelegationHierarchyDetails, DelegationDelegationHierarchyDelegationNode, DidDidDetails, DidServiceEndpointsDidEndpoint, FrameSupportDispatchPerDispatchClassWeight, FrameSupportPreimagesBounded, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletCollectiveVotes, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletDidLookupConnectionRecord, PalletDidLookupLinkableAccountLinkableAccountId, PalletMultisigMultisig, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyProxyDefinition, PalletSchedulerScheduled, PalletTipsOpenTip, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletVestingReleases, PalletVestingVestingInfo, PalletWeb3NamesWeb3NameWeb3NameOwnership, ParachainStakingCandidate, ParachainStakingDelegationCounter, ParachainStakingInflationInflationInfo, ParachainStakingRoundInfo, ParachainStakingStake, ParachainStakingTotalStake, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, PublicCredentialsCredentialsCredentialEntry, RuntimeCommonAssetsAssetDid, RuntimeCommonAuthorizationAuthorizationId, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, SpiritnetRuntimeSessionKeys } from '@polkadot/types/lookup'; | ||
import type { Observable } from '@polkadot/types/types'; | ||
@@ -179,2 +179,17 @@ export declare type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>; | ||
/** | ||
* General information concerning any proposal or referendum. | ||
* The `PreimageHash` refers to the preimage of the `Preimages` provider which can be a JSON | ||
* dump or IPFS hash of a JSON file. | ||
* | ||
* Consider a garbage collection for a metadata of finished referendums to `unrequest` (remove) | ||
* large preimages. | ||
**/ | ||
metadataOf: AugmentedQuery<ApiType, (arg: PalletDemocracyMetadataOwner | { | ||
External: any; | ||
} | { | ||
Proposal: any; | ||
} | { | ||
Referendum: any; | ||
} | string | Uint8Array) => Observable<Option<H256>>, [PalletDemocracyMetadataOwner]>; | ||
/** | ||
* The referendum to be tabled whenever it would be valid to table an external proposal. | ||
@@ -259,3 +274,2 @@ * This happens when a referendum needs to be tabled and one of two conditions are met: | ||
} | string | Uint8Array) => Observable<Option<PalletDidLookupConnectionRecord>>, [PalletDidLookupLinkableAccountLinkableAccountId]>; | ||
migrationStateStore: AugmentedQuery<ApiType, () => Observable<PalletDidLookupMigrationState>, []>; | ||
}; | ||
@@ -290,2 +304,8 @@ dmpQueue: { | ||
}; | ||
multisig: { | ||
/** | ||
* The set of open multisig operations. | ||
**/ | ||
multisigs: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: U8aFixed | string | Uint8Array) => Observable<Option<PalletMultisigMultisig>>, [AccountId32, U8aFixed]>; | ||
}; | ||
parachainInfo: { | ||
@@ -406,3 +426,3 @@ parachainId: AugmentedQuery<ApiType, () => Observable<u32>, []>; | ||
**/ | ||
authorizedUpgrade: AugmentedQuery<ApiType, () => Observable<Option<H256>>, []>; | ||
authorizedUpgrade: AugmentedQuery<ApiType, () => Observable<Option<CumulusPalletParachainSystemCodeUpgradeAuthorization>>, []>; | ||
/** | ||
@@ -572,10 +592,2 @@ * A custom head data that should be returned as result of `validate_block`. | ||
}; | ||
randomnessCollectiveFlip: { | ||
/** | ||
* Series of block headers from the last 81 blocks that acts as random seed material. This | ||
* is arranged as a ring buffer with `block_number % 81` being the index into the `Vec` of | ||
* the oldest hash. | ||
**/ | ||
randomMaterial: AugmentedQuery<ApiType, () => Observable<Vec<H256>>, []>; | ||
}; | ||
scheduler: { | ||
@@ -582,0 +594,0 @@ /** |
import '@polkadot/types/types/registry'; | ||
import type { AttestationAttestationsAttestationDetails, AttestationCall, AttestationError, AttestationEvent, CtypeCall, CtypeCtypeEntry, CtypeError, CtypeEvent, CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, DelegationAccessControlDelegationAc, DelegationCall, DelegationDelegationHierarchyDelegationDetails, DelegationDelegationHierarchyDelegationHierarchyDetails, DelegationDelegationHierarchyDelegationNode, DelegationDelegationHierarchyPermissions, DelegationError, DelegationEvent, DidCall, DidDidDetails, DidDidDetailsDidAuthorizedCallOperation, DidDidDetailsDidCreationDetails, DidDidDetailsDidEncryptionKey, DidDidDetailsDidPublicKey, DidDidDetailsDidPublicKeyDetails, DidDidDetailsDidSignature, DidDidDetailsDidVerificationKey, DidError, DidEvent, DidOriginDidRawOrigin, DidServiceEndpointsDidEndpoint, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonZeroSender, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, KiltAssetDidsAssetV1AssetId, KiltAssetDidsAssetV1EvmSmartContractFungibleReference, KiltAssetDidsAssetV1EvmSmartContractNonFungibleReference, KiltAssetDidsAssetV1GenericAssetId, KiltAssetDidsChainV1ChainId, KiltAssetDidsChainV1GenericChainId, KiltAssetDidsChainV1GenesisHexHash32Reference, KiltAssetDidsV1AssetDid, KiltSupportDeposit, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletDidLookupAccountAccountId20, PalletDidLookupAccountEthereumSignature, PalletDidLookupAssociateAccountRequest, PalletDidLookupCall, PalletDidLookupConnectionRecord, PalletDidLookupError, PalletDidLookupEvent, PalletDidLookupLinkableAccountLinkableAccountId, PalletDidLookupMigrationState, PalletDidLookupMigrationsMixedStorageKey, PalletIndicesCall, PalletIndicesError, PalletIndicesEvent, PalletMembershipCall, PalletMembershipError, PalletMembershipEvent, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyCall, PalletProxyError, PalletProxyEvent, PalletProxyProxyDefinition, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletTimestampCall, PalletTipsCall, PalletTipsError, PalletTipsEvent, PalletTipsOpenTip, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletVestingCall, PalletVestingError, PalletVestingEvent, PalletVestingReleases, PalletVestingVestingInfo, PalletWeb3NamesCall, PalletWeb3NamesError, PalletWeb3NamesEvent, PalletWeb3NamesWeb3NameWeb3NameOwnership, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, ParachainStakingCall, ParachainStakingCandidate, ParachainStakingCandidateStatus, ParachainStakingDelegationCounter, ParachainStakingError, ParachainStakingEvent, ParachainStakingInflationInflationInfo, ParachainStakingInflationRewardRate, ParachainStakingInflationStakingInfo, ParachainStakingRoundInfo, ParachainStakingSetOrderedSet, ParachainStakingStake, ParachainStakingTotalStake, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, PublicCredentialsCall, PublicCredentialsCredentialsCredential, PublicCredentialsCredentialsCredentialEntry, PublicCredentialsError, PublicCredentialsEvent, RuntimeCommonAssetsAssetDid, RuntimeCommonAuthorizationAuthorizationId, RuntimeCommonAuthorizationPalletAuthorize, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaPublic, SpCoreEcdsaSignature, SpCoreEd25519Public, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, SpiritnetRuntimeOriginCaller, SpiritnetRuntimeProxyType, SpiritnetRuntimeRuntime, SpiritnetRuntimeSessionKeys, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3VecPalletInfo, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup'; | ||
import type { AttestationAttestationsAttestationDetails, AttestationCall, AttestationError, AttestationEvent, CtypeCall, CtypeCtypeEntry, CtypeError, CtypeEvent, CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, DelegationAccessControlDelegationAc, DelegationCall, DelegationDelegationHierarchyDelegationDetails, DelegationDelegationHierarchyDelegationHierarchyDetails, DelegationDelegationHierarchyDelegationNode, DelegationDelegationHierarchyPermissions, DelegationError, DelegationEvent, DidCall, DidDidDetails, DidDidDetailsDidAuthorizedCallOperation, DidDidDetailsDidCreationDetails, DidDidDetailsDidEncryptionKey, DidDidDetailsDidPublicKey, DidDidDetailsDidPublicKeyDetails, DidDidDetailsDidSignature, DidDidDetailsDidVerificationKey, DidError, DidEvent, DidOriginDidRawOrigin, DidServiceEndpointsDidEndpoint, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonZeroSender, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, KiltAssetDidsAssetV1AssetId, KiltAssetDidsAssetV1EvmSmartContractFungibleReference, KiltAssetDidsAssetV1EvmSmartContractNonFungibleReference, KiltAssetDidsAssetV1GenericAssetId, KiltAssetDidsChainV1ChainId, KiltAssetDidsChainV1GenericChainId, KiltAssetDidsChainV1GenesisHexHash32Reference, KiltAssetDidsV1AssetDid, KiltSupportDeposit, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletDidLookupAccountAccountId20, PalletDidLookupAccountEthereumSignature, PalletDidLookupAssociateAccountRequest, PalletDidLookupCall, PalletDidLookupConnectionRecord, PalletDidLookupError, PalletDidLookupEvent, PalletDidLookupLinkableAccountLinkableAccountId, PalletIndicesCall, PalletIndicesError, PalletIndicesEvent, PalletMembershipCall, PalletMembershipError, PalletMembershipEvent, PalletMultisigCall, PalletMultisigError, PalletMultisigEvent, PalletMultisigMultisig, PalletMultisigTimepoint, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyCall, PalletProxyError, PalletProxyEvent, PalletProxyProxyDefinition, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletTimestampCall, PalletTipsCall, PalletTipsError, PalletTipsEvent, PalletTipsOpenTip, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletVestingCall, PalletVestingError, PalletVestingEvent, PalletVestingReleases, PalletVestingVestingInfo, PalletWeb3NamesCall, PalletWeb3NamesError, PalletWeb3NamesEvent, PalletWeb3NamesWeb3NameWeb3NameOwnership, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, ParachainStakingCall, ParachainStakingCandidate, ParachainStakingCandidateStatus, ParachainStakingDelegationCounter, ParachainStakingError, ParachainStakingEvent, ParachainStakingInflationInflationInfo, ParachainStakingInflationRewardRate, ParachainStakingInflationStakingInfo, ParachainStakingRoundInfo, ParachainStakingSetOrderedSet, ParachainStakingStake, ParachainStakingTotalStake, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, PublicCredentialsCall, PublicCredentialsCredentialsCredential, PublicCredentialsCredentialsCredentialEntry, PublicCredentialsError, PublicCredentialsEvent, RuntimeCommonAssetsAssetDid, RuntimeCommonAuthorizationAuthorizationId, RuntimeCommonAuthorizationPalletAuthorize, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaPublic, SpCoreEcdsaSignature, SpCoreEd25519Public, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, SpiritnetRuntimeOriginCaller, SpiritnetRuntimeProxyType, SpiritnetRuntimeRuntime, SpiritnetRuntimeSessionKeys, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup'; | ||
declare module '@polkadot/types/types/registry' { | ||
@@ -19,2 +19,3 @@ interface InterfaceTypes { | ||
CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall; | ||
CumulusPalletParachainSystemCodeUpgradeAuthorization: CumulusPalletParachainSystemCodeUpgradeAuthorization; | ||
CumulusPalletParachainSystemError: CumulusPalletParachainSystemError; | ||
@@ -108,2 +109,3 @@ CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent; | ||
PalletDemocracyEvent: PalletDemocracyEvent; | ||
PalletDemocracyMetadataOwner: PalletDemocracyMetadataOwner; | ||
PalletDemocracyReferendumInfo: PalletDemocracyReferendumInfo; | ||
@@ -124,4 +126,2 @@ PalletDemocracyReferendumStatus: PalletDemocracyReferendumStatus; | ||
PalletDidLookupLinkableAccountLinkableAccountId: PalletDidLookupLinkableAccountLinkableAccountId; | ||
PalletDidLookupMigrationState: PalletDidLookupMigrationState; | ||
PalletDidLookupMigrationsMixedStorageKey: PalletDidLookupMigrationsMixedStorageKey; | ||
PalletIndicesCall: PalletIndicesCall; | ||
@@ -133,2 +133,7 @@ PalletIndicesError: PalletIndicesError; | ||
PalletMembershipEvent: PalletMembershipEvent; | ||
PalletMultisigCall: PalletMultisigCall; | ||
PalletMultisigError: PalletMultisigError; | ||
PalletMultisigEvent: PalletMultisigEvent; | ||
PalletMultisigMultisig: PalletMultisigMultisig; | ||
PalletMultisigTimepoint: PalletMultisigTimepoint; | ||
PalletPreimageCall: PalletPreimageCall; | ||
@@ -274,3 +279,2 @@ PalletPreimageError: PalletPreimageError; | ||
XcmV3TraitsOutcome: XcmV3TraitsOutcome; | ||
XcmV3VecPalletInfo: XcmV3VecPalletInfo; | ||
XcmV3WeightLimit: XcmV3WeightLimit; | ||
@@ -277,0 +281,0 @@ XcmV3Xcm: XcmV3Xcm; |
{ | ||
"name": "@kiltprotocol/augment-api", | ||
"version": "0.33.1", | ||
"version": "0.33.2-0", | ||
"description": "", | ||
@@ -52,4 +52,4 @@ "types": "./lib/index.d.ts", | ||
"dependencies": { | ||
"@kiltprotocol/type-definitions": "0.33.1" | ||
"@kiltprotocol/type-definitions": "0.33.2-0" | ||
} | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
791660
18183
+ Added@kiltprotocol/type-definitions@0.33.2-0(transitive)
- Removed@kiltprotocol/type-definitions@0.33.1(transitive)