@@ -194,6 +194,20 @@ export interface ChainErrors extends GenericChainErrors {
194194 **/
195195 [ error : string ] : GenericPalletError ;
196196 } ;
197+ /**
198+ * Pallet `MultiBlockMigrations`'s errors
199+ **/
200+ multiBlockMigrations : {
201+ /**
202+ * The operation cannot complete since some MBMs are ongoing.
203+ **/
204+ Ongoing : GenericPalletError ;
205+
206+ /**
207+ * Generic pallet error
208+ **/
209+ [ error : string ] : GenericPalletError ;
210+ } ;
197211 /**
198212 * Pallet `Balances`'s errors
199213 **/
@@ -1089,6 +1103,11 @@ export interface ChainErrors extends GenericChainErrors {
10891103 **/
10901104 ContainsHolds : GenericPalletError ;
10911105
1106+ /**
1107+ * Tried setting too many reserves.
1108+ **/
1109+ TooManyReserves : GenericPalletError ;
1110+
10921111 /**
10931112 * Generic pallet error
10941113 **/
@@ -1569,6 +1588,11 @@ export interface ChainErrors extends GenericChainErrors {
15691588 **/
15701589 ContainsHolds : GenericPalletError ;
15711590
1591+ /**
1592+ * Tried setting too many reserves.
1593+ **/
1594+ TooManyReserves : GenericPalletError ;
1595+
15721596 /**
15731597 * Generic pallet error
15741598 **/
@@ -1696,6 +1720,11 @@ export interface ChainErrors extends GenericChainErrors {
16961720 **/
16971721 ContainsHolds : GenericPalletError ;
16981722
1723+ /**
1724+ * Tried setting too many reserves.
1725+ **/
1726+ TooManyReserves : GenericPalletError ;
1727+
16991728 /**
17001729 * Generic pallet error
17011730 **/
@@ -2194,6 +2223,104 @@ export interface ChainErrors extends GenericChainErrors {
21942223 **/
21952224 [ error : string ] : GenericPalletError ;
21962225 } ;
2226+ /**
2227+ * Pallet `MultiAssetBounties`'s errors
2228+ **/
2229+ multiAssetBounties : {
2230+ /**
2231+ * No child-/bounty at that index.
2232+ **/
2233+ InvalidIndex : GenericPalletError ;
2234+
2235+ /**
2236+ * The reason given is just too big.
2237+ **/
2238+ ReasonTooBig : GenericPalletError ;
2239+
2240+ /**
2241+ * Invalid child-/bounty value.
2242+ **/
2243+ InvalidValue : GenericPalletError ;
2244+
2245+ /**
2246+ * The balance of the asset kind is not convertible to the balance of the native asset for
2247+ * asserting the origin permissions.
2248+ **/
2249+ FailedToConvertBalance : GenericPalletError ;
2250+
2251+ /**
2252+ * The child-/bounty status is unexpected.
2253+ **/
2254+ UnexpectedStatus : GenericPalletError ;
2255+
2256+ /**
2257+ * Require child-/bounty curator.
2258+ **/
2259+ RequireCurator : GenericPalletError ;
2260+
2261+ /**
2262+ * The spend origin is valid but the amount it is allowed to spend is lower than the
2263+ * requested amount.
2264+ **/
2265+ InsufficientPermission : GenericPalletError ;
2266+
2267+ /**
2268+ * There was issue with funding the child-/bounty.
2269+ **/
2270+ FundingError : GenericPalletError ;
2271+
2272+ /**
2273+ * There was issue with refunding the child-/bounty.
2274+ **/
2275+ RefundError : GenericPalletError ;
2276+ PayoutError : GenericPalletError ;
2277+
2278+ /**
2279+ * Child-/bounty funding has not concluded yet.
2280+ **/
2281+ FundingInconclusive : GenericPalletError ;
2282+
2283+ /**
2284+ * Child-/bounty refund has not concluded yet.
2285+ **/
2286+ RefundInconclusive : GenericPalletError ;
2287+
2288+ /**
2289+ * Child-/bounty payout has not concluded yet.
2290+ **/
2291+ PayoutInconclusive : GenericPalletError ;
2292+
2293+ /**
2294+ * The child-/bounty or funding source account could not be derived from the indexes and
2295+ * asset kind.
2296+ **/
2297+ FailedToConvertSource : GenericPalletError ;
2298+
2299+ /**
2300+ * The parent bounty cannot be closed because it has active child bounties.
2301+ **/
2302+ HasActiveChildBounty : GenericPalletError ;
2303+
2304+ /**
2305+ * Number of child bounties exceeds limit `MaxActiveChildBountyCount`.
2306+ **/
2307+ TooManyChildBounties : GenericPalletError ;
2308+
2309+ /**
2310+ * The parent bounty value is not enough to add new child-bounty.
2311+ **/
2312+ InsufficientBountyValue : GenericPalletError ;
2313+
2314+ /**
2315+ * The preimage does not exist.
2316+ **/
2317+ PreimageNotExist : GenericPalletError ;
2318+
2319+ /**
2320+ * Generic pallet error
2321+ **/
2322+ [ error : string ] : GenericPalletError ;
2323+ } ;
21972324 /**
21982325 * Pallet `StateTrieMigration`'s errors
21992326 **/
@@ -2539,6 +2666,44 @@ export interface ChainErrors extends GenericChainErrors {
25392666 **/
25402667 [ error : string ] : GenericPalletError ;
25412668 } ;
2669+ /**
2670+ * Pallet `StakingRcClient`'s errors
2671+ **/
2672+ stakingRcClient : {
2673+ /**
2674+ * Failed to send XCM message to the Relay Chain.
2675+ **/
2676+ XcmSendFailed : GenericPalletError ;
2677+
2678+ /**
2679+ * The origin account is not a registered validator.
2680+ *
2681+ * Only accounts that have called `validate()` can set or purge session keys. When called
2682+ * via a staking proxy, the origin is the delegating account (stash), which must be a
2683+ * registered validator.
2684+ **/
2685+ NotValidator : GenericPalletError ;
2686+
2687+ /**
2688+ * The session keys could not be decoded as the expected RelayChainSessionKeys type.
2689+ **/
2690+ InvalidKeys : GenericPalletError ;
2691+
2692+ /**
2693+ * The ownership proof for the session keys is invalid.
2694+ **/
2695+ InvalidProof : GenericPalletError ;
2696+
2697+ /**
2698+ * Delivery fees exceeded the specified maximum.
2699+ **/
2700+ FeesExceededMax : GenericPalletError ;
2701+
2702+ /**
2703+ * Generic pallet error
2704+ **/
2705+ [ error : string ] : GenericPalletError ;
2706+ } ;
25422707 /**
25432708 * Pallet `MultiBlockElection`'s errors
25442709 **/
@@ -3120,6 +3285,11 @@ export interface ChainErrors extends GenericChainErrors {
31203285 **/
31213286 PrecompileDelegateDenied : GenericPalletError ;
31223287
3288+ /**
3289+ * ECDSA public key recovery failed. Most probably wrong recovery id or signature.
3290+ **/
3291+ EcdsaRecoveryFailed : GenericPalletError ;
3292+
31233293 /**
31243294 * Generic pallet error
31253295 **/
0 commit comments