Compare commits

...
12 Commits
Author SHA1 Message Date
github-actions[bot] 9a92089810 [CI Skip] release/stable 10.2.2
skip-checks: true
2023-04-01 08:41:18 +00:00
Jaco 211c487297 10.2.2 (#5573) 2023-04-01 11:32:52 +03:00
github-actions[bot] 3f3c5a753f [CI Skip] bump/beta 10.2.2-4-x
skip-checks: true
2023-04-01 08:14:22 +00:00
Jaco d1d0168793 Bump metadata (#5572) 2023-04-01 11:05:19 +03:00
github-actions[bot] a1f6e207f4 [CI Skip] bump/beta 10.2.2-3-x
skip-checks: true
2023-04-01 07:46:53 +00:00
Jaco de4e56ace0 Bump deps (#5571) 2023-04-01 10:36:13 +03:00
github-actions[bot] 6c5ca7ebec [CI Skip] bump/beta 10.2.2-2-x
skip-checks: true
2023-03-31 10:54:34 +00:00
Jaco d9f3d319fb Bump deps (#5569) 2023-03-31 13:43:33 +03:00
github-actions[bot] 4fd3289739 [CI Skip] bump/beta 10.2.2-1-x
skip-checks: true
2023-03-28 05:02:18 +00:00
rob thijssen 1a267c58f3 support manta author lookup (#5561)
* support manta author lookup

* handle scenarios where queuedKeys is not of the expected type

* add catchError to imports

* should it be square?

* resolve combineLatest deprecation issue

* type safe nimbus author mappings

* precise var names

* remove reference to deprecated combineLatest

* stay simple, that's what works

* implicit type for session.validators

we don't want to change this aspect of the implementation

* clearer comments on the code paths

* explicit variable names
2023-03-28 07:51:25 +03:00
github-actions[bot] 745a1b7838 [CI Skip] bump/beta 10.2.2-0-x
skip-checks: true
2023-03-25 15:55:24 +00:00
Jaco 7e62e08b5d Add repo dev req. for Node.js (#5565) 2023-03-25 17:46:28 +02:00
67 changed files with 5734 additions and 5512 deletions
+11
View File
@@ -1,5 +1,16 @@
# CHANGELOG
## 10.2.2 Apr 1, 2023
Contributed:
- Support expanded Nimbus lookups to Collators (Thanks to https://github.com/grenade)
Changes:
- Update to latest Polkadot, Kusama & Substrate metadata
## 10.2.1 Mar 25, 2023
Contributed:
+2 -1
View File
@@ -1,4 +1,4 @@
3417 Jaco 10.2.1 (#5564)
3422 Jaco 10.2.2 (#5573)
83 Amaury Martiny StatementKind: Regular and Saft (#2303)
37 Keith Ingram Update contract types and rpc (#4541)
35 Stefanie Doll Updated child storage parameters (#1709)
@@ -99,6 +99,7 @@
1 qiuhao update DeriveCustom type (#2581)
1 r0t0r-r0t0r Fix memory leak on raw rpc call (#4505)
1 Raphael Flechtner fix: typegen disconnect ws on success (#4901)
1 rob thijssen support manta author lookup (#5561)
1 Robert Hambrock update MMR API (#5479)
1 Rocco Musolino remove broken link (#2671)
1 sander2 fix: type generation for nested tuples (#5395)
+7 -7
View File
@@ -2,7 +2,7 @@
"author": "Jaco Greeff <jacogr@gmail.com>",
"bugs": "https://github.com/polkadot-js/api/issues",
"engines": {
"node": ">=14"
"node": ">=18.14"
},
"homepage": "https://github.com/polkadot-js/api#readme",
"license": "Apache-2.0",
@@ -14,10 +14,10 @@
},
"sideEffects": false,
"type": "module",
"version": "10.2.1",
"version": "10.2.2",
"versions": {
"git": "10.2.1",
"npm": "10.2.1"
"git": "10.2.2",
"npm": "10.2.2"
},
"workspaces": [
"packages/*"
@@ -40,11 +40,11 @@
"test:one": "polkadot-dev-run-test --env node"
},
"devDependencies": {
"@polkadot/dev": "^0.72.24",
"@polkadot/dev": "^0.72.29",
"@polkadot/typegen": "workspace:packages/typegen",
"@types/node": "^18.15.9"
"@types/node": "^18.15.11"
},
"resolutions": {
"typescript": "^5.0.2"
"typescript": "^5.0.3"
}
}
+7 -7
View File
@@ -18,15 +18,15 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "10.2.1",
"version": "10.2.2",
"main": "index.js",
"dependencies": {
"@polkadot/api-base": "10.2.1",
"@polkadot/rpc-augment": "10.2.1",
"@polkadot/types": "10.2.1",
"@polkadot/types-augment": "10.2.1",
"@polkadot/types-codec": "10.2.1",
"@polkadot/util": "^11.1.2",
"@polkadot/api-base": "10.2.2",
"@polkadot/rpc-augment": "10.2.2",
"@polkadot/types": "10.2.2",
"@polkadot/types-augment": "10.2.2",
"@polkadot/types-codec": "10.2.2",
"@polkadot/util": "^11.1.3",
"tslib": "^2.5.0"
}
}
+16 -2
View File
@@ -59,7 +59,14 @@ declare module '@polkadot/api-base/types/consts' {
};
balances: {
/**
* 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>;
/**
@@ -495,7 +502,14 @@ declare module '@polkadot/api-base/types/consts' {
};
nisCounterpartBalances: {
/**
* 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>;
/**
+16
View File
@@ -79,6 +79,10 @@ declare module '@polkadot/api-base/types/events' {
* 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.
**/
@@ -112,6 +116,10 @@ declare module '@polkadot/api-base/types/events' {
* Transfer succeeded.
**/
Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;
/**
* Some balance was unlocked.
**/
Unlocked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
/**
* Some balance was unreserved (moved from reserved to free).
**/
@@ -622,6 +630,10 @@ declare module '@polkadot/api-base/types/events' {
* 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.
**/
@@ -655,6 +667,10 @@ declare module '@polkadot/api-base/types/events' {
* Transfer succeeded.
**/
Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;
/**
* Some balance was unlocked.
**/
Unlocked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
/**
* Some balance was unreserved (moved from reserved to free).
**/
+11 -7
View File
@@ -11,7 +11,7 @@ import type { Bytes, Compact, Option, U8aFixed, Vec, bool, u128, u16, u32, u64,
import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
import type { EthereumAddress } from '@polkadot/types/interfaces/eth';
import type { AccountId32, Call, H256, MultiAddress, Perbill, Percent, Perquintill } from '@polkadot/types/interfaces/runtime';
import type { FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, KusamaRuntimeOriginCaller, KusamaRuntimeProxyType, KusamaRuntimeSessionKeys, PalletConvictionVotingConviction, PalletConvictionVotingVoteAccountVote, PalletElectionProviderMultiPhaseRawSolution, PalletElectionProviderMultiPhaseSolutionOrSnapshotSize, PalletIdentityBitFlags, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletImOnlineHeartbeat, PalletImOnlineSr25519AppSr25519Signature, PalletMultisigTimepoint, PalletNominationPoolsBondExtra, PalletNominationPoolsClaimPermission, PalletNominationPoolsCommissionChangeRate, PalletNominationPoolsConfigOpAccountId32, PalletNominationPoolsConfigOpPerbill, PalletNominationPoolsConfigOpU128, PalletNominationPoolsConfigOpU32, PalletNominationPoolsPoolState, PalletSocietyJudgement, PalletStakingPalletConfigOpPerbill, PalletStakingPalletConfigOpPercent, PalletStakingPalletConfigOpU128, PalletStakingPalletConfigOpU32, PalletStakingRewardDestination, PalletStakingValidatorPrefs, PalletVestingVestingInfo, PolkadotParachainPrimitivesHrmpChannelId, PolkadotPrimitivesV4InherentData, PolkadotPrimitivesV4PvfCheckStatement, PolkadotPrimitivesV4ValidatorAppSignature, PolkadotRuntimeCommonClaimsEcdsaSignature, PolkadotRuntimeCommonClaimsStatementKind, PolkadotRuntimeParachainsDisputesSlashingDisputeProof, SpConsensusBabeDigestsNextConfigDescriptor, SpConsensusGrandpaEquivocationProof, SpConsensusSlotsEquivocationProof, SpNposElectionsElectionScore, SpNposElectionsSupport, SpRuntimeMultiSignature, SpRuntimeMultiSigner, SpSessionMembershipProof, SpWeightsWeightV2Weight, XcmV3MultiLocation, XcmV3WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
import type { FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, KusamaRuntimeOriginCaller, KusamaRuntimeProxyType, KusamaRuntimeSessionKeys, PalletConvictionVotingConviction, PalletConvictionVotingVoteAccountVote, PalletElectionProviderMultiPhaseRawSolution, PalletElectionProviderMultiPhaseSolutionOrSnapshotSize, PalletIdentityBitFlags, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletImOnlineHeartbeat, PalletImOnlineSr25519AppSr25519Signature, PalletMultisigTimepoint, PalletNominationPoolsBondExtra, PalletNominationPoolsClaimPermission, PalletNominationPoolsCommissionChangeRate, PalletNominationPoolsConfigOpAccountId32, PalletNominationPoolsConfigOpPerbill, PalletNominationPoolsConfigOpU128, PalletNominationPoolsConfigOpU32, PalletNominationPoolsPoolState, PalletSocietyJudgement, PalletStakingPalletConfigOpPerbill, PalletStakingPalletConfigOpPercent, PalletStakingPalletConfigOpU128, PalletStakingPalletConfigOpU32, PalletStakingRewardDestination, PalletStakingValidatorPrefs, PalletVestingVestingInfo, PolkadotParachainPrimitivesHrmpChannelId, PolkadotPrimitivesV4InherentData, PolkadotPrimitivesV4PvfCheckStatement, PolkadotPrimitivesV4ValidatorAppSignature, PolkadotPrimitivesVstagingAsyncBackingParams, PolkadotRuntimeCommonClaimsEcdsaSignature, PolkadotRuntimeCommonClaimsStatementKind, PolkadotRuntimeParachainsDisputesSlashingDisputeProof, SpConsensusBabeDigestsNextConfigDescriptor, SpConsensusGrandpaEquivocationProof, SpConsensusSlotsEquivocationProof, SpNposElectionsElectionScore, SpNposElectionsSupport, SpRuntimeMultiSignature, SpRuntimeMultiSigner, SpSessionMembershipProof, SpWeightsWeightV2Weight, XcmV3MultiLocation, XcmV3WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
@@ -564,6 +564,10 @@ declare module '@polkadot/api-base/types/submittable' {
[key: string]: SubmittableExtrinsicFunction<ApiType>;
};
configuration: {
/**
* Set the asynchronous backing parameters.
**/
setAsyncBackingParams: AugmentedSubmittable<(updated: PolkadotPrimitivesVstagingAsyncBackingParams | { maxCandidateDepth?: any; allowedAncestryLen?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PolkadotPrimitivesVstagingAsyncBackingParams]>;
/**
* Setting this to true will disable consistency checks for the configuration setters.
* Use with caution.
@@ -2359,7 +2363,7 @@ declare module '@polkadot/api-base/types/submittable' {
* - `delay`: The announcement period required of the initial proxy. Will generally be
* zero.
**/
addProxy: AugmentedSubmittable<(delegate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, proxyType: KusamaRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | 'Society' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, KusamaRuntimeProxyType, u32]>;
addProxy: AugmentedSubmittable<(delegate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, proxyType: KusamaRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | 'Society' | 'NominationPools' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, KusamaRuntimeProxyType, u32]>;
/**
* Publish the hash of a proxy-call that will be made in the future.
*
@@ -2398,7 +2402,7 @@ declare module '@polkadot/api-base/types/submittable' {
*
* Fails if there are insufficient funds to pay for deposit.
**/
createPure: AugmentedSubmittable<(proxyType: KusamaRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | 'Society' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array, index: u16 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [KusamaRuntimeProxyType, u32, u16]>;
createPure: AugmentedSubmittable<(proxyType: KusamaRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | 'Society' | 'NominationPools' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array, index: u16 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [KusamaRuntimeProxyType, u32, u16]>;
/**
* Removes a previously spawned pure proxy.
*
@@ -2417,7 +2421,7 @@ declare module '@polkadot/api-base/types/submittable' {
* Fails with `NoPermission` in case the caller is not a previously created pure
* account whose `pure` call has corresponding parameters.
**/
killPure: AugmentedSubmittable<(spawner: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, proxyType: KusamaRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | 'Society' | number | Uint8Array, index: u16 | AnyNumber | Uint8Array, height: Compact<u32> | AnyNumber | Uint8Array, extIndex: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, KusamaRuntimeProxyType, u16, Compact<u32>, Compact<u32>]>;
killPure: AugmentedSubmittable<(spawner: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, proxyType: KusamaRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | 'Society' | 'NominationPools' | number | Uint8Array, index: u16 | AnyNumber | Uint8Array, height: Compact<u32> | AnyNumber | Uint8Array, extIndex: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, KusamaRuntimeProxyType, u16, Compact<u32>, Compact<u32>]>;
/**
* Dispatch the given `call` from an account that the sender is authorised for through
* `add_proxy`.
@@ -2429,7 +2433,7 @@ declare module '@polkadot/api-base/types/submittable' {
* - `force_proxy_type`: Specify the exact proxy type to be used and checked for this call.
* - `call`: The call to be made by the `real` account.
**/
proxy: AugmentedSubmittable<(real: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, forceProxyType: Option<KusamaRuntimeProxyType> | null | Uint8Array | KusamaRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | 'Society' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Option<KusamaRuntimeProxyType>, Call]>;
proxy: AugmentedSubmittable<(real: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, forceProxyType: Option<KusamaRuntimeProxyType> | null | Uint8Array | KusamaRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | 'Society' | 'NominationPools' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Option<KusamaRuntimeProxyType>, Call]>;
/**
* Dispatch the given `call` from an account that the sender is authorized for through
* `add_proxy`.
@@ -2443,7 +2447,7 @@ declare module '@polkadot/api-base/types/submittable' {
* - `force_proxy_type`: Specify the exact proxy type to be used and checked for this call.
* - `call`: The call to be made by the `real` account.
**/
proxyAnnounced: AugmentedSubmittable<(delegate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, real: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, forceProxyType: Option<KusamaRuntimeProxyType> | null | Uint8Array | KusamaRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | 'Society' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Option<KusamaRuntimeProxyType>, Call]>;
proxyAnnounced: AugmentedSubmittable<(delegate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, real: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, forceProxyType: Option<KusamaRuntimeProxyType> | null | Uint8Array | KusamaRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | 'Society' | 'NominationPools' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Option<KusamaRuntimeProxyType>, Call]>;
/**
* Remove the given announcement of a delegate.
*
@@ -2488,7 +2492,7 @@ declare module '@polkadot/api-base/types/submittable' {
* - `proxy`: The account that the `caller` would like to remove as a proxy.
* - `proxy_type`: The permissions currently enabled for the removed proxy account.
**/
removeProxy: AugmentedSubmittable<(delegate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, proxyType: KusamaRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | 'Society' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, KusamaRuntimeProxyType, u32]>;
removeProxy: AugmentedSubmittable<(delegate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, proxyType: KusamaRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | 'Society' | 'NominationPools' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, KusamaRuntimeProxyType, u32]>;
/**
* Generic tx
**/
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/api-augment', path: 'auto', type: 'auto', version: '10.2.1' };
export const packageInfo = { name: '@polkadot/api-augment', path: 'auto', type: 'auto', version: '10.2.2' };
+8 -1
View File
@@ -59,7 +59,14 @@ declare module '@polkadot/api-base/types/consts' {
};
balances: {
/**
* 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>;
/**
@@ -79,6 +79,10 @@ declare module '@polkadot/api-base/types/events' {
* 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.
**/
@@ -112,6 +116,10 @@ declare module '@polkadot/api-base/types/events' {
* Transfer succeeded.
**/
Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;
/**
* Some balance was unlocked.
**/
Unlocked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
/**
* Some balance was unreserved (moved from reserved to free).
**/
+11 -7
View File
@@ -11,7 +11,7 @@ import type { Bytes, Compact, Option, U8aFixed, Vec, bool, u128, u16, u32, u64,
import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
import type { EthereumAddress } from '@polkadot/types/interfaces/eth';
import type { AccountId32, Call, H256, MultiAddress, Perbill, Percent } from '@polkadot/types/interfaces/runtime';
import type { FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, PalletConvictionVotingConviction, PalletConvictionVotingVoteAccountVote, PalletDemocracyConviction, PalletDemocracyMetadataOwner, PalletDemocracyVoteAccountVote, PalletElectionProviderMultiPhaseRawSolution, PalletElectionProviderMultiPhaseSolutionOrSnapshotSize, PalletElectionsPhragmenRenouncing, PalletIdentityBitFlags, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletImOnlineHeartbeat, PalletImOnlineSr25519AppSr25519Signature, PalletMultisigTimepoint, PalletNominationPoolsBondExtra, PalletNominationPoolsClaimPermission, PalletNominationPoolsCommissionChangeRate, PalletNominationPoolsConfigOpAccountId32, PalletNominationPoolsConfigOpPerbill, PalletNominationPoolsConfigOpU128, PalletNominationPoolsConfigOpU32, PalletNominationPoolsPoolState, PalletStakingPalletConfigOpPerbill, PalletStakingPalletConfigOpPercent, PalletStakingPalletConfigOpU128, PalletStakingPalletConfigOpU32, PalletStakingRewardDestination, PalletStakingValidatorPrefs, PalletVestingVestingInfo, PolkadotParachainPrimitivesHrmpChannelId, PolkadotPrimitivesV4InherentData, PolkadotPrimitivesV4PvfCheckStatement, PolkadotPrimitivesV4ValidatorAppSignature, PolkadotRuntimeCommonClaimsEcdsaSignature, PolkadotRuntimeCommonClaimsStatementKind, PolkadotRuntimeOriginCaller, PolkadotRuntimeProxyType, PolkadotRuntimeSessionKeys, SpConsensusBabeDigestsNextConfigDescriptor, SpConsensusGrandpaEquivocationProof, SpConsensusSlotsEquivocationProof, SpNposElectionsElectionScore, SpNposElectionsSupport, SpRuntimeMultiSignature, SpRuntimeMultiSigner, SpSessionMembershipProof, SpWeightsWeightV2Weight, XcmV3MultiLocation, XcmV3WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
import type { FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, PalletConvictionVotingConviction, PalletConvictionVotingVoteAccountVote, PalletDemocracyConviction, PalletDemocracyMetadataOwner, PalletDemocracyVoteAccountVote, PalletElectionProviderMultiPhaseRawSolution, PalletElectionProviderMultiPhaseSolutionOrSnapshotSize, PalletElectionsPhragmenRenouncing, PalletIdentityBitFlags, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletImOnlineHeartbeat, PalletImOnlineSr25519AppSr25519Signature, PalletMultisigTimepoint, PalletNominationPoolsBondExtra, PalletNominationPoolsClaimPermission, PalletNominationPoolsCommissionChangeRate, PalletNominationPoolsConfigOpAccountId32, PalletNominationPoolsConfigOpPerbill, PalletNominationPoolsConfigOpU128, PalletNominationPoolsConfigOpU32, PalletNominationPoolsPoolState, PalletStakingPalletConfigOpPerbill, PalletStakingPalletConfigOpPercent, PalletStakingPalletConfigOpU128, PalletStakingPalletConfigOpU32, PalletStakingRewardDestination, PalletStakingValidatorPrefs, PalletVestingVestingInfo, PolkadotParachainPrimitivesHrmpChannelId, PolkadotPrimitivesV4InherentData, PolkadotPrimitivesV4PvfCheckStatement, PolkadotPrimitivesV4ValidatorAppSignature, PolkadotPrimitivesVstagingAsyncBackingParams, PolkadotRuntimeCommonClaimsEcdsaSignature, PolkadotRuntimeCommonClaimsStatementKind, PolkadotRuntimeOriginCaller, PolkadotRuntimeProxyType, PolkadotRuntimeSessionKeys, SpConsensusBabeDigestsNextConfigDescriptor, SpConsensusGrandpaEquivocationProof, SpConsensusSlotsEquivocationProof, SpNposElectionsElectionScore, SpNposElectionsSupport, SpRuntimeMultiSignature, SpRuntimeMultiSigner, SpSessionMembershipProof, SpWeightsWeightV2Weight, XcmV3MultiLocation, XcmV3WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
@@ -564,6 +564,10 @@ declare module '@polkadot/api-base/types/submittable' {
[key: string]: SubmittableExtrinsicFunction<ApiType>;
};
configuration: {
/**
* Set the asynchronous backing parameters.
**/
setAsyncBackingParams: AugmentedSubmittable<(updated: PolkadotPrimitivesVstagingAsyncBackingParams | { maxCandidateDepth?: any; allowedAncestryLen?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PolkadotPrimitivesVstagingAsyncBackingParams]>;
/**
* Setting this to true will disable consistency checks for the configuration setters.
* Use with caution.
@@ -2559,7 +2563,7 @@ declare module '@polkadot/api-base/types/submittable' {
* - `delay`: The announcement period required of the initial proxy. Will generally be
* zero.
**/
addProxy: AugmentedSubmittable<(delegate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, proxyType: PolkadotRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, PolkadotRuntimeProxyType, u32]>;
addProxy: AugmentedSubmittable<(delegate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, proxyType: PolkadotRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | 'NominationPools' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, PolkadotRuntimeProxyType, u32]>;
/**
* Publish the hash of a proxy-call that will be made in the future.
*
@@ -2598,7 +2602,7 @@ declare module '@polkadot/api-base/types/submittable' {
*
* Fails if there are insufficient funds to pay for deposit.
**/
createPure: AugmentedSubmittable<(proxyType: PolkadotRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array, index: u16 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PolkadotRuntimeProxyType, u32, u16]>;
createPure: AugmentedSubmittable<(proxyType: PolkadotRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | 'NominationPools' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array, index: u16 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PolkadotRuntimeProxyType, u32, u16]>;
/**
* Removes a previously spawned pure proxy.
*
@@ -2617,7 +2621,7 @@ declare module '@polkadot/api-base/types/submittable' {
* Fails with `NoPermission` in case the caller is not a previously created pure
* account whose `pure` call has corresponding parameters.
**/
killPure: AugmentedSubmittable<(spawner: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, proxyType: PolkadotRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | number | Uint8Array, index: u16 | AnyNumber | Uint8Array, height: Compact<u32> | AnyNumber | Uint8Array, extIndex: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, PolkadotRuntimeProxyType, u16, Compact<u32>, Compact<u32>]>;
killPure: AugmentedSubmittable<(spawner: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, proxyType: PolkadotRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | 'NominationPools' | number | Uint8Array, index: u16 | AnyNumber | Uint8Array, height: Compact<u32> | AnyNumber | Uint8Array, extIndex: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, PolkadotRuntimeProxyType, u16, Compact<u32>, Compact<u32>]>;
/**
* Dispatch the given `call` from an account that the sender is authorised for through
* `add_proxy`.
@@ -2629,7 +2633,7 @@ declare module '@polkadot/api-base/types/submittable' {
* - `force_proxy_type`: Specify the exact proxy type to be used and checked for this call.
* - `call`: The call to be made by the `real` account.
**/
proxy: AugmentedSubmittable<(real: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, forceProxyType: Option<PolkadotRuntimeProxyType> | null | Uint8Array | PolkadotRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Option<PolkadotRuntimeProxyType>, Call]>;
proxy: AugmentedSubmittable<(real: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, forceProxyType: Option<PolkadotRuntimeProxyType> | null | Uint8Array | PolkadotRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | 'NominationPools' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Option<PolkadotRuntimeProxyType>, Call]>;
/**
* Dispatch the given `call` from an account that the sender is authorized for through
* `add_proxy`.
@@ -2643,7 +2647,7 @@ declare module '@polkadot/api-base/types/submittable' {
* - `force_proxy_type`: Specify the exact proxy type to be used and checked for this call.
* - `call`: The call to be made by the `real` account.
**/
proxyAnnounced: AugmentedSubmittable<(delegate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, real: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, forceProxyType: Option<PolkadotRuntimeProxyType> | null | Uint8Array | PolkadotRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Option<PolkadotRuntimeProxyType>, Call]>;
proxyAnnounced: AugmentedSubmittable<(delegate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, real: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, forceProxyType: Option<PolkadotRuntimeProxyType> | null | Uint8Array | PolkadotRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | 'NominationPools' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Option<PolkadotRuntimeProxyType>, Call]>;
/**
* Remove the given announcement of a delegate.
*
@@ -2688,7 +2692,7 @@ declare module '@polkadot/api-base/types/submittable' {
* - `proxy`: The account that the `caller` would like to remove as a proxy.
* - `proxy_type`: The permissions currently enabled for the removed proxy account.
**/
removeProxy: AugmentedSubmittable<(delegate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, proxyType: PolkadotRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, PolkadotRuntimeProxyType, u32]>;
removeProxy: AugmentedSubmittable<(delegate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, proxyType: PolkadotRuntimeProxyType | 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | 'NominationPools' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, PolkadotRuntimeProxyType, u32]>;
/**
* Generic tx
**/
@@ -199,33 +199,6 @@ declare module '@polkadot/api-base/types/consts' {
[key: string]: Codec;
};
contracts: {
/**
* The maximum number of contracts that can be pending for deletion.
*
* When a contract is deleted by calling `seal_terminate` it becomes inaccessible
* immediately, but the deletion of the storage items it has accumulated is performed
* later. The contract is put into the deletion queue. This defines how many
* contracts can be queued up at the same time. If that limit is reached `seal_terminate`
* will fail. The action must be retried in a later block in that case.
*
* The reasons for limiting the queue depth are:
*
* 1. The queue is in storage in order to be persistent between blocks. We want to limit
* the amount of storage that can be consumed.
* 2. The queue is stored in a vector and needs to be decoded as a whole when reading
* it at the end of each block. Longer queues take more weight to decode and hence
* limit the amount of items that can be deleted per block.
**/
deletionQueueDepth: u32 & AugmentedConst<ApiType>;
/**
* The maximum amount of weight that can be consumed per block for lazy trie removal.
*
* The amount of weight that is dedicated per block to work on the deletion queue. Larger
* values allow more trie keys to be deleted in each block but reduce the amount of
* weight that is left for transactions. See [`Self::DeletionQueueDepth`] for more
* information about the deletion queue.
**/
deletionWeightLimit: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
/**
* The amount of balance a caller has to pay for each byte of storage.
*
@@ -430,14 +430,6 @@ declare module '@polkadot/api-base/types/errors' {
* Input passed to a contract API function failed to decode as expected type.
**/
DecodingFailed: AugmentedError<ApiType>;
/**
* Removal of a contract failed because the deletion queue is full.
*
* This can happen when calling `seal_terminate`.
* The queue is filled by deleting contracts and emptied by a fixed amount each block.
* Trying again during another block is the only way to resolve this issue.
**/
DeletionQueueFull: AugmentedError<ApiType>;
/**
* A contract with the same AccountId already exists.
**/
+8 -3
View File
@@ -10,7 +10,7 @@ import type { Data } from '@polkadot/types';
import type { BTreeSet, Bytes, Null, Option, Struct, U8aFixed, Vec, WrapperOpaque, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, Call, H256, Perbill, Percent } from '@polkadot/types/interfaces/runtime';
import type { FrameSupportDispatchPerDispatchClassWeight, FrameSupportPreimagesBounded, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, KitchensinkRuntimeHoldReason, KitchensinkRuntimeSessionKeys, PalletAllianceCid, PalletAllianceMemberRole, PalletAssetsApproval, PalletAssetsAssetAccount, PalletAssetsAssetDetails, PalletAssetsAssetMetadata, PalletBagsListListBag, PalletBagsListListNode, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesIdAmount, PalletBalancesReserveData, PalletBountiesBounty, PalletChildBountiesChildBounty, PalletCollectiveVotes, PalletContractsStorageContractInfo, PalletContractsStorageDeletedContract, PalletContractsWasmOwnerInfo, PalletContractsWasmPrefabWasmModule, PalletConvictionVotingVoteVoting, PalletCoreFellowshipMemberStatus, PalletCoreFellowshipParamsType, PalletCoreFellowshipWish, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletElectionProviderMultiPhasePhase, PalletElectionProviderMultiPhaseReadySolution, PalletElectionProviderMultiPhaseRoundSnapshot, PalletElectionProviderMultiPhaseSignedSignedSubmission, PalletElectionProviderMultiPhaseSolutionOrSnapshotSize, PalletElectionsPhragmenSeatHolder, PalletElectionsPhragmenVoter, PalletFastUnstakeUnstakeRequest, PalletGrandpaStoredPendingChange, PalletGrandpaStoredState, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletImOnlineBoundedOpaqueNetworkState, PalletImOnlineSr25519AppSr25519Public, PalletLotteryLotteryConfig, PalletMessageQueueBookState, PalletMessageQueuePage, PalletMultisigMultisig, PalletNftsAttributeDeposit, PalletNftsAttributeNamespace, PalletNftsCollectionConfig, PalletNftsCollectionDetails, PalletNftsCollectionMetadata, PalletNftsItemConfig, PalletNftsItemDetails, PalletNftsItemMetadata, PalletNftsPendingSwap, PalletNisBid, PalletNisReceiptRecord, PalletNisSummaryRecord, PalletNominationPoolsBondedPoolInner, PalletNominationPoolsClaimPermission, PalletNominationPoolsPoolMember, PalletNominationPoolsRewardPool, PalletNominationPoolsSubPools, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyProxyDefinition, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveVoteRecord, PalletRecoveryActiveRecovery, PalletRecoveryRecoveryConfig, PalletReferendaReferendumInfoConvictionVotingTally, PalletReferendaReferendumInfoRankedCollectiveTally, PalletSalaryClaimantStatus, PalletSalaryStatusType, PalletSchedulerScheduled, PalletSocietyBid, PalletSocietyBidKind, PalletSocietyVote, PalletSocietyVouchingStatus, PalletStakingActiveEraInfo, PalletStakingEraRewardPoints, PalletStakingExposure, PalletStakingForcing, PalletStakingNominations, PalletStakingRewardDestination, PalletStakingSlashingSlashingSpans, PalletStakingSlashingSpanRecord, PalletStakingStakingLedger, PalletStakingUnappliedSlash, PalletStakingValidatorPrefs, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletTipsOpenTip, PalletTransactionPaymentReleases, PalletTransactionStorageTransactionInfo, PalletTreasuryProposal, PalletUniquesCollectionDetails, PalletUniquesCollectionMetadata, PalletUniquesItemDetails, PalletUniquesItemMetadata, PalletVestingReleases, PalletVestingVestingInfo, SpAuthorityDiscoveryAppPublic, SpConsensusBabeAppPublic, SpConsensusBabeBabeEpochConfiguration, SpConsensusBabeDigestsNextConfigDescriptor, SpConsensusBabeDigestsPreDigest, SpCoreCryptoKeyTypeId, SpNposElectionsElectionScore, SpRuntimeDigest, SpStakingOffenceOffenceDetails } from '@polkadot/types/lookup';
import type { FrameSupportDispatchPerDispatchClassWeight, FrameSupportPreimagesBounded, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, KitchensinkRuntimeHoldReason, KitchensinkRuntimeSessionKeys, PalletAllianceCid, PalletAllianceMemberRole, PalletAssetsApproval, PalletAssetsAssetAccount, PalletAssetsAssetDetails, PalletAssetsAssetMetadata, PalletBagsListListBag, PalletBagsListListNode, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesIdAmount, PalletBalancesReserveData, PalletBountiesBounty, PalletChildBountiesChildBounty, PalletCollectiveVotes, PalletContractsStorageContractInfo, PalletContractsStorageDeletionQueueManager, PalletContractsWasmOwnerInfo, PalletContractsWasmPrefabWasmModule, PalletConvictionVotingVoteVoting, PalletCoreFellowshipMemberStatus, PalletCoreFellowshipParamsType, PalletCoreFellowshipWish, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletElectionProviderMultiPhasePhase, PalletElectionProviderMultiPhaseReadySolution, PalletElectionProviderMultiPhaseRoundSnapshot, PalletElectionProviderMultiPhaseSignedSignedSubmission, PalletElectionProviderMultiPhaseSolutionOrSnapshotSize, PalletElectionsPhragmenSeatHolder, PalletElectionsPhragmenVoter, PalletFastUnstakeUnstakeRequest, PalletGrandpaStoredPendingChange, PalletGrandpaStoredState, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletImOnlineBoundedOpaqueNetworkState, PalletImOnlineSr25519AppSr25519Public, PalletLotteryLotteryConfig, PalletMessageQueueBookState, PalletMessageQueuePage, PalletMultisigMultisig, PalletNftsAttributeDeposit, PalletNftsAttributeNamespace, PalletNftsCollectionConfig, PalletNftsCollectionDetails, PalletNftsCollectionMetadata, PalletNftsItemConfig, PalletNftsItemDetails, PalletNftsItemMetadata, PalletNftsPendingSwap, PalletNisBid, PalletNisReceiptRecord, PalletNisSummaryRecord, PalletNominationPoolsBondedPoolInner, PalletNominationPoolsClaimPermission, PalletNominationPoolsPoolMember, PalletNominationPoolsRewardPool, PalletNominationPoolsSubPools, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyProxyDefinition, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveVoteRecord, PalletRecoveryActiveRecovery, PalletRecoveryRecoveryConfig, PalletReferendaReferendumInfoConvictionVotingTally, PalletReferendaReferendumInfoRankedCollectiveTally, PalletSalaryClaimantStatus, PalletSalaryStatusType, PalletSchedulerScheduled, PalletSocietyBid, PalletSocietyBidKind, PalletSocietyVote, PalletSocietyVouchingStatus, PalletStakingActiveEraInfo, PalletStakingEraRewardPoints, PalletStakingExposure, PalletStakingForcing, PalletStakingNominations, PalletStakingRewardDestination, PalletStakingSlashingSlashingSpans, PalletStakingSlashingSpanRecord, PalletStakingStakingLedger, PalletStakingUnappliedSlash, PalletStakingValidatorPrefs, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletTipsOpenTip, PalletTransactionPaymentReleases, PalletTransactionStorageTransactionInfo, PalletTreasuryProposal, PalletUniquesCollectionDetails, PalletUniquesCollectionMetadata, PalletUniquesItemDetails, PalletUniquesItemMetadata, PalletVestingReleases, PalletVestingVestingInfo, SpAuthorityDiscoveryAppPublic, SpConsensusBabeAppPublic, SpConsensusBabeBabeEpochConfiguration, SpConsensusBabeDigestsNextConfigDescriptor, SpConsensusBabeDigestsPreDigest, SpCoreCryptoKeyTypeId, SpNposElectionsElectionScore, SpRuntimeDigest, SpStakingOffenceOffenceDetails } from '@polkadot/types/lookup';
import type { Observable } from '@polkadot/types/types';
export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
@@ -371,9 +371,14 @@ declare module '@polkadot/api-base/types/storage' {
* Evicted contracts that await child trie deletion.
*
* Child trie deletion is a heavy operation depending on the amount of storage items
* stored in said trie. Therefore this operation is performed lazily in `on_initialize`.
* stored in said trie. Therefore this operation is performed lazily in `on_idle`.
**/
deletionQueue: AugmentedQuery<ApiType, () => Observable<Vec<PalletContractsStorageDeletedContract>>, []> & QueryableStorageEntry<ApiType, []>;
deletionQueue: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<Bytes>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
/**
* A pair of monotonic counters used to track the latest contract marked for deletion
* and the latest deleted contract in queue.
**/
deletionQueueCounter: AugmentedQuery<ApiType, () => Observable<PalletContractsStorageDeletionQueueManager>, []> & QueryableStorageEntry<ApiType, []>;
/**
* This is a **monotonic** counter incremented on contract instantiation.
*
+4 -4
View File
@@ -18,12 +18,12 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "10.2.1",
"version": "10.2.2",
"main": "index.js",
"dependencies": {
"@polkadot/rpc-core": "10.2.1",
"@polkadot/types": "10.2.1",
"@polkadot/util": "^11.1.2",
"@polkadot/rpc-core": "10.2.2",
"@polkadot/types": "10.2.2",
"@polkadot/util": "^11.1.3",
"rxjs": "^7.8.0",
"tslib": "^2.5.0"
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/api-base', path: 'auto', type: 'auto', version: '10.2.1' };
export const packageInfo = { name: '@polkadot/api-base', path: 'auto', type: 'auto', version: '10.2.2' };
+9 -9
View File
@@ -18,20 +18,20 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "10.2.1",
"version": "10.2.2",
"main": "index.js",
"dependencies": {
"@polkadot/api": "10.2.1",
"@polkadot/types": "10.2.1",
"@polkadot/types-codec": "10.2.1",
"@polkadot/types-create": "10.2.1",
"@polkadot/util": "^11.1.2",
"@polkadot/util-crypto": "^11.1.2",
"@polkadot/api": "10.2.2",
"@polkadot/types": "10.2.2",
"@polkadot/types-codec": "10.2.2",
"@polkadot/types-create": "10.2.2",
"@polkadot/util": "^11.1.3",
"@polkadot/util-crypto": "^11.1.3",
"rxjs": "^7.8.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@polkadot/api-augment": "10.2.1",
"@polkadot/keyring": "^11.1.2"
"@polkadot/api-augment": "10.2.2",
"@polkadot/keyring": "^11.1.3"
}
}
+4 -4
View File
@@ -27,10 +27,10 @@ export function v4ToLatest (_registry: Registry, v4: ContractMetadataV4): Contra
return v4;
}
export const v3ToLatest = createConverter(v4ToLatest, v3ToV4);
export const v2ToLatest = createConverter(v3ToLatest, v2ToV3);
export const v1ToLatest = createConverter(v2ToLatest, v1ToV2);
export const v0ToLatest = createConverter(v1ToLatest, v0ToV1);
export const v3ToLatest = /*#__PURE__*/ createConverter(v4ToLatest, v3ToV4);
export const v2ToLatest = /*#__PURE__*/ createConverter(v3ToLatest, v2ToV3);
export const v1ToLatest = /*#__PURE__*/ createConverter(v2ToLatest, v1ToV2);
export const v0ToLatest = /*#__PURE__*/ createConverter(v1ToLatest, v0ToV1);
export const convertVersions: [Versions, Converter][] = [
['V4', v4ToLatest],
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/api-contract', path: 'auto', type: 'auto', version: '10.2.1' };
export const packageInfo = { name: '@polkadot/api-contract', path: 'auto', type: 'auto', version: '10.2.2' };
+14 -14
View File
@@ -18,25 +18,25 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "10.2.1",
"version": "10.2.2",
"main": "index.js",
"dependencies": {
"@polkadot/api": "10.2.1",
"@polkadot/api-augment": "10.2.1",
"@polkadot/api-base": "10.2.1",
"@polkadot/rpc-core": "10.2.1",
"@polkadot/types": "10.2.1",
"@polkadot/types-codec": "10.2.1",
"@polkadot/util": "^11.1.2",
"@polkadot/util-crypto": "^11.1.2",
"@polkadot/api": "10.2.2",
"@polkadot/api-augment": "10.2.2",
"@polkadot/api-base": "10.2.2",
"@polkadot/rpc-core": "10.2.2",
"@polkadot/types": "10.2.2",
"@polkadot/types-codec": "10.2.2",
"@polkadot/util": "^11.1.3",
"@polkadot/util-crypto": "^11.1.3",
"rxjs": "^7.8.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@polkadot/api": "10.2.1",
"@polkadot/api-augment": "10.2.1",
"@polkadot/rpc-augment": "10.2.1",
"@polkadot/rpc-provider": "10.2.1",
"@polkadot/types-support": "10.2.1"
"@polkadot/api": "10.2.2",
"@polkadot/api-augment": "10.2.2",
"@polkadot/rpc-augment": "10.2.2",
"@polkadot/rpc-provider": "10.2.2",
"@polkadot/types-support": "10.2.2"
}
}
+29 -18
View File
@@ -4,7 +4,7 @@
import type { Observable } from 'rxjs';
import type { QueryableStorage } from '@polkadot/api-base/types';
import type { Compact, Vec } from '@polkadot/types';
import type { AccountId, BlockNumber, Header } from '@polkadot/types/interfaces';
import type { AccountId, Address, BlockNumber, Header } from '@polkadot/types/interfaces';
import type { Codec, IOption } from '@polkadot/types/types';
import type { DeriveApi } from '../types.js';
@@ -24,23 +24,36 @@ export function createBlockNumberDerive <T extends { number: Compact<BlockNumber
}
export function getAuthorDetails (header: Header, queryAt: QueryableStorage<'rxjs'>): Observable<[Header, Vec<AccountId> | null, AccountId | null]> {
// this is Moonbeam specific
if (queryAt.authorMapping && queryAt.authorMapping.mappingWithDeposit) {
const mapId = header.digest.logs[0] && (
(header.digest.logs[0].isConsensus && header.digest.logs[0].asConsensus[1]) ||
(header.digest.logs[0].isPreRuntime && header.digest.logs[0].asPreRuntime[1])
);
const validators = queryAt.session
? queryAt.session.validators()
: of(null);
if (mapId) {
// nimbus consensus stores the session key of the block author in header logs
const { logs: [log] } = header.digest;
const loggedAuthor = (log && (
(log.isConsensus && log.asConsensus[0].isNimbus && log.asConsensus[1]) ||
(log.isPreRuntime && log.asPreRuntime[0].isNimbus && log.asPreRuntime[1])
));
if (loggedAuthor) {
// use the author mapping pallet, if available (ie: moonbeam, moonriver), to map session (nimbus) key to author (collator/validator) key
if (queryAt.authorMapping && queryAt.authorMapping.mappingWithDeposit) {
return combineLatest([
of(header),
queryAt.session
? queryAt.session.validators()
: of(null),
queryAt.authorMapping.mappingWithDeposit<IOption<{ account: AccountId } & Codec>>(mapId).pipe(
map((opt) =>
opt.unwrapOr({ account: null }).account
)
validators,
queryAt.authorMapping.mappingWithDeposit<IOption<{ account: AccountId } & Codec>>(loggedAuthor)
.pipe(map((opt) => opt.unwrapOr({ account: null }).account))
]);
}
// fall back to session pallet, if available (ie: manta, calamari), to map session (nimbus) key to author (collator/validator) key
if (queryAt.session && queryAt.session.queuedKeys) {
return combineLatest([
of(header),
validators,
queryAt.session.queuedKeys<[AccountId, { nimbus: Address }][]>().pipe(
map((queuedKeys) => queuedKeys.find((sessionKey) => sessionKey[1].nimbus.toHex() === loggedAuthor.toHex())),
map((sessionKey) => (sessionKey) ? sessionKey[0] : null)
)
]);
}
@@ -49,9 +62,7 @@ export function getAuthorDetails (header: Header, queryAt: QueryableStorage<'rxj
// normal operation, non-mapping
return combineLatest([
of(header),
queryAt.session
? queryAt.session.validators()
: of(null),
validators,
of(null)
]);
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/api-derive', path: 'auto', type: 'auto', version: '10.2.1' };
export const packageInfo = { name: '@polkadot/api-derive', path: 'auto', type: 'auto', version: '10.2.2' };
+17 -17
View File
@@ -18,29 +18,29 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "10.2.1",
"version": "10.2.2",
"main": "index.js",
"dependencies": {
"@polkadot/api-augment": "10.2.1",
"@polkadot/api-base": "10.2.1",
"@polkadot/api-derive": "10.2.1",
"@polkadot/keyring": "^11.1.2",
"@polkadot/rpc-augment": "10.2.1",
"@polkadot/rpc-core": "10.2.1",
"@polkadot/rpc-provider": "10.2.1",
"@polkadot/types": "10.2.1",
"@polkadot/types-augment": "10.2.1",
"@polkadot/types-codec": "10.2.1",
"@polkadot/types-create": "10.2.1",
"@polkadot/types-known": "10.2.1",
"@polkadot/util": "^11.1.2",
"@polkadot/util-crypto": "^11.1.2",
"@polkadot/api-augment": "10.2.2",
"@polkadot/api-base": "10.2.2",
"@polkadot/api-derive": "10.2.2",
"@polkadot/keyring": "^11.1.3",
"@polkadot/rpc-augment": "10.2.2",
"@polkadot/rpc-core": "10.2.2",
"@polkadot/rpc-provider": "10.2.2",
"@polkadot/types": "10.2.2",
"@polkadot/types-augment": "10.2.2",
"@polkadot/types-codec": "10.2.2",
"@polkadot/types-create": "10.2.2",
"@polkadot/types-known": "10.2.2",
"@polkadot/util": "^11.1.3",
"@polkadot/util-crypto": "^11.1.3",
"eventemitter3": "^5.0.0",
"rxjs": "^7.8.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@polkadot/api-augment": "10.2.1",
"@polkadot/types-support": "10.2.1"
"@polkadot/api-augment": "10.2.2",
"@polkadot/types-support": "10.2.2"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/api', path: 'auto', type: 'auto', version: '10.2.1' };
export const packageInfo = { name: '@polkadot/api', path: 'auto', type: 'auto', version: '10.2.2' };
+1 -1
View File
@@ -3,4 +3,4 @@
import { logger } from '@polkadot/util';
export const l = logger('api/util');
export const l = /*#__PURE__*/ logger('api/util');
+5 -5
View File
@@ -18,13 +18,13 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "10.2.1",
"version": "10.2.2",
"main": "index.js",
"dependencies": {
"@polkadot/rpc-core": "10.2.1",
"@polkadot/types": "10.2.1",
"@polkadot/types-codec": "10.2.1",
"@polkadot/util": "^11.1.2",
"@polkadot/rpc-core": "10.2.2",
"@polkadot/types": "10.2.2",
"@polkadot/types-codec": "10.2.2",
"@polkadot/util": "^11.1.3",
"tslib": "^2.5.0"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/rpc-augment', path: 'auto', type: 'auto', version: '10.2.1' };
export const packageInfo = { name: '@polkadot/rpc-augment', path: 'auto', type: 'auto', version: '10.2.2' };
+7 -7
View File
@@ -18,18 +18,18 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "10.2.1",
"version": "10.2.2",
"main": "index.js",
"dependencies": {
"@polkadot/rpc-augment": "10.2.1",
"@polkadot/rpc-provider": "10.2.1",
"@polkadot/types": "10.2.1",
"@polkadot/util": "^11.1.2",
"@polkadot/rpc-augment": "10.2.2",
"@polkadot/rpc-provider": "10.2.2",
"@polkadot/types": "10.2.2",
"@polkadot/util": "^11.1.3",
"rxjs": "^7.8.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@polkadot/keyring": "^11.1.2",
"@polkadot/rpc-augment": "10.2.1"
"@polkadot/keyring": "^11.1.3",
"@polkadot/rpc-augment": "10.2.2"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/rpc-core', path: 'auto', type: 'auto', version: '10.2.1' };
export const packageInfo = { name: '@polkadot/rpc-core', path: 'auto', type: 'auto', version: '10.2.2' };
+9 -9
View File
@@ -18,17 +18,17 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "10.2.1",
"version": "10.2.2",
"main": "index.js",
"dependencies": {
"@polkadot/keyring": "^11.1.2",
"@polkadot/types": "10.2.1",
"@polkadot/types-support": "10.2.1",
"@polkadot/util": "^11.1.2",
"@polkadot/util-crypto": "^11.1.2",
"@polkadot/x-fetch": "^11.1.2",
"@polkadot/x-global": "^11.1.2",
"@polkadot/x-ws": "^11.1.2",
"@polkadot/keyring": "^11.1.3",
"@polkadot/types": "10.2.2",
"@polkadot/types-support": "10.2.2",
"@polkadot/util": "^11.1.3",
"@polkadot/util-crypto": "^11.1.3",
"@polkadot/x-fetch": "^11.1.3",
"@polkadot/x-global": "^11.1.3",
"@polkadot/x-ws": "^11.1.3",
"eventemitter3": "^5.0.0",
"mock-socket": "^9.2.1",
"nock": "^13.3.0",
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/rpc-provider', path: 'auto', type: 'auto', version: '10.2.1' };
export const packageInfo = { name: '@polkadot/rpc-provider', path: 'auto', type: 'auto', version: '10.2.2' };
+14 -14
View File
@@ -18,7 +18,7 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "10.2.1",
"version": "10.2.2",
"main": "index.js",
"bin": {
"polkadot-types-chain-info": "./scripts/polkadot-types-chain-info.mjs",
@@ -28,24 +28,24 @@
"polkadot-types-internal-metadata": "./scripts/polkadot-types-internal-metadata.mjs"
},
"dependencies": {
"@polkadot/api": "10.2.1",
"@polkadot/api-augment": "10.2.1",
"@polkadot/rpc-augment": "10.2.1",
"@polkadot/rpc-provider": "10.2.1",
"@polkadot/types": "10.2.1",
"@polkadot/types-augment": "10.2.1",
"@polkadot/types-codec": "10.2.1",
"@polkadot/types-create": "10.2.1",
"@polkadot/types-support": "10.2.1",
"@polkadot/util": "^11.1.2",
"@polkadot/util-crypto": "^11.1.2",
"@polkadot/x-ws": "^11.1.2",
"@polkadot/api": "10.2.2",
"@polkadot/api-augment": "10.2.2",
"@polkadot/rpc-augment": "10.2.2",
"@polkadot/rpc-provider": "10.2.2",
"@polkadot/types": "10.2.2",
"@polkadot/types-augment": "10.2.2",
"@polkadot/types-codec": "10.2.2",
"@polkadot/types-create": "10.2.2",
"@polkadot/types-support": "10.2.2",
"@polkadot/util": "^11.1.3",
"@polkadot/util-crypto": "^11.1.3",
"@polkadot/x-ws": "^11.1.3",
"handlebars": "^4.7.7",
"tslib": "^2.5.0",
"yargs": "^17.7.1"
},
"devDependencies": {
"@types/websocket": "^1.0.5",
"@types/yargs": "^17.0.23"
"@types/yargs": "^17.0.24"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/typegen', path: 'auto', type: 'auto', version: '10.2.1' };
export const packageInfo = { name: '@polkadot/typegen', path: 'auto', type: 'auto', version: '10.2.2' };
+4 -4
View File
@@ -18,12 +18,12 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "10.2.1",
"version": "10.2.2",
"main": "index.js",
"dependencies": {
"@polkadot/types": "10.2.1",
"@polkadot/types-codec": "10.2.1",
"@polkadot/util": "^11.1.2",
"@polkadot/types": "10.2.2",
"@polkadot/types-codec": "10.2.2",
"@polkadot/util": "^11.1.3",
"tslib": "^2.5.0"
}
}
+10 -10
View File
@@ -132,7 +132,7 @@ export default {
* Lookup208: kusama_runtime::ProxyType
**/
KusamaRuntimeProxyType: {
_enum: ['Any', 'NonTransfer', 'Governance', 'Staking', 'IdentityJudgement', 'CancelProxy', 'Auction', 'Society']
_enum: ['Any', 'NonTransfer', 'Governance', 'Staking', 'IdentityJudgement', 'CancelProxy', 'Auction', 'Society', 'NominationPools']
},
/**
* Lookup217: kusama_runtime::NposCompactSolution24
@@ -164,7 +164,7 @@ export default {
votes24: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);23],Compact<u16>)>'
},
/**
* Lookup363: polkadot_runtime_parachains::disputes::slashing::pallet::Call<T>
* Lookup364: polkadot_runtime_parachains::disputes::slashing::pallet::Call<T>
**/
PolkadotRuntimeParachainsDisputesSlashingPalletCall: {
_enum: {
@@ -175,7 +175,7 @@ export default {
}
},
/**
* Lookup364: polkadot_runtime_parachains::disputes::slashing::DisputeProof
* Lookup365: polkadot_runtime_parachains::disputes::slashing::DisputeProof
**/
PolkadotRuntimeParachainsDisputesSlashingDisputeProof: {
timeSlot: 'PolkadotRuntimeParachainsDisputesSlashingDisputesTimeSlot',
@@ -184,20 +184,20 @@ export default {
validatorId: 'PolkadotPrimitivesV4ValidatorAppPublic'
},
/**
* Lookup365: polkadot_runtime_parachains::disputes::slashing::DisputesTimeSlot
* Lookup366: polkadot_runtime_parachains::disputes::slashing::DisputesTimeSlot
**/
PolkadotRuntimeParachainsDisputesSlashingDisputesTimeSlot: {
sessionIndex: 'u32',
candidateHash: 'H256'
},
/**
* Lookup366: polkadot_runtime_parachains::disputes::slashing::SlashingOffenceKind
* Lookup367: polkadot_runtime_parachains::disputes::slashing::SlashingOffenceKind
**/
PolkadotRuntimeParachainsDisputesSlashingSlashingOffenceKind: {
_enum: ['ForInvalid', 'AgainstValid']
},
/**
* Lookup534: kusama_runtime::HoldReason
* Lookup535: kusama_runtime::HoldReason
**/
KusamaRuntimeHoldReason: {
_enum: {
@@ -243,13 +243,13 @@ export default {
}
},
/**
* Lookup535: kusama_runtime::HoldReasonNis
* Lookup536: kusama_runtime::HoldReasonNis
**/
KusamaRuntimeHoldReasonNis: {
_enum: ['NftReceipt']
},
/**
* Lookup809: polkadot_runtime_parachains::disputes::slashing::PendingSlashes
* Lookup810: polkadot_runtime_parachains::disputes::slashing::PendingSlashes
**/
PolkadotRuntimeParachainsDisputesSlashingPendingSlashes: {
_alias: {
@@ -259,13 +259,13 @@ export default {
kind: 'PolkadotRuntimeParachainsDisputesSlashingSlashingOffenceKind'
},
/**
* Lookup813: polkadot_runtime_parachains::disputes::slashing::pallet::Error<T>
* Lookup814: polkadot_runtime_parachains::disputes::slashing::pallet::Error<T>
**/
PolkadotRuntimeParachainsDisputesSlashingPalletError: {
_enum: ['InvalidKeyOwnershipProof', 'InvalidSessionIndex', 'InvalidCandidateHash', 'InvalidValidatorIndex', 'ValidatorIndexIdMismatch', 'DuplicateSlashingReport']
},
/**
* Lookup856: kusama_runtime::Runtime
* Lookup857: kusama_runtime::Runtime
**/
KusamaRuntimeRuntime: 'Null'
};
File diff suppressed because it is too large Load Diff
+130 -129
View File
@@ -5514,13 +5514,14 @@ export default {
storageBaseDeposit: 'u128'
},
/**
* Lookup548: pallet_contracts::storage::DeletedContract
* Lookup547: pallet_contracts::storage::DeletionQueueManager<T>
**/
PalletContractsStorageDeletedContract: {
trieId: 'Bytes'
PalletContractsStorageDeletionQueueManager: {
insertCounter: 'u32',
deleteCounter: 'u32'
},
/**
* Lookup550: pallet_contracts::schedule::Schedule<T>
* Lookup548: pallet_contracts::schedule::Schedule<T>
**/
PalletContractsSchedule: {
limits: 'PalletContractsScheduleLimits',
@@ -5528,7 +5529,7 @@ export default {
hostFnWeights: 'PalletContractsScheduleHostFnWeights'
},
/**
* Lookup551: pallet_contracts::schedule::Limits
* Lookup549: pallet_contracts::schedule::Limits
**/
PalletContractsScheduleLimits: {
eventTopics: 'u32',
@@ -5542,7 +5543,7 @@ export default {
payloadLen: 'u32'
},
/**
* Lookup552: pallet_contracts::schedule::InstructionWeights<T>
* Lookup550: pallet_contracts::schedule::InstructionWeights<T>
**/
PalletContractsScheduleInstructionWeights: {
_alias: {
@@ -5603,7 +5604,7 @@ export default {
i64rotr: 'u32'
},
/**
* Lookup553: pallet_contracts::schedule::HostFnWeights<T>
* Lookup551: pallet_contracts::schedule::HostFnWeights<T>
**/
PalletContractsScheduleHostFnWeights: {
_alias: {
@@ -5670,39 +5671,39 @@ export default {
instantiationNonce: 'SpWeightsWeightV2Weight'
},
/**
* Lookup554: pallet_contracts::pallet::Error<T>
* Lookup552: pallet_contracts::pallet::Error<T>
**/
PalletContractsError: {
_enum: ['InvalidScheduleVersion', 'InvalidCallFlags', 'OutOfGas', 'OutputBufferTooSmall', 'TransferFailed', 'MaxCallDepthReached', 'ContractNotFound', 'CodeTooLarge', 'CodeNotFound', 'OutOfBounds', 'DecodingFailed', 'ContractTrapped', 'ValueTooLarge', 'TerminatedWhileReentrant', 'InputForwarded', 'RandomSubjectTooLong', 'TooManyTopics', 'NoChainExtension', 'DeletionQueueFull', 'DuplicateContract', 'TerminatedInConstructor', 'ReentranceDenied', 'StorageDepositNotEnoughFunds', 'StorageDepositLimitExhausted', 'CodeInUse', 'ContractReverted', 'CodeRejected', 'Indeterministic']
_enum: ['InvalidScheduleVersion', 'InvalidCallFlags', 'OutOfGas', 'OutputBufferTooSmall', 'TransferFailed', 'MaxCallDepthReached', 'ContractNotFound', 'CodeTooLarge', 'CodeNotFound', 'OutOfBounds', 'DecodingFailed', 'ContractTrapped', 'ValueTooLarge', 'TerminatedWhileReentrant', 'InputForwarded', 'RandomSubjectTooLong', 'TooManyTopics', 'NoChainExtension', 'DuplicateContract', 'TerminatedInConstructor', 'ReentranceDenied', 'StorageDepositNotEnoughFunds', 'StorageDepositLimitExhausted', 'CodeInUse', 'ContractReverted', 'CodeRejected', 'Indeterministic']
},
/**
* Lookup555: pallet_sudo::pallet::Error<T>
* Lookup553: pallet_sudo::pallet::Error<T>
**/
PalletSudoError: {
_enum: ['RequireSudo']
},
/**
* Lookup559: pallet_im_online::BoundedOpaqueNetworkState<PeerIdEncodingLimit, MultiAddrEncodingLimit, AddressesLimit>
* Lookup557: pallet_im_online::BoundedOpaqueNetworkState<PeerIdEncodingLimit, MultiAddrEncodingLimit, AddressesLimit>
**/
PalletImOnlineBoundedOpaqueNetworkState: {
peerId: 'Bytes',
externalAddresses: 'Vec<Bytes>'
},
/**
* Lookup563: pallet_im_online::pallet::Error<T>
* Lookup561: pallet_im_online::pallet::Error<T>
**/
PalletImOnlineError: {
_enum: ['InvalidKey', 'DuplicatedHeartbeat']
},
/**
* Lookup566: sp_staking::offence::OffenceDetails<sp_core::crypto::AccountId32, Offender>
* Lookup564: sp_staking::offence::OffenceDetails<sp_core::crypto::AccountId32, Offender>
**/
SpStakingOffenceOffenceDetails: {
offender: '(AccountId32,PalletStakingExposure)',
reporters: 'Vec<AccountId32>'
},
/**
* Lookup569: pallet_identity::types::Registration<Balance, MaxJudgements, MaxAdditionalFields>
* Lookup567: pallet_identity::types::Registration<Balance, MaxJudgements, MaxAdditionalFields>
**/
PalletIdentityRegistration: {
judgements: 'Vec<(u32,PalletIdentityJudgement)>',
@@ -5710,7 +5711,7 @@ export default {
info: 'PalletIdentityIdentityInfo'
},
/**
* Lookup577: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32>
* Lookup575: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32>
**/
PalletIdentityRegistrarInfo: {
account: 'AccountId32',
@@ -5718,13 +5719,13 @@ export default {
fields: 'PalletIdentityBitFlags'
},
/**
* Lookup579: pallet_identity::pallet::Error<T>
* Lookup577: pallet_identity::pallet::Error<T>
**/
PalletIdentityError: {
_enum: ['TooManySubAccounts', 'NotFound', 'NotNamed', 'EmptyIndex', 'FeeChanged', 'NoIdentity', 'StickyJudgement', 'JudgementGiven', 'InvalidJudgement', 'InvalidIndex', 'InvalidTarget', 'TooManyFields', 'TooManyRegistrars', 'AlreadyClaimed', 'NotSub', 'NotOwned', 'JudgementForDifferentIdentity', 'JudgementPaymentFailed']
},
/**
* Lookup581: pallet_society::Bid<sp_core::crypto::AccountId32, Balance>
* Lookup579: pallet_society::Bid<sp_core::crypto::AccountId32, Balance>
**/
PalletSocietyBid: {
who: 'AccountId32',
@@ -5732,7 +5733,7 @@ export default {
value: 'u128'
},
/**
* Lookup582: pallet_society::BidKind<sp_core::crypto::AccountId32, Balance>
* Lookup580: pallet_society::BidKind<sp_core::crypto::AccountId32, Balance>
**/
PalletSocietyBidKind: {
_enum: {
@@ -5741,25 +5742,25 @@ export default {
}
},
/**
* Lookup584: pallet_society::VouchingStatus
* Lookup582: pallet_society::VouchingStatus
**/
PalletSocietyVouchingStatus: {
_enum: ['Vouching', 'Banned']
},
/**
* Lookup588: pallet_society::Vote
* Lookup586: pallet_society::Vote
**/
PalletSocietyVote: {
_enum: ['Skeptic', 'Reject', 'Approve']
},
/**
* Lookup589: pallet_society::pallet::Error<T, I>
* Lookup587: pallet_society::pallet::Error<T, I>
**/
PalletSocietyError: {
_enum: ['BadPosition', 'NotMember', 'AlreadyMember', 'Suspended', 'NotSuspended', 'NoPayout', 'AlreadyFounded', 'InsufficientPot', 'AlreadyVouching', 'NotVouching', 'Head', 'Founder', 'AlreadyBid', 'AlreadyCandidate', 'NotCandidate', 'MaxMembers', 'NotFounder', 'NotHead']
},
/**
* Lookup590: pallet_recovery::RecoveryConfig<BlockNumber, Balance, bounded_collections::bounded_vec::BoundedVec<sp_core::crypto::AccountId32, S>>
* Lookup588: pallet_recovery::RecoveryConfig<BlockNumber, Balance, bounded_collections::bounded_vec::BoundedVec<sp_core::crypto::AccountId32, S>>
**/
PalletRecoveryRecoveryConfig: {
delayPeriod: 'u32',
@@ -5768,7 +5769,7 @@ export default {
threshold: 'u16'
},
/**
* Lookup592: pallet_recovery::ActiveRecovery<BlockNumber, Balance, bounded_collections::bounded_vec::BoundedVec<sp_core::crypto::AccountId32, S>>
* Lookup590: pallet_recovery::ActiveRecovery<BlockNumber, Balance, bounded_collections::bounded_vec::BoundedVec<sp_core::crypto::AccountId32, S>>
**/
PalletRecoveryActiveRecovery: {
created: 'u32',
@@ -5776,25 +5777,25 @@ export default {
friends: 'Vec<AccountId32>'
},
/**
* Lookup593: pallet_recovery::pallet::Error<T>
* Lookup591: pallet_recovery::pallet::Error<T>
**/
PalletRecoveryError: {
_enum: ['NotAllowed', 'ZeroThreshold', 'NotEnoughFriends', 'MaxFriends', 'NotSorted', 'NotRecoverable', 'AlreadyRecoverable', 'AlreadyStarted', 'NotStarted', 'NotFriend', 'DelayPeriod', 'AlreadyVouched', 'Threshold', 'StillActive', 'AlreadyProxy', 'BadState']
},
/**
* Lookup596: pallet_vesting::Releases
* Lookup594: pallet_vesting::Releases
**/
PalletVestingReleases: {
_enum: ['V0', 'V1']
},
/**
* Lookup597: pallet_vesting::pallet::Error<T>
* Lookup595: pallet_vesting::pallet::Error<T>
**/
PalletVestingError: {
_enum: ['NotVesting', 'AtMaxVestingSchedules', 'AmountLow', 'ScheduleIndexOutOfBounds', 'InvalidScheduleParams']
},
/**
* Lookup600: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<kitchensink_runtime::RuntimeCall>, BlockNumber, kitchensink_runtime::OriginCaller, sp_core::crypto::AccountId32>
* Lookup598: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<kitchensink_runtime::RuntimeCall>, BlockNumber, kitchensink_runtime::OriginCaller, sp_core::crypto::AccountId32>
**/
PalletSchedulerScheduled: {
maybeId: 'Option<[u8;32]>',
@@ -5804,19 +5805,19 @@ export default {
origin: 'KitchensinkRuntimeOriginCaller'
},
/**
* Lookup602: pallet_scheduler::pallet::Error<T>
* Lookup600: pallet_scheduler::pallet::Error<T>
**/
PalletSchedulerError: {
_enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange', 'Named']
},
/**
* Lookup604: pallet_glutton::pallet::Error<T>
* Lookup602: pallet_glutton::pallet::Error<T>
**/
PalletGluttonError: {
_enum: ['AlreadyInitialized']
},
/**
* Lookup605: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Balance>
* Lookup603: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Balance>
**/
PalletPreimageRequestStatus: {
_enum: {
@@ -5832,13 +5833,13 @@ export default {
}
},
/**
* Lookup609: pallet_preimage::pallet::Error<T>
* Lookup607: pallet_preimage::pallet::Error<T>
**/
PalletPreimageError: {
_enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested']
},
/**
* Lookup612: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, kitchensink_runtime::ProxyType, BlockNumber>
* Lookup610: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, kitchensink_runtime::ProxyType, BlockNumber>
**/
PalletProxyProxyDefinition: {
delegate: 'AccountId32',
@@ -5846,7 +5847,7 @@ export default {
delay: 'u32'
},
/**
* Lookup616: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
* Lookup614: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
**/
PalletProxyAnnouncement: {
real: 'AccountId32',
@@ -5854,13 +5855,13 @@ export default {
height: 'u32'
},
/**
* Lookup618: pallet_proxy::pallet::Error<T>
* Lookup616: pallet_proxy::pallet::Error<T>
**/
PalletProxyError: {
_enum: ['TooMany', 'NotFound', 'NotProxy', 'Unproxyable', 'Duplicate', 'NoPermission', 'Unannounced', 'NoSelfProxy']
},
/**
* Lookup620: pallet_multisig::Multisig<BlockNumber, Balance, sp_core::crypto::AccountId32, MaxApprovals>
* Lookup618: pallet_multisig::Multisig<BlockNumber, Balance, sp_core::crypto::AccountId32, MaxApprovals>
**/
PalletMultisigMultisig: {
when: 'PalletMultisigTimepoint',
@@ -5869,13 +5870,13 @@ export default {
approvals: 'Vec<AccountId32>'
},
/**
* Lookup621: pallet_multisig::pallet::Error<T>
* Lookup619: pallet_multisig::pallet::Error<T>
**/
PalletMultisigError: {
_enum: ['MinimumThreshold', 'AlreadyApproved', 'NoApprovalsNeeded', 'TooFewSignatories', 'TooManySignatories', 'SignatoriesOutOfOrder', 'SenderInSignatories', 'NotFound', 'NotOwner', 'NoTimepoint', 'WrongTimepoint', 'UnexpectedTimepoint', 'MaxWeightTooLow', 'AlreadyStored']
},
/**
* Lookup622: pallet_bounties::Bounty<sp_core::crypto::AccountId32, Balance, BlockNumber>
* Lookup620: pallet_bounties::Bounty<sp_core::crypto::AccountId32, Balance, BlockNumber>
**/
PalletBountiesBounty: {
proposer: 'AccountId32',
@@ -5886,7 +5887,7 @@ export default {
status: 'PalletBountiesBountyStatus'
},
/**
* Lookup623: pallet_bounties::BountyStatus<sp_core::crypto::AccountId32, BlockNumber>
* Lookup621: pallet_bounties::BountyStatus<sp_core::crypto::AccountId32, BlockNumber>
**/
PalletBountiesBountyStatus: {
_enum: {
@@ -5908,13 +5909,13 @@ export default {
}
},
/**
* Lookup625: pallet_bounties::pallet::Error<T, I>
* Lookup623: pallet_bounties::pallet::Error<T, I>
**/
PalletBountiesError: {
_enum: ['InsufficientProposersBalance', 'InvalidIndex', 'ReasonTooBig', 'UnexpectedStatus', 'RequireCurator', 'InvalidValue', 'InvalidFee', 'PendingPayout', 'Premature', 'HasActiveChildBounty', 'TooManyQueued']
},
/**
* Lookup626: pallet_tips::OpenTip<sp_core::crypto::AccountId32, Balance, BlockNumber, primitive_types::H256>
* Lookup624: pallet_tips::OpenTip<sp_core::crypto::AccountId32, Balance, BlockNumber, primitive_types::H256>
**/
PalletTipsOpenTip: {
reason: 'H256',
@@ -5926,13 +5927,13 @@ export default {
findersFee: 'bool'
},
/**
* Lookup627: pallet_tips::pallet::Error<T, I>
* Lookup625: pallet_tips::pallet::Error<T, I>
**/
PalletTipsError: {
_enum: ['ReasonTooBig', 'AlreadyKnown', 'UnknownTip', 'NotFinder', 'StillOpen', 'Premature']
},
/**
* Lookup628: pallet_assets::types::AssetDetails<Balance, sp_core::crypto::AccountId32, DepositBalance>
* Lookup626: pallet_assets::types::AssetDetails<Balance, sp_core::crypto::AccountId32, DepositBalance>
**/
PalletAssetsAssetDetails: {
owner: 'AccountId32',
@@ -5949,13 +5950,13 @@ export default {
status: 'PalletAssetsAssetStatus'
},
/**
* Lookup629: pallet_assets::types::AssetStatus
* Lookup627: pallet_assets::types::AssetStatus
**/
PalletAssetsAssetStatus: {
_enum: ['Live', 'Frozen', 'Destroying']
},
/**
* Lookup630: pallet_assets::types::AssetAccount<Balance, DepositBalance, Extra>
* Lookup628: pallet_assets::types::AssetAccount<Balance, DepositBalance, Extra>
**/
PalletAssetsAssetAccount: {
balance: 'u128',
@@ -5964,7 +5965,7 @@ export default {
extra: 'Null'
},
/**
* Lookup631: pallet_assets::types::ExistenceReason<Balance>
* Lookup629: pallet_assets::types::ExistenceReason<Balance>
**/
PalletAssetsExistenceReason: {
_enum: {
@@ -5975,14 +5976,14 @@ export default {
}
},
/**
* Lookup633: pallet_assets::types::Approval<Balance, DepositBalance>
* Lookup631: pallet_assets::types::Approval<Balance, DepositBalance>
**/
PalletAssetsApproval: {
amount: 'u128',
deposit: 'u128'
},
/**
* Lookup634: pallet_assets::types::AssetMetadata<DepositBalance, bounded_collections::bounded_vec::BoundedVec<T, S>>
* Lookup632: pallet_assets::types::AssetMetadata<DepositBalance, bounded_collections::bounded_vec::BoundedVec<T, S>>
**/
PalletAssetsAssetMetadata: {
deposit: 'u128',
@@ -5992,13 +5993,13 @@ export default {
isFrozen: 'bool'
},
/**
* Lookup635: pallet_assets::pallet::Error<T, I>
* Lookup633: pallet_assets::pallet::Error<T, I>
**/
PalletAssetsError: {
_enum: ['BalanceLow', 'NoAccount', 'NoPermission', 'Unknown', 'Frozen', 'InUse', 'BadWitness', 'MinBalanceZero', 'UnavailableConsumer', 'BadMetadata', 'Unapproved', 'WouldDie', 'AlreadyExists', 'NoDeposit', 'WouldBurn', 'LiveAsset', 'AssetNotLive', 'IncorrectStatus', 'NotFrozen', 'CallbackFailed']
},
/**
* Lookup636: pallet_lottery::LotteryConfig<BlockNumber, Balance>
* Lookup634: pallet_lottery::LotteryConfig<BlockNumber, Balance>
**/
PalletLotteryLotteryConfig: {
price: 'u128',
@@ -6008,20 +6009,20 @@ export default {
repeat: 'bool'
},
/**
* Lookup640: pallet_lottery::pallet::Error<T>
* Lookup638: pallet_lottery::pallet::Error<T>
**/
PalletLotteryError: {
_enum: ['NotConfigured', 'InProgress', 'AlreadyEnded', 'InvalidCall', 'AlreadyParticipating', 'TooManyCalls', 'EncodingFailed']
},
/**
* Lookup643: pallet_nis::pallet::Bid<Balance, sp_core::crypto::AccountId32>
* Lookup641: pallet_nis::pallet::Bid<Balance, sp_core::crypto::AccountId32>
**/
PalletNisBid: {
amount: 'u128',
who: 'AccountId32'
},
/**
* Lookup645: pallet_nis::pallet::SummaryRecord<BlockNumber, Balance>
* Lookup643: pallet_nis::pallet::SummaryRecord<BlockNumber, Balance>
**/
PalletNisSummaryRecord: {
proportionOwed: 'Perquintill',
@@ -6031,7 +6032,7 @@ export default {
receiptsOnHold: 'u128'
},
/**
* Lookup646: pallet_nis::pallet::ReceiptRecord<sp_core::crypto::AccountId32, BlockNumber, Balance>
* Lookup644: pallet_nis::pallet::ReceiptRecord<sp_core::crypto::AccountId32, BlockNumber, Balance>
**/
PalletNisReceiptRecord: {
proportion: 'Perquintill',
@@ -6039,13 +6040,13 @@ export default {
expiry: 'u32'
},
/**
* Lookup648: pallet_nis::pallet::Error<T>
* Lookup646: pallet_nis::pallet::Error<T>
**/
PalletNisError: {
_enum: ['DurationTooSmall', 'DurationTooBig', 'AmountTooSmall', 'BidTooLow', 'UnknownReceipt', 'NotOwner', 'NotExpired', 'UnknownBid', 'PortionTooBig', 'Unfunded', 'AlreadyFunded', 'Throttled', 'MakesDust', 'AlreadyCommunal', 'AlreadyPrivate', 'Release1', 'Release2', 'Tah']
},
/**
* Lookup649: pallet_uniques::types::CollectionDetails<sp_core::crypto::AccountId32, DepositBalance>
* Lookup647: pallet_uniques::types::CollectionDetails<sp_core::crypto::AccountId32, DepositBalance>
**/
PalletUniquesCollectionDetails: {
owner: 'AccountId32',
@@ -6060,7 +6061,7 @@ export default {
isFrozen: 'bool'
},
/**
* Lookup651: pallet_uniques::types::ItemDetails<sp_core::crypto::AccountId32, DepositBalance>
* Lookup649: pallet_uniques::types::ItemDetails<sp_core::crypto::AccountId32, DepositBalance>
**/
PalletUniquesItemDetails: {
owner: 'AccountId32',
@@ -6069,7 +6070,7 @@ export default {
deposit: 'u128'
},
/**
* Lookup652: pallet_uniques::types::CollectionMetadata<DepositBalance, StringLimit>
* Lookup650: pallet_uniques::types::CollectionMetadata<DepositBalance, StringLimit>
**/
PalletUniquesCollectionMetadata: {
deposit: 'u128',
@@ -6077,7 +6078,7 @@ export default {
isFrozen: 'bool'
},
/**
* Lookup653: pallet_uniques::types::ItemMetadata<DepositBalance, StringLimit>
* Lookup651: pallet_uniques::types::ItemMetadata<DepositBalance, StringLimit>
**/
PalletUniquesItemMetadata: {
deposit: 'u128',
@@ -6085,13 +6086,13 @@ export default {
isFrozen: 'bool'
},
/**
* Lookup657: pallet_uniques::pallet::Error<T, I>
* Lookup655: pallet_uniques::pallet::Error<T, I>
**/
PalletUniquesError: {
_enum: ['NoPermission', 'UnknownCollection', 'AlreadyExists', 'WrongOwner', 'BadWitness', 'InUse', 'Frozen', 'WrongDelegate', 'NoDelegate', 'Unapproved', 'Unaccepted', 'Locked', 'MaxSupplyReached', 'MaxSupplyAlreadySet', 'MaxSupplyTooSmall', 'UnknownItem', 'NotForSale', 'BidTooLow']
},
/**
* Lookup658: pallet_nfts::types::CollectionDetails<sp_core::crypto::AccountId32, DepositBalance>
* Lookup656: pallet_nfts::types::CollectionDetails<sp_core::crypto::AccountId32, DepositBalance>
**/
PalletNftsCollectionDetails: {
owner: 'AccountId32',
@@ -6102,13 +6103,13 @@ export default {
attributes: 'u32'
},
/**
* Lookup660: pallet_nfts::types::CollectionRole
* Lookup658: pallet_nfts::types::CollectionRole
**/
PalletNftsCollectionRole: {
_enum: ['__Unused0', 'Issuer', 'Freezer', '__Unused3', 'Admin']
},
/**
* Lookup661: pallet_nfts::types::ItemDetails<sp_core::crypto::AccountId32, pallet_nfts::types::ItemDeposit<DepositBalance, sp_core::crypto::AccountId32>, bounded_collections::bounded_btree_map::BoundedBTreeMap<sp_core::crypto::AccountId32, Option<T>, S>>
* Lookup659: pallet_nfts::types::ItemDetails<sp_core::crypto::AccountId32, pallet_nfts::types::ItemDeposit<DepositBalance, sp_core::crypto::AccountId32>, bounded_collections::bounded_btree_map::BoundedBTreeMap<sp_core::crypto::AccountId32, Option<T>, S>>
**/
PalletNftsItemDetails: {
owner: 'AccountId32',
@@ -6116,42 +6117,42 @@ export default {
deposit: 'PalletNftsItemDeposit'
},
/**
* Lookup662: pallet_nfts::types::ItemDeposit<DepositBalance, sp_core::crypto::AccountId32>
* Lookup660: pallet_nfts::types::ItemDeposit<DepositBalance, sp_core::crypto::AccountId32>
**/
PalletNftsItemDeposit: {
account: 'AccountId32',
amount: 'u128'
},
/**
* Lookup667: pallet_nfts::types::CollectionMetadata<Deposit, StringLimit>
* Lookup665: pallet_nfts::types::CollectionMetadata<Deposit, StringLimit>
**/
PalletNftsCollectionMetadata: {
deposit: 'u128',
data: 'Bytes'
},
/**
* Lookup668: pallet_nfts::types::ItemMetadata<pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>, StringLimit>
* Lookup666: pallet_nfts::types::ItemMetadata<pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>, StringLimit>
**/
PalletNftsItemMetadata: {
deposit: 'PalletNftsItemMetadataDeposit',
data: 'Bytes'
},
/**
* Lookup669: pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>
* Lookup667: pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>
**/
PalletNftsItemMetadataDeposit: {
account: 'Option<AccountId32>',
amount: 'u128'
},
/**
* Lookup672: pallet_nfts::types::AttributeDeposit<DepositBalance, sp_core::crypto::AccountId32>
* Lookup670: pallet_nfts::types::AttributeDeposit<DepositBalance, sp_core::crypto::AccountId32>
**/
PalletNftsAttributeDeposit: {
account: 'Option<AccountId32>',
amount: 'u128'
},
/**
* Lookup675: pallet_nfts::types::PendingSwap<CollectionId, ItemId, pallet_nfts::types::PriceWithDirection<Amount>, Deadline>
* Lookup673: pallet_nfts::types::PendingSwap<CollectionId, ItemId, pallet_nfts::types::PriceWithDirection<Amount>, Deadline>
**/
PalletNftsPendingSwap: {
desiredCollection: 'u32',
@@ -6160,19 +6161,19 @@ export default {
deadline: 'u32'
},
/**
* Lookup677: pallet_nfts::types::PalletFeature
* Lookup675: pallet_nfts::types::PalletFeature
**/
PalletNftsPalletFeature: {
_enum: ['__Unused0', 'Trading', 'Attributes', '__Unused3', 'Approvals', '__Unused5', '__Unused6', '__Unused7', 'Swaps']
},
/**
* Lookup678: pallet_nfts::pallet::Error<T, I>
* Lookup676: pallet_nfts::pallet::Error<T, I>
**/
PalletNftsError: {
_enum: ['NoPermission', 'UnknownCollection', 'AlreadyExists', 'ApprovalExpired', 'WrongOwner', 'BadWitness', 'CollectionIdInUse', 'ItemsNonTransferable', 'NotDelegate', 'WrongDelegate', 'Unapproved', 'Unaccepted', 'ItemLocked', 'LockedItemAttributes', 'LockedCollectionAttributes', 'LockedItemMetadata', 'LockedCollectionMetadata', 'MaxSupplyReached', 'MaxSupplyLocked', 'MaxSupplyTooSmall', 'UnknownItem', 'UnknownSwap', 'MetadataNotFound', 'AttributeNotFound', 'NotForSale', 'BidTooLow', 'ReachedApprovalLimit', 'DeadlineExpired', 'WrongDuration', 'MethodDisabled', 'WrongSetting', 'InconsistentItemConfig', 'NoConfig', 'RolesNotCleared', 'MintNotStarted', 'MintEnded', 'AlreadyClaimed', 'IncorrectData', 'WrongOrigin', 'WrongSignature', 'IncorrectMetadata', 'MaxAttributesLimitReached', 'WrongNamespace', 'CollectionNotEmpty']
},
/**
* Lookup679: pallet_salary::StatusType<CycleIndex, BlockNumber, Balance>
* Lookup677: pallet_salary::StatusType<CycleIndex, BlockNumber, Balance>
**/
PalletSalaryStatusType: {
cycleIndex: 'u32',
@@ -6182,14 +6183,14 @@ export default {
totalUnregisteredPaid: 'u128'
},
/**
* Lookup680: pallet_salary::ClaimantStatus<CycleIndex, Balance, Id>
* Lookup678: pallet_salary::ClaimantStatus<CycleIndex, Balance, Id>
**/
PalletSalaryClaimantStatus: {
lastActive: 'u32',
status: 'PalletSalaryClaimState'
},
/**
* Lookup681: pallet_salary::ClaimState<Balance, Id>
* Lookup679: pallet_salary::ClaimState<Balance, Id>
**/
PalletSalaryClaimState: {
_enum: {
@@ -6203,13 +6204,13 @@ export default {
}
},
/**
* Lookup682: pallet_salary::pallet::Error<T, I>
* Lookup680: pallet_salary::pallet::Error<T, I>
**/
PalletSalaryError: {
_enum: ['AlreadyStarted', 'NotMember', 'AlreadyInducted', 'NotInducted', 'NoClaim', 'ClaimZero', 'TooLate', 'TooEarly', 'NotYet', 'NotStarted', 'Bankrupt', 'PayError', 'Inconclusive', 'NotCurrent']
},
/**
* Lookup683: pallet_core_fellowship::MemberStatus<BlockNumber>
* Lookup681: pallet_core_fellowship::MemberStatus<BlockNumber>
**/
PalletCoreFellowshipMemberStatus: {
isActive: 'bool',
@@ -6217,13 +6218,13 @@ export default {
lastProof: 'u32'
},
/**
* Lookup685: pallet_core_fellowship::pallet::Error<T, I>
* Lookup683: pallet_core_fellowship::pallet::Error<T, I>
**/
PalletCoreFellowshipError: {
_enum: ['Unranked', 'Ranked', 'UnexpectedRank', 'InvalidRank', 'NoPermission', 'NothingDoing', 'AlreadyInducted', 'NotTracked', 'TooSoon']
},
/**
* Lookup687: pallet_transaction_storage::TransactionInfo
* Lookup685: pallet_transaction_storage::TransactionInfo
**/
PalletTransactionStorageTransactionInfo: {
_alias: {
@@ -6235,13 +6236,13 @@ export default {
blockChunks: 'u32'
},
/**
* Lookup689: pallet_transaction_storage::pallet::Error<T>
* Lookup687: pallet_transaction_storage::pallet::Error<T>
**/
PalletTransactionStorageError: {
_enum: ['InsufficientFunds', 'NotConfigured', 'RenewedNotFound', 'EmptyTransaction', 'UnexpectedProof', 'InvalidProof', 'MissingProof', 'MissingStateData', 'DoubleCheck', 'ProofNotChecked', 'TransactionTooLarge', 'TooManyTransactions', 'BadContext']
},
/**
* Lookup690: pallet_bags_list::list::Node<T, I>
* Lookup688: pallet_bags_list::list::Node<T, I>
**/
PalletBagsListListNode: {
id: 'AccountId32',
@@ -6251,14 +6252,14 @@ export default {
score: 'u64'
},
/**
* Lookup691: pallet_bags_list::list::Bag<T, I>
* Lookup689: pallet_bags_list::list::Bag<T, I>
**/
PalletBagsListListBag: {
head: 'Option<AccountId32>',
tail: 'Option<AccountId32>'
},
/**
* Lookup693: pallet_bags_list::pallet::Error<T, I>
* Lookup691: pallet_bags_list::pallet::Error<T, I>
**/
PalletBagsListError: {
_enum: {
@@ -6266,13 +6267,13 @@ export default {
}
},
/**
* Lookup694: pallet_bags_list::list::ListError
* Lookup692: pallet_bags_list::list::ListError
**/
PalletBagsListListListError: {
_enum: ['Duplicate', 'NotHeavier', 'NotInSameBag', 'NodeNotFound']
},
/**
* Lookup695: pallet_child_bounties::ChildBounty<sp_core::crypto::AccountId32, Balance, BlockNumber>
* Lookup693: pallet_child_bounties::ChildBounty<sp_core::crypto::AccountId32, Balance, BlockNumber>
**/
PalletChildBountiesChildBounty: {
parentBounty: 'u32',
@@ -6282,7 +6283,7 @@ export default {
status: 'PalletChildBountiesChildBountyStatus'
},
/**
* Lookup696: pallet_child_bounties::ChildBountyStatus<sp_core::crypto::AccountId32, BlockNumber>
* Lookup694: pallet_child_bounties::ChildBountyStatus<sp_core::crypto::AccountId32, BlockNumber>
**/
PalletChildBountiesChildBountyStatus: {
_enum: {
@@ -6301,13 +6302,13 @@ export default {
}
},
/**
* Lookup697: pallet_child_bounties::pallet::Error<T>
* Lookup695: pallet_child_bounties::pallet::Error<T>
**/
PalletChildBountiesError: {
_enum: ['ParentBountyNotActive', 'InsufficientBountyBalance', 'TooManyChildBounties']
},
/**
* Lookup698: pallet_referenda::types::ReferendumInfo<TrackId, kitchensink_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<kitchensink_runtime::RuntimeCall>, Balance, pallet_conviction_voting::types::Tally<Votes, Total>, sp_core::crypto::AccountId32, ScheduleAddress>
* Lookup696: pallet_referenda::types::ReferendumInfo<TrackId, kitchensink_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<kitchensink_runtime::RuntimeCall>, Balance, pallet_conviction_voting::types::Tally<Votes, Total>, sp_core::crypto::AccountId32, ScheduleAddress>
**/
PalletReferendaReferendumInfoConvictionVotingTally: {
_enum: {
@@ -6320,7 +6321,7 @@ export default {
}
},
/**
* Lookup699: pallet_referenda::types::ReferendumStatus<TrackId, kitchensink_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<kitchensink_runtime::RuntimeCall>, Balance, pallet_conviction_voting::types::Tally<Votes, Total>, sp_core::crypto::AccountId32, ScheduleAddress>
* Lookup697: pallet_referenda::types::ReferendumStatus<TrackId, kitchensink_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<kitchensink_runtime::RuntimeCall>, Balance, pallet_conviction_voting::types::Tally<Votes, Total>, sp_core::crypto::AccountId32, ScheduleAddress>
**/
PalletReferendaReferendumStatusConvictionVotingTally: {
track: 'u16',
@@ -6336,21 +6337,21 @@ export default {
alarm: 'Option<(u32,(u32,u32))>'
},
/**
* Lookup700: pallet_referenda::types::Deposit<sp_core::crypto::AccountId32, Balance>
* Lookup698: pallet_referenda::types::Deposit<sp_core::crypto::AccountId32, Balance>
**/
PalletReferendaDeposit: {
who: 'AccountId32',
amount: 'u128'
},
/**
* Lookup703: pallet_referenda::types::DecidingStatus<BlockNumber>
* Lookup701: pallet_referenda::types::DecidingStatus<BlockNumber>
**/
PalletReferendaDecidingStatus: {
since: 'u32',
confirming: 'Option<u32>'
},
/**
* Lookup709: pallet_referenda::types::TrackInfo<Balance, Moment>
* Lookup707: pallet_referenda::types::TrackInfo<Balance, Moment>
**/
PalletReferendaTrackInfo: {
name: 'Text',
@@ -6364,7 +6365,7 @@ export default {
minSupport: 'PalletReferendaCurve'
},
/**
* Lookup710: pallet_referenda::types::Curve
* Lookup708: pallet_referenda::types::Curve
**/
PalletReferendaCurve: {
_enum: {
@@ -6387,19 +6388,19 @@ export default {
}
},
/**
* Lookup713: pallet_referenda::pallet::Error<T, I>
* Lookup711: pallet_referenda::pallet::Error<T, I>
**/
PalletReferendaError: {
_enum: ['NotOngoing', 'HasDeposit', 'BadTrack', 'Full', 'QueueEmpty', 'BadReferendum', 'NothingToDo', 'NoTrack', 'Unfinished', 'NoPermission', 'NoDeposit', 'BadStatus', 'PreimageNotExist']
},
/**
* Lookup714: pallet_remark::pallet::Error<T>
* Lookup712: pallet_remark::pallet::Error<T>
**/
PalletRemarkError: {
_enum: ['Empty', 'BadContext']
},
/**
* Lookup716: pallet_conviction_voting::vote::Voting<Balance, sp_core::crypto::AccountId32, BlockNumber, PollIndex, MaxVotes>
* Lookup714: pallet_conviction_voting::vote::Voting<Balance, sp_core::crypto::AccountId32, BlockNumber, PollIndex, MaxVotes>
**/
PalletConvictionVotingVoteVoting: {
_enum: {
@@ -6408,7 +6409,7 @@ export default {
}
},
/**
* Lookup717: pallet_conviction_voting::vote::Casting<Balance, BlockNumber, PollIndex, MaxVotes>
* Lookup715: pallet_conviction_voting::vote::Casting<Balance, BlockNumber, PollIndex, MaxVotes>
**/
PalletConvictionVotingVoteCasting: {
votes: 'Vec<(u32,PalletConvictionVotingVoteAccountVote)>',
@@ -6416,18 +6417,18 @@ export default {
prior: 'PalletConvictionVotingVotePriorLock'
},
/**
* Lookup721: pallet_conviction_voting::types::Delegations<Balance>
* Lookup719: pallet_conviction_voting::types::Delegations<Balance>
**/
PalletConvictionVotingDelegations: {
votes: 'u128',
capital: 'u128'
},
/**
* Lookup722: pallet_conviction_voting::vote::PriorLock<BlockNumber, Balance>
* Lookup720: pallet_conviction_voting::vote::PriorLock<BlockNumber, Balance>
**/
PalletConvictionVotingVotePriorLock: '(u32,u128)',
/**
* Lookup723: pallet_conviction_voting::vote::Delegating<Balance, sp_core::crypto::AccountId32, BlockNumber>
* Lookup721: pallet_conviction_voting::vote::Delegating<Balance, sp_core::crypto::AccountId32, BlockNumber>
**/
PalletConvictionVotingVoteDelegating: {
balance: 'u128',
@@ -6437,31 +6438,31 @@ export default {
prior: 'PalletConvictionVotingVotePriorLock'
},
/**
* Lookup727: pallet_conviction_voting::pallet::Error<T, I>
* Lookup725: pallet_conviction_voting::pallet::Error<T, I>
**/
PalletConvictionVotingError: {
_enum: ['NotOngoing', 'NotVoter', 'NoPermission', 'NoPermissionYet', 'AlreadyDelegating', 'AlreadyVoting', 'InsufficientFunds', 'NotDelegating', 'Nonsense', 'MaxVotesReached', 'ClassNeeded', 'BadClass']
},
/**
* Lookup728: pallet_whitelist::pallet::Error<T>
* Lookup726: pallet_whitelist::pallet::Error<T>
**/
PalletWhitelistError: {
_enum: ['UnavailablePreImage', 'UndecodableCall', 'InvalidCallWeightWitness', 'CallIsNotWhitelisted', 'CallAlreadyWhitelisted']
},
/**
* Lookup733: pallet_alliance::MemberRole
* Lookup731: pallet_alliance::MemberRole
**/
PalletAllianceMemberRole: {
_enum: ['Fellow', 'Ally', 'Retiring']
},
/**
* Lookup737: pallet_alliance::pallet::Error<T, I>
* Lookup735: pallet_alliance::pallet::Error<T, I>
**/
PalletAllianceError: {
_enum: ['AllianceNotYetInitialized', 'AllianceAlreadyInitialized', 'AlreadyMember', 'NotMember', 'NotAlly', 'NoVotingRights', 'AlreadyElevated', 'AlreadyUnscrupulous', 'AccountNonGrata', 'NotListedAsUnscrupulous', 'TooManyUnscrupulousItems', 'TooLongWebsiteUrl', 'InsufficientFunds', 'WithoutIdentityDisplayAndWebsite', 'WithoutGoodIdentityJudgement', 'MissingProposalHash', 'MissingAnnouncement', 'TooManyMembers', 'TooManyAnnouncements', 'BadWitness', 'AlreadyRetiring', 'RetirementNoticeNotGiven', 'RetirementPeriodNotPassed', 'FellowsMissing']
},
/**
* Lookup738: pallet_nomination_pools::PoolMember<T>
* Lookup736: pallet_nomination_pools::PoolMember<T>
**/
PalletNominationPoolsPoolMember: {
poolId: 'u32',
@@ -6470,7 +6471,7 @@ export default {
unbondingEras: 'BTreeMap<u32, u128>'
},
/**
* Lookup741: pallet_nomination_pools::BondedPoolInner<T>
* Lookup739: pallet_nomination_pools::BondedPoolInner<T>
**/
PalletNominationPoolsBondedPoolInner: {
commission: 'PalletNominationPoolsCommission',
@@ -6480,7 +6481,7 @@ export default {
state: 'PalletNominationPoolsPoolState'
},
/**
* Lookup742: pallet_nomination_pools::Commission<T>
* Lookup740: pallet_nomination_pools::Commission<T>
**/
PalletNominationPoolsCommission: {
current: 'Option<(Perbill,AccountId32)>',
@@ -6489,7 +6490,7 @@ export default {
throttleFrom: 'Option<u32>'
},
/**
* Lookup745: pallet_nomination_pools::PoolRoles<sp_core::crypto::AccountId32>
* Lookup743: pallet_nomination_pools::PoolRoles<sp_core::crypto::AccountId32>
**/
PalletNominationPoolsPoolRoles: {
depositor: 'AccountId32',
@@ -6498,7 +6499,7 @@ export default {
bouncer: 'Option<AccountId32>'
},
/**
* Lookup746: pallet_nomination_pools::RewardPool<T>
* Lookup744: pallet_nomination_pools::RewardPool<T>
**/
PalletNominationPoolsRewardPool: {
lastRecordedRewardCounter: 'u128',
@@ -6508,21 +6509,21 @@ export default {
totalCommissionClaimed: 'u128'
},
/**
* Lookup747: pallet_nomination_pools::SubPools<T>
* Lookup745: pallet_nomination_pools::SubPools<T>
**/
PalletNominationPoolsSubPools: {
noEra: 'PalletNominationPoolsUnbondPool',
withEra: 'BTreeMap<u32, PalletNominationPoolsUnbondPool>'
},
/**
* Lookup748: pallet_nomination_pools::UnbondPool<T>
* Lookup746: pallet_nomination_pools::UnbondPool<T>
**/
PalletNominationPoolsUnbondPool: {
points: 'u128',
balance: 'u128'
},
/**
* Lookup754: pallet_nomination_pools::pallet::Error<T>
* Lookup752: pallet_nomination_pools::pallet::Error<T>
**/
PalletNominationPoolsError: {
_enum: {
@@ -6559,13 +6560,13 @@ export default {
}
},
/**
* Lookup755: pallet_nomination_pools::pallet::DefensiveError
* Lookup753: pallet_nomination_pools::pallet::DefensiveError
**/
PalletNominationPoolsDefensiveError: {
_enum: ['NotEnoughSpaceInUnbondPool', 'PoolNotFound', 'RewardPoolNotFound', 'SubPoolsNotFound', 'BondedStashKilledPrematurely']
},
/**
* Lookup756: pallet_referenda::types::ReferendumInfo<TrackId, kitchensink_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<kitchensink_runtime::RuntimeCall>, Balance, pallet_ranked_collective::Tally<T, I, M>, sp_core::crypto::AccountId32, ScheduleAddress>
* Lookup754: pallet_referenda::types::ReferendumInfo<TrackId, kitchensink_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<kitchensink_runtime::RuntimeCall>, Balance, pallet_ranked_collective::Tally<T, I, M>, sp_core::crypto::AccountId32, ScheduleAddress>
**/
PalletReferendaReferendumInfoRankedCollectiveTally: {
_enum: {
@@ -6578,7 +6579,7 @@ export default {
}
},
/**
* Lookup757: pallet_referenda::types::ReferendumStatus<TrackId, kitchensink_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<kitchensink_runtime::RuntimeCall>, Balance, pallet_ranked_collective::Tally<T, I, M>, sp_core::crypto::AccountId32, ScheduleAddress>
* Lookup755: pallet_referenda::types::ReferendumStatus<TrackId, kitchensink_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<kitchensink_runtime::RuntimeCall>, Balance, pallet_ranked_collective::Tally<T, I, M>, sp_core::crypto::AccountId32, ScheduleAddress>
**/
PalletReferendaReferendumStatusRankedCollectiveTally: {
track: 'u16',
@@ -6594,32 +6595,32 @@ export default {
alarm: 'Option<(u32,(u32,u32))>'
},
/**
* Lookup760: pallet_ranked_collective::MemberRecord
* Lookup758: pallet_ranked_collective::MemberRecord
**/
PalletRankedCollectiveMemberRecord: {
rank: 'u16'
},
/**
* Lookup764: pallet_ranked_collective::pallet::Error<T, I>
* Lookup762: pallet_ranked_collective::pallet::Error<T, I>
**/
PalletRankedCollectiveError: {
_enum: ['AlreadyMember', 'NotMember', 'NotPolling', 'Ongoing', 'NoneRemaining', 'Corruption', 'RankTooLow', 'InvalidWitness', 'NoPermission']
},
/**
* Lookup765: pallet_fast_unstake::types::UnstakeRequest<T>
* Lookup763: pallet_fast_unstake::types::UnstakeRequest<T>
**/
PalletFastUnstakeUnstakeRequest: {
stashes: 'Vec<(AccountId32,u128)>',
checked: 'Vec<u32>'
},
/**
* Lookup768: pallet_fast_unstake::pallet::Error<T>
* Lookup766: pallet_fast_unstake::pallet::Error<T>
**/
PalletFastUnstakeError: {
_enum: ['NotController', 'AlreadyQueued', 'NotFullyBonded', 'NotQueued', 'AlreadyHead', 'CallNotAllowed']
},
/**
* Lookup769: pallet_message_queue::BookState<MessageOrigin>
* Lookup767: pallet_message_queue::BookState<MessageOrigin>
**/
PalletMessageQueueBookState: {
_alias: {
@@ -6633,14 +6634,14 @@ export default {
size_: 'u64'
},
/**
* Lookup771: pallet_message_queue::Neighbours<MessageOrigin>
* Lookup769: pallet_message_queue::Neighbours<MessageOrigin>
**/
PalletMessageQueueNeighbours: {
prev: 'u32',
next: 'u32'
},
/**
* Lookup772: pallet_message_queue::Page<Size, HeapSize>
* Lookup770: pallet_message_queue::Page<Size, HeapSize>
**/
PalletMessageQueuePage: {
remaining: 'u32',
@@ -6651,44 +6652,44 @@ export default {
heap: 'Bytes'
},
/**
* Lookup774: pallet_message_queue::pallet::Error<T>
* Lookup772: pallet_message_queue::pallet::Error<T>
**/
PalletMessageQueueError: {
_enum: ['NotReapable', 'NoPage', 'NoMessage', 'AlreadyProcessed', 'Queued', 'InsufficientWeight', 'TemporarilyUnprocessable']
},
/**
* Lookup778: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
* Lookup776: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
**/
FrameSystemExtensionsCheckNonZeroSender: 'Null',
/**
* Lookup779: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
* Lookup777: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
* Lookup780: frame_system::extensions::check_tx_version::CheckTxVersion<T>
* Lookup778: frame_system::extensions::check_tx_version::CheckTxVersion<T>
**/
FrameSystemExtensionsCheckTxVersion: 'Null',
/**
* Lookup781: frame_system::extensions::check_genesis::CheckGenesis<T>
* Lookup779: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
* Lookup784: frame_system::extensions::check_nonce::CheckNonce<T>
* Lookup782: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
* Lookup785: frame_system::extensions::check_weight::CheckWeight<T>
* Lookup783: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
* Lookup786: pallet_asset_tx_payment::ChargeAssetTxPayment<T>
* Lookup784: pallet_asset_tx_payment::ChargeAssetTxPayment<T>
**/
PalletAssetTxPaymentChargeAssetTxPayment: {
tip: 'Compact<u128>',
assetId: 'Option<u32>'
},
/**
* Lookup787: kitchensink_runtime::Runtime
* Lookup785: kitchensink_runtime::Runtime
**/
KitchensinkRuntimeRuntime: 'Null'
};
@@ -76,7 +76,8 @@ declare module '@polkadot/types/lookup' {
readonly isCancelProxy: boolean;
readonly isAuction: boolean;
readonly isSociety: boolean;
readonly type: 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | 'Society';
readonly isNominationPools: boolean;
readonly type: 'Any' | 'NonTransfer' | 'Governance' | 'Staking' | 'IdentityJudgement' | 'CancelProxy' | 'Auction' | 'Society' | 'NominationPools';
}
/** @name KusamaRuntimeNposCompactSolution24 (217) */
@@ -107,7 +108,7 @@ declare module '@polkadot/types/lookup' {
readonly votes24: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
}
/** @name PolkadotRuntimeParachainsDisputesSlashingPalletCall (363) */
/** @name PolkadotRuntimeParachainsDisputesSlashingPalletCall (364) */
interface PolkadotRuntimeParachainsDisputesSlashingPalletCall extends Enum {
readonly isReportDisputeLostUnsigned: boolean;
readonly asReportDisputeLostUnsigned: {
@@ -117,7 +118,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'ReportDisputeLostUnsigned';
}
/** @name PolkadotRuntimeParachainsDisputesSlashingDisputeProof (364) */
/** @name PolkadotRuntimeParachainsDisputesSlashingDisputeProof (365) */
interface PolkadotRuntimeParachainsDisputesSlashingDisputeProof extends Struct {
readonly timeSlot: PolkadotRuntimeParachainsDisputesSlashingDisputesTimeSlot;
readonly kind: PolkadotRuntimeParachainsDisputesSlashingSlashingOffenceKind;
@@ -125,39 +126,39 @@ declare module '@polkadot/types/lookup' {
readonly validatorId: PolkadotPrimitivesV4ValidatorAppPublic;
}
/** @name PolkadotRuntimeParachainsDisputesSlashingDisputesTimeSlot (365) */
/** @name PolkadotRuntimeParachainsDisputesSlashingDisputesTimeSlot (366) */
interface PolkadotRuntimeParachainsDisputesSlashingDisputesTimeSlot extends Struct {
readonly sessionIndex: u32;
readonly candidateHash: H256;
}
/** @name PolkadotRuntimeParachainsDisputesSlashingSlashingOffenceKind (366) */
/** @name PolkadotRuntimeParachainsDisputesSlashingSlashingOffenceKind (367) */
interface PolkadotRuntimeParachainsDisputesSlashingSlashingOffenceKind extends Enum {
readonly isForInvalid: boolean;
readonly isAgainstValid: boolean;
readonly type: 'ForInvalid' | 'AgainstValid';
}
/** @name KusamaRuntimeHoldReason (534) */
/** @name KusamaRuntimeHoldReason (535) */
interface KusamaRuntimeHoldReason extends Enum {
readonly isNis: boolean;
readonly asNis: KusamaRuntimeHoldReasonNis;
readonly type: 'Nis';
}
/** @name KusamaRuntimeHoldReasonNis (535) */
/** @name KusamaRuntimeHoldReasonNis (536) */
interface KusamaRuntimeHoldReasonNis extends Enum {
readonly isNftReceipt: boolean;
readonly type: 'NftReceipt';
}
/** @name PolkadotRuntimeParachainsDisputesSlashingPendingSlashes (809) */
/** @name PolkadotRuntimeParachainsDisputesSlashingPendingSlashes (810) */
interface PolkadotRuntimeParachainsDisputesSlashingPendingSlashes extends Struct {
readonly keys_: BTreeMap<u32, PolkadotPrimitivesV4ValidatorAppPublic>;
readonly kind: PolkadotRuntimeParachainsDisputesSlashingSlashingOffenceKind;
}
/** @name PolkadotRuntimeParachainsDisputesSlashingPalletError (813) */
/** @name PolkadotRuntimeParachainsDisputesSlashingPalletError (814) */
interface PolkadotRuntimeParachainsDisputesSlashingPalletError extends Enum {
readonly isInvalidKeyOwnershipProof: boolean;
readonly isInvalidSessionIndex: boolean;
@@ -168,7 +169,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'InvalidKeyOwnershipProof' | 'InvalidSessionIndex' | 'InvalidCandidateHash' | 'InvalidValidatorIndex' | 'ValidatorIndexIdMismatch' | 'DuplicateSlashingReport';
}
/** @name KusamaRuntimeRuntime (856) */
/** @name KusamaRuntimeRuntime (857) */
type KusamaRuntimeRuntime = Null;
} // declare module
File diff suppressed because it is too large Load Diff
@@ -5986,19 +5986,20 @@ declare module '@polkadot/types/lookup' {
readonly storageBaseDeposit: u128;
}
/** @name PalletContractsStorageDeletedContract (548) */
interface PalletContractsStorageDeletedContract extends Struct {
readonly trieId: Bytes;
/** @name PalletContractsStorageDeletionQueueManager (547) */
interface PalletContractsStorageDeletionQueueManager extends Struct {
readonly insertCounter: u32;
readonly deleteCounter: u32;
}
/** @name PalletContractsSchedule (550) */
/** @name PalletContractsSchedule (548) */
interface PalletContractsSchedule extends Struct {
readonly limits: PalletContractsScheduleLimits;
readonly instructionWeights: PalletContractsScheduleInstructionWeights;
readonly hostFnWeights: PalletContractsScheduleHostFnWeights;
}
/** @name PalletContractsScheduleLimits (551) */
/** @name PalletContractsScheduleLimits (549) */
interface PalletContractsScheduleLimits extends Struct {
readonly eventTopics: u32;
readonly globals: u32;
@@ -6011,7 +6012,7 @@ declare module '@polkadot/types/lookup' {
readonly payloadLen: u32;
}
/** @name PalletContractsScheduleInstructionWeights (552) */
/** @name PalletContractsScheduleInstructionWeights (550) */
interface PalletContractsScheduleInstructionWeights extends Struct {
readonly version: u32;
readonly fallback: u32;
@@ -6068,7 +6069,7 @@ declare module '@polkadot/types/lookup' {
readonly i64rotr: u32;
}
/** @name PalletContractsScheduleHostFnWeights (553) */
/** @name PalletContractsScheduleHostFnWeights (551) */
interface PalletContractsScheduleHostFnWeights extends Struct {
readonly caller: SpWeightsWeightV2Weight;
readonly isContract: SpWeightsWeightV2Weight;
@@ -6131,7 +6132,7 @@ declare module '@polkadot/types/lookup' {
readonly instantiationNonce: SpWeightsWeightV2Weight;
}
/** @name PalletContractsError (554) */
/** @name PalletContractsError (552) */
interface PalletContractsError extends Enum {
readonly isInvalidScheduleVersion: boolean;
readonly isInvalidCallFlags: boolean;
@@ -6151,7 +6152,6 @@ declare module '@polkadot/types/lookup' {
readonly isRandomSubjectTooLong: boolean;
readonly isTooManyTopics: boolean;
readonly isNoChainExtension: boolean;
readonly isDeletionQueueFull: boolean;
readonly isDuplicateContract: boolean;
readonly isTerminatedInConstructor: boolean;
readonly isReentranceDenied: boolean;
@@ -6161,49 +6161,49 @@ declare module '@polkadot/types/lookup' {
readonly isContractReverted: boolean;
readonly isCodeRejected: boolean;
readonly isIndeterministic: boolean;
readonly type: 'InvalidScheduleVersion' | 'InvalidCallFlags' | 'OutOfGas' | 'OutputBufferTooSmall' | 'TransferFailed' | 'MaxCallDepthReached' | 'ContractNotFound' | 'CodeTooLarge' | 'CodeNotFound' | 'OutOfBounds' | 'DecodingFailed' | 'ContractTrapped' | 'ValueTooLarge' | 'TerminatedWhileReentrant' | 'InputForwarded' | 'RandomSubjectTooLong' | 'TooManyTopics' | 'NoChainExtension' | 'DeletionQueueFull' | 'DuplicateContract' | 'TerminatedInConstructor' | 'ReentranceDenied' | 'StorageDepositNotEnoughFunds' | 'StorageDepositLimitExhausted' | 'CodeInUse' | 'ContractReverted' | 'CodeRejected' | 'Indeterministic';
readonly type: 'InvalidScheduleVersion' | 'InvalidCallFlags' | 'OutOfGas' | 'OutputBufferTooSmall' | 'TransferFailed' | 'MaxCallDepthReached' | 'ContractNotFound' | 'CodeTooLarge' | 'CodeNotFound' | 'OutOfBounds' | 'DecodingFailed' | 'ContractTrapped' | 'ValueTooLarge' | 'TerminatedWhileReentrant' | 'InputForwarded' | 'RandomSubjectTooLong' | 'TooManyTopics' | 'NoChainExtension' | 'DuplicateContract' | 'TerminatedInConstructor' | 'ReentranceDenied' | 'StorageDepositNotEnoughFunds' | 'StorageDepositLimitExhausted' | 'CodeInUse' | 'ContractReverted' | 'CodeRejected' | 'Indeterministic';
}
/** @name PalletSudoError (555) */
/** @name PalletSudoError (553) */
interface PalletSudoError extends Enum {
readonly isRequireSudo: boolean;
readonly type: 'RequireSudo';
}
/** @name PalletImOnlineBoundedOpaqueNetworkState (559) */
/** @name PalletImOnlineBoundedOpaqueNetworkState (557) */
interface PalletImOnlineBoundedOpaqueNetworkState extends Struct {
readonly peerId: Bytes;
readonly externalAddresses: Vec<Bytes>;
}
/** @name PalletImOnlineError (563) */
/** @name PalletImOnlineError (561) */
interface PalletImOnlineError extends Enum {
readonly isInvalidKey: boolean;
readonly isDuplicatedHeartbeat: boolean;
readonly type: 'InvalidKey' | 'DuplicatedHeartbeat';
}
/** @name SpStakingOffenceOffenceDetails (566) */
/** @name SpStakingOffenceOffenceDetails (564) */
interface SpStakingOffenceOffenceDetails extends Struct {
readonly offender: ITuple<[AccountId32, PalletStakingExposure]>;
readonly reporters: Vec<AccountId32>;
}
/** @name PalletIdentityRegistration (569) */
/** @name PalletIdentityRegistration (567) */
interface PalletIdentityRegistration extends Struct {
readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;
readonly deposit: u128;
readonly info: PalletIdentityIdentityInfo;
}
/** @name PalletIdentityRegistrarInfo (577) */
/** @name PalletIdentityRegistrarInfo (575) */
interface PalletIdentityRegistrarInfo extends Struct {
readonly account: AccountId32;
readonly fee: u128;
readonly fields: PalletIdentityBitFlags;
}
/** @name PalletIdentityError (579) */
/** @name PalletIdentityError (577) */
interface PalletIdentityError extends Enum {
readonly isTooManySubAccounts: boolean;
readonly isNotFound: boolean;
@@ -6226,14 +6226,14 @@ declare module '@polkadot/types/lookup' {
readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';
}
/** @name PalletSocietyBid (581) */
/** @name PalletSocietyBid (579) */
interface PalletSocietyBid extends Struct {
readonly who: AccountId32;
readonly kind: PalletSocietyBidKind;
readonly value: u128;
}
/** @name PalletSocietyBidKind (582) */
/** @name PalletSocietyBidKind (580) */
interface PalletSocietyBidKind extends Enum {
readonly isDeposit: boolean;
readonly asDeposit: u128;
@@ -6242,14 +6242,14 @@ declare module '@polkadot/types/lookup' {
readonly type: 'Deposit' | 'Vouch';
}
/** @name PalletSocietyVouchingStatus (584) */
/** @name PalletSocietyVouchingStatus (582) */
interface PalletSocietyVouchingStatus extends Enum {
readonly isVouching: boolean;
readonly isBanned: boolean;
readonly type: 'Vouching' | 'Banned';
}
/** @name PalletSocietyVote (588) */
/** @name PalletSocietyVote (586) */
interface PalletSocietyVote extends Enum {
readonly isSkeptic: boolean;
readonly isReject: boolean;
@@ -6257,7 +6257,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'Skeptic' | 'Reject' | 'Approve';
}
/** @name PalletSocietyError (589) */
/** @name PalletSocietyError (587) */
interface PalletSocietyError extends Enum {
readonly isBadPosition: boolean;
readonly isNotMember: boolean;
@@ -6280,7 +6280,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'BadPosition' | 'NotMember' | 'AlreadyMember' | 'Suspended' | 'NotSuspended' | 'NoPayout' | 'AlreadyFounded' | 'InsufficientPot' | 'AlreadyVouching' | 'NotVouching' | 'Head' | 'Founder' | 'AlreadyBid' | 'AlreadyCandidate' | 'NotCandidate' | 'MaxMembers' | 'NotFounder' | 'NotHead';
}
/** @name PalletRecoveryRecoveryConfig (590) */
/** @name PalletRecoveryRecoveryConfig (588) */
interface PalletRecoveryRecoveryConfig extends Struct {
readonly delayPeriod: u32;
readonly deposit: u128;
@@ -6288,14 +6288,14 @@ declare module '@polkadot/types/lookup' {
readonly threshold: u16;
}
/** @name PalletRecoveryActiveRecovery (592) */
/** @name PalletRecoveryActiveRecovery (590) */
interface PalletRecoveryActiveRecovery extends Struct {
readonly created: u32;
readonly deposit: u128;
readonly friends: Vec<AccountId32>;
}
/** @name PalletRecoveryError (593) */
/** @name PalletRecoveryError (591) */
interface PalletRecoveryError extends Enum {
readonly isNotAllowed: boolean;
readonly isZeroThreshold: boolean;
@@ -6316,14 +6316,14 @@ declare module '@polkadot/types/lookup' {
readonly type: 'NotAllowed' | 'ZeroThreshold' | 'NotEnoughFriends' | 'MaxFriends' | 'NotSorted' | 'NotRecoverable' | 'AlreadyRecoverable' | 'AlreadyStarted' | 'NotStarted' | 'NotFriend' | 'DelayPeriod' | 'AlreadyVouched' | 'Threshold' | 'StillActive' | 'AlreadyProxy' | 'BadState';
}
/** @name PalletVestingReleases (596) */
/** @name PalletVestingReleases (594) */
interface PalletVestingReleases extends Enum {
readonly isV0: boolean;
readonly isV1: boolean;
readonly type: 'V0' | 'V1';
}
/** @name PalletVestingError (597) */
/** @name PalletVestingError (595) */
interface PalletVestingError extends Enum {
readonly isNotVesting: boolean;
readonly isAtMaxVestingSchedules: boolean;
@@ -6333,7 +6333,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'NotVesting' | 'AtMaxVestingSchedules' | 'AmountLow' | 'ScheduleIndexOutOfBounds' | 'InvalidScheduleParams';
}
/** @name PalletSchedulerScheduled (600) */
/** @name PalletSchedulerScheduled (598) */
interface PalletSchedulerScheduled extends Struct {
readonly maybeId: Option<U8aFixed>;
readonly priority: u8;
@@ -6342,7 +6342,7 @@ declare module '@polkadot/types/lookup' {
readonly origin: KitchensinkRuntimeOriginCaller;
}
/** @name PalletSchedulerError (602) */
/** @name PalletSchedulerError (600) */
interface PalletSchedulerError extends Enum {
readonly isFailedToSchedule: boolean;
readonly isNotFound: boolean;
@@ -6352,13 +6352,13 @@ declare module '@polkadot/types/lookup' {
readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange' | 'Named';
}
/** @name PalletGluttonError (604) */
/** @name PalletGluttonError (602) */
interface PalletGluttonError extends Enum {
readonly isAlreadyInitialized: boolean;
readonly type: 'AlreadyInitialized';
}
/** @name PalletPreimageRequestStatus (605) */
/** @name PalletPreimageRequestStatus (603) */
interface PalletPreimageRequestStatus extends Enum {
readonly isUnrequested: boolean;
readonly asUnrequested: {
@@ -6374,7 +6374,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'Unrequested' | 'Requested';
}
/** @name PalletPreimageError (609) */
/** @name PalletPreimageError (607) */
interface PalletPreimageError extends Enum {
readonly isTooBig: boolean;
readonly isAlreadyNoted: boolean;
@@ -6385,21 +6385,21 @@ declare module '@polkadot/types/lookup' {
readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';
}
/** @name PalletProxyProxyDefinition (612) */
/** @name PalletProxyProxyDefinition (610) */
interface PalletProxyProxyDefinition extends Struct {
readonly delegate: AccountId32;
readonly proxyType: KitchensinkRuntimeProxyType;
readonly delay: u32;
}
/** @name PalletProxyAnnouncement (616) */
/** @name PalletProxyAnnouncement (614) */
interface PalletProxyAnnouncement extends Struct {
readonly real: AccountId32;
readonly callHash: H256;
readonly height: u32;
}
/** @name PalletProxyError (618) */
/** @name PalletProxyError (616) */
interface PalletProxyError extends Enum {
readonly isTooMany: boolean;
readonly isNotFound: boolean;
@@ -6412,7 +6412,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
}
/** @name PalletMultisigMultisig (620) */
/** @name PalletMultisigMultisig (618) */
interface PalletMultisigMultisig extends Struct {
readonly when: PalletMultisigTimepoint;
readonly deposit: u128;
@@ -6420,7 +6420,7 @@ declare module '@polkadot/types/lookup' {
readonly approvals: Vec<AccountId32>;
}
/** @name PalletMultisigError (621) */
/** @name PalletMultisigError (619) */
interface PalletMultisigError extends Enum {
readonly isMinimumThreshold: boolean;
readonly isAlreadyApproved: boolean;
@@ -6439,7 +6439,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
}
/** @name PalletBountiesBounty (622) */
/** @name PalletBountiesBounty (620) */
interface PalletBountiesBounty extends Struct {
readonly proposer: AccountId32;
readonly value: u128;
@@ -6449,7 +6449,7 @@ declare module '@polkadot/types/lookup' {
readonly status: PalletBountiesBountyStatus;
}
/** @name PalletBountiesBountyStatus (623) */
/** @name PalletBountiesBountyStatus (621) */
interface PalletBountiesBountyStatus extends Enum {
readonly isProposed: boolean;
readonly isApproved: boolean;
@@ -6472,7 +6472,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'Proposed' | 'Approved' | 'Funded' | 'CuratorProposed' | 'Active' | 'PendingPayout';
}
/** @name PalletBountiesError (625) */
/** @name PalletBountiesError (623) */
interface PalletBountiesError extends Enum {
readonly isInsufficientProposersBalance: boolean;
readonly isInvalidIndex: boolean;
@@ -6488,7 +6488,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'ReasonTooBig' | 'UnexpectedStatus' | 'RequireCurator' | 'InvalidValue' | 'InvalidFee' | 'PendingPayout' | 'Premature' | 'HasActiveChildBounty' | 'TooManyQueued';
}
/** @name PalletTipsOpenTip (626) */
/** @name PalletTipsOpenTip (624) */
interface PalletTipsOpenTip extends Struct {
readonly reason: H256;
readonly who: AccountId32;
@@ -6499,7 +6499,7 @@ declare module '@polkadot/types/lookup' {
readonly findersFee: bool;
}
/** @name PalletTipsError (627) */
/** @name PalletTipsError (625) */
interface PalletTipsError extends Enum {
readonly isReasonTooBig: boolean;
readonly isAlreadyKnown: boolean;
@@ -6510,7 +6510,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'ReasonTooBig' | 'AlreadyKnown' | 'UnknownTip' | 'NotFinder' | 'StillOpen' | 'Premature';
}
/** @name PalletAssetsAssetDetails (628) */
/** @name PalletAssetsAssetDetails (626) */
interface PalletAssetsAssetDetails extends Struct {
readonly owner: AccountId32;
readonly issuer: AccountId32;
@@ -6526,7 +6526,7 @@ declare module '@polkadot/types/lookup' {
readonly status: PalletAssetsAssetStatus;
}
/** @name PalletAssetsAssetStatus (629) */
/** @name PalletAssetsAssetStatus (627) */
interface PalletAssetsAssetStatus extends Enum {
readonly isLive: boolean;
readonly isFrozen: boolean;
@@ -6534,7 +6534,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'Live' | 'Frozen' | 'Destroying';
}
/** @name PalletAssetsAssetAccount (630) */
/** @name PalletAssetsAssetAccount (628) */
interface PalletAssetsAssetAccount extends Struct {
readonly balance: u128;
readonly isFrozen: bool;
@@ -6542,7 +6542,7 @@ declare module '@polkadot/types/lookup' {
readonly extra: Null;
}
/** @name PalletAssetsExistenceReason (631) */
/** @name PalletAssetsExistenceReason (629) */
interface PalletAssetsExistenceReason extends Enum {
readonly isConsumer: boolean;
readonly isSufficient: boolean;
@@ -6552,13 +6552,13 @@ declare module '@polkadot/types/lookup' {
readonly type: 'Consumer' | 'Sufficient' | 'DepositHeld' | 'DepositRefunded';
}
/** @name PalletAssetsApproval (633) */
/** @name PalletAssetsApproval (631) */
interface PalletAssetsApproval extends Struct {
readonly amount: u128;
readonly deposit: u128;
}
/** @name PalletAssetsAssetMetadata (634) */
/** @name PalletAssetsAssetMetadata (632) */
interface PalletAssetsAssetMetadata extends Struct {
readonly deposit: u128;
readonly name: Bytes;
@@ -6567,7 +6567,7 @@ declare module '@polkadot/types/lookup' {
readonly isFrozen: bool;
}
/** @name PalletAssetsError (635) */
/** @name PalletAssetsError (633) */
interface PalletAssetsError extends Enum {
readonly isBalanceLow: boolean;
readonly isNoAccount: boolean;
@@ -6592,7 +6592,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'BalanceLow' | 'NoAccount' | 'NoPermission' | 'Unknown' | 'Frozen' | 'InUse' | 'BadWitness' | 'MinBalanceZero' | 'UnavailableConsumer' | 'BadMetadata' | 'Unapproved' | 'WouldDie' | 'AlreadyExists' | 'NoDeposit' | 'WouldBurn' | 'LiveAsset' | 'AssetNotLive' | 'IncorrectStatus' | 'NotFrozen' | 'CallbackFailed';
}
/** @name PalletLotteryLotteryConfig (636) */
/** @name PalletLotteryLotteryConfig (634) */
interface PalletLotteryLotteryConfig extends Struct {
readonly price: u128;
readonly start: u32;
@@ -6601,7 +6601,7 @@ declare module '@polkadot/types/lookup' {
readonly repeat: bool;
}
/** @name PalletLotteryError (640) */
/** @name PalletLotteryError (638) */
interface PalletLotteryError extends Enum {
readonly isNotConfigured: boolean;
readonly isInProgress: boolean;
@@ -6613,13 +6613,13 @@ declare module '@polkadot/types/lookup' {
readonly type: 'NotConfigured' | 'InProgress' | 'AlreadyEnded' | 'InvalidCall' | 'AlreadyParticipating' | 'TooManyCalls' | 'EncodingFailed';
}
/** @name PalletNisBid (643) */
/** @name PalletNisBid (641) */
interface PalletNisBid extends Struct {
readonly amount: u128;
readonly who: AccountId32;
}
/** @name PalletNisSummaryRecord (645) */
/** @name PalletNisSummaryRecord (643) */
interface PalletNisSummaryRecord extends Struct {
readonly proportionOwed: Perquintill;
readonly index: u32;
@@ -6628,14 +6628,14 @@ declare module '@polkadot/types/lookup' {
readonly receiptsOnHold: u128;
}
/** @name PalletNisReceiptRecord (646) */
/** @name PalletNisReceiptRecord (644) */
interface PalletNisReceiptRecord extends Struct {
readonly proportion: Perquintill;
readonly owner: Option<ITuple<[AccountId32, u128]>>;
readonly expiry: u32;
}
/** @name PalletNisError (648) */
/** @name PalletNisError (646) */
interface PalletNisError extends Enum {
readonly isDurationTooSmall: boolean;
readonly isDurationTooBig: boolean;
@@ -6658,7 +6658,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'DurationTooSmall' | 'DurationTooBig' | 'AmountTooSmall' | 'BidTooLow' | 'UnknownReceipt' | 'NotOwner' | 'NotExpired' | 'UnknownBid' | 'PortionTooBig' | 'Unfunded' | 'AlreadyFunded' | 'Throttled' | 'MakesDust' | 'AlreadyCommunal' | 'AlreadyPrivate' | 'Release1' | 'Release2' | 'Tah';
}
/** @name PalletUniquesCollectionDetails (649) */
/** @name PalletUniquesCollectionDetails (647) */
interface PalletUniquesCollectionDetails extends Struct {
readonly owner: AccountId32;
readonly issuer: AccountId32;
@@ -6672,7 +6672,7 @@ declare module '@polkadot/types/lookup' {
readonly isFrozen: bool;
}
/** @name PalletUniquesItemDetails (651) */
/** @name PalletUniquesItemDetails (649) */
interface PalletUniquesItemDetails extends Struct {
readonly owner: AccountId32;
readonly approved: Option<AccountId32>;
@@ -6680,21 +6680,21 @@ declare module '@polkadot/types/lookup' {
readonly deposit: u128;
}
/** @name PalletUniquesCollectionMetadata (652) */
/** @name PalletUniquesCollectionMetadata (650) */
interface PalletUniquesCollectionMetadata extends Struct {
readonly deposit: u128;
readonly data: Bytes;
readonly isFrozen: bool;
}
/** @name PalletUniquesItemMetadata (653) */
/** @name PalletUniquesItemMetadata (651) */
interface PalletUniquesItemMetadata extends Struct {
readonly deposit: u128;
readonly data: Bytes;
readonly isFrozen: bool;
}
/** @name PalletUniquesError (657) */
/** @name PalletUniquesError (655) */
interface PalletUniquesError extends Enum {
readonly isNoPermission: boolean;
readonly isUnknownCollection: boolean;
@@ -6717,7 +6717,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'NoPermission' | 'UnknownCollection' | 'AlreadyExists' | 'WrongOwner' | 'BadWitness' | 'InUse' | 'Frozen' | 'WrongDelegate' | 'NoDelegate' | 'Unapproved' | 'Unaccepted' | 'Locked' | 'MaxSupplyReached' | 'MaxSupplyAlreadySet' | 'MaxSupplyTooSmall' | 'UnknownItem' | 'NotForSale' | 'BidTooLow';
}
/** @name PalletNftsCollectionDetails (658) */
/** @name PalletNftsCollectionDetails (656) */
interface PalletNftsCollectionDetails extends Struct {
readonly owner: AccountId32;
readonly ownerDeposit: u128;
@@ -6727,7 +6727,7 @@ declare module '@polkadot/types/lookup' {
readonly attributes: u32;
}
/** @name PalletNftsCollectionRole (660) */
/** @name PalletNftsCollectionRole (658) */
interface PalletNftsCollectionRole extends Enum {
readonly isIssuer: boolean;
readonly isFreezer: boolean;
@@ -6735,44 +6735,44 @@ declare module '@polkadot/types/lookup' {
readonly type: 'Issuer' | 'Freezer' | 'Admin';
}
/** @name PalletNftsItemDetails (661) */
/** @name PalletNftsItemDetails (659) */
interface PalletNftsItemDetails extends Struct {
readonly owner: AccountId32;
readonly approvals: BTreeMap<AccountId32, Option<u32>>;
readonly deposit: PalletNftsItemDeposit;
}
/** @name PalletNftsItemDeposit (662) */
/** @name PalletNftsItemDeposit (660) */
interface PalletNftsItemDeposit extends Struct {
readonly account: AccountId32;
readonly amount: u128;
}
/** @name PalletNftsCollectionMetadata (667) */
/** @name PalletNftsCollectionMetadata (665) */
interface PalletNftsCollectionMetadata extends Struct {
readonly deposit: u128;
readonly data: Bytes;
}
/** @name PalletNftsItemMetadata (668) */
/** @name PalletNftsItemMetadata (666) */
interface PalletNftsItemMetadata extends Struct {
readonly deposit: PalletNftsItemMetadataDeposit;
readonly data: Bytes;
}
/** @name PalletNftsItemMetadataDeposit (669) */
/** @name PalletNftsItemMetadataDeposit (667) */
interface PalletNftsItemMetadataDeposit extends Struct {
readonly account: Option<AccountId32>;
readonly amount: u128;
}
/** @name PalletNftsAttributeDeposit (672) */
/** @name PalletNftsAttributeDeposit (670) */
interface PalletNftsAttributeDeposit extends Struct {
readonly account: Option<AccountId32>;
readonly amount: u128;
}
/** @name PalletNftsPendingSwap (675) */
/** @name PalletNftsPendingSwap (673) */
interface PalletNftsPendingSwap extends Struct {
readonly desiredCollection: u32;
readonly desiredItem: Option<u32>;
@@ -6780,7 +6780,7 @@ declare module '@polkadot/types/lookup' {
readonly deadline: u32;
}
/** @name PalletNftsPalletFeature (677) */
/** @name PalletNftsPalletFeature (675) */
interface PalletNftsPalletFeature extends Enum {
readonly isTrading: boolean;
readonly isAttributes: boolean;
@@ -6789,7 +6789,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'Trading' | 'Attributes' | 'Approvals' | 'Swaps';
}
/** @name PalletNftsError (678) */
/** @name PalletNftsError (676) */
interface PalletNftsError extends Enum {
readonly isNoPermission: boolean;
readonly isUnknownCollection: boolean;
@@ -6838,7 +6838,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'NoPermission' | 'UnknownCollection' | 'AlreadyExists' | 'ApprovalExpired' | 'WrongOwner' | 'BadWitness' | 'CollectionIdInUse' | 'ItemsNonTransferable' | 'NotDelegate' | 'WrongDelegate' | 'Unapproved' | 'Unaccepted' | 'ItemLocked' | 'LockedItemAttributes' | 'LockedCollectionAttributes' | 'LockedItemMetadata' | 'LockedCollectionMetadata' | 'MaxSupplyReached' | 'MaxSupplyLocked' | 'MaxSupplyTooSmall' | 'UnknownItem' | 'UnknownSwap' | 'MetadataNotFound' | 'AttributeNotFound' | 'NotForSale' | 'BidTooLow' | 'ReachedApprovalLimit' | 'DeadlineExpired' | 'WrongDuration' | 'MethodDisabled' | 'WrongSetting' | 'InconsistentItemConfig' | 'NoConfig' | 'RolesNotCleared' | 'MintNotStarted' | 'MintEnded' | 'AlreadyClaimed' | 'IncorrectData' | 'WrongOrigin' | 'WrongSignature' | 'IncorrectMetadata' | 'MaxAttributesLimitReached' | 'WrongNamespace' | 'CollectionNotEmpty';
}
/** @name PalletSalaryStatusType (679) */
/** @name PalletSalaryStatusType (677) */
interface PalletSalaryStatusType extends Struct {
readonly cycleIndex: u32;
readonly cycleStart: u32;
@@ -6847,13 +6847,13 @@ declare module '@polkadot/types/lookup' {
readonly totalUnregisteredPaid: u128;
}
/** @name PalletSalaryClaimantStatus (680) */
/** @name PalletSalaryClaimantStatus (678) */
interface PalletSalaryClaimantStatus extends Struct {
readonly lastActive: u32;
readonly status: PalletSalaryClaimState;
}
/** @name PalletSalaryClaimState (681) */
/** @name PalletSalaryClaimState (679) */
interface PalletSalaryClaimState extends Enum {
readonly isNothing: boolean;
readonly isRegistered: boolean;
@@ -6867,7 +6867,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'Nothing' | 'Registered' | 'Attempted';
}
/** @name PalletSalaryError (682) */
/** @name PalletSalaryError (680) */
interface PalletSalaryError extends Enum {
readonly isAlreadyStarted: boolean;
readonly isNotMember: boolean;
@@ -6886,14 +6886,14 @@ declare module '@polkadot/types/lookup' {
readonly type: 'AlreadyStarted' | 'NotMember' | 'AlreadyInducted' | 'NotInducted' | 'NoClaim' | 'ClaimZero' | 'TooLate' | 'TooEarly' | 'NotYet' | 'NotStarted' | 'Bankrupt' | 'PayError' | 'Inconclusive' | 'NotCurrent';
}
/** @name PalletCoreFellowshipMemberStatus (683) */
/** @name PalletCoreFellowshipMemberStatus (681) */
interface PalletCoreFellowshipMemberStatus extends Struct {
readonly isActive: bool;
readonly lastPromotion: u32;
readonly lastProof: u32;
}
/** @name PalletCoreFellowshipError (685) */
/** @name PalletCoreFellowshipError (683) */
interface PalletCoreFellowshipError extends Enum {
readonly isUnranked: boolean;
readonly isRanked: boolean;
@@ -6907,7 +6907,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'Unranked' | 'Ranked' | 'UnexpectedRank' | 'InvalidRank' | 'NoPermission' | 'NothingDoing' | 'AlreadyInducted' | 'NotTracked' | 'TooSoon';
}
/** @name PalletTransactionStorageTransactionInfo (687) */
/** @name PalletTransactionStorageTransactionInfo (685) */
interface PalletTransactionStorageTransactionInfo extends Struct {
readonly chunkRoot: H256;
readonly contentHash: H256;
@@ -6915,7 +6915,7 @@ declare module '@polkadot/types/lookup' {
readonly blockChunks: u32;
}
/** @name PalletTransactionStorageError (689) */
/** @name PalletTransactionStorageError (687) */
interface PalletTransactionStorageError extends Enum {
readonly isInsufficientFunds: boolean;
readonly isNotConfigured: boolean;
@@ -6933,7 +6933,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'InsufficientFunds' | 'NotConfigured' | 'RenewedNotFound' | 'EmptyTransaction' | 'UnexpectedProof' | 'InvalidProof' | 'MissingProof' | 'MissingStateData' | 'DoubleCheck' | 'ProofNotChecked' | 'TransactionTooLarge' | 'TooManyTransactions' | 'BadContext';
}
/** @name PalletBagsListListNode (690) */
/** @name PalletBagsListListNode (688) */
interface PalletBagsListListNode extends Struct {
readonly id: AccountId32;
readonly prev: Option<AccountId32>;
@@ -6942,20 +6942,20 @@ declare module '@polkadot/types/lookup' {
readonly score: u64;
}
/** @name PalletBagsListListBag (691) */
/** @name PalletBagsListListBag (689) */
interface PalletBagsListListBag extends Struct {
readonly head: Option<AccountId32>;
readonly tail: Option<AccountId32>;
}
/** @name PalletBagsListError (693) */
/** @name PalletBagsListError (691) */
interface PalletBagsListError extends Enum {
readonly isList: boolean;
readonly asList: PalletBagsListListListError;
readonly type: 'List';
}
/** @name PalletBagsListListListError (694) */
/** @name PalletBagsListListListError (692) */
interface PalletBagsListListListError extends Enum {
readonly isDuplicate: boolean;
readonly isNotHeavier: boolean;
@@ -6964,7 +6964,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'Duplicate' | 'NotHeavier' | 'NotInSameBag' | 'NodeNotFound';
}
/** @name PalletChildBountiesChildBounty (695) */
/** @name PalletChildBountiesChildBounty (693) */
interface PalletChildBountiesChildBounty extends Struct {
readonly parentBounty: u32;
readonly value: u128;
@@ -6973,7 +6973,7 @@ declare module '@polkadot/types/lookup' {
readonly status: PalletChildBountiesChildBountyStatus;
}
/** @name PalletChildBountiesChildBountyStatus (696) */
/** @name PalletChildBountiesChildBountyStatus (694) */
interface PalletChildBountiesChildBountyStatus extends Enum {
readonly isAdded: boolean;
readonly isCuratorProposed: boolean;
@@ -6993,7 +6993,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'Added' | 'CuratorProposed' | 'Active' | 'PendingPayout';
}
/** @name PalletChildBountiesError (697) */
/** @name PalletChildBountiesError (695) */
interface PalletChildBountiesError extends Enum {
readonly isParentBountyNotActive: boolean;
readonly isInsufficientBountyBalance: boolean;
@@ -7001,7 +7001,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'ParentBountyNotActive' | 'InsufficientBountyBalance' | 'TooManyChildBounties';
}
/** @name PalletReferendaReferendumInfoConvictionVotingTally (698) */
/** @name PalletReferendaReferendumInfoConvictionVotingTally (696) */
interface PalletReferendaReferendumInfoConvictionVotingTally extends Enum {
readonly isOngoing: boolean;
readonly asOngoing: PalletReferendaReferendumStatusConvictionVotingTally;
@@ -7018,7 +7018,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'Ongoing' | 'Approved' | 'Rejected' | 'Cancelled' | 'TimedOut' | 'Killed';
}
/** @name PalletReferendaReferendumStatusConvictionVotingTally (699) */
/** @name PalletReferendaReferendumStatusConvictionVotingTally (697) */
interface PalletReferendaReferendumStatusConvictionVotingTally extends Struct {
readonly track: u16;
readonly origin: KitchensinkRuntimeOriginCaller;
@@ -7033,19 +7033,19 @@ declare module '@polkadot/types/lookup' {
readonly alarm: Option<ITuple<[u32, ITuple<[u32, u32]>]>>;
}
/** @name PalletReferendaDeposit (700) */
/** @name PalletReferendaDeposit (698) */
interface PalletReferendaDeposit extends Struct {
readonly who: AccountId32;
readonly amount: u128;
}
/** @name PalletReferendaDecidingStatus (703) */
/** @name PalletReferendaDecidingStatus (701) */
interface PalletReferendaDecidingStatus extends Struct {
readonly since: u32;
readonly confirming: Option<u32>;
}
/** @name PalletReferendaTrackInfo (709) */
/** @name PalletReferendaTrackInfo (707) */
interface PalletReferendaTrackInfo extends Struct {
readonly name: Text;
readonly maxDeciding: u32;
@@ -7058,7 +7058,7 @@ declare module '@polkadot/types/lookup' {
readonly minSupport: PalletReferendaCurve;
}
/** @name PalletReferendaCurve (710) */
/** @name PalletReferendaCurve (708) */
interface PalletReferendaCurve extends Enum {
readonly isLinearDecreasing: boolean;
readonly asLinearDecreasing: {
@@ -7082,7 +7082,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'LinearDecreasing' | 'SteppedDecreasing' | 'Reciprocal';
}
/** @name PalletReferendaError (713) */
/** @name PalletReferendaError (711) */
interface PalletReferendaError extends Enum {
readonly isNotOngoing: boolean;
readonly isHasDeposit: boolean;
@@ -7100,14 +7100,14 @@ declare module '@polkadot/types/lookup' {
readonly type: 'NotOngoing' | 'HasDeposit' | 'BadTrack' | 'Full' | 'QueueEmpty' | 'BadReferendum' | 'NothingToDo' | 'NoTrack' | 'Unfinished' | 'NoPermission' | 'NoDeposit' | 'BadStatus' | 'PreimageNotExist';
}
/** @name PalletRemarkError (714) */
/** @name PalletRemarkError (712) */
interface PalletRemarkError extends Enum {
readonly isEmpty: boolean;
readonly isBadContext: boolean;
readonly type: 'Empty' | 'BadContext';
}
/** @name PalletConvictionVotingVoteVoting (716) */
/** @name PalletConvictionVotingVoteVoting (714) */
interface PalletConvictionVotingVoteVoting extends Enum {
readonly isCasting: boolean;
readonly asCasting: PalletConvictionVotingVoteCasting;
@@ -7116,23 +7116,23 @@ declare module '@polkadot/types/lookup' {
readonly type: 'Casting' | 'Delegating';
}
/** @name PalletConvictionVotingVoteCasting (717) */
/** @name PalletConvictionVotingVoteCasting (715) */
interface PalletConvictionVotingVoteCasting extends Struct {
readonly votes: Vec<ITuple<[u32, PalletConvictionVotingVoteAccountVote]>>;
readonly delegations: PalletConvictionVotingDelegations;
readonly prior: PalletConvictionVotingVotePriorLock;
}
/** @name PalletConvictionVotingDelegations (721) */
/** @name PalletConvictionVotingDelegations (719) */
interface PalletConvictionVotingDelegations extends Struct {
readonly votes: u128;
readonly capital: u128;
}
/** @name PalletConvictionVotingVotePriorLock (722) */
/** @name PalletConvictionVotingVotePriorLock (720) */
interface PalletConvictionVotingVotePriorLock extends ITuple<[u32, u128]> {}
/** @name PalletConvictionVotingVoteDelegating (723) */
/** @name PalletConvictionVotingVoteDelegating (721) */
interface PalletConvictionVotingVoteDelegating extends Struct {
readonly balance: u128;
readonly target: AccountId32;
@@ -7141,7 +7141,7 @@ declare module '@polkadot/types/lookup' {
readonly prior: PalletConvictionVotingVotePriorLock;
}
/** @name PalletConvictionVotingError (727) */
/** @name PalletConvictionVotingError (725) */
interface PalletConvictionVotingError extends Enum {
readonly isNotOngoing: boolean;
readonly isNotVoter: boolean;
@@ -7158,7 +7158,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'NotOngoing' | 'NotVoter' | 'NoPermission' | 'NoPermissionYet' | 'AlreadyDelegating' | 'AlreadyVoting' | 'InsufficientFunds' | 'NotDelegating' | 'Nonsense' | 'MaxVotesReached' | 'ClassNeeded' | 'BadClass';
}
/** @name PalletWhitelistError (728) */
/** @name PalletWhitelistError (726) */
interface PalletWhitelistError extends Enum {
readonly isUnavailablePreImage: boolean;
readonly isUndecodableCall: boolean;
@@ -7168,7 +7168,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'UnavailablePreImage' | 'UndecodableCall' | 'InvalidCallWeightWitness' | 'CallIsNotWhitelisted' | 'CallAlreadyWhitelisted';
}
/** @name PalletAllianceMemberRole (733) */
/** @name PalletAllianceMemberRole (731) */
interface PalletAllianceMemberRole extends Enum {
readonly isFellow: boolean;
readonly isAlly: boolean;
@@ -7176,7 +7176,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'Fellow' | 'Ally' | 'Retiring';
}
/** @name PalletAllianceError (737) */
/** @name PalletAllianceError (735) */
interface PalletAllianceError extends Enum {
readonly isAllianceNotYetInitialized: boolean;
readonly isAllianceAlreadyInitialized: boolean;
@@ -7205,7 +7205,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'AllianceNotYetInitialized' | 'AllianceAlreadyInitialized' | 'AlreadyMember' | 'NotMember' | 'NotAlly' | 'NoVotingRights' | 'AlreadyElevated' | 'AlreadyUnscrupulous' | 'AccountNonGrata' | 'NotListedAsUnscrupulous' | 'TooManyUnscrupulousItems' | 'TooLongWebsiteUrl' | 'InsufficientFunds' | 'WithoutIdentityDisplayAndWebsite' | 'WithoutGoodIdentityJudgement' | 'MissingProposalHash' | 'MissingAnnouncement' | 'TooManyMembers' | 'TooManyAnnouncements' | 'BadWitness' | 'AlreadyRetiring' | 'RetirementNoticeNotGiven' | 'RetirementPeriodNotPassed' | 'FellowsMissing';
}
/** @name PalletNominationPoolsPoolMember (738) */
/** @name PalletNominationPoolsPoolMember (736) */
interface PalletNominationPoolsPoolMember extends Struct {
readonly poolId: u32;
readonly points: u128;
@@ -7213,7 +7213,7 @@ declare module '@polkadot/types/lookup' {
readonly unbondingEras: BTreeMap<u32, u128>;
}
/** @name PalletNominationPoolsBondedPoolInner (741) */
/** @name PalletNominationPoolsBondedPoolInner (739) */
interface PalletNominationPoolsBondedPoolInner extends Struct {
readonly commission: PalletNominationPoolsCommission;
readonly memberCounter: u32;
@@ -7222,7 +7222,7 @@ declare module '@polkadot/types/lookup' {
readonly state: PalletNominationPoolsPoolState;
}
/** @name PalletNominationPoolsCommission (742) */
/** @name PalletNominationPoolsCommission (740) */
interface PalletNominationPoolsCommission extends Struct {
readonly current: Option<ITuple<[Perbill, AccountId32]>>;
readonly max: Option<Perbill>;
@@ -7230,7 +7230,7 @@ declare module '@polkadot/types/lookup' {
readonly throttleFrom: Option<u32>;
}
/** @name PalletNominationPoolsPoolRoles (745) */
/** @name PalletNominationPoolsPoolRoles (743) */
interface PalletNominationPoolsPoolRoles extends Struct {
readonly depositor: AccountId32;
readonly root: Option<AccountId32>;
@@ -7238,7 +7238,7 @@ declare module '@polkadot/types/lookup' {
readonly bouncer: Option<AccountId32>;
}
/** @name PalletNominationPoolsRewardPool (746) */
/** @name PalletNominationPoolsRewardPool (744) */
interface PalletNominationPoolsRewardPool extends Struct {
readonly lastRecordedRewardCounter: u128;
readonly lastRecordedTotalPayouts: u128;
@@ -7247,19 +7247,19 @@ declare module '@polkadot/types/lookup' {
readonly totalCommissionClaimed: u128;
}
/** @name PalletNominationPoolsSubPools (747) */
/** @name PalletNominationPoolsSubPools (745) */
interface PalletNominationPoolsSubPools extends Struct {
readonly noEra: PalletNominationPoolsUnbondPool;
readonly withEra: BTreeMap<u32, PalletNominationPoolsUnbondPool>;
}
/** @name PalletNominationPoolsUnbondPool (748) */
/** @name PalletNominationPoolsUnbondPool (746) */
interface PalletNominationPoolsUnbondPool extends Struct {
readonly points: u128;
readonly balance: u128;
}
/** @name PalletNominationPoolsError (754) */
/** @name PalletNominationPoolsError (752) */
interface PalletNominationPoolsError extends Enum {
readonly isPoolNotFound: boolean;
readonly isPoolMemberNotFound: boolean;
@@ -7295,7 +7295,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'PoolNotFound' | 'PoolMemberNotFound' | 'RewardPoolNotFound' | 'SubPoolsNotFound' | 'AccountBelongsToOtherPool' | 'FullyUnbonding' | 'MaxUnbondingLimit' | 'CannotWithdrawAny' | 'MinimumBondNotMet' | 'OverflowRisk' | 'NotDestroying' | 'NotNominator' | 'NotKickerOrDestroying' | 'NotOpen' | 'MaxPools' | 'MaxPoolMembers' | 'CanNotChangeState' | 'DoesNotHavePermission' | 'MetadataExceedsMaxLen' | 'Defensive' | 'PartialUnbondNotAllowedPermissionlessly' | 'MaxCommissionRestricted' | 'CommissionExceedsMaximum' | 'CommissionChangeThrottled' | 'CommissionChangeRateNotAllowed' | 'NoPendingCommission' | 'NoCommissionCurrentSet' | 'PoolIdInUse' | 'InvalidPoolId' | 'BondExtraRestricted';
}
/** @name PalletNominationPoolsDefensiveError (755) */
/** @name PalletNominationPoolsDefensiveError (753) */
interface PalletNominationPoolsDefensiveError extends Enum {
readonly isNotEnoughSpaceInUnbondPool: boolean;
readonly isPoolNotFound: boolean;
@@ -7305,7 +7305,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'NotEnoughSpaceInUnbondPool' | 'PoolNotFound' | 'RewardPoolNotFound' | 'SubPoolsNotFound' | 'BondedStashKilledPrematurely';
}
/** @name PalletReferendaReferendumInfoRankedCollectiveTally (756) */
/** @name PalletReferendaReferendumInfoRankedCollectiveTally (754) */
interface PalletReferendaReferendumInfoRankedCollectiveTally extends Enum {
readonly isOngoing: boolean;
readonly asOngoing: PalletReferendaReferendumStatusRankedCollectiveTally;
@@ -7322,7 +7322,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'Ongoing' | 'Approved' | 'Rejected' | 'Cancelled' | 'TimedOut' | 'Killed';
}
/** @name PalletReferendaReferendumStatusRankedCollectiveTally (757) */
/** @name PalletReferendaReferendumStatusRankedCollectiveTally (755) */
interface PalletReferendaReferendumStatusRankedCollectiveTally extends Struct {
readonly track: u16;
readonly origin: KitchensinkRuntimeOriginCaller;
@@ -7337,12 +7337,12 @@ declare module '@polkadot/types/lookup' {
readonly alarm: Option<ITuple<[u32, ITuple<[u32, u32]>]>>;
}
/** @name PalletRankedCollectiveMemberRecord (760) */
/** @name PalletRankedCollectiveMemberRecord (758) */
interface PalletRankedCollectiveMemberRecord extends Struct {
readonly rank: u16;
}
/** @name PalletRankedCollectiveError (764) */
/** @name PalletRankedCollectiveError (762) */
interface PalletRankedCollectiveError extends Enum {
readonly isAlreadyMember: boolean;
readonly isNotMember: boolean;
@@ -7356,13 +7356,13 @@ declare module '@polkadot/types/lookup' {
readonly type: 'AlreadyMember' | 'NotMember' | 'NotPolling' | 'Ongoing' | 'NoneRemaining' | 'Corruption' | 'RankTooLow' | 'InvalidWitness' | 'NoPermission';
}
/** @name PalletFastUnstakeUnstakeRequest (765) */
/** @name PalletFastUnstakeUnstakeRequest (763) */
interface PalletFastUnstakeUnstakeRequest extends Struct {
readonly stashes: Vec<ITuple<[AccountId32, u128]>>;
readonly checked: Vec<u32>;
}
/** @name PalletFastUnstakeError (768) */
/** @name PalletFastUnstakeError (766) */
interface PalletFastUnstakeError extends Enum {
readonly isNotController: boolean;
readonly isAlreadyQueued: boolean;
@@ -7373,7 +7373,7 @@ declare module '@polkadot/types/lookup' {
readonly type: 'NotController' | 'AlreadyQueued' | 'NotFullyBonded' | 'NotQueued' | 'AlreadyHead' | 'CallNotAllowed';
}
/** @name PalletMessageQueueBookState (769) */
/** @name PalletMessageQueueBookState (767) */
interface PalletMessageQueueBookState extends Struct {
readonly begin: u32;
readonly end: u32;
@@ -7383,13 +7383,13 @@ declare module '@polkadot/types/lookup' {
readonly size_: u64;
}
/** @name PalletMessageQueueNeighbours (771) */
/** @name PalletMessageQueueNeighbours (769) */
interface PalletMessageQueueNeighbours extends Struct {
readonly prev: u32;
readonly next: u32;
}
/** @name PalletMessageQueuePage (772) */
/** @name PalletMessageQueuePage (770) */
interface PalletMessageQueuePage extends Struct {
readonly remaining: u32;
readonly remainingSize: u32;
@@ -7399,7 +7399,7 @@ declare module '@polkadot/types/lookup' {
readonly heap: Bytes;
}
/** @name PalletMessageQueueError (774) */
/** @name PalletMessageQueueError (772) */
interface PalletMessageQueueError extends Enum {
readonly isNotReapable: boolean;
readonly isNoPage: boolean;
@@ -7411,31 +7411,31 @@ declare module '@polkadot/types/lookup' {
readonly type: 'NotReapable' | 'NoPage' | 'NoMessage' | 'AlreadyProcessed' | 'Queued' | 'InsufficientWeight' | 'TemporarilyUnprocessable';
}
/** @name FrameSystemExtensionsCheckNonZeroSender (778) */
/** @name FrameSystemExtensionsCheckNonZeroSender (776) */
type FrameSystemExtensionsCheckNonZeroSender = Null;
/** @name FrameSystemExtensionsCheckSpecVersion (779) */
/** @name FrameSystemExtensionsCheckSpecVersion (777) */
type FrameSystemExtensionsCheckSpecVersion = Null;
/** @name FrameSystemExtensionsCheckTxVersion (780) */
/** @name FrameSystemExtensionsCheckTxVersion (778) */
type FrameSystemExtensionsCheckTxVersion = Null;
/** @name FrameSystemExtensionsCheckGenesis (781) */
/** @name FrameSystemExtensionsCheckGenesis (779) */
type FrameSystemExtensionsCheckGenesis = Null;
/** @name FrameSystemExtensionsCheckNonce (784) */
/** @name FrameSystemExtensionsCheckNonce (782) */
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
/** @name FrameSystemExtensionsCheckWeight (785) */
/** @name FrameSystemExtensionsCheckWeight (783) */
type FrameSystemExtensionsCheckWeight = Null;
/** @name PalletAssetTxPaymentChargeAssetTxPayment (786) */
/** @name PalletAssetTxPaymentChargeAssetTxPayment (784) */
interface PalletAssetTxPaymentChargeAssetTxPayment extends Struct {
readonly tip: Compact<u128>;
readonly assetId: Option<u32>;
}
/** @name KitchensinkRuntimeRuntime (787) */
/** @name KitchensinkRuntimeRuntime (785) */
type KitchensinkRuntimeRuntime = Null;
} // declare module
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/types-augment', path: 'auto', type: 'auto', version: '10.2.1' };
export const packageInfo = { name: '@polkadot/types-augment', path: 'auto', type: 'auto', version: '10.2.2' };
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+7 -7
View File
@@ -18,17 +18,17 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "10.2.1",
"version": "10.2.2",
"main": "index.js",
"dependencies": {
"@polkadot/util": "^11.1.2",
"@polkadot/x-bigint": "^11.1.2",
"@polkadot/util": "^11.1.3",
"@polkadot/x-bigint": "^11.1.3",
"tslib": "^2.5.0"
},
"devDependencies": {
"@polkadot/types": "10.2.1",
"@polkadot/types-augment": "10.2.1",
"@polkadot/types-support": "10.2.1",
"@polkadot/util-crypto": "^11.1.2"
"@polkadot/types": "10.2.2",
"@polkadot/types-augment": "10.2.2",
"@polkadot/types-support": "10.2.2",
"@polkadot/util-crypto": "^11.1.3"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/types-codec', path: 'auto', type: 'auto', version: '10.2.1' };
export const packageInfo = { name: '@polkadot/types-codec', path: 'auto', type: 'auto', version: '10.2.2' };
+4 -4
View File
@@ -18,14 +18,14 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "10.2.1",
"version": "10.2.2",
"main": "index.js",
"dependencies": {
"@polkadot/types-codec": "10.2.1",
"@polkadot/util": "^11.1.2",
"@polkadot/types-codec": "10.2.2",
"@polkadot/util": "^11.1.3",
"tslib": "^2.5.0"
},
"devDependencies": {
"@polkadot/types": "10.2.1"
"@polkadot/types": "10.2.2"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/types-create', path: 'auto', type: 'auto', version: '10.2.1' };
export const packageInfo = { name: '@polkadot/types-create', path: 'auto', type: 'auto', version: '10.2.2' };
+7 -7
View File
@@ -18,17 +18,17 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "10.2.1",
"version": "10.2.2",
"main": "index.js",
"dependencies": {
"@polkadot/networks": "^11.1.2",
"@polkadot/types": "10.2.1",
"@polkadot/types-codec": "10.2.1",
"@polkadot/types-create": "10.2.1",
"@polkadot/util": "^11.1.2",
"@polkadot/networks": "^11.1.3",
"@polkadot/types": "10.2.2",
"@polkadot/types-codec": "10.2.2",
"@polkadot/types-create": "10.2.2",
"@polkadot/util": "^11.1.3",
"tslib": "^2.5.0"
},
"devDependencies": {
"@polkadot/api": "10.2.1"
"@polkadot/api": "10.2.2"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/types-known', path: 'auto', type: 'auto', version: '10.2.1' };
export const packageInfo = { name: '@polkadot/types-known', path: 'auto', type: 'auto', version: '10.2.2' };
+2 -2
View File
@@ -18,10 +18,10 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "10.2.1",
"version": "10.2.2",
"main": "index.js",
"dependencies": {
"@polkadot/util": "^11.1.2",
"@polkadot/util": "^11.1.3",
"tslib": "^2.5.0"
}
}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/types-support', path: 'auto', type: 'auto', version: '10.2.1' };
export const packageInfo = { name: '@polkadot/types-support', path: 'auto', type: 'auto', version: '10.2.2' };
+9 -9
View File
@@ -18,20 +18,20 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "10.2.1",
"version": "10.2.2",
"main": "index.js",
"dependencies": {
"@polkadot/keyring": "^11.1.2",
"@polkadot/types-augment": "10.2.1",
"@polkadot/types-codec": "10.2.1",
"@polkadot/types-create": "10.2.1",
"@polkadot/util": "^11.1.2",
"@polkadot/util-crypto": "^11.1.2",
"@polkadot/keyring": "^11.1.3",
"@polkadot/types-augment": "10.2.2",
"@polkadot/types-codec": "10.2.2",
"@polkadot/types-create": "10.2.2",
"@polkadot/util": "^11.1.3",
"@polkadot/util-crypto": "^11.1.3",
"rxjs": "^7.8.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@polkadot/keyring": "^11.1.2",
"@polkadot/types-support": "10.2.1"
"@polkadot/keyring": "^11.1.3",
"@polkadot/types-support": "10.2.2"
}
}
@@ -4,7 +4,7 @@
/// <reference types="@polkadot/dev-test/globals.d.ts" />
import { TypeRegistry } from '../create/index.js';
import { CID_AURA, GenericConsensusEngineId as ConsensusEngineId } from './ConsensusEngineId.js';
import { CID_AURA, CID_NMBS, GenericConsensusEngineId as ConsensusEngineId } from './ConsensusEngineId.js';
describe('ConsensusEngineId', (): void => {
const registry = new TypeRegistry();
@@ -16,4 +16,8 @@ describe('ConsensusEngineId', (): void => {
it('reverses an id to string for babe', (): void => {
expect(new ConsensusEngineId(registry, 'BABE').toString()).toEqual('BABE');
});
it('creates a valid id for nimbus', (): void => {
expect(new ConsensusEngineId(registry, 'nmbs').toU8a()).toEqual(CID_NMBS);
});
});
@@ -7,10 +7,11 @@ import type { AccountId, RawAuraPreDigest, RawBabePreDigestCompat } from '../int
import { Bytes, U8aFixed, u32 } from '@polkadot/types-codec';
import { BN, bnToU8a, isNumber, stringToU8a, u8aToHex, u8aToString } from '@polkadot/util';
export const CID_AURA = stringToU8a('aura');
export const CID_BABE = stringToU8a('BABE');
export const CID_GRPA = stringToU8a('FRNK');
export const CID_POW = stringToU8a('pow_');
export const CID_AURA = /*#__PURE__*/ stringToU8a('aura');
export const CID_BABE = /*#__PURE__*/ stringToU8a('BABE');
export const CID_GRPA = /*#__PURE__*/ stringToU8a('FRNK');
export const CID_POW = /*#__PURE__*/ stringToU8a('pow_');
export const CID_NMBS = /*#__PURE__*/ stringToU8a('nmbs');
function getAuraAuthor (registry: Registry, bytes: Bytes, sessionValidators: AccountId[]): AccountId {
return sessionValidators[
@@ -77,6 +78,13 @@ export class GenericConsensusEngineId extends U8aFixed {
return this.eq(CID_POW);
}
/**
* @description `true` is the engine matches nimbus
*/
public get isNimbus (): boolean {
return this.eq(CID_NMBS);
}
/**
* @description From the input bytes, decode into an author
*/
@@ -89,8 +97,8 @@ export class GenericConsensusEngineId extends U8aFixed {
}
}
// For pow & Moonbeam, the bytes are the actual author
if (this.isPow || bytes.length === 20) {
// For pow & Nimbus, the bytes are the actual author
if (this.isPow || this.isNimbus) {
return getBytesAsAuthor(this.registry, bytes);
}
+3 -2
View File
@@ -15,5 +15,6 @@ function convert (fn: (n: Name) => string): (n: Named) => string {
return ({ name }: Named) => fn(name);
}
export const objectNameToCamel = convert(stringCamelCase);
export const objectNameToString = convert((n) => n.toString());
export const objectNameToCamel = /*#__PURE__*/ convert(stringCamelCase);
export const objectNameToString = /*#__PURE__*/ convert((n) => n.toString());
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/types', path: 'auto', type: 'auto', version: '10.2.1' };
export const packageInfo = { name: '@polkadot/types', path: 'auto', type: 'auto', version: '10.2.2' };
+1 -1
View File
@@ -1,7 +1,7 @@
// Copyright 2017-2023 @polkadot/typegen authors & contributors
// SPDX-License-Identifier: Apache-2.0
import fs from 'fs';
import fs from 'node:fs';
import { fetch } from '@polkadot/x-fetch';
+315 -378
View File
File diff suppressed because it is too large Load Diff