@dedot/chaintypes 0.0.1-next.f5bf4fc2.1 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (144) hide show
  1. package/README.md +3 -1
  2. package/aleph/consts.d.ts +94 -13
  3. package/aleph/errors.d.ts +251 -182
  4. package/aleph/events.d.ts +319 -102
  5. package/aleph/index.d.ts +16 -11
  6. package/aleph/json-rpc.d.ts +76 -0
  7. package/aleph/query.d.ts +261 -168
  8. package/aleph/runtime.d.ts +90 -39
  9. package/aleph/tx.d.ts +1822 -1052
  10. package/aleph/types.d.ts +458 -138
  11. package/astar/consts.d.ts +112 -116
  12. package/astar/errors.d.ts +342 -409
  13. package/astar/events.d.ts +449 -358
  14. package/astar/index.d.ts +16 -11
  15. package/astar/json-rpc.d.ts +131 -0
  16. package/astar/query.d.ts +459 -367
  17. package/astar/runtime.d.ts +591 -98
  18. package/astar/tx.d.ts +2485 -3430
  19. package/astar/types.d.ts +1530 -4436
  20. package/index.d.ts +3 -0
  21. package/index.ts +3 -0
  22. package/kusama/consts.d.ts +54 -115
  23. package/kusama/errors.d.ts +696 -682
  24. package/kusama/events.d.ts +592 -407
  25. package/kusama/index.d.ts +16 -11
  26. package/kusama/json-rpc.d.ts +103 -0
  27. package/kusama/query.d.ts +840 -538
  28. package/kusama/runtime.d.ts +136 -65
  29. package/kusama/tx.d.ts +4557 -3051
  30. package/kusama/types.d.ts +1437 -1161
  31. package/kusamaAssetHub/consts.d.ts +66 -20
  32. package/kusamaAssetHub/errors.d.ts +428 -308
  33. package/kusamaAssetHub/events.d.ts +497 -305
  34. package/kusamaAssetHub/index.d.ts +16 -11
  35. package/kusamaAssetHub/json-rpc.d.ts +89 -0
  36. package/kusamaAssetHub/query.d.ts +376 -253
  37. package/kusamaAssetHub/runtime.d.ts +82 -41
  38. package/kusamaAssetHub/tx.d.ts +3264 -1955
  39. package/kusamaAssetHub/types.d.ts +1262 -726
  40. package/moonbeam/consts.d.ts +115 -170
  41. package/moonbeam/errors.d.ts +564 -787
  42. package/moonbeam/events.d.ts +583 -746
  43. package/moonbeam/index.d.ts +16 -11
  44. package/moonbeam/json-rpc.d.ts +137 -0
  45. package/moonbeam/query.d.ts +507 -607
  46. package/moonbeam/runtime.d.ts +132 -47
  47. package/moonbeam/tx.d.ts +3309 -3268
  48. package/moonbeam/types.d.ts +1484 -1375
  49. package/package.json +4 -14
  50. package/paseo/consts.d.ts +1331 -0
  51. package/paseo/errors.d.ts +2644 -0
  52. package/paseo/events.d.ts +2821 -0
  53. package/paseo/index.d.ts +27 -0
  54. package/paseo/json-rpc.d.ts +103 -0
  55. package/paseo/query.d.ts +3709 -0
  56. package/paseo/runtime.d.ts +1205 -0
  57. package/paseo/tx.d.ts +8024 -0
  58. package/paseo/types.d.ts +10194 -0
  59. package/polkadot/consts.d.ts +95 -50
  60. package/polkadot/errors.d.ts +619 -468
  61. package/polkadot/events.d.ts +582 -257
  62. package/polkadot/index.d.ts +16 -11
  63. package/polkadot/json-rpc.d.ts +103 -0
  64. package/polkadot/query.d.ts +770 -399
  65. package/polkadot/runtime.d.ts +136 -65
  66. package/polkadot/tx.d.ts +4268 -2368
  67. package/polkadot/types.d.ts +1570 -745
  68. package/polkadotAssetHub/consts.d.ts +154 -15
  69. package/polkadotAssetHub/errors.d.ts +615 -234
  70. package/polkadotAssetHub/events.d.ts +829 -270
  71. package/polkadotAssetHub/index.d.ts +16 -11
  72. package/polkadotAssetHub/json-rpc.d.ts +89 -0
  73. package/polkadotAssetHub/query.d.ts +438 -243
  74. package/polkadotAssetHub/runtime.d.ts +147 -40
  75. package/polkadotAssetHub/tx.d.ts +3747 -1643
  76. package/polkadotAssetHub/types.d.ts +2096 -806
  77. package/rococo/consts.d.ts +51 -32
  78. package/rococo/errors.d.ts +549 -605
  79. package/rococo/events.d.ts +447 -238
  80. package/rococo/index.d.ts +16 -11
  81. package/rococo/json-rpc.d.ts +103 -0
  82. package/rococo/query.d.ts +724 -426
  83. package/rococo/runtime.d.ts +366 -144
  84. package/rococo/tx.d.ts +6850 -3079
  85. package/rococo/types.d.ts +5959 -1619
  86. package/rococoAssetHub/consts.d.ts +92 -7
  87. package/rococoAssetHub/errors.d.ts +381 -285
  88. package/rococoAssetHub/events.d.ts +461 -140
  89. package/rococoAssetHub/index.d.ts +16 -11
  90. package/rococoAssetHub/json-rpc.d.ts +89 -0
  91. package/rococoAssetHub/query.d.ts +487 -174
  92. package/rococoAssetHub/runtime.d.ts +235 -51
  93. package/rococoAssetHub/tx.d.ts +6005 -2163
  94. package/rococoAssetHub/types.d.ts +6683 -1003
  95. package/substrate/consts.d.ts +233 -52
  96. package/substrate/errors.d.ts +966 -781
  97. package/substrate/events.d.ts +1226 -381
  98. package/substrate/index.d.ts +16 -11
  99. package/substrate/json-rpc.d.ts +103 -0
  100. package/substrate/query.d.ts +1090 -460
  101. package/substrate/runtime.d.ts +274 -71
  102. package/substrate/tx.d.ts +12313 -4510
  103. package/substrate/types.d.ts +11036 -1432
  104. package/westend/consts.d.ts +1349 -0
  105. package/westend/errors.d.ts +2736 -0
  106. package/westend/events.d.ts +2906 -0
  107. package/westend/index.d.ts +27 -0
  108. package/westend/json-rpc.d.ts +103 -0
  109. package/westend/query.d.ts +3855 -0
  110. package/westend/runtime.d.ts +1437 -0
  111. package/westend/tx.d.ts +10248 -0
  112. package/westend/types.d.ts +14769 -0
  113. package/westendAssetHub/consts.d.ts +126 -7
  114. package/westendAssetHub/errors.d.ts +426 -285
  115. package/westendAssetHub/events.d.ts +498 -140
  116. package/westendAssetHub/index.d.ts +16 -11
  117. package/westendAssetHub/json-rpc.d.ts +89 -0
  118. package/westendAssetHub/query.d.ts +526 -174
  119. package/westendAssetHub/runtime.d.ts +245 -56
  120. package/westendAssetHub/tx.d.ts +6196 -2166
  121. package/westendAssetHub/types.d.ts +6913 -1002
  122. package/westendPeople/consts.d.ts +434 -0
  123. package/westendPeople/errors.d.ts +769 -0
  124. package/westendPeople/events.d.ts +1082 -0
  125. package/westendPeople/index.d.ts +27 -0
  126. package/westendPeople/json-rpc.d.ts +89 -0
  127. package/westendPeople/query.d.ts +1209 -0
  128. package/westendPeople/runtime.d.ts +636 -0
  129. package/westendPeople/tx.d.ts +2891 -0
  130. package/westendPeople/types.d.ts +4984 -0
  131. package/aleph/rpc.d.ts +0 -727
  132. package/astar/rpc.d.ts +0 -974
  133. package/kusama/rpc.d.ts +0 -904
  134. package/kusamaAssetHub/rpc.d.ts +0 -746
  135. package/moonbeam/rpc.d.ts +0 -1015
  136. package/packageInfo.d.ts +0 -4
  137. package/packageInfo.js +0 -2
  138. package/packageInfo.ts +0 -3
  139. package/polkadot/rpc.d.ts +0 -904
  140. package/polkadotAssetHub/rpc.d.ts +0 -746
  141. package/rococo/rpc.d.ts +0 -904
  142. package/rococoAssetHub/rpc.d.ts +0 -746
  143. package/substrate/rpc.d.ts +0 -894
  144. package/westendAssetHub/rpc.d.ts +0 -746
