@kiltprotocol/augment-api
Advanced tools
Comparing version 0.35.0-rc.1 to 0.35.0-rc.2
@@ -22,6 +22,21 @@ import '@polkadot/api-base/types/consts'; | ||
/** | ||
* The minimum amount required to keep an account open. | ||
* The minimum amount required to keep an account open. MUST BE GREATER THAN ZERO! | ||
* | ||
* If you *really* need it to be zero, you can enable the feature `insecure_zero_ed` for | ||
* this pallet. However, you do so at your own risk: this will open up a major DoS vector. | ||
* In case you have multiple sources of provider references, you may also get unexpected | ||
* behaviour if you set this to zero. | ||
* | ||
* Bottom line: Do yourself a favour and make it at least one! | ||
**/ | ||
existentialDeposit: u128 & AugmentedConst<ApiType>; | ||
/** | ||
* The maximum number of individual freeze locks that can exist on an account at any time. | ||
**/ | ||
maxFreezes: u32 & AugmentedConst<ApiType>; | ||
/** | ||
* The maximum number of holds that can exist on an account at any time. | ||
**/ | ||
maxHolds: u32 & AugmentedConst<ApiType>; | ||
/** | ||
* The maximum number of locks that should exist on an account. | ||
@@ -36,2 +51,8 @@ * Not strictly enforced, but used for weight estimation. | ||
}; | ||
council: { | ||
/** | ||
* The maximum weight of a dispatch call that can be proposed and executed. | ||
**/ | ||
maxProposalWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>; | ||
}; | ||
delegation: { | ||
@@ -226,2 +247,8 @@ /** | ||
}; | ||
migration: { | ||
/** | ||
* The max amount on migrations for each pallet | ||
**/ | ||
maxMigrationsPerPallet: u32 & AugmentedConst<ApiType>; | ||
}; | ||
multisig: { | ||
@@ -396,2 +423,6 @@ /** | ||
* The maximum number of scheduled calls in the queue for a single block. | ||
* | ||
* NOTE: | ||
* + Dependent pallets' benchmarks might require a higher limit for the setting. Set a | ||
* higher limit under `runtime-benchmarks` feature. | ||
**/ | ||
@@ -430,2 +461,8 @@ maxScheduledPerBlock: u32 & AugmentedConst<ApiType>; | ||
}; | ||
technicalCommittee: { | ||
/** | ||
* The maximum weight of a dispatch call that can be proposed and executed. | ||
**/ | ||
maxProposalWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>; | ||
}; | ||
timestamp: { | ||
@@ -432,0 +469,0 @@ /** |
@@ -38,14 +38,18 @@ import '@polkadot/api-base/types/errors'; | ||
/** | ||
* Beneficiary account must pre-exist | ||
* Beneficiary account must pre-exist. | ||
**/ | ||
DeadAccount: AugmentedError<ApiType>; | ||
/** | ||
* Value too low to create account due to existential deposit | ||
* Value too low to create account due to existential deposit. | ||
**/ | ||
ExistentialDeposit: AugmentedError<ApiType>; | ||
/** | ||
* A vesting schedule already exists for this account | ||
* A vesting schedule already exists for this account. | ||
**/ | ||
ExistingVestingSchedule: AugmentedError<ApiType>; | ||
/** | ||
* Transfer/payment would kill account. | ||
**/ | ||
Expendability: AugmentedError<ApiType>; | ||
/** | ||
* Balance too low to send value. | ||
@@ -55,15 +59,19 @@ **/ | ||
/** | ||
* Transfer/payment would kill account | ||
* Account liquidity restrictions prevent withdrawal. | ||
**/ | ||
KeepAlive: AugmentedError<ApiType>; | ||
LiquidityRestrictions: AugmentedError<ApiType>; | ||
/** | ||
* Account liquidity restrictions prevent withdrawal | ||
* Number of freezes exceed `MaxFreezes`. | ||
**/ | ||
LiquidityRestrictions: AugmentedError<ApiType>; | ||
TooManyFreezes: AugmentedError<ApiType>; | ||
/** | ||
* Number of named reserves exceed MaxReserves | ||
* Number of holds exceed `MaxHolds`. | ||
**/ | ||
TooManyHolds: AugmentedError<ApiType>; | ||
/** | ||
* Number of named reserves exceed `MaxReserves`. | ||
**/ | ||
TooManyReserves: AugmentedError<ApiType>; | ||
/** | ||
* Vesting balance too high to send value | ||
* Vesting balance too high to send value. | ||
**/ | ||
@@ -503,2 +511,5 @@ VestingBalance: AugmentedError<ApiType>; | ||
}; | ||
migration: { | ||
KeyParse: AugmentedError<ApiType>; | ||
}; | ||
multisig: { | ||
@@ -790,3 +801,3 @@ /** | ||
/** | ||
* The unlock operation cannot succeed because there are still users of the lock. | ||
* The unlock operation cannot succeed because there are still consumers of the lock. | ||
**/ | ||
@@ -793,0 +804,0 @@ InUse: 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, PalletDemocracyMetadataOwner, PalletDemocracyVoteAccountVote, PalletDemocracyVoteThreshold, PalletDidLookupLinkableAccountLinkableAccountId, PalletMultisigTimepoint, 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, PalletMigrationEntriesToMigrate, 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>; | ||
@@ -37,8 +37,14 @@ declare module '@polkadot/api-base/types/events' { | ||
**/ | ||
BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128, reserved: u128], { | ||
BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128], { | ||
who: AccountId32; | ||
free: u128; | ||
reserved: u128; | ||
}>; | ||
/** | ||
* Some amount was burned from an account. | ||
**/ | ||
Burned: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { | ||
who: AccountId32; | ||
amount: u128; | ||
}>; | ||
/** | ||
* Some amount was deposited (e.g. for transaction fees). | ||
@@ -66,2 +72,35 @@ **/ | ||
/** | ||
* Some balance was frozen. | ||
**/ | ||
Frozen: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { | ||
who: AccountId32; | ||
amount: u128; | ||
}>; | ||
/** | ||
* Total issuance was increased by `amount`, creating a credit to be balanced. | ||
**/ | ||
Issued: AugmentedEvent<ApiType, [amount: u128], { | ||
amount: u128; | ||
}>; | ||
/** | ||
* Some balance was locked. | ||
**/ | ||
Locked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { | ||
who: AccountId32; | ||
amount: u128; | ||
}>; | ||
/** | ||
* Some amount was minted into an account. | ||
**/ | ||
Minted: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { | ||
who: AccountId32; | ||
amount: u128; | ||
}>; | ||
/** | ||
* Total issuance was decreased by `amount`, creating a debt to be balanced. | ||
**/ | ||
Rescinded: AugmentedEvent<ApiType, [amount: u128], { | ||
amount: u128; | ||
}>; | ||
/** | ||
* Some balance was reserved (moved from free to reserved). | ||
@@ -84,2 +123,9 @@ **/ | ||
/** | ||
* Some amount was restored into an account. | ||
**/ | ||
Restored: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { | ||
who: AccountId32; | ||
amount: u128; | ||
}>; | ||
/** | ||
* Some amount was removed from the account (e.g. for misbehavior). | ||
@@ -92,2 +138,16 @@ **/ | ||
/** | ||
* Some amount was suspended from an account (it can be restored later). | ||
**/ | ||
Suspended: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { | ||
who: AccountId32; | ||
amount: u128; | ||
}>; | ||
/** | ||
* Some balance was thawed. | ||
**/ | ||
Thawed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { | ||
who: AccountId32; | ||
amount: u128; | ||
}>; | ||
/** | ||
* Transfer succeeded. | ||
@@ -101,2 +161,9 @@ **/ | ||
/** | ||
* Some balance was unlocked. | ||
**/ | ||
Unlocked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { | ||
who: AccountId32; | ||
amount: u128; | ||
}>; | ||
/** | ||
* Some balance was unreserved (moved from reserved to free). | ||
@@ -109,2 +176,8 @@ **/ | ||
/** | ||
* An account was upgraded. | ||
**/ | ||
Upgraded: AugmentedEvent<ApiType, [who: AccountId32], { | ||
who: AccountId32; | ||
}>; | ||
/** | ||
* Some amount was withdrawn from the account (e.g. for transaction fees). | ||
@@ -400,3 +473,4 @@ **/ | ||
**/ | ||
ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV3TraitsOutcome], { | ||
ExecutedDownward: AugmentedEvent<ApiType, [messageHash: U8aFixed, messageId: U8aFixed, outcome: XcmV3TraitsOutcome], { | ||
messageHash: U8aFixed; | ||
messageId: U8aFixed; | ||
@@ -408,10 +482,10 @@ outcome: XcmV3TraitsOutcome; | ||
**/ | ||
InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { | ||
messageId: U8aFixed; | ||
InvalidFormat: AugmentedEvent<ApiType, [messageHash: U8aFixed], { | ||
messageHash: U8aFixed; | ||
}>; | ||
/** | ||
* The maximum number of downward messages was. | ||
* The maximum number of downward messages was reached. | ||
**/ | ||
MaxMessagesExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed], { | ||
messageId: U8aFixed; | ||
MaxMessagesExhausted: AugmentedEvent<ApiType, [messageHash: U8aFixed], { | ||
messageHash: U8aFixed; | ||
}>; | ||
@@ -421,3 +495,4 @@ /** | ||
**/ | ||
OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight], { | ||
OverweightEnqueued: AugmentedEvent<ApiType, [messageHash: U8aFixed, messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight], { | ||
messageHash: U8aFixed; | ||
messageId: U8aFixed; | ||
@@ -437,4 +512,4 @@ overweightIndex: u64; | ||
**/ | ||
UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { | ||
messageId: U8aFixed; | ||
UnsupportedVersion: AugmentedEvent<ApiType, [messageHash: U8aFixed], { | ||
messageHash: U8aFixed; | ||
}>; | ||
@@ -444,3 +519,4 @@ /** | ||
**/ | ||
WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight], { | ||
WeightExhausted: AugmentedEvent<ApiType, [messageHash: U8aFixed, messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight], { | ||
messageHash: U8aFixed; | ||
messageId: U8aFixed; | ||
@@ -473,2 +549,5 @@ remainingWeight: SpWeightsWeightV2Weight; | ||
}; | ||
migration: { | ||
EntriesUpdated: AugmentedEvent<ApiType, [PalletMigrationEntriesToMigrate]>; | ||
}; | ||
multisig: { | ||
@@ -676,24 +755,29 @@ /** | ||
* Some assets have been claimed from an asset trap | ||
* | ||
* \[ hash, origin, assets \] | ||
**/ | ||
AssetsClaimed: AugmentedEvent<ApiType, [H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>; | ||
AssetsClaimed: AugmentedEvent<ApiType, [hash_: H256, origin: XcmV3MultiLocation, assets: XcmVersionedMultiAssets], { | ||
hash_: H256; | ||
origin: XcmV3MultiLocation; | ||
assets: XcmVersionedMultiAssets; | ||
}>; | ||
/** | ||
* Some assets have been placed in an asset trap. | ||
* | ||
* \[ hash, origin, assets \] | ||
**/ | ||
AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>; | ||
AssetsTrapped: AugmentedEvent<ApiType, [hash_: H256, origin: XcmV3MultiLocation, assets: XcmVersionedMultiAssets], { | ||
hash_: H256; | ||
origin: XcmV3MultiLocation; | ||
assets: XcmVersionedMultiAssets; | ||
}>; | ||
/** | ||
* Execution of an XCM message was attempted. | ||
* | ||
* \[ outcome \] | ||
**/ | ||
Attempted: AugmentedEvent<ApiType, [XcmV3TraitsOutcome]>; | ||
Attempted: AugmentedEvent<ApiType, [outcome: XcmV3TraitsOutcome], { | ||
outcome: XcmV3TraitsOutcome; | ||
}>; | ||
/** | ||
* Fees were paid from a location for an operation (often for using `SendXcm`). | ||
* | ||
* \[ paying location, fees \] | ||
**/ | ||
FeesPaid: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>; | ||
FeesPaid: AugmentedEvent<ApiType, [paying: XcmV3MultiLocation, fees: XcmV3MultiassetMultiAssets], { | ||
paying: XcmV3MultiLocation; | ||
fees: XcmV3MultiassetMultiAssets; | ||
}>; | ||
/** | ||
@@ -703,6 +787,9 @@ * Expected query response has been received but the querier location of the response does | ||
* be received and acted upon. | ||
* | ||
* \[ origin location, id, expected querier, maybe actual querier \] | ||
**/ | ||
InvalidQuerier: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, XcmV3MultiLocation, Option<XcmV3MultiLocation>]>; | ||
InvalidQuerier: AugmentedEvent<ApiType, [origin: XcmV3MultiLocation, queryId: u64, expectedQuerier: XcmV3MultiLocation, maybeActualQuerier: Option<XcmV3MultiLocation>], { | ||
origin: XcmV3MultiLocation; | ||
queryId: u64; | ||
expectedQuerier: XcmV3MultiLocation; | ||
maybeActualQuerier: Option<XcmV3MultiLocation>; | ||
}>; | ||
/** | ||
@@ -716,6 +803,7 @@ * Expected query response has been received but the expected querier location placed in | ||
* needed. | ||
* | ||
* \[ origin location, id \] | ||
**/ | ||
InvalidQuerierVersion: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>; | ||
InvalidQuerierVersion: AugmentedEvent<ApiType, [origin: XcmV3MultiLocation, queryId: u64], { | ||
origin: XcmV3MultiLocation; | ||
queryId: u64; | ||
}>; | ||
/** | ||
@@ -725,6 +813,8 @@ * Expected query response has been received but the origin location of the response does | ||
* be received and acted upon. | ||
* | ||
* \[ origin location, id, expected location \] | ||
**/ | ||
InvalidResponder: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, Option<XcmV3MultiLocation>]>; | ||
InvalidResponder: AugmentedEvent<ApiType, [origin: XcmV3MultiLocation, queryId: u64, expectedLocation: Option<XcmV3MultiLocation>], { | ||
origin: XcmV3MultiLocation; | ||
queryId: u64; | ||
expectedLocation: Option<XcmV3MultiLocation>; | ||
}>; | ||
/** | ||
@@ -738,13 +828,16 @@ * Expected query response has been received but the expected origin location placed in | ||
* needed. | ||
* | ||
* \[ origin location, id \] | ||
**/ | ||
InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>; | ||
InvalidResponderVersion: AugmentedEvent<ApiType, [origin: XcmV3MultiLocation, queryId: u64], { | ||
origin: XcmV3MultiLocation; | ||
queryId: u64; | ||
}>; | ||
/** | ||
* Query response has been received and query is removed. The registered notification has | ||
* been dispatched and executed successfully. | ||
* | ||
* \[ id, pallet index, call index \] | ||
**/ | ||
Notified: AugmentedEvent<ApiType, [u64, u8, u8]>; | ||
Notified: AugmentedEvent<ApiType, [queryId: u64, palletIndex: u8, callIndex: u8], { | ||
queryId: u64; | ||
palletIndex: u8; | ||
callIndex: u8; | ||
}>; | ||
/** | ||
@@ -754,13 +847,17 @@ * Query response has been received and query is removed. The dispatch was unable to be | ||
* is not `(origin, QueryId, Response)`. | ||
* | ||
* \[ id, pallet index, call index \] | ||
**/ | ||
NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>; | ||
NotifyDecodeFailed: AugmentedEvent<ApiType, [queryId: u64, palletIndex: u8, callIndex: u8], { | ||
queryId: u64; | ||
palletIndex: u8; | ||
callIndex: u8; | ||
}>; | ||
/** | ||
* Query response has been received and query is removed. There was a general error with | ||
* dispatching the notification call. | ||
* | ||
* \[ id, pallet index, call index \] | ||
**/ | ||
NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>; | ||
NotifyDispatchError: AugmentedEvent<ApiType, [queryId: u64, palletIndex: u8, callIndex: u8], { | ||
queryId: u64; | ||
palletIndex: u8; | ||
callIndex: u8; | ||
}>; | ||
/** | ||
@@ -770,46 +867,58 @@ * Query response has been received and query is removed. The registered notification could | ||
* originally budgeted by this runtime for the query result. | ||
* | ||
* \[ id, pallet index, call index, actual weight, max budgeted weight \] | ||
**/ | ||
NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>; | ||
NotifyOverweight: AugmentedEvent<ApiType, [queryId: u64, palletIndex: u8, callIndex: u8, actualWeight: SpWeightsWeightV2Weight, maxBudgetedWeight: SpWeightsWeightV2Weight], { | ||
queryId: u64; | ||
palletIndex: u8; | ||
callIndex: u8; | ||
actualWeight: SpWeightsWeightV2Weight; | ||
maxBudgetedWeight: SpWeightsWeightV2Weight; | ||
}>; | ||
/** | ||
* A given location which had a version change subscription was dropped owing to an error | ||
* migrating the location to our new XCM format. | ||
* | ||
* \[ location, query ID \] | ||
**/ | ||
NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>; | ||
NotifyTargetMigrationFail: AugmentedEvent<ApiType, [location: XcmVersionedMultiLocation, queryId: u64], { | ||
location: XcmVersionedMultiLocation; | ||
queryId: u64; | ||
}>; | ||
/** | ||
* A given location which had a version change subscription was dropped owing to an error | ||
* sending the notification to it. | ||
* | ||
* \[ location, query ID, error \] | ||
**/ | ||
NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, XcmV3TraitsError]>; | ||
NotifyTargetSendFail: AugmentedEvent<ApiType, [location: XcmV3MultiLocation, queryId: u64, error: XcmV3TraitsError], { | ||
location: XcmV3MultiLocation; | ||
queryId: u64; | ||
error: XcmV3TraitsError; | ||
}>; | ||
/** | ||
* Query response has been received and is ready for taking with `take_response`. There is | ||
* no registered notification call. | ||
* | ||
* \[ id, response \] | ||
**/ | ||
ResponseReady: AugmentedEvent<ApiType, [u64, XcmV3Response]>; | ||
ResponseReady: AugmentedEvent<ApiType, [queryId: u64, response: XcmV3Response], { | ||
queryId: u64; | ||
response: XcmV3Response; | ||
}>; | ||
/** | ||
* Received query response has been read and removed. | ||
* | ||
* \[ id \] | ||
**/ | ||
ResponseTaken: AugmentedEvent<ApiType, [u64]>; | ||
ResponseTaken: AugmentedEvent<ApiType, [queryId: u64], { | ||
queryId: u64; | ||
}>; | ||
/** | ||
* A XCM message was sent. | ||
* | ||
* \[ origin, destination, message \] | ||
**/ | ||
Sent: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiLocation, XcmV3Xcm]>; | ||
Sent: AugmentedEvent<ApiType, [origin: XcmV3MultiLocation, destination: XcmV3MultiLocation, message: XcmV3Xcm, messageId: U8aFixed], { | ||
origin: XcmV3MultiLocation; | ||
destination: XcmV3MultiLocation; | ||
message: XcmV3Xcm; | ||
messageId: U8aFixed; | ||
}>; | ||
/** | ||
* The supported version of a location has been changed. This might be through an | ||
* automatic notification or a manual intervention. | ||
* | ||
* \[ location, XCM version \] | ||
**/ | ||
SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV3MultiLocation, u32]>; | ||
SupportedVersionChanged: AugmentedEvent<ApiType, [location: XcmV3MultiLocation, version: u32], { | ||
location: XcmV3MultiLocation; | ||
version: u32; | ||
}>; | ||
/** | ||
@@ -819,6 +928,7 @@ * Query response received which does not match a registered query. This may be because a | ||
* because the query timed out. | ||
* | ||
* \[ origin location, id \] | ||
**/ | ||
UnexpectedResponse: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>; | ||
UnexpectedResponse: AugmentedEvent<ApiType, [origin: XcmV3MultiLocation, queryId: u64], { | ||
origin: XcmV3MultiLocation; | ||
queryId: u64; | ||
}>; | ||
/** | ||
@@ -828,25 +938,34 @@ * An XCM version change notification message has been attempted to be sent. | ||
* The cost of sending it (borne by the chain) is included. | ||
* | ||
* \[ destination, result, cost \] | ||
**/ | ||
VersionChangeNotified: AugmentedEvent<ApiType, [XcmV3MultiLocation, u32, XcmV3MultiassetMultiAssets]>; | ||
VersionChangeNotified: AugmentedEvent<ApiType, [destination: XcmV3MultiLocation, result: u32, cost: XcmV3MultiassetMultiAssets, messageId: U8aFixed], { | ||
destination: XcmV3MultiLocation; | ||
result: u32; | ||
cost: XcmV3MultiassetMultiAssets; | ||
messageId: U8aFixed; | ||
}>; | ||
/** | ||
* We have requested that a remote chain sends us XCM version change notifications. | ||
* | ||
* \[ destination location, cost \] | ||
* We have requested that a remote chain send us XCM version change notifications. | ||
**/ | ||
VersionNotifyRequested: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>; | ||
VersionNotifyRequested: AugmentedEvent<ApiType, [destination: XcmV3MultiLocation, cost: XcmV3MultiassetMultiAssets, messageId: U8aFixed], { | ||
destination: XcmV3MultiLocation; | ||
cost: XcmV3MultiassetMultiAssets; | ||
messageId: U8aFixed; | ||
}>; | ||
/** | ||
* A remote has requested XCM version change notification from us and we have honored it. | ||
* A version information message is sent to them and its cost is included. | ||
* | ||
* \[ destination location, cost \] | ||
**/ | ||
VersionNotifyStarted: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>; | ||
VersionNotifyStarted: AugmentedEvent<ApiType, [destination: XcmV3MultiLocation, cost: XcmV3MultiassetMultiAssets, messageId: U8aFixed], { | ||
destination: XcmV3MultiLocation; | ||
cost: XcmV3MultiassetMultiAssets; | ||
messageId: U8aFixed; | ||
}>; | ||
/** | ||
* We have requested that a remote chain stops sending us XCM version change notifications. | ||
* | ||
* \[ destination location, cost \] | ||
**/ | ||
VersionNotifyUnrequested: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>; | ||
VersionNotifyUnrequested: AugmentedEvent<ApiType, [destination: XcmV3MultiLocation, cost: XcmV3MultiassetMultiAssets, messageId: U8aFixed], { | ||
destination: XcmV3MultiLocation; | ||
cost: XcmV3MultiassetMultiAssets; | ||
messageId: U8aFixed; | ||
}>; | ||
}; | ||
@@ -1337,4 +1456,4 @@ preimage: { | ||
**/ | ||
BadFormat: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { | ||
messageHash: Option<U8aFixed>; | ||
BadFormat: AugmentedEvent<ApiType, [messageHash: U8aFixed], { | ||
messageHash: U8aFixed; | ||
}>; | ||
@@ -1344,4 +1463,4 @@ /** | ||
**/ | ||
BadVersion: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { | ||
messageHash: Option<U8aFixed>; | ||
BadVersion: AugmentedEvent<ApiType, [messageHash: U8aFixed], { | ||
messageHash: U8aFixed; | ||
}>; | ||
@@ -1351,4 +1470,5 @@ /** | ||
**/ | ||
Fail: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>, error: XcmV3TraitsError, weight: SpWeightsWeightV2Weight], { | ||
messageHash: Option<U8aFixed>; | ||
Fail: AugmentedEvent<ApiType, [messageHash: U8aFixed, messageId: U8aFixed, error: XcmV3TraitsError, weight: SpWeightsWeightV2Weight], { | ||
messageHash: U8aFixed; | ||
messageId: U8aFixed; | ||
error: XcmV3TraitsError; | ||
@@ -1376,4 +1496,5 @@ weight: SpWeightsWeightV2Weight; | ||
**/ | ||
Success: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>, weight: SpWeightsWeightV2Weight], { | ||
messageHash: Option<U8aFixed>; | ||
Success: AugmentedEvent<ApiType, [messageHash: U8aFixed, messageId: U8aFixed, weight: SpWeightsWeightV2Weight], { | ||
messageHash: U8aFixed; | ||
messageId: U8aFixed; | ||
weight: SpWeightsWeightV2Weight; | ||
@@ -1384,4 +1505,4 @@ }>; | ||
**/ | ||
XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { | ||
messageHash: Option<U8aFixed>; | ||
XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: U8aFixed], { | ||
messageHash: U8aFixed; | ||
}>; | ||
@@ -1388,0 +1509,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, 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 { AttestationAttestationsAttestationDetails, CtypeCtypeEntry, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, DelegationDelegationHierarchyDelegationHierarchyDetails, DelegationDelegationHierarchyDelegationNode, DidDidDetails, DidServiceEndpointsDidEndpoint, FrameSupportDispatchPerDispatchClassWeight, FrameSupportPreimagesBounded, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesIdAmountRuntimeFreezeReason, PalletBalancesIdAmountRuntimeHoldReason, PalletBalancesReserveData, PalletCollectiveVotes, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletDidLookupConnectionRecord, PalletDidLookupLinkableAccountLinkableAccountId, PalletMultisigMultisig, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyProxyDefinition, PalletSchedulerScheduled, PalletTipsOpenTip, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletVestingReleases, PalletVestingVestingInfo, PalletWeb3NamesWeb3NameWeb3NameOwnership, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainStakingCandidate, ParachainStakingDelegationCounter, ParachainStakingInflationInflationInfo, ParachainStakingRoundInfo, ParachainStakingStake, ParachainStakingTotalStake, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV5AbridgedHostConfiguration, PolkadotPrimitivesV5PersistedValidationData, PolkadotPrimitivesV5UpgradeRestriction, PublicCredentialsCredentialsCredentialEntry, RuntimeCommonAssetsAssetDid, RuntimeCommonAuthorizationAuthorizationId, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, SpiritnetRuntimeSessionKeys, XcmVersionedAssetId, XcmVersionedMultiLocation } from '@polkadot/types/lookup'; | ||
import type { Observable } from '@polkadot/types/types'; | ||
@@ -86,2 +86,10 @@ export declare type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>; | ||
/** | ||
* Freeze locks on account balances. | ||
**/ | ||
freezes: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesIdAmountRuntimeFreezeReason>>, [AccountId32]>; | ||
/** | ||
* Holds on account balances. | ||
**/ | ||
holds: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesIdAmountRuntimeHoldReason>>, [AccountId32]>; | ||
/** | ||
* The total units of outstanding deactivated balance in the system. | ||
@@ -303,2 +311,5 @@ **/ | ||
}; | ||
migration: { | ||
migratedKeys: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<Null>>, [H256]>; | ||
}; | ||
multisig: { | ||
@@ -393,5 +404,5 @@ /** | ||
* reduced however, it is not checked if another candidate has more stake, | ||
* since this would require iterating over the entire [CandidatePool]. | ||
* since this would require iterating over the entire `CandidatePool`. | ||
* | ||
* There must always be more candidates than [MaxSelectedCandidates] so | ||
* There must always be more candidates than `MaxSelectedCandidates` so | ||
* that a collator can drop out of the collator set by reducing their | ||
@@ -406,3 +417,3 @@ * stake. | ||
* Note: There are more funds locked by this pallet, since the backing for | ||
* non collating candidates is not included in [TotalCollatorStake]. | ||
* non collating candidates is not included in `TotalCollatorStake`. | ||
**/ | ||
@@ -431,3 +442,3 @@ totalCollatorStake: AugmentedQuery<ApiType, () => Observable<ParachainStakingTotalStake>, []>; | ||
* | ||
* See [`Pallet::set_custom_validation_head_data`] for more information. | ||
* See `Pallet::set_custom_validation_head_data` for more information. | ||
**/ | ||
@@ -447,3 +458,3 @@ customValidationHeadData: AugmentedQuery<ApiType, () => Observable<Option<Bytes>>, []>; | ||
**/ | ||
hostConfiguration: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV2AbridgedHostConfiguration>>, []>; | ||
hostConfiguration: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV5AbridgedHostConfiguration>>, []>; | ||
/** | ||
@@ -494,6 +505,4 @@ * HRMP messages that were sent in a block. | ||
* | ||
* As soon as the relay chain gives us the go-ahead signal, we will overwrite the [`:code`][well_known_keys::CODE] | ||
* As soon as the relay chain gives us the go-ahead signal, we will overwrite the [`:code`][sp_core::storage::well_known_keys::CODE] | ||
* which will result the next block process with the new validation code. This concludes the upgrade process. | ||
* | ||
* [well_known_keys::CODE]: sp_core::storage::well_known_keys::CODE | ||
**/ | ||
@@ -545,3 +554,3 @@ pendingValidationCode: AugmentedQuery<ApiType, () => Observable<Bytes>, []>; | ||
**/ | ||
upgradeRestrictionSignal: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV2UpgradeRestriction>>, []>; | ||
upgradeRestrictionSignal: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV5UpgradeRestriction>>, []>; | ||
/** | ||
@@ -558,4 +567,75 @@ * Upward messages that were sent in a block. | ||
**/ | ||
validationData: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV2PersistedValidationData>>, []>; | ||
validationData: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV5PersistedValidationData>>, []>; | ||
}; | ||
polkadotXcm: { | ||
/** | ||
* The existing asset traps. | ||
* | ||
* Key is the blake2 256 hash of (origin, versioned `MultiAssets`) pair. Value is the number of | ||
* times this pair has been trapped (usually just 1 if it exists at all). | ||
**/ | ||
assetTraps: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<u32>, [H256]>; | ||
/** | ||
* The current migration's stage, if any. | ||
**/ | ||
currentMigration: AugmentedQuery<ApiType, () => Observable<Option<PalletXcmVersionMigrationStage>>, []>; | ||
/** | ||
* Fungible assets which we know are locked on this chain. | ||
**/ | ||
lockedFungibles: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<Vec<ITuple<[u128, XcmVersionedMultiLocation]>>>>, [AccountId32]>; | ||
/** | ||
* The ongoing queries. | ||
**/ | ||
queries: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<PalletXcmQueryStatus>>, [u64]>; | ||
/** | ||
* The latest available query index. | ||
**/ | ||
queryCounter: AugmentedQuery<ApiType, () => Observable<u64>, []>; | ||
/** | ||
* Fungible assets which we know are locked on a remote chain. | ||
**/ | ||
remoteLockedFungibles: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array, arg3: XcmVersionedAssetId | { | ||
V3: any; | ||
} | string | Uint8Array) => Observable<Option<PalletXcmRemoteLockedFungibleRecord>>, [u32, AccountId32, XcmVersionedAssetId]>; | ||
/** | ||
* Default version to encode XCM when latest version of destination is unknown. If `None`, | ||
* then the destinations whose XCM version is unknown are considered unreachable. | ||
**/ | ||
safeXcmVersion: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []>; | ||
/** | ||
* The Latest versions that we know various locations support. | ||
**/ | ||
supportedVersion: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: XcmVersionedMultiLocation | { | ||
V2: any; | ||
} | { | ||
V3: any; | ||
} | string | Uint8Array) => Observable<Option<u32>>, [u32, XcmVersionedMultiLocation]>; | ||
/** | ||
* Destinations whose latest XCM version we would like to know. Duplicates not allowed, and | ||
* the `u32` counter is the number of times that a send to the destination has been attempted, | ||
* which is used as a prioritization. | ||
**/ | ||
versionDiscoveryQueue: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[XcmVersionedMultiLocation, u32]>>>, []>; | ||
/** | ||
* All locations that we have requested version notifications from. | ||
**/ | ||
versionNotifiers: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: XcmVersionedMultiLocation | { | ||
V2: any; | ||
} | { | ||
V3: any; | ||
} | string | Uint8Array) => Observable<Option<u64>>, [u32, XcmVersionedMultiLocation]>; | ||
/** | ||
* The target locations that are subscribed to our version changes, as well as the most recent | ||
* of our versions we informed them of. | ||
**/ | ||
versionNotifyTargets: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: XcmVersionedMultiLocation | { | ||
V2: any; | ||
} | { | ||
V3: any; | ||
} | string | Uint8Array) => Observable<Option<ITuple<[u64, SpWeightsWeightV2Weight, u32]>>>, [u32, XcmVersionedMultiLocation]>; | ||
/** | ||
* Global suspension state of the XCM executor. | ||
**/ | ||
xcmExecutionSuspended: AugmentedQuery<ApiType, () => Observable<bool>, []>; | ||
}; | ||
preimage: { | ||
@@ -690,3 +770,3 @@ preimageFor: AugmentedQuery<ApiType, (arg: ITuple<[H256, u32]> | [H256 | string | Uint8Array, u32 | AnyNumber | Uint8Array]) => Observable<Option<Bytes>>, [ITuple<[H256, u32]>]>; | ||
* | ||
* The value has the type `(T::BlockNumber, EventIndex)` because if we used only just | ||
* The value has the type `(BlockNumberFor<T>, EventIndex)` because if we used only just | ||
* the `EventIndex` then in case if the topic has the same contents on the next block | ||
@@ -693,0 +773,0 @@ * no notification will be triggered thus the event might be lost. |
@@ -123,3 +123,3 @@ import '@polkadot/api-base/types/calls'; | ||
}; | ||
/** 0x37e397fc7c91f5e4/1 */ | ||
/** 0x37e397fc7c91f5e4/2 */ | ||
metadata: { | ||
@@ -130,2 +130,10 @@ /** | ||
metadata: AugmentedCall<ApiType, () => Observable<OpaqueMetadata>>; | ||
/** | ||
* Returns the metadata at a given version. | ||
**/ | ||
metadataAtVersion: AugmentedCall<ApiType, (version: u32 | AnyNumber | Uint8Array) => Observable<Option<OpaqueMetadata>>>; | ||
/** | ||
* Returns the supported metadata versions. | ||
**/ | ||
metadataVersions: AugmentedCall<ApiType, () => Observable<Vec<u32>>>; | ||
}; | ||
@@ -191,3 +199,3 @@ /** 0xf78b278be53f454c/2 */ | ||
}; | ||
/** 0x37c8bb1350a9a2a8/3 */ | ||
/** 0x37c8bb1350a9a2a8/4 */ | ||
transactionPaymentApi: { | ||
@@ -194,0 +202,0 @@ /** |
import '@polkadot/types/types/registry'; | ||
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, RuntimeCommonConstantsDelegationMaxChildren, RuntimeCommonConstantsDidMaxNewKeyAgreementKeys, 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'; | ||
import type { AttestationAttestationsAttestationDetails, AttestationCall, AttestationError, AttestationEvent, AttestationHoldReason, CtypeCall, CtypeCtypeEntry, CtypeError, CtypeEvent, CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, DelegationAccessControlDelegationAc, DelegationCall, DelegationDelegationHierarchyDelegationDetails, DelegationDelegationHierarchyDelegationHierarchyDetails, DelegationDelegationHierarchyDelegationNode, DelegationDelegationHierarchyPermissions, DelegationError, DelegationEvent, DelegationHoldReason, DidCall, DidDidDetails, DidDidDetailsDidAuthorizedCallOperation, DidDidDetailsDidCreationDetails, DidDidDetailsDidEncryptionKey, DidDidDetailsDidPublicKey, DidDidDetailsDidPublicKeyDetails, DidDidDetailsDidSignature, DidDidDetailsDidVerificationKey, DidError, DidEvent, DidHoldReason, 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, PalletBalancesIdAmountRuntimeFreezeReason, PalletBalancesIdAmountRuntimeHoldReason, 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, PalletDidLookupHoldReason, PalletDidLookupLinkableAccountLinkableAccountId, PalletIndicesCall, PalletIndicesError, PalletIndicesEvent, PalletMembershipCall, PalletMembershipError, PalletMembershipEvent, PalletMigrationCall, PalletMigrationEntriesToMigrate, PalletMigrationError, PalletMigrationEvent, 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, PalletWeb3NamesHoldReason, PalletWeb3NamesWeb3NameWeb3NameOwnership, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, ParachainStakingCall, ParachainStakingCandidate, ParachainStakingCandidateStatus, ParachainStakingDelegationCounter, ParachainStakingError, ParachainStakingEvent, ParachainStakingFreezeReason, ParachainStakingInflationInflationInfo, ParachainStakingInflationRewardRate, ParachainStakingInflationStakingInfo, ParachainStakingRoundInfo, ParachainStakingSetOrderedSet, ParachainStakingStake, ParachainStakingTotalStake, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV5AbridgedHostConfiguration, PolkadotPrimitivesV5AbridgedHrmpChannel, PolkadotPrimitivesV5PersistedValidationData, PolkadotPrimitivesV5UpgradeRestriction, PublicCredentialsCall, PublicCredentialsCredentialsCredential, PublicCredentialsCredentialsCredentialEntry, PublicCredentialsError, PublicCredentialsEvent, PublicCredentialsHoldReason, RuntimeCommonAssetsAssetDid, RuntimeCommonAuthorizationAuthorizationId, RuntimeCommonAuthorizationPalletAuthorize, RuntimeCommonConstantsDelegationMaxChildren, RuntimeCommonConstantsDidMaxNewKeyAgreementKeys, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaPublic, SpCoreEcdsaSignature, SpCoreEd25519Public, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, SpiritnetRuntimeOriginCaller, SpiritnetRuntimeProxyType, SpiritnetRuntimeRuntime, SpiritnetRuntimeRuntimeFreezeReason, SpiritnetRuntimeRuntimeHoldReason, 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, XcmVersionedAssetId, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from '@polkadot/types/lookup'; | ||
declare module '@polkadot/types/types/registry' { | ||
@@ -9,2 +9,3 @@ interface InterfaceTypes { | ||
AttestationEvent: AttestationEvent; | ||
AttestationHoldReason: AttestationHoldReason; | ||
CtypeCall: CtypeCall; | ||
@@ -24,2 +25,3 @@ CtypeCtypeEntry: CtypeCtypeEntry; | ||
CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot; | ||
CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize: CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize; | ||
CumulusPalletXcmError: CumulusPalletXcmError; | ||
@@ -45,2 +47,3 @@ CumulusPalletXcmEvent: CumulusPalletXcmEvent; | ||
DelegationEvent: DelegationEvent; | ||
DelegationHoldReason: DelegationHoldReason; | ||
DidCall: DidCall; | ||
@@ -57,2 +60,3 @@ DidDidDetails: DidDidDetails; | ||
DidEvent: DidEvent; | ||
DidHoldReason: DidHoldReason; | ||
DidOriginDidRawOrigin: DidOriginDidRawOrigin; | ||
@@ -100,2 +104,4 @@ DidServiceEndpointsDidEndpoint: DidServiceEndpointsDidEndpoint; | ||
PalletBalancesEvent: PalletBalancesEvent; | ||
PalletBalancesIdAmountRuntimeFreezeReason: PalletBalancesIdAmountRuntimeFreezeReason; | ||
PalletBalancesIdAmountRuntimeHoldReason: PalletBalancesIdAmountRuntimeHoldReason; | ||
PalletBalancesReasons: PalletBalancesReasons; | ||
@@ -128,2 +134,3 @@ PalletBalancesReserveData: PalletBalancesReserveData; | ||
PalletDidLookupEvent: PalletDidLookupEvent; | ||
PalletDidLookupHoldReason: PalletDidLookupHoldReason; | ||
PalletDidLookupLinkableAccountLinkableAccountId: PalletDidLookupLinkableAccountLinkableAccountId; | ||
@@ -136,2 +143,6 @@ PalletIndicesCall: PalletIndicesCall; | ||
PalletMembershipEvent: PalletMembershipEvent; | ||
PalletMigrationCall: PalletMigrationCall; | ||
PalletMigrationEntriesToMigrate: PalletMigrationEntriesToMigrate; | ||
PalletMigrationError: PalletMigrationError; | ||
PalletMigrationEvent: PalletMigrationEvent; | ||
PalletMultisigCall: PalletMultisigCall; | ||
@@ -181,2 +192,3 @@ PalletMultisigError: PalletMultisigError; | ||
PalletWeb3NamesEvent: PalletWeb3NamesEvent; | ||
PalletWeb3NamesHoldReason: PalletWeb3NamesHoldReason; | ||
PalletWeb3NamesWeb3NameWeb3NameOwnership: PalletWeb3NamesWeb3NameWeb3NameOwnership; | ||
@@ -187,2 +199,6 @@ PalletXcmCall: PalletXcmCall; | ||
PalletXcmOrigin: PalletXcmOrigin; | ||
PalletXcmQueryStatus: PalletXcmQueryStatus; | ||
PalletXcmRemoteLockedFungibleRecord: PalletXcmRemoteLockedFungibleRecord; | ||
PalletXcmVersionMigrationStage: PalletXcmVersionMigrationStage; | ||
ParachainInfoCall: ParachainInfoCall; | ||
ParachainStakingCall: ParachainStakingCall; | ||
@@ -194,2 +210,3 @@ ParachainStakingCandidate: ParachainStakingCandidate; | ||
ParachainStakingEvent: ParachainStakingEvent; | ||
ParachainStakingFreezeReason: ParachainStakingFreezeReason; | ||
ParachainStakingInflationInflationInfo: ParachainStakingInflationInflationInfo; | ||
@@ -206,6 +223,6 @@ ParachainStakingInflationRewardRate: ParachainStakingInflationRewardRate; | ||
PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat; | ||
PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration; | ||
PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel; | ||
PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData; | ||
PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction; | ||
PolkadotPrimitivesV5AbridgedHostConfiguration: PolkadotPrimitivesV5AbridgedHostConfiguration; | ||
PolkadotPrimitivesV5AbridgedHrmpChannel: PolkadotPrimitivesV5AbridgedHrmpChannel; | ||
PolkadotPrimitivesV5PersistedValidationData: PolkadotPrimitivesV5PersistedValidationData; | ||
PolkadotPrimitivesV5UpgradeRestriction: PolkadotPrimitivesV5UpgradeRestriction; | ||
PublicCredentialsCall: PublicCredentialsCall; | ||
@@ -216,2 +233,3 @@ PublicCredentialsCredentialsCredential: PublicCredentialsCredentialsCredential; | ||
PublicCredentialsEvent: PublicCredentialsEvent; | ||
PublicCredentialsHoldReason: PublicCredentialsHoldReason; | ||
RuntimeCommonAssetsAssetDid: RuntimeCommonAssetsAssetDid; | ||
@@ -246,2 +264,4 @@ RuntimeCommonAuthorizationAuthorizationId: RuntimeCommonAuthorizationAuthorizationId; | ||
SpiritnetRuntimeRuntime: SpiritnetRuntimeRuntime; | ||
SpiritnetRuntimeRuntimeFreezeReason: SpiritnetRuntimeRuntimeFreezeReason; | ||
SpiritnetRuntimeRuntimeHoldReason: SpiritnetRuntimeRuntimeHoldReason; | ||
SpiritnetRuntimeSessionKeys: SpiritnetRuntimeSessionKeys; | ||
@@ -292,6 +312,8 @@ XcmDoubleEncoded: XcmDoubleEncoded; | ||
XcmV3Xcm: XcmV3Xcm; | ||
XcmVersionedAssetId: XcmVersionedAssetId; | ||
XcmVersionedMultiAssets: XcmVersionedMultiAssets; | ||
XcmVersionedMultiLocation: XcmVersionedMultiLocation; | ||
XcmVersionedResponse: XcmVersionedResponse; | ||
XcmVersionedXcm: XcmVersionedXcm; | ||
} | ||
} |
{ | ||
"name": "@kiltprotocol/augment-api", | ||
"version": "0.35.0-rc.1", | ||
"version": "0.35.0-rc.2", | ||
"description": "", | ||
@@ -52,4 +52,4 @@ "types": "./lib/index.d.ts", | ||
"dependencies": { | ||
"@kiltprotocol/type-definitions": "0.35.0-rc.1" | ||
"@kiltprotocol/type-definitions": "0.35.0-rc.2" | ||
} | ||
} |
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
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
0
722495
17184
+ Added@kiltprotocol/type-definitions@0.35.0-rc.2(transitive)
- Removed@kiltprotocol/type-definitions@0.35.0-rc.1(transitive)