@@ -0,0 +1,2736 @@
1
+ // Generated by dedot cli
2
+
3
+ import type { GenericChainErrors, GenericPalletError, RpcVersion } from 'dedot/types';
4
+
5
+ export interface ChainErrors<Rv extends RpcVersion> extends GenericChainErrors<Rv> {
6
+ /**
7
+ * Pallet `System`'s errors
8
+ **/
9
+ system: {
10
+ /**
11
+ * The name of specification does not match between the current runtime
12
+ * and the new runtime.
13
+ **/
14
+ InvalidSpecName: GenericPalletError<Rv>;
15
+
16
+ /**
17
+ * The specification version is not allowed to decrease between the current runtime
18
+ * and the new runtime.
19
+ **/
20
+ SpecVersionNeedsToIncrease: GenericPalletError<Rv>;
21
+
22
+ /**
23
+ * Failed to extract the runtime version from the new runtime.
24
+ *
25
+ * Either calling `Core_version` or decoding `RuntimeVersion` failed.
26
+ **/
27
+ FailedToExtractRuntimeVersion: GenericPalletError<Rv>;
28
+
29
+ /**
30
+ * Suicide called when the account has non-default composite data.
31
+ **/
32
+ NonDefaultComposite: GenericPalletError<Rv>;
33
+
34
+ /**
35
+ * There is a non-zero reference count preventing the account from being purged.
36
+ **/
37
+ NonZeroRefCount: GenericPalletError<Rv>;
38
+
39
+ /**
40
+ * The origin filter prevent the call to be dispatched.
41
+ **/
42
+ CallFiltered: GenericPalletError<Rv>;
43
+
44
+ /**
45
+ * A multi-block migration is ongoing and prevents the current code from being replaced.
46
+ **/
47
+ MultiBlockMigrationsOngoing: GenericPalletError<Rv>;
48
+
49
+ /**
50
+ * No upgrade authorized.
51
+ **/
52
+ NothingAuthorized: GenericPalletError<Rv>;
53
+
54
+ /**
55
+ * The submitted code is not authorized.
56
+ **/
57
+ Unauthorized: GenericPalletError<Rv>;
58
+
59
+ /**
60
+ * Generic pallet error
61
+ **/
62
+ [error: string]: GenericPalletError<Rv>;
63
+ };
64
+ /**
65
+ * Pallet `Babe`'s errors
66
+ **/
67
+ babe: {
68
+ /**
69
+ * An equivocation proof provided as part of an equivocation report is invalid.
70
+ **/
71
+ InvalidEquivocationProof: GenericPalletError<Rv>;
72
+
73
+ /**
74
+ * A key ownership proof provided as part of an equivocation report is invalid.
75
+ **/
76
+ InvalidKeyOwnershipProof: GenericPalletError<Rv>;
77
+
78
+ /**
79
+ * A given equivocation report is valid but already previously reported.
80
+ **/
81
+ DuplicateOffenceReport: GenericPalletError<Rv>;
82
+
83
+ /**
84
+ * Submitted configuration is invalid.
85
+ **/
86
+ InvalidConfiguration: GenericPalletError<Rv>;
87
+
88
+ /**
89
+ * Generic pallet error
90
+ **/
91
+ [error: string]: GenericPalletError<Rv>;
92
+ };
93
+ /**
94
+ * Pallet `Indices`'s errors
95
+ **/
96
+ indices: {
97
+ /**
98
+ * The index was not already assigned.
99
+ **/
100
+ NotAssigned: GenericPalletError<Rv>;
101
+
102
+ /**
103
+ * The index is assigned to another account.
104
+ **/
105
+ NotOwner: GenericPalletError<Rv>;
106
+
107
+ /**
108
+ * The index was not available.
109
+ **/
110
+ InUse: GenericPalletError<Rv>;
111
+
112
+ /**
113
+ * The source and destination accounts are identical.
114
+ **/
115
+ NotTransfer: GenericPalletError<Rv>;
116
+
117
+ /**
118
+ * The index is permanent and may not be freed/changed.
119
+ **/
120
+ Permanent: GenericPalletError<Rv>;
121
+
122
+ /**
123
+ * Generic pallet error
124
+ **/
125
+ [error: string]: GenericPalletError<Rv>;
126
+ };
127
+ /**
128
+ * Pallet `Balances`'s errors
129
+ **/
130
+ balances: {
131
+ /**
132
+ * Vesting balance too high to send value.
133
+ **/
134
+ VestingBalance: GenericPalletError<Rv>;
135
+
136
+ /**
137
+ * Account liquidity restrictions prevent withdrawal.
138
+ **/
139
+ LiquidityRestrictions: GenericPalletError<Rv>;
140
+
141
+ /**
142
+ * Balance too low to send value.
143
+ **/
144
+ InsufficientBalance: GenericPalletError<Rv>;
145
+
146
+ /**
147
+ * Value too low to create account due to existential deposit.
148
+ **/
149
+ ExistentialDeposit: GenericPalletError<Rv>;
150
+
151
+ /**
152
+ * Transfer/payment would kill account.
153
+ **/
154
+ Expendability: GenericPalletError<Rv>;
155
+
156
+ /**
157
+ * A vesting schedule already exists for this account.
158
+ **/
159
+ ExistingVestingSchedule: GenericPalletError<Rv>;
160
+
161
+ /**
162
+ * Beneficiary account must pre-exist.
163
+ **/
164
+ DeadAccount: GenericPalletError<Rv>;
165
+
166
+ /**
167
+ * Number of named reserves exceed `MaxReserves`.
168
+ **/
169
+ TooManyReserves: GenericPalletError<Rv>;
170
+
171
+ /**
172
+ * Number of holds exceed `VariantCountOf<T::RuntimeHoldReason>`.
173
+ **/
174
+ TooManyHolds: GenericPalletError<Rv>;
175
+
176
+ /**
177
+ * Number of freezes exceed `MaxFreezes`.
178
+ **/
179
+ TooManyFreezes: GenericPalletError<Rv>;
180
+
181
+ /**
182
+ * The issuance cannot be modified since it is already deactivated.
183
+ **/
184
+ IssuanceDeactivated: GenericPalletError<Rv>;
185
+
186
+ /**
187
+ * The delta cannot be zero.
188
+ **/
189
+ DeltaZero: GenericPalletError<Rv>;
190
+
191
+ /**
192
+ * Generic pallet error
193
+ **/
194
+ [error: string]: GenericPalletError<Rv>;
195
+ };
196
+ /**
197
+ * Pallet `Staking`'s errors
198
+ **/
199
+ staking: {
200
+ /**
201
+ * Not a controller account.
202
+ **/
203
+ NotController: GenericPalletError<Rv>;
204
+
205
+ /**
206
+ * Not a stash account.
207
+ **/
208
+ NotStash: GenericPalletError<Rv>;
209
+
210
+ /**
211
+ * Stash is already bonded.
212
+ **/
213
+ AlreadyBonded: GenericPalletError<Rv>;
214
+
215
+ /**
216
+ * Controller is already paired.
217
+ **/
218
+ AlreadyPaired: GenericPalletError<Rv>;
219
+
220
+ /**
221
+ * Targets cannot be empty.
222
+ **/
223
+ EmptyTargets: GenericPalletError<Rv>;
224
+
225
+ /**
226
+ * Duplicate index.
227
+ **/
228
+ DuplicateIndex: GenericPalletError<Rv>;
229
+
230
+ /**
231
+ * Slash record index out of bounds.
232
+ **/
233
+ InvalidSlashIndex: GenericPalletError<Rv>;
234
+
235
+ /**
236
+ * Cannot have a validator or nominator role, with value less than the minimum defined by
237
+ * governance (see `MinValidatorBond` and `MinNominatorBond`). If unbonding is the
238
+ * intention, `chill` first to remove one's role as validator/nominator.
239
+ **/
240
+ InsufficientBond: GenericPalletError<Rv>;
241
+
242
+ /**
243
+ * Can not schedule more unlock chunks.
244
+ **/
245
+ NoMoreChunks: GenericPalletError<Rv>;
246
+
247
+ /**
248
+ * Can not rebond without unlocking chunks.
249
+ **/
250
+ NoUnlockChunk: GenericPalletError<Rv>;
251
+
252
+ /**
253
+ * Attempting to target a stash that still has funds.
254
+ **/
255
+ FundedTarget: GenericPalletError<Rv>;
256
+
257
+ /**
258
+ * Invalid era to reward.
259
+ **/
260
+ InvalidEraToReward: GenericPalletError<Rv>;
261
+
262
+ /**
263
+ * Invalid number of nominations.
264
+ **/
265
+ InvalidNumberOfNominations: GenericPalletError<Rv>;
266
+
267
+ /**
268
+ * Items are not sorted and unique.
269
+ **/
270
+ NotSortedAndUnique: GenericPalletError<Rv>;
271
+
272
+ /**
273
+ * Rewards for this era have already been claimed for this validator.
274
+ **/
275
+ AlreadyClaimed: GenericPalletError<Rv>;
276
+
277
+ /**
278
+ * No nominators exist on this page.
279
+ **/
280
+ InvalidPage: GenericPalletError<Rv>;
281
+
282
+ /**
283
+ * Incorrect previous history depth input provided.
284
+ **/
285
+ IncorrectHistoryDepth: GenericPalletError<Rv>;
286
+
287
+ /**
288
+ * Incorrect number of slashing spans provided.
289
+ **/
290
+ IncorrectSlashingSpans: GenericPalletError<Rv>;
291
+
292
+ /**
293
+ * Internal state has become somehow corrupted and the operation cannot continue.
294
+ **/
295
+ BadState: GenericPalletError<Rv>;
296
+
297
+ /**
298
+ * Too many nomination targets supplied.
299
+ **/
300
+ TooManyTargets: GenericPalletError<Rv>;
301
+
302
+ /**
303
+ * A nomination target was supplied that was blocked or otherwise not a validator.
304
+ **/
305
+ BadTarget: GenericPalletError<Rv>;
306
+
307
+ /**
308
+ * The user has enough bond and thus cannot be chilled forcefully by an external person.
309
+ **/
310
+ CannotChillOther: GenericPalletError<Rv>;
311
+
312
+ /**
313
+ * There are too many nominators in the system. Governance needs to adjust the staking
314
+ * settings to keep things safe for the runtime.
315
+ **/
316
+ TooManyNominators: GenericPalletError<Rv>;
317
+
318
+ /**
319
+ * There are too many validator candidates in the system. Governance needs to adjust the
320
+ * staking settings to keep things safe for the runtime.
321
+ **/
322
+ TooManyValidators: GenericPalletError<Rv>;
323
+
324
+ /**
325
+ * Commission is too low. Must be at least `MinCommission`.
326
+ **/
327
+ CommissionTooLow: GenericPalletError<Rv>;
328
+
329
+ /**
330
+ * Some bound is not met.
331
+ **/
332
+ BoundNotMet: GenericPalletError<Rv>;
333
+
334
+ /**
335
+ * Used when attempting to use deprecated controller account logic.
336
+ **/
337
+ ControllerDeprecated: GenericPalletError<Rv>;
338
+
339
+ /**
340
+ * Cannot reset a ledger.
341
+ **/
342
+ CannotRestoreLedger: GenericPalletError<Rv>;
343
+
344
+ /**
345
+ * Provided reward destination is not allowed.
346
+ **/
347
+ RewardDestinationRestricted: GenericPalletError<Rv>;
348
+
349
+ /**
350
+ * Not enough funds available to withdraw.
351
+ **/
352
+ NotEnoughFunds: GenericPalletError<Rv>;
353
+
354
+ /**
355
+ * Operation not allowed for virtual stakers.
356
+ **/
357
+ VirtualStakerNotAllowed: GenericPalletError<Rv>;
358
+
359
+ /**
360
+ * Generic pallet error
361
+ **/
362
+ [error: string]: GenericPalletError<Rv>;
363
+ };
364
+ /**
365
+ * Pallet `Session`'s errors
366
+ **/
367
+ session: {
368
+ /**
369
+ * Invalid ownership proof.
370
+ **/
371
+ InvalidProof: GenericPalletError<Rv>;
372
+
373
+ /**
374
+ * No associated validator ID for account.
375
+ **/
376
+ NoAssociatedValidatorId: GenericPalletError<Rv>;
377
+
378
+ /**
379
+ * Registered duplicate key.
380
+ **/
381
+ DuplicatedKey: GenericPalletError<Rv>;
382
+
383
+ /**
384
+ * No keys are associated with this account.
385
+ **/
386
+ NoKeys: GenericPalletError<Rv>;
387
+
388
+ /**
389
+ * Key setting account is not live, so it's impossible to associate keys.
390
+ **/
391
+ NoAccount: GenericPalletError<Rv>;
392
+
393
+ /**
394
+ * Generic pallet error
395
+ **/
396
+ [error: string]: GenericPalletError<Rv>;
397
+ };
398
+ /**
399
+ * Pallet `Grandpa`'s errors
400
+ **/
401
+ grandpa: {
402
+ /**
403
+ * Attempt to signal GRANDPA pause when the authority set isn't live
404
+ * (either paused or already pending pause).
405
+ **/
406
+ PauseFailed: GenericPalletError<Rv>;
407
+
408
+ /**
409
+ * Attempt to signal GRANDPA resume when the authority set isn't paused
410
+ * (either live or already pending resume).
411
+ **/
412
+ ResumeFailed: GenericPalletError<Rv>;
413
+
414
+ /**
415
+ * Attempt to signal GRANDPA change with one already pending.
416
+ **/
417
+ ChangePending: GenericPalletError<Rv>;
418
+
419
+ /**
420
+ * Cannot signal forced change so soon after last.
421
+ **/
422
+ TooSoon: GenericPalletError<Rv>;
423
+
424
+ /**
425
+ * A key ownership proof provided as part of an equivocation report is invalid.
426
+ **/
427
+ InvalidKeyOwnershipProof: GenericPalletError<Rv>;
428
+
429
+ /**
430
+ * An equivocation proof provided as part of an equivocation report is invalid.
431
+ **/
432
+ InvalidEquivocationProof: GenericPalletError<Rv>;
433
+
434
+ /**
435
+ * A given equivocation report is valid but already previously reported.
436
+ **/
437
+ DuplicateOffenceReport: GenericPalletError<Rv>;
438
+
439
+ /**
440
+ * Generic pallet error
441
+ **/
442
+ [error: string]: GenericPalletError<Rv>;
443
+ };
444
+ /**
445
+ * Pallet `Utility`'s errors
446
+ **/
447
+ utility: {
448
+ /**
449
+ * Too many calls batched.
450
+ **/
451
+ TooManyCalls: GenericPalletError<Rv>;
452
+
453
+ /**
454
+ * Generic pallet error
455
+ **/
456
+ [error: string]: GenericPalletError<Rv>;
457
+ };
458
+ /**
459
+ * Pallet `Identity`'s errors
460
+ **/
461
+ identity: {
462
+ /**
463
+ * Too many subs-accounts.
464
+ **/
465
+ TooManySubAccounts: GenericPalletError<Rv>;
466
+
467
+ /**
468
+ * Account isn't found.
469
+ **/
470
+ NotFound: GenericPalletError<Rv>;
471
+
472
+ /**
473
+ * Account isn't named.
474
+ **/
475
+ NotNamed: GenericPalletError<Rv>;
476
+
477
+ /**
478
+ * Empty index.
479
+ **/
480
+ EmptyIndex: GenericPalletError<Rv>;
481
+
482
+ /**
483
+ * Fee is changed.
484
+ **/
485
+ FeeChanged: GenericPalletError<Rv>;
486
+
487
+ /**
488
+ * No identity found.
489
+ **/
490
+ NoIdentity: GenericPalletError<Rv>;
491
+
492
+ /**
493
+ * Sticky judgement.
494
+ **/
495
+ StickyJudgement: GenericPalletError<Rv>;
496
+
497
+ /**
498
+ * Judgement given.
499
+ **/
500
+ JudgementGiven: GenericPalletError<Rv>;
501
+
502
+ /**
503
+ * Invalid judgement.
504
+ **/
505
+ InvalidJudgement: GenericPalletError<Rv>;
506
+
507
+ /**
508
+ * The index is invalid.
509
+ **/
510
+ InvalidIndex: GenericPalletError<Rv>;
511
+
512
+ /**
513
+ * The target is invalid.
514
+ **/
515
+ InvalidTarget: GenericPalletError<Rv>;
516
+
517
+ /**
518
+ * Maximum amount of registrars reached. Cannot add any more.
519
+ **/
520
+ TooManyRegistrars: GenericPalletError<Rv>;
521
+
522
+ /**
523
+ * Account ID is already named.
524
+ **/
525
+ AlreadyClaimed: GenericPalletError<Rv>;
526
+
527
+ /**
528
+ * Sender is not a sub-account.
529
+ **/
530
+ NotSub: GenericPalletError<Rv>;
531
+
532
+ /**
533
+ * Sub-account isn't owned by sender.
534
+ **/
535
+ NotOwned: GenericPalletError<Rv>;
536
+
537
+ /**
538
+ * The provided judgement was for a different identity.
539
+ **/
540
+ JudgementForDifferentIdentity: GenericPalletError<Rv>;
541
+
542
+ /**
543
+ * Error that occurs when there is an issue paying for judgement.
544
+ **/
545
+ JudgementPaymentFailed: GenericPalletError<Rv>;
546
+
547
+ /**
548
+ * The provided suffix is too long.
549
+ **/
550
+ InvalidSuffix: GenericPalletError<Rv>;
551
+
552
+ /**
553
+ * The sender does not have permission to issue a username.
554
+ **/
555
+ NotUsernameAuthority: GenericPalletError<Rv>;
556
+
557
+ /**
558
+ * The authority cannot allocate any more usernames.
559
+ **/
560
+ NoAllocation: GenericPalletError<Rv>;
561
+
562
+ /**
563
+ * The signature on a username was not valid.
564
+ **/
565
+ InvalidSignature: GenericPalletError<Rv>;
566
+
567
+ /**
568
+ * Setting this username requires a signature, but none was provided.
569
+ **/
570
+ RequiresSignature: GenericPalletError<Rv>;
571
+
572
+ /**
573
+ * The username does not meet the requirements.
574
+ **/
575
+ InvalidUsername: GenericPalletError<Rv>;
576
+
577
+ /**
578
+ * The username is already taken.
579
+ **/
580
+ UsernameTaken: GenericPalletError<Rv>;
581
+
582
+ /**
583
+ * The requested username does not exist.
584
+ **/
585
+ NoUsername: GenericPalletError<Rv>;
586
+
587
+ /**
588
+ * The username cannot be forcefully removed because it can still be accepted.
589
+ **/
590
+ NotExpired: GenericPalletError<Rv>;
591
+
592
+ /**
593
+ * Generic pallet error
594
+ **/
595
+ [error: string]: GenericPalletError<Rv>;
596
+ };
597
+ /**
598
+ * Pallet `Recovery`'s errors
599
+ **/
600
+ recovery: {
601
+ /**
602
+ * User is not allowed to make a call on behalf of this account
603
+ **/
604
+ NotAllowed: GenericPalletError<Rv>;
605
+
606
+ /**
607
+ * Threshold must be greater than zero
608
+ **/
609
+ ZeroThreshold: GenericPalletError<Rv>;
610
+
611
+ /**
612
+ * Friends list must be greater than zero and threshold
613
+ **/
614
+ NotEnoughFriends: GenericPalletError<Rv>;
615
+
616
+ /**
617
+ * Friends list must be less than max friends
618
+ **/
619
+ MaxFriends: GenericPalletError<Rv>;
620
+
621
+ /**
622
+ * Friends list must be sorted and free of duplicates
623
+ **/
624
+ NotSorted: GenericPalletError<Rv>;
625
+
626
+ /**
627
+ * This account is not set up for recovery
628
+ **/
629
+ NotRecoverable: GenericPalletError<Rv>;
630
+
631
+ /**
632
+ * This account is already set up for recovery
633
+ **/
634
+ AlreadyRecoverable: GenericPalletError<Rv>;
635
+
636
+ /**
637
+ * A recovery process has already started for this account
638
+ **/
639
+ AlreadyStarted: GenericPalletError<Rv>;
640
+
641
+ /**
642
+ * A recovery process has not started for this rescuer
643
+ **/
644
+ NotStarted: GenericPalletError<Rv>;
645
+
646
+ /**
647
+ * This account is not a friend who can vouch
648
+ **/
649
+ NotFriend: GenericPalletError<Rv>;
650
+
651
+ /**
652
+ * The friend must wait until the delay period to vouch for this recovery
653
+ **/
654
+ DelayPeriod: GenericPalletError<Rv>;
655
+
656
+ /**
657
+ * This user has already vouched for this recovery
658
+ **/
659
+ AlreadyVouched: GenericPalletError<Rv>;
660
+
661
+ /**
662
+ * The threshold for recovering this account has not been met
663
+ **/
664
+ Threshold: GenericPalletError<Rv>;
665
+
666
+ /**
667
+ * There are still active recovery attempts that need to be closed
668
+ **/
669
+ StillActive: GenericPalletError<Rv>;
670
+
671
+ /**
672
+ * This account is already set up for recovery
673
+ **/
674
+ AlreadyProxy: GenericPalletError<Rv>;
675
+
676
+ /**
677
+ * Some internal state is broken.
678
+ **/
679
+ BadState: GenericPalletError<Rv>;
680
+
681
+ /**
682
+ * Generic pallet error
683
+ **/
684
+ [error: string]: GenericPalletError<Rv>;
685
+ };
686
+ /**
687
+ * Pallet `Vesting`'s errors
688
+ **/
689
+ vesting: {
690
+ /**
691
+ * The account given is not vesting.
692
+ **/
693
+ NotVesting: GenericPalletError<Rv>;
694
+
695
+ /**
696
+ * The account already has `MaxVestingSchedules` count of schedules and thus
697
+ * cannot add another one. Consider merging existing schedules in order to add another.
698
+ **/
699
+ AtMaxVestingSchedules: GenericPalletError<Rv>;
700
+
701
+ /**
702
+ * Amount being transferred is too low to create a vesting schedule.
703
+ **/
704
+ AmountLow: GenericPalletError<Rv>;
705
+
706
+ /**
707
+ * An index was out of bounds of the vesting schedules.
708
+ **/
709
+ ScheduleIndexOutOfBounds: GenericPalletError<Rv>;
710
+
711
+ /**
712
+ * Failed to create a new schedule because some parameter was invalid.
713
+ **/
714
+ InvalidScheduleParams: GenericPalletError<Rv>;
715
+
716
+ /**
717
+ * Generic pallet error
718
+ **/
719
+ [error: string]: GenericPalletError<Rv>;
720
+ };
721
+ /**
722
+ * Pallet `Scheduler`'s errors
723
+ **/
724
+ scheduler: {
725
+ /**
726
+ * Failed to schedule a call
727
+ **/
728
+ FailedToSchedule: GenericPalletError<Rv>;
729
+
730
+ /**
731
+ * Cannot find the scheduled call.
732
+ **/
733
+ NotFound: GenericPalletError<Rv>;
734
+
735
+ /**
736
+ * Given target block number is in the past.
737
+ **/
738
+ TargetBlockNumberInPast: GenericPalletError<Rv>;
739
+
740
+ /**
741
+ * Reschedule failed because it does not change scheduled time.
742
+ **/
743
+ RescheduleNoChange: GenericPalletError<Rv>;
744
+
745
+ /**
746
+ * Attempt to use a non-named function on a named task.
747
+ **/
748
+ Named: GenericPalletError<Rv>;
749
+
750
+ /**
751
+ * Generic pallet error
752
+ **/
753
+ [error: string]: GenericPalletError<Rv>;
754
+ };
755
+ /**
756
+ * Pallet `Preimage`'s errors
757
+ **/
758
+ preimage: {
759
+ /**
760
+ * Preimage is too large to store on-chain.
761
+ **/
762
+ TooBig: GenericPalletError<Rv>;
763
+
764
+ /**
765
+ * Preimage has already been noted on-chain.
766
+ **/
767
+ AlreadyNoted: GenericPalletError<Rv>;
768
+
769
+ /**
770
+ * The user is not authorized to perform this action.
771
+ **/
772
+ NotAuthorized: GenericPalletError<Rv>;
773
+
774
+ /**
775
+ * The preimage cannot be removed since it has not yet been noted.
776
+ **/
777
+ NotNoted: GenericPalletError<Rv>;
778
+
779
+ /**
780
+ * A preimage may not be removed when there are outstanding requests.
781
+ **/
782
+ Requested: GenericPalletError<Rv>;
783
+
784
+ /**
785
+ * The preimage request cannot be removed since no outstanding requests exist.
786
+ **/
787
+ NotRequested: GenericPalletError<Rv>;
788
+
789
+ /**
790
+ * More than `MAX_HASH_UPGRADE_BULK_COUNT` hashes were requested to be upgraded at once.
791
+ **/
792
+ TooMany: GenericPalletError<Rv>;
793
+
794
+ /**
795
+ * Too few hashes were requested to be upgraded (i.e. zero).
796
+ **/
797
+ TooFew: GenericPalletError<Rv>;
798
+
799
+ /**
800
+ * No ticket with a cost was returned by [`Config::Consideration`] to store the preimage.
801
+ **/
802
+ NoCost: GenericPalletError<Rv>;
803
+
804
+ /**
805
+ * Generic pallet error
806
+ **/
807
+ [error: string]: GenericPalletError<Rv>;
808
+ };
809
+ /**
810
+ * Pallet `Sudo`'s errors
811
+ **/
812
+ sudo: {
813
+ /**
814
+ * Sender must be the Sudo account.
815
+ **/
816
+ RequireSudo: GenericPalletError<Rv>;
817
+
818
+ /**
819
+ * Generic pallet error
820
+ **/
821
+ [error: string]: GenericPalletError<Rv>;
822
+ };
823
+ /**
824
+ * Pallet `Proxy`'s errors
825
+ **/
826
+ proxy: {
827
+ /**
828
+ * There are too many proxies registered or too many announcements pending.
829
+ **/
830
+ TooMany: GenericPalletError<Rv>;
831
+
832
+ /**
833
+ * Proxy registration not found.
834
+ **/
835
+ NotFound: GenericPalletError<Rv>;
836
+
837
+ /**
838
+ * Sender is not a proxy of the account to be proxied.
839
+ **/
840
+ NotProxy: GenericPalletError<Rv>;
841
+
842
+ /**
843
+ * A call which is incompatible with the proxy type's filter was attempted.
844
+ **/
845
+ Unproxyable: GenericPalletError<Rv>;
846
+
847
+ /**
848
+ * Account is already a proxy.
849
+ **/
850
+ Duplicate: GenericPalletError<Rv>;
851
+
852
+ /**
853
+ * Call may not be made by proxy because it may escalate its privileges.
854
+ **/
855
+ NoPermission: GenericPalletError<Rv>;
856
+
857
+ /**
858
+ * Announcement, if made at all, was made too recently.
859
+ **/
860
+ Unannounced: GenericPalletError<Rv>;
861
+
862
+ /**
863
+ * Cannot add self as proxy.
864
+ **/
865
+ NoSelfProxy: GenericPalletError<Rv>;
866
+
867
+ /**
868
+ * Generic pallet error
869
+ **/
870
+ [error: string]: GenericPalletError<Rv>;
871
+ };
872
+ /**
873
+ * Pallet `Multisig`'s errors
874
+ **/
875
+ multisig: {
876
+ /**
877
+ * Threshold must be 2 or greater.
878
+ **/
879
+ MinimumThreshold: GenericPalletError<Rv>;
880
+
881
+ /**
882
+ * Call is already approved by this signatory.
883
+ **/
884
+ AlreadyApproved: GenericPalletError<Rv>;
885
+
886
+ /**
887
+ * Call doesn't need any (more) approvals.
888
+ **/
889
+ NoApprovalsNeeded: GenericPalletError<Rv>;
890
+
891
+ /**
892
+ * There are too few signatories in the list.
893
+ **/
894
+ TooFewSignatories: GenericPalletError<Rv>;
895
+
896
+ /**
897
+ * There are too many signatories in the list.
898
+ **/
899
+ TooManySignatories: GenericPalletError<Rv>;
900
+
901
+ /**
902
+ * The signatories were provided out of order; they should be ordered.
903
+ **/
904
+ SignatoriesOutOfOrder: GenericPalletError<Rv>;
905
+
906
+ /**
907
+ * The sender was contained in the other signatories; it shouldn't be.
908
+ **/
909
+ SenderInSignatories: GenericPalletError<Rv>;
910
+
911
+ /**
912
+ * Multisig operation not found when attempting to cancel.
913
+ **/
914
+ NotFound: GenericPalletError<Rv>;
915
+
916
+ /**
917
+ * Only the account that originally created the multisig is able to cancel it.
918
+ **/
919
+ NotOwner: GenericPalletError<Rv>;
920
+
921
+ /**
922
+ * No timepoint was given, yet the multisig operation is already underway.
923
+ **/
924
+ NoTimepoint: GenericPalletError<Rv>;
925
+
926
+ /**
927
+ * A different timepoint was given to the multisig operation that is underway.
928
+ **/
929
+ WrongTimepoint: GenericPalletError<Rv>;
930
+
931
+ /**
932
+ * A timepoint was given, yet no multisig operation is underway.
933
+ **/
934
+ UnexpectedTimepoint: GenericPalletError<Rv>;
935
+
936
+ /**
937
+ * The maximum weight information provided was too low.
938
+ **/
939
+ MaxWeightTooLow: GenericPalletError<Rv>;
940
+
941
+ /**
942
+ * The data to be stored is already stored.
943
+ **/
944
+ AlreadyStored: GenericPalletError<Rv>;
945
+
946
+ /**
947
+ * Generic pallet error
948
+ **/
949
+ [error: string]: GenericPalletError<Rv>;
950
+ };
951
+ /**
952
+ * Pallet `ElectionProviderMultiPhase`'s errors
953
+ **/
954
+ electionProviderMultiPhase: {
955
+ /**
956
+ * Submission was too early.
957
+ **/
958
+ PreDispatchEarlySubmission: GenericPalletError<Rv>;
959
+
960
+ /**
961
+ * Wrong number of winners presented.
962
+ **/
963
+ PreDispatchWrongWinnerCount: GenericPalletError<Rv>;
964
+
965
+ /**
966
+ * Submission was too weak, score-wise.
967
+ **/
968
+ PreDispatchWeakSubmission: GenericPalletError<Rv>;
969
+
970
+ /**
971
+ * The queue was full, and the solution was not better than any of the existing ones.
972
+ **/
973
+ SignedQueueFull: GenericPalletError<Rv>;
974
+
975
+ /**
976
+ * The origin failed to pay the deposit.
977
+ **/
978
+ SignedCannotPayDeposit: GenericPalletError<Rv>;
979
+
980
+ /**
981
+ * Witness data to dispatchable is invalid.
982
+ **/
983
+ SignedInvalidWitness: GenericPalletError<Rv>;
984
+
985
+ /**
986
+ * The signed submission consumes too much weight
987
+ **/
988
+ SignedTooMuchWeight: GenericPalletError<Rv>;
989
+
990
+ /**
991
+ * OCW submitted solution for wrong round
992
+ **/
993
+ OcwCallWrongEra: GenericPalletError<Rv>;
994
+
995
+ /**
996
+ * Snapshot metadata should exist but didn't.
997
+ **/
998
+ MissingSnapshotMetadata: GenericPalletError<Rv>;
999
+
1000
+ /**
1001
+ * `Self::insert_submission` returned an invalid index.
1002
+ **/
1003
+ InvalidSubmissionIndex: GenericPalletError<Rv>;
1004
+
1005
+ /**
1006
+ * The call is not allowed at this point.
1007
+ **/
1008
+ CallNotAllowed: GenericPalletError<Rv>;
1009
+
1010
+ /**
1011
+ * The fallback failed
1012
+ **/
1013
+ FallbackFailed: GenericPalletError<Rv>;
1014
+
1015
+ /**
1016
+ * Some bound not met
1017
+ **/
1018
+ BoundNotMet: GenericPalletError<Rv>;
1019
+
1020
+ /**
1021
+ * Submitted solution has too many winners
1022
+ **/
1023
+ TooManyWinners: GenericPalletError<Rv>;
1024
+
1025
+ /**
1026
+ * Submission was prepared for a different round.
1027
+ **/
1028
+ PreDispatchDifferentRound: GenericPalletError<Rv>;
1029
+
1030
+ /**
1031
+ * Generic pallet error
1032
+ **/
1033
+ [error: string]: GenericPalletError<Rv>;
1034
+ };
1035
+ /**
1036
+ * Pallet `VoterList`'s errors
1037
+ **/
1038
+ voterList: {
1039
+ /**
1040
+ * A error in the list interface implementation.
1041
+ **/
1042
+ List: GenericPalletError<Rv>;
1043
+
1044
+ /**
1045
+ * Generic pallet error
1046
+ **/
1047
+ [error: string]: GenericPalletError<Rv>;
1048
+ };
1049
+ /**
1050
+ * Pallet `NominationPools`'s errors
1051
+ **/
1052
+ nominationPools: {
1053
+ /**
1054
+ * A (bonded) pool id does not exist.
1055
+ **/
1056
+ PoolNotFound: GenericPalletError<Rv>;
1057
+
1058
+ /**
1059
+ * An account is not a member.
1060
+ **/
1061
+ PoolMemberNotFound: GenericPalletError<Rv>;
1062
+
1063
+ /**
1064
+ * A reward pool does not exist. In all cases this is a system logic error.
1065
+ **/
1066
+ RewardPoolNotFound: GenericPalletError<Rv>;
1067
+
1068
+ /**
1069
+ * A sub pool does not exist.
1070
+ **/
1071
+ SubPoolsNotFound: GenericPalletError<Rv>;
1072
+
1073
+ /**
1074
+ * An account is already delegating in another pool. An account may only belong to one
1075
+ * pool at a time.
1076
+ **/
1077
+ AccountBelongsToOtherPool: GenericPalletError<Rv>;
1078
+
1079
+ /**
1080
+ * The member is fully unbonded (and thus cannot access the bonded and reward pool
1081
+ * anymore to, for example, collect rewards).
1082
+ **/
1083
+ FullyUnbonding: GenericPalletError<Rv>;
1084
+
1085
+ /**
1086
+ * The member cannot unbond further chunks due to reaching the limit.
1087
+ **/
1088
+ MaxUnbondingLimit: GenericPalletError<Rv>;
1089
+
1090
+ /**
1091
+ * None of the funds can be withdrawn yet because the bonding duration has not passed.
1092
+ **/
1093
+ CannotWithdrawAny: GenericPalletError<Rv>;
1094
+
1095
+ /**
1096
+ * The amount does not meet the minimum bond to either join or create a pool.
1097
+ *
1098
+ * The depositor can never unbond to a value less than `Pallet::depositor_min_bond`. The
1099
+ * caller does not have nominating permissions for the pool. Members can never unbond to a
1100
+ * value below `MinJoinBond`.
1101
+ **/
1102
+ MinimumBondNotMet: GenericPalletError<Rv>;
1103
+
1104
+ /**
1105
+ * The transaction could not be executed due to overflow risk for the pool.
1106
+ **/
1107
+ OverflowRisk: GenericPalletError<Rv>;
1108
+
1109
+ /**
1110
+ * A pool must be in [`PoolState::Destroying`] in order for the depositor to unbond or for
1111
+ * other members to be permissionlessly unbonded.
1112
+ **/
1113
+ NotDestroying: GenericPalletError<Rv>;
1114
+
1115
+ /**
1116
+ * The caller does not have nominating permissions for the pool.
1117
+ **/
1118
+ NotNominator: GenericPalletError<Rv>;
1119
+
1120
+ /**
1121
+ * Either a) the caller cannot make a valid kick or b) the pool is not destroying.
1122
+ **/
1123
+ NotKickerOrDestroying: GenericPalletError<Rv>;
1124
+
1125
+ /**
1126
+ * The pool is not open to join
1127
+ **/
1128
+ NotOpen: GenericPalletError<Rv>;
1129
+
1130
+ /**
1131
+ * The system is maxed out on pools.
1132
+ **/
1133
+ MaxPools: GenericPalletError<Rv>;
1134
+
1135
+ /**
1136
+ * Too many members in the pool or system.
1137
+ **/
1138
+ MaxPoolMembers: GenericPalletError<Rv>;
1139
+
1140
+ /**
1141
+ * The pools state cannot be changed.
1142
+ **/
1143
+ CanNotChangeState: GenericPalletError<Rv>;
1144
+
1145
+ /**
1146
+ * The caller does not have adequate permissions.
1147
+ **/
1148
+ DoesNotHavePermission: GenericPalletError<Rv>;
1149
+
1150
+ /**
1151
+ * Metadata exceeds [`Config::MaxMetadataLen`]
1152
+ **/
1153
+ MetadataExceedsMaxLen: GenericPalletError<Rv>;
1154
+
1155
+ /**
1156
+ * Some error occurred that should never happen. This should be reported to the
1157
+ * maintainers.
1158
+ **/
1159
+ Defensive: GenericPalletError<Rv>;
1160
+
1161
+ /**
1162
+ * Partial unbonding now allowed permissionlessly.
1163
+ **/
1164
+ PartialUnbondNotAllowedPermissionlessly: GenericPalletError<Rv>;
1165
+
1166
+ /**
1167
+ * The pool's max commission cannot be set higher than the existing value.
1168
+ **/
1169
+ MaxCommissionRestricted: GenericPalletError<Rv>;
1170
+
1171
+ /**
1172
+ * The supplied commission exceeds the max allowed commission.
1173
+ **/
1174
+ CommissionExceedsMaximum: GenericPalletError<Rv>;
1175
+
1176
+ /**
1177
+ * The supplied commission exceeds global maximum commission.
1178
+ **/
1179
+ CommissionExceedsGlobalMaximum: GenericPalletError<Rv>;
1180
+
1181
+ /**
1182
+ * Not enough blocks have surpassed since the last commission update.
1183
+ **/
1184
+ CommissionChangeThrottled: GenericPalletError<Rv>;
1185
+
1186
+ /**
1187
+ * The submitted changes to commission change rate are not allowed.
1188
+ **/
1189
+ CommissionChangeRateNotAllowed: GenericPalletError<Rv>;
1190
+
1191
+ /**
1192
+ * There is no pending commission to claim.
1193
+ **/
1194
+ NoPendingCommission: GenericPalletError<Rv>;
1195
+
1196
+ /**
1197
+ * No commission current has been set.
1198
+ **/
1199
+ NoCommissionCurrentSet: GenericPalletError<Rv>;
1200
+
1201
+ /**
1202
+ * Pool id currently in use.
1203
+ **/
1204
+ PoolIdInUse: GenericPalletError<Rv>;
1205
+
1206
+ /**
1207
+ * Pool id provided is not correct/usable.
1208
+ **/
1209
+ InvalidPoolId: GenericPalletError<Rv>;
1210
+
1211
+ /**
1212
+ * Bonding extra is restricted to the exact pending reward amount.
1213
+ **/
1214
+ BondExtraRestricted: GenericPalletError<Rv>;
1215
+
1216
+ /**
1217
+ * No imbalance in the ED deposit for the pool.
1218
+ **/
1219
+ NothingToAdjust: GenericPalletError<Rv>;
1220
+
1221
+ /**
1222
+ * No slash pending that can be applied to the member.
1223
+ **/
1224
+ NothingToSlash: GenericPalletError<Rv>;
1225
+
1226
+ /**
1227
+ * The pool or member delegation has already migrated to delegate stake.
1228
+ **/
1229
+ AlreadyMigrated: GenericPalletError<Rv>;
1230
+
1231
+ /**
1232
+ * The pool or member delegation has not migrated yet to delegate stake.
1233
+ **/
1234
+ NotMigrated: GenericPalletError<Rv>;
1235
+
1236
+ /**
1237
+ * This call is not allowed in the current state of the pallet.
1238
+ **/
1239
+ NotSupported: GenericPalletError<Rv>;
1240
+
1241
+ /**
1242
+ * Generic pallet error
1243
+ **/
1244
+ [error: string]: GenericPalletError<Rv>;
1245
+ };
1246
+ /**
1247
+ * Pallet `FastUnstake`'s errors
1248
+ **/
1249
+ fastUnstake: {
1250
+ /**
1251
+ * The provided Controller account was not found.
1252
+ *
1253
+ * This means that the given account is not bonded.
1254
+ **/
1255
+ NotController: GenericPalletError<Rv>;
1256
+
1257
+ /**
1258
+ * The bonded account has already been queued.
1259
+ **/
1260
+ AlreadyQueued: GenericPalletError<Rv>;
1261
+
1262
+ /**
1263
+ * The bonded account has active unlocking chunks.
1264
+ **/
1265
+ NotFullyBonded: GenericPalletError<Rv>;
1266
+
1267
+ /**
1268
+ * The provided un-staker is not in the `Queue`.
1269
+ **/
1270
+ NotQueued: GenericPalletError<Rv>;
1271
+
1272
+ /**
1273
+ * The provided un-staker is already in Head, and cannot deregister.
1274
+ **/
1275
+ AlreadyHead: GenericPalletError<Rv>;
1276
+
1277
+ /**
1278
+ * The call is not allowed at this point because the pallet is not active.
1279
+ **/
1280
+ CallNotAllowed: GenericPalletError<Rv>;
1281
+
1282
+ /**
1283
+ * Generic pallet error
1284
+ **/
1285
+ [error: string]: GenericPalletError<Rv>;
1286
+ };
1287
+ /**
1288
+ * Pallet `ConvictionVoting`'s errors
1289
+ **/
1290
+ convictionVoting: {
1291
+ /**
1292
+ * Poll is not ongoing.
1293
+ **/
1294
+ NotOngoing: GenericPalletError<Rv>;
1295
+
1296
+ /**
1297
+ * The given account did not vote on the poll.
1298
+ **/
1299
+ NotVoter: GenericPalletError<Rv>;
1300
+
1301
+ /**
1302
+ * The actor has no permission to conduct the action.
1303
+ **/
1304
+ NoPermission: GenericPalletError<Rv>;
1305
+
1306
+ /**
1307
+ * The actor has no permission to conduct the action right now but will do in the future.
1308
+ **/
1309
+ NoPermissionYet: GenericPalletError<Rv>;
1310
+
1311
+ /**
1312
+ * The account is already delegating.
1313
+ **/
1314
+ AlreadyDelegating: GenericPalletError<Rv>;
1315
+
1316
+ /**
1317
+ * The account currently has votes attached to it and the operation cannot succeed until
1318
+ * these are removed through `remove_vote`.
1319
+ **/
1320
+ AlreadyVoting: GenericPalletError<Rv>;
1321
+
1322
+ /**
1323
+ * Too high a balance was provided that the account cannot afford.
1324
+ **/
1325
+ InsufficientFunds: GenericPalletError<Rv>;
1326
+
1327
+ /**
1328
+ * The account is not currently delegating.
1329
+ **/
1330
+ NotDelegating: GenericPalletError<Rv>;
1331
+
1332
+ /**
1333
+ * Delegation to oneself makes no sense.
1334
+ **/
1335
+ Nonsense: GenericPalletError<Rv>;
1336
+
1337
+ /**
1338
+ * Maximum number of votes reached.
1339
+ **/
1340
+ MaxVotesReached: GenericPalletError<Rv>;
1341
+
1342
+ /**
1343
+ * The class must be supplied since it is not easily determinable from the state.
1344
+ **/
1345
+ ClassNeeded: GenericPalletError<Rv>;
1346
+
1347
+ /**
1348
+ * The class ID supplied is invalid.
1349
+ **/
1350
+ BadClass: GenericPalletError<Rv>;
1351
+
1352
+ /**
1353
+ * Generic pallet error
1354
+ **/
1355
+ [error: string]: GenericPalletError<Rv>;
1356
+ };
1357
+ /**
1358
+ * Pallet `Referenda`'s errors
1359
+ **/
1360
+ referenda: {
1361
+ /**
1362
+ * Referendum is not ongoing.
1363
+ **/
1364
+ NotOngoing: GenericPalletError<Rv>;
1365
+
1366
+ /**
1367
+ * Referendum's decision deposit is already paid.
1368
+ **/
1369
+ HasDeposit: GenericPalletError<Rv>;
1370
+
1371
+ /**
1372
+ * The track identifier given was invalid.
1373
+ **/
1374
+ BadTrack: GenericPalletError<Rv>;
1375
+
1376
+ /**
1377
+ * There are already a full complement of referenda in progress for this track.
1378
+ **/
1379
+ Full: GenericPalletError<Rv>;
1380
+
1381
+ /**
1382
+ * The queue of the track is empty.
1383
+ **/
1384
+ QueueEmpty: GenericPalletError<Rv>;
1385
+
1386
+ /**
1387
+ * The referendum index provided is invalid in this context.
1388
+ **/
1389
+ BadReferendum: GenericPalletError<Rv>;
1390
+
1391
+ /**
1392
+ * There was nothing to do in the advancement.
1393
+ **/
1394
+ NothingToDo: GenericPalletError<Rv>;
1395
+
1396
+ /**
1397
+ * No track exists for the proposal origin.
1398
+ **/
1399
+ NoTrack: GenericPalletError<Rv>;
1400
+
1401
+ /**
1402
+ * Any deposit cannot be refunded until after the decision is over.
1403
+ **/
1404
+ Unfinished: GenericPalletError<Rv>;
1405
+
1406
+ /**
1407
+ * The deposit refunder is not the depositor.
1408
+ **/
1409
+ NoPermission: GenericPalletError<Rv>;
1410
+
1411
+ /**
1412
+ * The deposit cannot be refunded since none was made.
1413
+ **/
1414
+ NoDeposit: GenericPalletError<Rv>;
1415
+
1416
+ /**
1417
+ * The referendum status is invalid for this operation.
1418
+ **/
1419
+ BadStatus: GenericPalletError<Rv>;
1420
+
1421
+ /**
1422
+ * The preimage does not exist.
1423
+ **/
1424
+ PreimageNotExist: GenericPalletError<Rv>;
1425
+
1426
+ /**
1427
+ * The preimage is stored with a different length than the one provided.
1428
+ **/
1429
+ PreimageStoredWithDifferentLength: GenericPalletError<Rv>;
1430
+
1431
+ /**
1432
+ * Generic pallet error
1433
+ **/
1434
+ [error: string]: GenericPalletError<Rv>;
1435
+ };
1436
+ /**
1437
+ * Pallet `Whitelist`'s errors
1438
+ **/
1439
+ whitelist: {
1440
+ /**
1441
+ * The preimage of the call hash could not be loaded.
1442
+ **/
1443
+ UnavailablePreImage: GenericPalletError<Rv>;
1444
+
1445
+ /**
1446
+ * The call could not be decoded.
1447
+ **/
1448
+ UndecodableCall: GenericPalletError<Rv>;
1449
+
1450
+ /**
1451
+ * The weight of the decoded call was higher than the witness.
1452
+ **/
1453
+ InvalidCallWeightWitness: GenericPalletError<Rv>;
1454
+
1455
+ /**
1456
+ * The call was not whitelisted.
1457
+ **/
1458
+ CallIsNotWhitelisted: GenericPalletError<Rv>;
1459
+
1460
+ /**
1461
+ * The call was already whitelisted; No-Op.
1462
+ **/
1463
+ CallAlreadyWhitelisted: GenericPalletError<Rv>;
1464
+
1465
+ /**
1466
+ * Generic pallet error
1467
+ **/
1468
+ [error: string]: GenericPalletError<Rv>;
1469
+ };
1470
+ /**
1471
+ * Pallet `Treasury`'s errors
1472
+ **/
1473
+ treasury: {
1474
+ /**
1475
+ * No proposal, bounty or spend at that index.
1476
+ **/
1477
+ InvalidIndex: GenericPalletError<Rv>;
1478
+
1479
+ /**
1480
+ * Too many approvals in the queue.
1481
+ **/
1482
+ TooManyApprovals: GenericPalletError<Rv>;
1483
+
1484
+ /**
1485
+ * The spend origin is valid but the amount it is allowed to spend is lower than the
1486
+ * amount to be spent.
1487
+ **/
1488
+ InsufficientPermission: GenericPalletError<Rv>;
1489
+
1490
+ /**
1491
+ * Proposal has not been approved.
1492
+ **/
1493
+ ProposalNotApproved: GenericPalletError<Rv>;
1494
+
1495
+ /**
1496
+ * The balance of the asset kind is not convertible to the balance of the native asset.
1497
+ **/
1498
+ FailedToConvertBalance: GenericPalletError<Rv>;
1499
+
1500
+ /**
1501
+ * The spend has expired and cannot be claimed.
1502
+ **/
1503
+ SpendExpired: GenericPalletError<Rv>;
1504
+
1505
+ /**
1506
+ * The spend is not yet eligible for payout.
1507
+ **/
1508
+ EarlyPayout: GenericPalletError<Rv>;
1509
+
1510
+ /**
1511
+ * The payment has already been attempted.
1512
+ **/
1513
+ AlreadyAttempted: GenericPalletError<Rv>;
1514
+
1515
+ /**
1516
+ * There was some issue with the mechanism of payment.
1517
+ **/
1518
+ PayoutError: GenericPalletError<Rv>;
1519
+
1520
+ /**
1521
+ * The payout was not yet attempted/claimed.
1522
+ **/
1523
+ NotAttempted: GenericPalletError<Rv>;
1524
+
1525
+ /**
1526
+ * The payment has neither failed nor succeeded yet.
1527
+ **/
1528
+ Inconclusive: GenericPalletError<Rv>;
1529
+
1530
+ /**
1531
+ * Generic pallet error
1532
+ **/
1533
+ [error: string]: GenericPalletError<Rv>;
1534
+ };
1535
+ /**
1536
+ * Pallet `DelegatedStaking`'s errors
1537
+ **/
1538
+ delegatedStaking: {
1539
+ /**
1540
+ * The account cannot perform this operation.
1541
+ **/
1542
+ NotAllowed: GenericPalletError<Rv>;
1543
+
1544
+ /**
1545
+ * An existing staker cannot perform this action.
1546
+ **/
1547
+ AlreadyStaking: GenericPalletError<Rv>;
1548
+
1549
+ /**
1550
+ * Reward Destination cannot be same as `Agent` account.
1551
+ **/
1552
+ InvalidRewardDestination: GenericPalletError<Rv>;
1553
+
1554
+ /**
1555
+ * Delegation conditions are not met.
1556
+ *
1557
+ * Possible issues are
1558
+ * 1) Cannot delegate to self,
1559
+ * 2) Cannot delegate to multiple delegates.
1560
+ **/
1561
+ InvalidDelegation: GenericPalletError<Rv>;
1562
+
1563
+ /**
1564
+ * The account does not have enough funds to perform the operation.
1565
+ **/
1566
+ NotEnoughFunds: GenericPalletError<Rv>;
1567
+
1568
+ /**
1569
+ * Not an existing `Agent` account.
1570
+ **/
1571
+ NotAgent: GenericPalletError<Rv>;
1572
+
1573
+ /**
1574
+ * Not a Delegator account.
1575
+ **/
1576
+ NotDelegator: GenericPalletError<Rv>;
1577
+
1578
+ /**
1579
+ * Some corruption in internal state.
1580
+ **/
1581
+ BadState: GenericPalletError<Rv>;
1582
+
1583
+ /**
1584
+ * Unapplied pending slash restricts operation on `Agent`.
1585
+ **/
1586
+ UnappliedSlash: GenericPalletError<Rv>;
1587
+
1588
+ /**
1589
+ * `Agent` has no pending slash to be applied.
1590
+ **/
1591
+ NothingToSlash: GenericPalletError<Rv>;
1592
+
1593
+ /**
1594
+ * Failed to withdraw amount from Core Staking.
1595
+ **/
1596
+ WithdrawFailed: GenericPalletError<Rv>;
1597
+
1598
+ /**
1599
+ * Operation not supported by this pallet.
1600
+ **/
1601
+ NotSupported: GenericPalletError<Rv>;
1602
+
1603
+ /**
1604
+ * Generic pallet error
1605
+ **/
1606
+ [error: string]: GenericPalletError<Rv>;
1607
+ };
1608
+ /**
1609
+ * Pallet `Configuration`'s errors
1610
+ **/
1611
+ configuration: {
1612
+ /**
1613
+ * The new value for a configuration parameter is invalid.
1614
+ **/
1615
+ InvalidNewValue: GenericPalletError<Rv>;
1616
+
1617
+ /**
1618
+ * Generic pallet error
1619
+ **/
1620
+ [error: string]: GenericPalletError<Rv>;
1621
+ };
1622
+ /**
1623
+ * Pallet `ParaInclusion`'s errors
1624
+ **/
1625
+ paraInclusion: {
1626
+ /**
1627
+ * Validator index out of bounds.
1628
+ **/
1629
+ ValidatorIndexOutOfBounds: GenericPalletError<Rv>;
1630
+
1631
+ /**
1632
+ * Candidate submitted but para not scheduled.
1633
+ **/
1634
+ UnscheduledCandidate: GenericPalletError<Rv>;
1635
+
1636
+ /**
1637
+ * Head data exceeds the configured maximum.
1638
+ **/
1639
+ HeadDataTooLarge: GenericPalletError<Rv>;
1640
+
1641
+ /**
1642
+ * Code upgrade prematurely.
1643
+ **/
1644
+ PrematureCodeUpgrade: GenericPalletError<Rv>;
1645
+
1646
+ /**
1647
+ * Output code is too large
1648
+ **/
1649
+ NewCodeTooLarge: GenericPalletError<Rv>;
1650
+
1651
+ /**
1652
+ * The candidate's relay-parent was not allowed. Either it was
1653
+ * not recent enough or it didn't advance based on the last parachain block.
1654
+ **/
1655
+ DisallowedRelayParent: GenericPalletError<Rv>;
1656
+
1657
+ /**
1658
+ * Failed to compute group index for the core: either it's out of bounds
1659
+ * or the relay parent doesn't belong to the current session.
1660
+ **/
1661
+ InvalidAssignment: GenericPalletError<Rv>;
1662
+
1663
+ /**
1664
+ * Invalid group index in core assignment.
1665
+ **/
1666
+ InvalidGroupIndex: GenericPalletError<Rv>;
1667
+
1668
+ /**
1669
+ * Insufficient (non-majority) backing.
1670
+ **/
1671
+ InsufficientBacking: GenericPalletError<Rv>;
1672
+
1673
+ /**
1674
+ * Invalid (bad signature, unknown validator, etc.) backing.
1675
+ **/
1676
+ InvalidBacking: GenericPalletError<Rv>;
1677
+
1678
+ /**
1679
+ * Collator did not sign PoV.
1680
+ **/
1681
+ NotCollatorSigned: GenericPalletError<Rv>;
1682
+
1683
+ /**
1684
+ * The validation data hash does not match expected.
1685
+ **/
1686
+ ValidationDataHashMismatch: GenericPalletError<Rv>;
1687
+
1688
+ /**
1689
+ * The downward message queue is not processed correctly.
1690
+ **/
1691
+ IncorrectDownwardMessageHandling: GenericPalletError<Rv>;
1692
+
1693
+ /**
1694
+ * At least one upward message sent does not pass the acceptance criteria.
1695
+ **/
1696
+ InvalidUpwardMessages: GenericPalletError<Rv>;
1697
+
1698
+ /**
1699
+ * The candidate didn't follow the rules of HRMP watermark advancement.
1700
+ **/
1701
+ HrmpWatermarkMishandling: GenericPalletError<Rv>;
1702
+
1703
+ /**
1704
+ * The HRMP messages sent by the candidate is not valid.
1705
+ **/
1706
+ InvalidOutboundHrmp: GenericPalletError<Rv>;
1707
+
1708
+ /**
1709
+ * The validation code hash of the candidate is not valid.
1710
+ **/
1711
+ InvalidValidationCodeHash: GenericPalletError<Rv>;
1712
+
1713
+ /**
1714
+ * The `para_head` hash in the candidate descriptor doesn't match the hash of the actual
1715
+ * para head in the commitments.
1716
+ **/
1717
+ ParaHeadMismatch: GenericPalletError<Rv>;
1718
+
1719
+ /**
1720
+ * Generic pallet error
1721
+ **/
1722
+ [error: string]: GenericPalletError<Rv>;
1723
+ };
1724
+ /**
1725
+ * Pallet `ParaInherent`'s errors
1726
+ **/
1727
+ paraInherent: {
1728
+ /**
1729
+ * Inclusion inherent called more than once per block.
1730
+ **/
1731
+ TooManyInclusionInherents: GenericPalletError<Rv>;
1732
+
1733
+ /**
1734
+ * The hash of the submitted parent header doesn't correspond to the saved block hash of
1735
+ * the parent.
1736
+ **/
1737
+ InvalidParentHeader: GenericPalletError<Rv>;
1738
+
1739
+ /**
1740
+ * The data given to the inherent will result in an overweight block.
1741
+ **/
1742
+ InherentOverweight: GenericPalletError<Rv>;
1743
+
1744
+ /**
1745
+ * A candidate was filtered during inherent execution. This should have only been done
1746
+ * during creation.
1747
+ **/
1748
+ CandidatesFilteredDuringExecution: GenericPalletError<Rv>;
1749
+
1750
+ /**
1751
+ * Too many candidates supplied.
1752
+ **/
1753
+ UnscheduledCandidate: GenericPalletError<Rv>;
1754
+
1755
+ /**
1756
+ * Generic pallet error
1757
+ **/
1758
+ [error: string]: GenericPalletError<Rv>;
1759
+ };
1760
+ /**
1761
+ * Pallet `Paras`'s errors
1762
+ **/
1763
+ paras: {
1764
+ /**
1765
+ * Para is not registered in our system.
1766
+ **/
1767
+ NotRegistered: GenericPalletError<Rv>;
1768
+
1769
+ /**
1770
+ * Para cannot be onboarded because it is already tracked by our system.
1771
+ **/
1772
+ CannotOnboard: GenericPalletError<Rv>;
1773
+
1774
+ /**
1775
+ * Para cannot be offboarded at this time.
1776
+ **/
1777
+ CannotOffboard: GenericPalletError<Rv>;
1778
+
1779
+ /**
1780
+ * Para cannot be upgraded to a lease holding parachain.
1781
+ **/
1782
+ CannotUpgrade: GenericPalletError<Rv>;
1783
+
1784
+ /**
1785
+ * Para cannot be downgraded to an on-demand parachain.
1786
+ **/
1787
+ CannotDowngrade: GenericPalletError<Rv>;
1788
+
1789
+ /**
1790
+ * The statement for PVF pre-checking is stale.
1791
+ **/
1792
+ PvfCheckStatementStale: GenericPalletError<Rv>;
1793
+
1794
+ /**
1795
+ * The statement for PVF pre-checking is for a future session.
1796
+ **/
1797
+ PvfCheckStatementFuture: GenericPalletError<Rv>;
1798
+
1799
+ /**
1800
+ * Claimed validator index is out of bounds.
1801
+ **/
1802
+ PvfCheckValidatorIndexOutOfBounds: GenericPalletError<Rv>;
1803
+
1804
+ /**
1805
+ * The signature for the PVF pre-checking is invalid.
1806
+ **/
1807
+ PvfCheckInvalidSignature: GenericPalletError<Rv>;
1808
+
1809
+ /**
1810
+ * The given validator already has cast a vote.
1811
+ **/
1812
+ PvfCheckDoubleVote: GenericPalletError<Rv>;
1813
+
1814
+ /**
1815
+ * The given PVF does not exist at the moment of process a vote.
1816
+ **/
1817
+ PvfCheckSubjectInvalid: GenericPalletError<Rv>;
1818
+
1819
+ /**
1820
+ * Parachain cannot currently schedule a code upgrade.
1821
+ **/
1822
+ CannotUpgradeCode: GenericPalletError<Rv>;
1823
+
1824
+ /**
1825
+ * Invalid validation code size.
1826
+ **/
1827
+ InvalidCode: GenericPalletError<Rv>;
1828
+
1829
+ /**
1830
+ * Generic pallet error
1831
+ **/
1832
+ [error: string]: GenericPalletError<Rv>;
1833
+ };
1834
+ /**
1835
+ * Pallet `Hrmp`'s errors
1836
+ **/
1837
+ hrmp: {
1838
+ /**
1839
+ * The sender tried to open a channel to themselves.
1840
+ **/
1841
+ OpenHrmpChannelToSelf: GenericPalletError<Rv>;
1842
+
1843
+ /**
1844
+ * The recipient is not a valid para.
1845
+ **/
1846
+ OpenHrmpChannelInvalidRecipient: GenericPalletError<Rv>;
1847
+
1848
+ /**
1849
+ * The requested capacity is zero.
1850
+ **/
1851
+ OpenHrmpChannelZeroCapacity: GenericPalletError<Rv>;
1852
+
1853
+ /**
1854
+ * The requested capacity exceeds the global limit.
1855
+ **/
1856
+ OpenHrmpChannelCapacityExceedsLimit: GenericPalletError<Rv>;
1857
+
1858
+ /**
1859
+ * The requested maximum message size is 0.
1860
+ **/
1861
+ OpenHrmpChannelZeroMessageSize: GenericPalletError<Rv>;
1862
+
1863
+ /**
1864
+ * The open request requested the message size that exceeds the global limit.
1865
+ **/
1866
+ OpenHrmpChannelMessageSizeExceedsLimit: GenericPalletError<Rv>;
1867
+
1868
+ /**
1869
+ * The channel already exists
1870
+ **/
1871
+ OpenHrmpChannelAlreadyExists: GenericPalletError<Rv>;
1872
+
1873
+ /**
1874
+ * There is already a request to open the same channel.
1875
+ **/
1876
+ OpenHrmpChannelAlreadyRequested: GenericPalletError<Rv>;
1877
+
1878
+ /**
1879
+ * The sender already has the maximum number of allowed outbound channels.
1880
+ **/
1881
+ OpenHrmpChannelLimitExceeded: GenericPalletError<Rv>;
1882
+
1883
+ /**
1884
+ * The channel from the sender to the origin doesn't exist.
1885
+ **/
1886
+ AcceptHrmpChannelDoesntExist: GenericPalletError<Rv>;
1887
+
1888
+ /**
1889
+ * The channel is already confirmed.
1890
+ **/
1891
+ AcceptHrmpChannelAlreadyConfirmed: GenericPalletError<Rv>;
1892
+
1893
+ /**
1894
+ * The recipient already has the maximum number of allowed inbound channels.
1895
+ **/
1896
+ AcceptHrmpChannelLimitExceeded: GenericPalletError<Rv>;
1897
+
1898
+ /**
1899
+ * The origin tries to close a channel where it is neither the sender nor the recipient.
1900
+ **/
1901
+ CloseHrmpChannelUnauthorized: GenericPalletError<Rv>;
1902
+
1903
+ /**
1904
+ * The channel to be closed doesn't exist.
1905
+ **/
1906
+ CloseHrmpChannelDoesntExist: GenericPalletError<Rv>;
1907
+
1908
+ /**
1909
+ * The channel close request is already requested.
1910
+ **/
1911
+ CloseHrmpChannelAlreadyUnderway: GenericPalletError<Rv>;
1912
+
1913
+ /**
1914
+ * Canceling is requested by neither the sender nor recipient of the open channel request.
1915
+ **/
1916
+ CancelHrmpOpenChannelUnauthorized: GenericPalletError<Rv>;
1917
+
1918
+ /**
1919
+ * The open request doesn't exist.
1920
+ **/
1921
+ OpenHrmpChannelDoesntExist: GenericPalletError<Rv>;
1922
+
1923
+ /**
1924
+ * Cannot cancel an HRMP open channel request because it is already confirmed.
1925
+ **/
1926
+ OpenHrmpChannelAlreadyConfirmed: GenericPalletError<Rv>;
1927
+
1928
+ /**
1929
+ * The provided witness data is wrong.
1930
+ **/
1931
+ WrongWitness: GenericPalletError<Rv>;
1932
+
1933
+ /**
1934
+ * The channel between these two chains cannot be authorized.
1935
+ **/
1936
+ ChannelCreationNotAuthorized: GenericPalletError<Rv>;
1937
+
1938
+ /**
1939
+ * Generic pallet error
1940
+ **/
1941
+ [error: string]: GenericPalletError<Rv>;
1942
+ };
1943
+ /**
1944
+ * Pallet `ParasDisputes`'s errors
1945
+ **/
1946
+ parasDisputes: {
1947
+ /**
1948
+ * Duplicate dispute statement sets provided.
1949
+ **/
1950
+ DuplicateDisputeStatementSets: GenericPalletError<Rv>;
1951
+
1952
+ /**
1953
+ * Ancient dispute statement provided.
1954
+ **/
1955
+ AncientDisputeStatement: GenericPalletError<Rv>;
1956
+
1957
+ /**
1958
+ * Validator index on statement is out of bounds for session.
1959
+ **/
1960
+ ValidatorIndexOutOfBounds: GenericPalletError<Rv>;
1961
+
1962
+ /**
1963
+ * Invalid signature on statement.
1964
+ **/
1965
+ InvalidSignature: GenericPalletError<Rv>;
1966
+
1967
+ /**
1968
+ * Validator vote submitted more than once to dispute.
1969
+ **/
1970
+ DuplicateStatement: GenericPalletError<Rv>;
1971
+
1972
+ /**
1973
+ * A dispute where there are only votes on one side.
1974
+ **/
1975
+ SingleSidedDispute: GenericPalletError<Rv>;
1976
+
1977
+ /**
1978
+ * A dispute vote from a malicious backer.
1979
+ **/
1980
+ MaliciousBacker: GenericPalletError<Rv>;
1981
+
1982
+ /**
1983
+ * No backing votes were provides along dispute statements.
1984
+ **/
1985
+ MissingBackingVotes: GenericPalletError<Rv>;
1986
+
1987
+ /**
1988
+ * Unconfirmed dispute statement sets provided.
1989
+ **/
1990
+ UnconfirmedDispute: GenericPalletError<Rv>;
1991
+
1992
+ /**
1993
+ * Generic pallet error
1994
+ **/
1995
+ [error: string]: GenericPalletError<Rv>;
1996
+ };
1997
+ /**
1998
+ * Pallet `ParasSlashing`'s errors
1999
+ **/
2000
+ parasSlashing: {
2001
+ /**
2002
+ * The key ownership proof is invalid.
2003
+ **/
2004
+ InvalidKeyOwnershipProof: GenericPalletError<Rv>;
2005
+
2006
+ /**
2007
+ * The session index is too old or invalid.
2008
+ **/
2009
+ InvalidSessionIndex: GenericPalletError<Rv>;
2010
+
2011
+ /**
2012
+ * The candidate hash is invalid.
2013
+ **/
2014
+ InvalidCandidateHash: GenericPalletError<Rv>;
2015
+
2016
+ /**
2017
+ * There is no pending slash for the given validator index and time
2018
+ * slot.
2019
+ **/
2020
+ InvalidValidatorIndex: GenericPalletError<Rv>;
2021
+
2022
+ /**
2023
+ * The validator index does not match the validator id.
2024
+ **/
2025
+ ValidatorIndexIdMismatch: GenericPalletError<Rv>;
2026
+
2027
+ /**
2028
+ * The given slashing report is valid but already previously reported.
2029
+ **/
2030
+ DuplicateSlashingReport: GenericPalletError<Rv>;
2031
+
2032
+ /**
2033
+ * Generic pallet error
2034
+ **/
2035
+ [error: string]: GenericPalletError<Rv>;
2036
+ };
2037
+ /**
2038
+ * Pallet `OnDemandAssignmentProvider`'s errors
2039
+ **/
2040
+ onDemandAssignmentProvider: {
2041
+ /**
2042
+ * The order queue is full, `place_order` will not continue.
2043
+ **/
2044
+ QueueFull: GenericPalletError<Rv>;
2045
+
2046
+ /**
2047
+ * The current spot price is higher than the max amount specified in the `place_order`
2048
+ * call, making it invalid.
2049
+ **/
2050
+ SpotPriceHigherThanMaxAmount: GenericPalletError<Rv>;
2051
+
2052
+ /**
2053
+ * Generic pallet error
2054
+ **/
2055
+ [error: string]: GenericPalletError<Rv>;
2056
+ };
2057
+ /**
2058
+ * Pallet `CoretimeAssignmentProvider`'s errors
2059
+ **/
2060
+ coretimeAssignmentProvider: {
2061
+ AssignmentsEmpty: GenericPalletError<Rv>;
2062
+
2063
+ /**
2064
+ * Assignments together exceeded 57600.
2065
+ **/
2066
+ OverScheduled: GenericPalletError<Rv>;
2067
+
2068
+ /**
2069
+ * Assignments together less than 57600
2070
+ **/
2071
+ UnderScheduled: GenericPalletError<Rv>;
2072
+
2073
+ /**
2074
+ * assign_core is only allowed to append new assignments at the end of already existing
2075
+ * ones.
2076
+ **/
2077
+ DisallowedInsert: GenericPalletError<Rv>;
2078
+
2079
+ /**
2080
+ * Tried to insert a schedule for the same core and block number as an existing schedule
2081
+ **/
2082
+ DuplicateInsert: GenericPalletError<Rv>;
2083
+
2084
+ /**
2085
+ * Tried to add an unsorted set of assignments
2086
+ **/
2087
+ AssignmentsNotSorted: GenericPalletError<Rv>;
2088
+
2089
+ /**
2090
+ * Generic pallet error
2091
+ **/
2092
+ [error: string]: GenericPalletError<Rv>;
2093
+ };
2094
+ /**
2095
+ * Pallet `Registrar`'s errors
2096
+ **/
2097
+ registrar: {
2098
+ /**
2099
+ * The ID is not registered.
2100
+ **/
2101
+ NotRegistered: GenericPalletError<Rv>;
2102
+
2103
+ /**
2104
+ * The ID is already registered.
2105
+ **/
2106
+ AlreadyRegistered: GenericPalletError<Rv>;
2107
+
2108
+ /**
2109
+ * The caller is not the owner of this Id.
2110
+ **/
2111
+ NotOwner: GenericPalletError<Rv>;
2112
+
2113
+ /**
2114
+ * Invalid para code size.
2115
+ **/
2116
+ CodeTooLarge: GenericPalletError<Rv>;
2117
+
2118
+ /**
2119
+ * Invalid para head data size.
2120
+ **/
2121
+ HeadDataTooLarge: GenericPalletError<Rv>;
2122
+
2123
+ /**
2124
+ * Para is not a Parachain.
2125
+ **/
2126
+ NotParachain: GenericPalletError<Rv>;
2127
+
2128
+ /**
2129
+ * Para is not a Parathread (on-demand parachain).
2130
+ **/
2131
+ NotParathread: GenericPalletError<Rv>;
2132
+
2133
+ /**
2134
+ * Cannot deregister para
2135
+ **/
2136
+ CannotDeregister: GenericPalletError<Rv>;
2137
+
2138
+ /**
2139
+ * Cannot schedule downgrade of lease holding parachain to on-demand parachain
2140
+ **/
2141
+ CannotDowngrade: GenericPalletError<Rv>;
2142
+
2143
+ /**
2144
+ * Cannot schedule upgrade of on-demand parachain to lease holding parachain
2145
+ **/
2146
+ CannotUpgrade: GenericPalletError<Rv>;
2147
+
2148
+ /**
2149
+ * Para is locked from manipulation by the manager. Must use parachain or relay chain
2150
+ * governance.
2151
+ **/
2152
+ ParaLocked: GenericPalletError<Rv>;
2153
+
2154
+ /**
2155
+ * The ID given for registration has not been reserved.
2156
+ **/
2157
+ NotReserved: GenericPalletError<Rv>;
2158
+
2159
+ /**
2160
+ * The validation code is invalid.
2161
+ **/
2162
+ InvalidCode: GenericPalletError<Rv>;
2163
+
2164
+ /**
2165
+ * Cannot perform a parachain slot / lifecycle swap. Check that the state of both paras
2166
+ * are correct for the swap to work.
2167
+ **/
2168
+ CannotSwap: GenericPalletError<Rv>;
2169
+
2170
+ /**
2171
+ * Generic pallet error
2172
+ **/
2173
+ [error: string]: GenericPalletError<Rv>;
2174
+ };
2175
+ /**
2176
+ * Pallet `Slots`'s errors
2177
+ **/
2178
+ slots: {
2179
+ /**
2180
+ * The parachain ID is not onboarding.
2181
+ **/
2182
+ ParaNotOnboarding: GenericPalletError<Rv>;
2183
+
2184
+ /**
2185
+ * There was an error with the lease.
2186
+ **/
2187
+ LeaseError: GenericPalletError<Rv>;
2188
+
2189
+ /**
2190
+ * Generic pallet error
2191
+ **/
2192
+ [error: string]: GenericPalletError<Rv>;
2193
+ };
2194
+ /**
2195
+ * Pallet `ParasSudoWrapper`'s errors
2196
+ **/
2197
+ parasSudoWrapper: {
2198
+ /**
2199
+ * The specified parachain is not registered.
2200
+ **/
2201
+ ParaDoesntExist: GenericPalletError<Rv>;
2202
+
2203
+ /**
2204
+ * The specified parachain is already registered.
2205
+ **/
2206
+ ParaAlreadyExists: GenericPalletError<Rv>;
2207
+
2208
+ /**
2209
+ * A DMP message couldn't be sent because it exceeds the maximum size allowed for a
2210
+ * downward message.
2211
+ **/
2212
+ ExceedsMaxMessageSize: GenericPalletError<Rv>;
2213
+
2214
+ /**
2215
+ * Could not schedule para cleanup.
2216
+ **/
2217
+ CouldntCleanup: GenericPalletError<Rv>;
2218
+
2219
+ /**
2220
+ * Not a parathread (on-demand parachain).
2221
+ **/
2222
+ NotParathread: GenericPalletError<Rv>;
2223
+
2224
+ /**
2225
+ * Not a lease holding parachain.
2226
+ **/
2227
+ NotParachain: GenericPalletError<Rv>;
2228
+
2229
+ /**
2230
+ * Cannot upgrade on-demand parachain to lease holding parachain.
2231
+ **/
2232
+ CannotUpgrade: GenericPalletError<Rv>;
2233
+
2234
+ /**
2235
+ * Cannot downgrade lease holding parachain to on-demand.
2236
+ **/
2237
+ CannotDowngrade: GenericPalletError<Rv>;
2238
+
2239
+ /**
2240
+ * There are more cores than supported by the runtime.
2241
+ **/
2242
+ TooManyCores: GenericPalletError<Rv>;
2243
+
2244
+ /**
2245
+ * Generic pallet error
2246
+ **/
2247
+ [error: string]: GenericPalletError<Rv>;
2248
+ };
2249
+ /**
2250
+ * Pallet `Auctions`'s errors
2251
+ **/
2252
+ auctions: {
2253
+ /**
2254
+ * This auction is already in progress.
2255
+ **/
2256
+ AuctionInProgress: GenericPalletError<Rv>;
2257
+
2258
+ /**
2259
+ * The lease period is in the past.
2260
+ **/
2261
+ LeasePeriodInPast: GenericPalletError<Rv>;
2262
+
2263
+ /**
2264
+ * Para is not registered
2265
+ **/
2266
+ ParaNotRegistered: GenericPalletError<Rv>;
2267
+
2268
+ /**
2269
+ * Not a current auction.
2270
+ **/
2271
+ NotCurrentAuction: GenericPalletError<Rv>;
2272
+
2273
+ /**
2274
+ * Not an auction.
2275
+ **/
2276
+ NotAuction: GenericPalletError<Rv>;
2277
+
2278
+ /**
2279
+ * Auction has already ended.
2280
+ **/
2281
+ AuctionEnded: GenericPalletError<Rv>;
2282
+
2283
+ /**
2284
+ * The para is already leased out for part of this range.
2285
+ **/
2286
+ AlreadyLeasedOut: GenericPalletError<Rv>;
2287
+
2288
+ /**
2289
+ * Generic pallet error
2290
+ **/
2291
+ [error: string]: GenericPalletError<Rv>;
2292
+ };
2293
+ /**
2294
+ * Pallet `Crowdloan`'s errors
2295
+ **/
2296
+ crowdloan: {
2297
+ /**
2298
+ * The current lease period is more than the first lease period.
2299
+ **/
2300
+ FirstPeriodInPast: GenericPalletError<Rv>;
2301
+
2302
+ /**
2303
+ * The first lease period needs to at least be less than 3 `max_value`.
2304
+ **/
2305
+ FirstPeriodTooFarInFuture: GenericPalletError<Rv>;
2306
+
2307
+ /**
2308
+ * Last lease period must be greater than first lease period.
2309
+ **/
2310
+ LastPeriodBeforeFirstPeriod: GenericPalletError<Rv>;
2311
+
2312
+ /**
2313
+ * The last lease period cannot be more than 3 periods after the first period.
2314
+ **/
2315
+ LastPeriodTooFarInFuture: GenericPalletError<Rv>;
2316
+
2317
+ /**
2318
+ * The campaign ends before the current block number. The end must be in the future.
2319
+ **/
2320
+ CannotEndInPast: GenericPalletError<Rv>;
2321
+
2322
+ /**
2323
+ * The end date for this crowdloan is not sensible.
2324
+ **/
2325
+ EndTooFarInFuture: GenericPalletError<Rv>;
2326
+
2327
+ /**
2328
+ * There was an overflow.
2329
+ **/
2330
+ Overflow: GenericPalletError<Rv>;
2331
+
2332
+ /**
2333
+ * The contribution was below the minimum, `MinContribution`.
2334
+ **/
2335
+ ContributionTooSmall: GenericPalletError<Rv>;
2336
+
2337
+ /**
2338
+ * Invalid fund index.
2339
+ **/
2340
+ InvalidParaId: GenericPalletError<Rv>;
2341
+
2342
+ /**
2343
+ * Contributions exceed maximum amount.
2344
+ **/
2345
+ CapExceeded: GenericPalletError<Rv>;
2346
+
2347
+ /**
2348
+ * The contribution period has already ended.
2349
+ **/
2350
+ ContributionPeriodOver: GenericPalletError<Rv>;
2351
+
2352
+ /**
2353
+ * The origin of this call is invalid.
2354
+ **/
2355
+ InvalidOrigin: GenericPalletError<Rv>;
2356
+
2357
+ /**
2358
+ * This crowdloan does not correspond to a parachain.
2359
+ **/
2360
+ NotParachain: GenericPalletError<Rv>;
2361
+
2362
+ /**
2363
+ * This parachain lease is still active and retirement cannot yet begin.
2364
+ **/
2365
+ LeaseActive: GenericPalletError<Rv>;
2366
+
2367
+ /**
2368
+ * This parachain's bid or lease is still active and withdraw cannot yet begin.
2369
+ **/
2370
+ BidOrLeaseActive: GenericPalletError<Rv>;
2371
+
2372
+ /**
2373
+ * The crowdloan has not yet ended.
2374
+ **/
2375
+ FundNotEnded: GenericPalletError<Rv>;
2376
+
2377
+ /**
2378
+ * There are no contributions stored in this crowdloan.
2379
+ **/
2380
+ NoContributions: GenericPalletError<Rv>;
2381
+
2382
+ /**
2383
+ * The crowdloan is not ready to dissolve. Potentially still has a slot or in retirement
2384
+ * period.
2385
+ **/
2386
+ NotReadyToDissolve: GenericPalletError<Rv>;
2387
+
2388
+ /**
2389
+ * Invalid signature.
2390
+ **/
2391
+ InvalidSignature: GenericPalletError<Rv>;
2392
+
2393
+ /**
2394
+ * The provided memo is too large.
2395
+ **/
2396
+ MemoTooLarge: GenericPalletError<Rv>;
2397
+
2398
+ /**
2399
+ * The fund is already in `NewRaise`
2400
+ **/
2401
+ AlreadyInNewRaise: GenericPalletError<Rv>;
2402
+
2403
+ /**
2404
+ * No contributions allowed during the VRF delay
2405
+ **/
2406
+ VrfDelayInProgress: GenericPalletError<Rv>;
2407
+
2408
+ /**
2409
+ * A lease period has not started yet, due to an offset in the starting block.
2410
+ **/
2411
+ NoLeasePeriod: GenericPalletError<Rv>;
2412
+
2413
+ /**
2414
+ * Generic pallet error
2415
+ **/
2416
+ [error: string]: GenericPalletError<Rv>;
2417
+ };
2418
+ /**
2419
+ * Pallet `AssignedSlots`'s errors
2420
+ **/
2421
+ assignedSlots: {
2422
+ /**
2423
+ * The specified parachain is not registered.
2424
+ **/
2425
+ ParaDoesntExist: GenericPalletError<Rv>;
2426
+
2427
+ /**
2428
+ * Not a parathread (on-demand parachain).
2429
+ **/
2430
+ NotParathread: GenericPalletError<Rv>;
2431
+
2432
+ /**
2433
+ * Cannot upgrade on-demand parachain to lease holding
2434
+ * parachain.
2435
+ **/
2436
+ CannotUpgrade: GenericPalletError<Rv>;
2437
+
2438
+ /**
2439
+ * Cannot downgrade lease holding parachain to
2440
+ * on-demand.
2441
+ **/
2442
+ CannotDowngrade: GenericPalletError<Rv>;
2443
+
2444
+ /**
2445
+ * Permanent or Temporary slot already assigned.
2446
+ **/
2447
+ SlotAlreadyAssigned: GenericPalletError<Rv>;
2448
+
2449
+ /**
2450
+ * Permanent or Temporary slot has not been assigned.
2451
+ **/
2452
+ SlotNotAssigned: GenericPalletError<Rv>;
2453
+
2454
+ /**
2455
+ * An ongoing lease already exists.
2456
+ **/
2457
+ OngoingLeaseExists: GenericPalletError<Rv>;
2458
+ MaxPermanentSlotsExceeded: GenericPalletError<Rv>;
2459
+ MaxTemporarySlotsExceeded: GenericPalletError<Rv>;
2460
+
2461
+ /**
2462
+ * Generic pallet error
2463
+ **/
2464
+ [error: string]: GenericPalletError<Rv>;
2465
+ };
2466
+ /**
2467
+ * Pallet `Coretime`'s errors
2468
+ **/
2469
+ coretime: {
2470
+ /**
2471
+ * The paraid making the call is not the coretime brokerage system parachain.
2472
+ **/
2473
+ NotBroker: GenericPalletError<Rv>;
2474
+
2475
+ /**
2476
+ * Requested revenue information `when` parameter was in the future from the current
2477
+ * block height.
2478
+ **/
2479
+ RequestedFutureRevenue: GenericPalletError<Rv>;
2480
+
2481
+ /**
2482
+ * Failed to transfer assets to the coretime chain
2483
+ **/
2484
+ AssetTransferFailed: GenericPalletError<Rv>;
2485
+
2486
+ /**
2487
+ * Generic pallet error
2488
+ **/
2489
+ [error: string]: GenericPalletError<Rv>;
2490
+ };
2491
+ /**
2492
+ * Pallet `XcmPallet`'s errors
2493
+ **/
2494
+ xcmPallet: {
2495
+ /**
2496
+ * The desired destination was unreachable, generally because there is a no way of routing
2497
+ * to it.
2498
+ **/
2499
+ Unreachable: GenericPalletError<Rv>;
2500
+
2501
+ /**
2502
+ * There was some other issue (i.e. not to do with routing) in sending the message.
2503
+ * Perhaps a lack of space for buffering the message.
2504
+ **/
2505
+ SendFailure: GenericPalletError<Rv>;
2506
+
2507
+ /**
2508
+ * The message execution fails the filter.
2509
+ **/
2510
+ Filtered: GenericPalletError<Rv>;
2511
+
2512
+ /**
2513
+ * The message's weight could not be determined.
2514
+ **/
2515
+ UnweighableMessage: GenericPalletError<Rv>;
2516
+
2517
+ /**
2518
+ * The destination `Location` provided cannot be inverted.
2519
+ **/
2520
+ DestinationNotInvertible: GenericPalletError<Rv>;
2521
+
2522
+ /**
2523
+ * The assets to be sent are empty.
2524
+ **/
2525
+ Empty: GenericPalletError<Rv>;
2526
+
2527
+ /**
2528
+ * Could not re-anchor the assets to declare the fees for the destination chain.
2529
+ **/
2530
+ CannotReanchor: GenericPalletError<Rv>;
2531
+
2532
+ /**
2533
+ * Too many assets have been attempted for transfer.
2534
+ **/
2535
+ TooManyAssets: GenericPalletError<Rv>;
2536
+
2537
+ /**
2538
+ * Origin is invalid for sending.
2539
+ **/
2540
+ InvalidOrigin: GenericPalletError<Rv>;
2541
+
2542
+ /**
2543
+ * The version of the `Versioned` value used is not able to be interpreted.
2544
+ **/
2545
+ BadVersion: GenericPalletError<Rv>;
2546
+
2547
+ /**
2548
+ * The given location could not be used (e.g. because it cannot be expressed in the
2549
+ * desired version of XCM).
2550
+ **/
2551
+ BadLocation: GenericPalletError<Rv>;
2552
+
2553
+ /**
2554
+ * The referenced subscription could not be found.
2555
+ **/
2556
+ NoSubscription: GenericPalletError<Rv>;
2557
+
2558
+ /**
2559
+ * The location is invalid since it already has a subscription from us.
2560
+ **/
2561
+ AlreadySubscribed: GenericPalletError<Rv>;
2562
+
2563
+ /**
2564
+ * Could not check-out the assets for teleportation to the destination chain.
2565
+ **/
2566
+ CannotCheckOutTeleport: GenericPalletError<Rv>;
2567
+
2568
+ /**
2569
+ * The owner does not own (all) of the asset that they wish to do the operation on.
2570
+ **/
2571
+ LowBalance: GenericPalletError<Rv>;
2572
+
2573
+ /**
2574
+ * The asset owner has too many locks on the asset.
2575
+ **/
2576
+ TooManyLocks: GenericPalletError<Rv>;
2577
+
2578
+ /**
2579
+ * The given account is not an identifiable sovereign account for any location.
2580
+ **/
2581
+ AccountNotSovereign: GenericPalletError<Rv>;
2582
+
2583
+ /**
2584
+ * The operation required fees to be paid which the initiator could not meet.
2585
+ **/
2586
+ FeesNotMet: GenericPalletError<Rv>;
2587
+
2588
+ /**
2589
+ * A remote lock with the corresponding data could not be found.
2590
+ **/
2591
+ LockNotFound: GenericPalletError<Rv>;
2592
+
2593
+ /**
2594
+ * The unlock operation cannot succeed because there are still consumers of the lock.
2595
+ **/
2596
+ InUse: GenericPalletError<Rv>;
2597
+
2598
+ /**
2599
+ * Invalid asset, reserve chain could not be determined for it.
2600
+ **/
2601
+ InvalidAssetUnknownReserve: GenericPalletError<Rv>;
2602
+
2603
+ /**
2604
+ * Invalid asset, do not support remote asset reserves with different fees reserves.
2605
+ **/
2606
+ InvalidAssetUnsupportedReserve: GenericPalletError<Rv>;
2607
+
2608
+ /**
2609
+ * Too many assets with different reserve locations have been attempted for transfer.
2610
+ **/
2611
+ TooManyReserves: GenericPalletError<Rv>;
2612
+
2613
+ /**
2614
+ * Local XCM execution incomplete.
2615
+ **/
2616
+ LocalExecutionIncomplete: GenericPalletError<Rv>;
2617
+
2618
+ /**
2619
+ * Generic pallet error
2620
+ **/
2621
+ [error: string]: GenericPalletError<Rv>;
2622
+ };
2623
+ /**
2624
+ * Pallet `MessageQueue`'s errors
2625
+ **/
2626
+ messageQueue: {
2627
+ /**
2628
+ * Page is not reapable because it has items remaining to be processed and is not old
2629
+ * enough.
2630
+ **/
2631
+ NotReapable: GenericPalletError<Rv>;
2632
+
2633
+ /**
2634
+ * Page to be reaped does not exist.
2635
+ **/
2636
+ NoPage: GenericPalletError<Rv>;
2637
+
2638
+ /**
2639
+ * The referenced message could not be found.
2640
+ **/
2641
+ NoMessage: GenericPalletError<Rv>;
2642
+
2643
+ /**
2644
+ * The message was already processed and cannot be processed again.
2645
+ **/
2646
+ AlreadyProcessed: GenericPalletError<Rv>;
2647
+
2648
+ /**
2649
+ * The message is queued for future execution.
2650
+ **/
2651
+ Queued: GenericPalletError<Rv>;
2652
+
2653
+ /**
2654
+ * There is temporarily not enough weight to continue servicing messages.
2655
+ **/
2656
+ InsufficientWeight: GenericPalletError<Rv>;
2657
+
2658
+ /**
2659
+ * This message is temporarily unprocessable.
2660
+ *
2661
+ * Such errors are expected, but not guaranteed, to resolve themselves eventually through
2662
+ * retrying.
2663
+ **/
2664
+ TemporarilyUnprocessable: GenericPalletError<Rv>;
2665
+
2666
+ /**
2667
+ * The queue is paused and no message can be executed from it.
2668
+ *
2669
+ * This can change at any time and may resolve in the future by re-trying.
2670
+ **/
2671
+ QueuePaused: GenericPalletError<Rv>;
2672
+
2673
+ /**
2674
+ * Another call is in progress and needs to finish before this call can happen.
2675
+ **/
2676
+ RecursiveDisallowed: GenericPalletError<Rv>;
2677
+
2678
+ /**
2679
+ * Generic pallet error
2680
+ **/
2681
+ [error: string]: GenericPalletError<Rv>;
2682
+ };
2683
+ /**
2684
+ * Pallet `AssetRate`'s errors
2685
+ **/
2686
+ assetRate: {
2687
+ /**
2688
+ * The given asset ID is unknown.
2689
+ **/
2690
+ UnknownAssetKind: GenericPalletError<Rv>;
2691
+
2692
+ /**
2693
+ * The given asset ID already has an assigned conversion rate and cannot be re-created.
2694
+ **/
2695
+ AlreadyExists: GenericPalletError<Rv>;
2696
+
2697
+ /**
2698
+ * Overflow ocurred when calculating the inverse rate.
2699
+ **/
2700
+ Overflow: GenericPalletError<Rv>;
2701
+
2702
+ /**
2703
+ * Generic pallet error
2704
+ **/
2705
+ [error: string]: GenericPalletError<Rv>;
2706
+ };
2707
+ /**
2708
+ * Pallet `Beefy`'s errors
2709
+ **/
2710
+ beefy: {
2711
+ /**
2712
+ * A key ownership proof provided as part of an equivocation report is invalid.
2713
+ **/
2714
+ InvalidKeyOwnershipProof: GenericPalletError<Rv>;
2715
+
2716
+ /**
2717
+ * An equivocation proof provided as part of an equivocation report is invalid.
2718
+ **/
2719
+ InvalidEquivocationProof: GenericPalletError<Rv>;
2720
+
2721
+ /**
2722
+ * A given equivocation report is valid but already previously reported.
2723
+ **/
2724
+ DuplicateOffenceReport: GenericPalletError<Rv>;
2725
+
2726
+ /**
2727
+ * Submitted configuration is invalid.
2728
+ **/
2729
+ InvalidConfiguration: GenericPalletError<Rv>;
2730
+
2731
+ /**
2732
+ * Generic pallet error
2733
+ **/
2734
+ [error: string]: GenericPalletError<Rv>;
2735
+ };
2736
+ }