@webb-tools/tangle-substrate-types 0.5.4 → 0.5.8
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.
- package/build/interfaces/augment-api-consts.d.ts +147 -4
- package/build/interfaces/augment-api-errors.d.ts +403 -0
- package/build/interfaces/augment-api-events.d.ts +543 -2
- package/build/interfaces/augment-api-query.d.ts +159 -2
- package/build/interfaces/augment-api-tx.d.ts +745 -1
- package/build/interfaces/augment-types.d.ts +21 -2
- package/build/interfaces/lookup.d.ts +1470 -356
- package/build/interfaces/lookup.js +1464 -350
- package/build/interfaces/registry.d.ts +61 -1
- package/build/interfaces/types-lookup.d.ts +1592 -348
- package/build/metadata/static-latest.d.ts +1 -1
- package/build/metadata/static-latest.js +1 -1
- package/build/package.json +1 -1
- package/package.json +4 -4
- package/playground.ts +86 -0
- package/src/interfaces/augment-api-consts.ts +147 -11
- package/src/interfaces/augment-api-errors.ts +403 -0
- package/src/interfaces/augment-api-events.ts +321 -30
- package/src/interfaces/augment-api-query.ts +150 -87
- package/src/interfaces/augment-api-tx.ts +361 -54
- package/src/interfaces/augment-types.ts +21 -2
- package/src/interfaces/lookup.ts +1465 -351
- package/src/interfaces/registry.ts +61 -1
- package/src/interfaces/types-lookup.ts +1650 -348
- package/src/metadata/metadata.json +1 -1
- package/src/metadata/static-latest.ts +1 -1
- package/ts-types/playground.d.ts +1 -0
- package/ts-types/src/interfaces/augment-api-consts.d.ts +147 -4
- package/ts-types/src/interfaces/augment-api-errors.d.ts +403 -0
- package/ts-types/src/interfaces/augment-api-events.d.ts +543 -2
- package/ts-types/src/interfaces/augment-api-query.d.ts +159 -2
- package/ts-types/src/interfaces/augment-api-tx.d.ts +745 -1
- package/ts-types/src/interfaces/augment-types.d.ts +21 -2
- package/ts-types/src/interfaces/lookup.d.ts +1470 -356
- package/ts-types/src/interfaces/registry.d.ts +61 -1
- package/ts-types/src/interfaces/types-lookup.d.ts +1592 -348
- package/ts-types/src/metadata/static-latest.d.ts +1 -1
- package/ts-types/tsconfig.tsbuildinfo +1 -1
|
@@ -178,7 +178,144 @@ declare module '@polkadot/types/lookup' {
|
|
|
178
178
|
} & Struct;
|
|
179
179
|
readonly type: 'Sudid' | 'KeyChanged' | 'KeyRemoved' | 'SudoAsDone';
|
|
180
180
|
}
|
|
181
|
-
/** @name
|
|
181
|
+
/** @name PalletAssetsEvent (35) */
|
|
182
|
+
interface PalletAssetsEvent extends Enum {
|
|
183
|
+
readonly isCreated: boolean;
|
|
184
|
+
readonly asCreated: {
|
|
185
|
+
readonly assetId: u128;
|
|
186
|
+
readonly creator: AccountId32;
|
|
187
|
+
readonly owner: AccountId32;
|
|
188
|
+
} & Struct;
|
|
189
|
+
readonly isIssued: boolean;
|
|
190
|
+
readonly asIssued: {
|
|
191
|
+
readonly assetId: u128;
|
|
192
|
+
readonly owner: AccountId32;
|
|
193
|
+
readonly amount: u128;
|
|
194
|
+
} & Struct;
|
|
195
|
+
readonly isTransferred: boolean;
|
|
196
|
+
readonly asTransferred: {
|
|
197
|
+
readonly assetId: u128;
|
|
198
|
+
readonly from: AccountId32;
|
|
199
|
+
readonly to: AccountId32;
|
|
200
|
+
readonly amount: u128;
|
|
201
|
+
} & Struct;
|
|
202
|
+
readonly isBurned: boolean;
|
|
203
|
+
readonly asBurned: {
|
|
204
|
+
readonly assetId: u128;
|
|
205
|
+
readonly owner: AccountId32;
|
|
206
|
+
readonly balance: u128;
|
|
207
|
+
} & Struct;
|
|
208
|
+
readonly isTeamChanged: boolean;
|
|
209
|
+
readonly asTeamChanged: {
|
|
210
|
+
readonly assetId: u128;
|
|
211
|
+
readonly issuer: AccountId32;
|
|
212
|
+
readonly admin: AccountId32;
|
|
213
|
+
readonly freezer: AccountId32;
|
|
214
|
+
} & Struct;
|
|
215
|
+
readonly isOwnerChanged: boolean;
|
|
216
|
+
readonly asOwnerChanged: {
|
|
217
|
+
readonly assetId: u128;
|
|
218
|
+
readonly owner: AccountId32;
|
|
219
|
+
} & Struct;
|
|
220
|
+
readonly isFrozen: boolean;
|
|
221
|
+
readonly asFrozen: {
|
|
222
|
+
readonly assetId: u128;
|
|
223
|
+
readonly who: AccountId32;
|
|
224
|
+
} & Struct;
|
|
225
|
+
readonly isThawed: boolean;
|
|
226
|
+
readonly asThawed: {
|
|
227
|
+
readonly assetId: u128;
|
|
228
|
+
readonly who: AccountId32;
|
|
229
|
+
} & Struct;
|
|
230
|
+
readonly isAssetFrozen: boolean;
|
|
231
|
+
readonly asAssetFrozen: {
|
|
232
|
+
readonly assetId: u128;
|
|
233
|
+
} & Struct;
|
|
234
|
+
readonly isAssetThawed: boolean;
|
|
235
|
+
readonly asAssetThawed: {
|
|
236
|
+
readonly assetId: u128;
|
|
237
|
+
} & Struct;
|
|
238
|
+
readonly isAccountsDestroyed: boolean;
|
|
239
|
+
readonly asAccountsDestroyed: {
|
|
240
|
+
readonly assetId: u128;
|
|
241
|
+
readonly accountsDestroyed: u32;
|
|
242
|
+
readonly accountsRemaining: u32;
|
|
243
|
+
} & Struct;
|
|
244
|
+
readonly isApprovalsDestroyed: boolean;
|
|
245
|
+
readonly asApprovalsDestroyed: {
|
|
246
|
+
readonly assetId: u128;
|
|
247
|
+
readonly approvalsDestroyed: u32;
|
|
248
|
+
readonly approvalsRemaining: u32;
|
|
249
|
+
} & Struct;
|
|
250
|
+
readonly isDestructionStarted: boolean;
|
|
251
|
+
readonly asDestructionStarted: {
|
|
252
|
+
readonly assetId: u128;
|
|
253
|
+
} & Struct;
|
|
254
|
+
readonly isDestroyed: boolean;
|
|
255
|
+
readonly asDestroyed: {
|
|
256
|
+
readonly assetId: u128;
|
|
257
|
+
} & Struct;
|
|
258
|
+
readonly isForceCreated: boolean;
|
|
259
|
+
readonly asForceCreated: {
|
|
260
|
+
readonly assetId: u128;
|
|
261
|
+
readonly owner: AccountId32;
|
|
262
|
+
} & Struct;
|
|
263
|
+
readonly isMetadataSet: boolean;
|
|
264
|
+
readonly asMetadataSet: {
|
|
265
|
+
readonly assetId: u128;
|
|
266
|
+
readonly name: Bytes;
|
|
267
|
+
readonly symbol: Bytes;
|
|
268
|
+
readonly decimals: u8;
|
|
269
|
+
readonly isFrozen: bool;
|
|
270
|
+
} & Struct;
|
|
271
|
+
readonly isMetadataCleared: boolean;
|
|
272
|
+
readonly asMetadataCleared: {
|
|
273
|
+
readonly assetId: u128;
|
|
274
|
+
} & Struct;
|
|
275
|
+
readonly isApprovedTransfer: boolean;
|
|
276
|
+
readonly asApprovedTransfer: {
|
|
277
|
+
readonly assetId: u128;
|
|
278
|
+
readonly source: AccountId32;
|
|
279
|
+
readonly delegate: AccountId32;
|
|
280
|
+
readonly amount: u128;
|
|
281
|
+
} & Struct;
|
|
282
|
+
readonly isApprovalCancelled: boolean;
|
|
283
|
+
readonly asApprovalCancelled: {
|
|
284
|
+
readonly assetId: u128;
|
|
285
|
+
readonly owner: AccountId32;
|
|
286
|
+
readonly delegate: AccountId32;
|
|
287
|
+
} & Struct;
|
|
288
|
+
readonly isTransferredApproved: boolean;
|
|
289
|
+
readonly asTransferredApproved: {
|
|
290
|
+
readonly assetId: u128;
|
|
291
|
+
readonly owner: AccountId32;
|
|
292
|
+
readonly delegate: AccountId32;
|
|
293
|
+
readonly destination: AccountId32;
|
|
294
|
+
readonly amount: u128;
|
|
295
|
+
} & Struct;
|
|
296
|
+
readonly isAssetStatusChanged: boolean;
|
|
297
|
+
readonly asAssetStatusChanged: {
|
|
298
|
+
readonly assetId: u128;
|
|
299
|
+
} & Struct;
|
|
300
|
+
readonly isAssetMinBalanceChanged: boolean;
|
|
301
|
+
readonly asAssetMinBalanceChanged: {
|
|
302
|
+
readonly assetId: u128;
|
|
303
|
+
readonly newMinBalance: u128;
|
|
304
|
+
} & Struct;
|
|
305
|
+
readonly isTouched: boolean;
|
|
306
|
+
readonly asTouched: {
|
|
307
|
+
readonly assetId: u128;
|
|
308
|
+
readonly who: AccountId32;
|
|
309
|
+
readonly depositor: AccountId32;
|
|
310
|
+
} & Struct;
|
|
311
|
+
readonly isBlocked: boolean;
|
|
312
|
+
readonly asBlocked: {
|
|
313
|
+
readonly assetId: u128;
|
|
314
|
+
readonly who: AccountId32;
|
|
315
|
+
} & Struct;
|
|
316
|
+
readonly type: 'Created' | 'Issued' | 'Transferred' | 'Burned' | 'TeamChanged' | 'OwnerChanged' | 'Frozen' | 'Thawed' | 'AssetFrozen' | 'AssetThawed' | 'AccountsDestroyed' | 'ApprovalsDestroyed' | 'DestructionStarted' | 'Destroyed' | 'ForceCreated' | 'MetadataSet' | 'MetadataCleared' | 'ApprovedTransfer' | 'ApprovalCancelled' | 'TransferredApproved' | 'AssetStatusChanged' | 'AssetMinBalanceChanged' | 'Touched' | 'Blocked';
|
|
317
|
+
}
|
|
318
|
+
/** @name PalletBalancesEvent (36) */
|
|
182
319
|
interface PalletBalancesEvent extends Enum {
|
|
183
320
|
readonly isEndowed: boolean;
|
|
184
321
|
readonly asEndowed: {
|
|
@@ -292,13 +429,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
292
429
|
} & Struct;
|
|
293
430
|
readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed' | 'Minted' | 'Burned' | 'Suspended' | 'Restored' | 'Upgraded' | 'Issued' | 'Rescinded' | 'Locked' | 'Unlocked' | 'Frozen' | 'Thawed' | 'TotalIssuanceForced';
|
|
294
431
|
}
|
|
295
|
-
/** @name FrameSupportTokensMiscBalanceStatus (
|
|
432
|
+
/** @name FrameSupportTokensMiscBalanceStatus (37) */
|
|
296
433
|
interface FrameSupportTokensMiscBalanceStatus extends Enum {
|
|
297
434
|
readonly isFree: boolean;
|
|
298
435
|
readonly isReserved: boolean;
|
|
299
436
|
readonly type: 'Free' | 'Reserved';
|
|
300
437
|
}
|
|
301
|
-
/** @name PalletTransactionPaymentEvent (
|
|
438
|
+
/** @name PalletTransactionPaymentEvent (38) */
|
|
302
439
|
interface PalletTransactionPaymentEvent extends Enum {
|
|
303
440
|
readonly isTransactionFeePaid: boolean;
|
|
304
441
|
readonly asTransactionFeePaid: {
|
|
@@ -308,7 +445,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
308
445
|
} & Struct;
|
|
309
446
|
readonly type: 'TransactionFeePaid';
|
|
310
447
|
}
|
|
311
|
-
/** @name PalletGrandpaEvent (
|
|
448
|
+
/** @name PalletGrandpaEvent (39) */
|
|
312
449
|
interface PalletGrandpaEvent extends Enum {
|
|
313
450
|
readonly isNewAuthorities: boolean;
|
|
314
451
|
readonly asNewAuthorities: {
|
|
@@ -318,13 +455,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
318
455
|
readonly isResumed: boolean;
|
|
319
456
|
readonly type: 'NewAuthorities' | 'Paused' | 'Resumed';
|
|
320
457
|
}
|
|
321
|
-
/** @name SpConsensusGrandpaAppPublic (
|
|
458
|
+
/** @name SpConsensusGrandpaAppPublic (42) */
|
|
322
459
|
interface SpConsensusGrandpaAppPublic extends SpCoreEd25519Public {
|
|
323
460
|
}
|
|
324
|
-
/** @name SpCoreEd25519Public (
|
|
461
|
+
/** @name SpCoreEd25519Public (43) */
|
|
325
462
|
interface SpCoreEd25519Public extends U8aFixed {
|
|
326
463
|
}
|
|
327
|
-
/** @name PalletIndicesEvent (
|
|
464
|
+
/** @name PalletIndicesEvent (44) */
|
|
328
465
|
interface PalletIndicesEvent extends Enum {
|
|
329
466
|
readonly isIndexAssigned: boolean;
|
|
330
467
|
readonly asIndexAssigned: {
|
|
@@ -342,7 +479,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
342
479
|
} & Struct;
|
|
343
480
|
readonly type: 'IndexAssigned' | 'IndexFreed' | 'IndexFrozen';
|
|
344
481
|
}
|
|
345
|
-
/** @name PalletDemocracyEvent (
|
|
482
|
+
/** @name PalletDemocracyEvent (45) */
|
|
346
483
|
interface PalletDemocracyEvent extends Enum {
|
|
347
484
|
readonly isProposed: boolean;
|
|
348
485
|
readonly asProposed: {
|
|
@@ -424,14 +561,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
424
561
|
} & Struct;
|
|
425
562
|
readonly type: 'Proposed' | 'Tabled' | 'ExternalTabled' | 'Started' | 'Passed' | 'NotPassed' | 'Cancelled' | 'Delegated' | 'Undelegated' | 'Vetoed' | 'Blacklisted' | 'Voted' | 'Seconded' | 'ProposalCanceled' | 'MetadataSet' | 'MetadataCleared' | 'MetadataTransferred';
|
|
426
563
|
}
|
|
427
|
-
/** @name PalletDemocracyVoteThreshold (
|
|
564
|
+
/** @name PalletDemocracyVoteThreshold (46) */
|
|
428
565
|
interface PalletDemocracyVoteThreshold extends Enum {
|
|
429
566
|
readonly isSuperMajorityApprove: boolean;
|
|
430
567
|
readonly isSuperMajorityAgainst: boolean;
|
|
431
568
|
readonly isSimpleMajority: boolean;
|
|
432
569
|
readonly type: 'SuperMajorityApprove' | 'SuperMajorityAgainst' | 'SimpleMajority';
|
|
433
570
|
}
|
|
434
|
-
/** @name PalletDemocracyVoteAccountVote (
|
|
571
|
+
/** @name PalletDemocracyVoteAccountVote (47) */
|
|
435
572
|
interface PalletDemocracyVoteAccountVote extends Enum {
|
|
436
573
|
readonly isStandard: boolean;
|
|
437
574
|
readonly asStandard: {
|
|
@@ -445,7 +582,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
445
582
|
} & Struct;
|
|
446
583
|
readonly type: 'Standard' | 'Split';
|
|
447
584
|
}
|
|
448
|
-
/** @name PalletDemocracyMetadataOwner (
|
|
585
|
+
/** @name PalletDemocracyMetadataOwner (49) */
|
|
449
586
|
interface PalletDemocracyMetadataOwner extends Enum {
|
|
450
587
|
readonly isExternal: boolean;
|
|
451
588
|
readonly isProposal: boolean;
|
|
@@ -454,7 +591,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
454
591
|
readonly asReferendum: u32;
|
|
455
592
|
readonly type: 'External' | 'Proposal' | 'Referendum';
|
|
456
593
|
}
|
|
457
|
-
/** @name PalletCollectiveEvent (
|
|
594
|
+
/** @name PalletCollectiveEvent (50) */
|
|
458
595
|
interface PalletCollectiveEvent extends Enum {
|
|
459
596
|
readonly isProposed: boolean;
|
|
460
597
|
readonly asProposed: {
|
|
@@ -497,7 +634,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
497
634
|
} & Struct;
|
|
498
635
|
readonly type: 'Proposed' | 'Voted' | 'Approved' | 'Disapproved' | 'Executed' | 'MemberExecuted' | 'Closed';
|
|
499
636
|
}
|
|
500
|
-
/** @name PalletVestingEvent (
|
|
637
|
+
/** @name PalletVestingEvent (51) */
|
|
501
638
|
interface PalletVestingEvent extends Enum {
|
|
502
639
|
readonly isVestingUpdated: boolean;
|
|
503
640
|
readonly asVestingUpdated: {
|
|
@@ -510,7 +647,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
510
647
|
} & Struct;
|
|
511
648
|
readonly type: 'VestingUpdated' | 'VestingCompleted';
|
|
512
649
|
}
|
|
513
|
-
/** @name PalletElectionsPhragmenEvent (
|
|
650
|
+
/** @name PalletElectionsPhragmenEvent (52) */
|
|
514
651
|
interface PalletElectionsPhragmenEvent extends Enum {
|
|
515
652
|
readonly isNewTerm: boolean;
|
|
516
653
|
readonly asNewTerm: {
|
|
@@ -538,7 +675,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
538
675
|
} & Struct;
|
|
539
676
|
readonly type: 'NewTerm' | 'EmptyTerm' | 'ElectionError' | 'MemberKicked' | 'Renounced' | 'CandidateSlashed' | 'SeatHolderSlashed';
|
|
540
677
|
}
|
|
541
|
-
/** @name PalletElectionProviderMultiPhaseEvent (
|
|
678
|
+
/** @name PalletElectionProviderMultiPhaseEvent (55) */
|
|
542
679
|
interface PalletElectionProviderMultiPhaseEvent extends Enum {
|
|
543
680
|
readonly isSolutionStored: boolean;
|
|
544
681
|
readonly asSolutionStored: {
|
|
@@ -570,7 +707,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
570
707
|
} & Struct;
|
|
571
708
|
readonly type: 'SolutionStored' | 'ElectionFinalized' | 'ElectionFailed' | 'Rewarded' | 'Slashed' | 'PhaseTransitioned';
|
|
572
709
|
}
|
|
573
|
-
/** @name PalletElectionProviderMultiPhaseElectionCompute (
|
|
710
|
+
/** @name PalletElectionProviderMultiPhaseElectionCompute (56) */
|
|
574
711
|
interface PalletElectionProviderMultiPhaseElectionCompute extends Enum {
|
|
575
712
|
readonly isOnChain: boolean;
|
|
576
713
|
readonly isSigned: boolean;
|
|
@@ -579,13 +716,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
579
716
|
readonly isEmergency: boolean;
|
|
580
717
|
readonly type: 'OnChain' | 'Signed' | 'Unsigned' | 'Fallback' | 'Emergency';
|
|
581
718
|
}
|
|
582
|
-
/** @name SpNposElectionsElectionScore (
|
|
719
|
+
/** @name SpNposElectionsElectionScore (57) */
|
|
583
720
|
interface SpNposElectionsElectionScore extends Struct {
|
|
584
721
|
readonly minimalStake: u128;
|
|
585
722
|
readonly sumStake: u128;
|
|
586
723
|
readonly sumStakeSquared: u128;
|
|
587
724
|
}
|
|
588
|
-
/** @name PalletElectionProviderMultiPhasePhase (
|
|
725
|
+
/** @name PalletElectionProviderMultiPhasePhase (58) */
|
|
589
726
|
interface PalletElectionProviderMultiPhasePhase extends Enum {
|
|
590
727
|
readonly isOff: boolean;
|
|
591
728
|
readonly isSigned: boolean;
|
|
@@ -594,7 +731,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
594
731
|
readonly isEmergency: boolean;
|
|
595
732
|
readonly type: 'Off' | 'Signed' | 'Unsigned' | 'Emergency';
|
|
596
733
|
}
|
|
597
|
-
/** @name PalletStakingPalletEvent (
|
|
734
|
+
/** @name PalletStakingPalletEvent (60) */
|
|
598
735
|
interface PalletStakingPalletEvent extends Enum {
|
|
599
736
|
readonly isEraPaid: boolean;
|
|
600
737
|
readonly asEraPaid: {
|
|
@@ -673,7 +810,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
673
810
|
} & Struct;
|
|
674
811
|
readonly type: 'EraPaid' | 'Rewarded' | 'Slashed' | 'SlashReported' | 'OldSlashingReportDiscarded' | 'StakersElected' | 'Bonded' | 'Unbonded' | 'Withdrawn' | 'Kicked' | 'StakingElectionFailed' | 'Chilled' | 'PayoutStarted' | 'ValidatorPrefsSet' | 'SnapshotVotersSizeExceeded' | 'SnapshotTargetsSizeExceeded' | 'ForceEra';
|
|
675
812
|
}
|
|
676
|
-
/** @name PalletStakingRewardDestination (
|
|
813
|
+
/** @name PalletStakingRewardDestination (61) */
|
|
677
814
|
interface PalletStakingRewardDestination extends Enum {
|
|
678
815
|
readonly isStaked: boolean;
|
|
679
816
|
readonly isStash: boolean;
|
|
@@ -683,12 +820,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
683
820
|
readonly isNone: boolean;
|
|
684
821
|
readonly type: 'Staked' | 'Stash' | 'Controller' | 'Account' | 'None';
|
|
685
822
|
}
|
|
686
|
-
/** @name PalletStakingValidatorPrefs (
|
|
823
|
+
/** @name PalletStakingValidatorPrefs (63) */
|
|
687
824
|
interface PalletStakingValidatorPrefs extends Struct {
|
|
688
825
|
readonly commission: Compact<Perbill>;
|
|
689
826
|
readonly blocked: bool;
|
|
690
827
|
}
|
|
691
|
-
/** @name PalletStakingForcing (
|
|
828
|
+
/** @name PalletStakingForcing (65) */
|
|
692
829
|
interface PalletStakingForcing extends Enum {
|
|
693
830
|
readonly isNotForcing: boolean;
|
|
694
831
|
readonly isForceNew: boolean;
|
|
@@ -696,7 +833,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
696
833
|
readonly isForceAlways: boolean;
|
|
697
834
|
readonly type: 'NotForcing' | 'ForceNew' | 'ForceNone' | 'ForceAlways';
|
|
698
835
|
}
|
|
699
|
-
/** @name PalletSessionEvent (
|
|
836
|
+
/** @name PalletSessionEvent (66) */
|
|
700
837
|
interface PalletSessionEvent extends Enum {
|
|
701
838
|
readonly isNewSession: boolean;
|
|
702
839
|
readonly asNewSession: {
|
|
@@ -704,7 +841,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
704
841
|
} & Struct;
|
|
705
842
|
readonly type: 'NewSession';
|
|
706
843
|
}
|
|
707
|
-
/** @name PalletTreasuryEvent (
|
|
844
|
+
/** @name PalletTreasuryEvent (67) */
|
|
708
845
|
interface PalletTreasuryEvent extends Enum {
|
|
709
846
|
readonly isProposed: boolean;
|
|
710
847
|
readonly asProposed: {
|
|
@@ -777,7 +914,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
777
914
|
} & Struct;
|
|
778
915
|
readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved' | 'UpdatedInactive' | 'AssetSpendApproved' | 'AssetSpendVoided' | 'Paid' | 'PaymentFailed' | 'SpendProcessed';
|
|
779
916
|
}
|
|
780
|
-
/** @name PalletBountiesEvent (
|
|
917
|
+
/** @name PalletBountiesEvent (68) */
|
|
781
918
|
interface PalletBountiesEvent extends Enum {
|
|
782
919
|
readonly isBountyProposed: boolean;
|
|
783
920
|
readonly asBountyProposed: {
|
|
@@ -831,7 +968,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
831
968
|
} & Struct;
|
|
832
969
|
readonly type: 'BountyProposed' | 'BountyRejected' | 'BountyBecameActive' | 'BountyAwarded' | 'BountyClaimed' | 'BountyCanceled' | 'BountyExtended' | 'BountyApproved' | 'CuratorProposed' | 'CuratorUnassigned' | 'CuratorAccepted';
|
|
833
970
|
}
|
|
834
|
-
/** @name PalletChildBountiesEvent (
|
|
971
|
+
/** @name PalletChildBountiesEvent (69) */
|
|
835
972
|
interface PalletChildBountiesEvent extends Enum {
|
|
836
973
|
readonly isAdded: boolean;
|
|
837
974
|
readonly asAdded: {
|
|
@@ -858,7 +995,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
858
995
|
} & Struct;
|
|
859
996
|
readonly type: 'Added' | 'Awarded' | 'Claimed' | 'Canceled';
|
|
860
997
|
}
|
|
861
|
-
/** @name PalletBagsListEvent (
|
|
998
|
+
/** @name PalletBagsListEvent (70) */
|
|
862
999
|
interface PalletBagsListEvent extends Enum {
|
|
863
1000
|
readonly isRebagged: boolean;
|
|
864
1001
|
readonly asRebagged: {
|
|
@@ -873,7 +1010,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
873
1010
|
} & Struct;
|
|
874
1011
|
readonly type: 'Rebagged' | 'ScoreUpdated';
|
|
875
1012
|
}
|
|
876
|
-
/** @name PalletNominationPoolsEvent (
|
|
1013
|
+
/** @name PalletNominationPoolsEvent (71) */
|
|
877
1014
|
interface PalletNominationPoolsEvent extends Enum {
|
|
878
1015
|
readonly isCreated: boolean;
|
|
879
1016
|
readonly asCreated: {
|
|
@@ -976,26 +1113,26 @@ declare module '@polkadot/types/lookup' {
|
|
|
976
1113
|
} & Struct;
|
|
977
1114
|
readonly type: 'Created' | 'Bonded' | 'PaidOut' | 'Unbonded' | 'Withdrawn' | 'Destroyed' | 'StateChanged' | 'MemberRemoved' | 'RolesUpdated' | 'PoolSlashed' | 'UnbondingPoolSlashed' | 'PoolCommissionUpdated' | 'PoolMaxCommissionUpdated' | 'PoolCommissionChangeRateUpdated' | 'PoolCommissionClaimPermissionUpdated' | 'PoolCommissionClaimed' | 'MinBalanceDeficitAdjusted' | 'MinBalanceExcessAdjusted';
|
|
978
1115
|
}
|
|
979
|
-
/** @name PalletNominationPoolsPoolState (
|
|
1116
|
+
/** @name PalletNominationPoolsPoolState (72) */
|
|
980
1117
|
interface PalletNominationPoolsPoolState extends Enum {
|
|
981
1118
|
readonly isOpen: boolean;
|
|
982
1119
|
readonly isBlocked: boolean;
|
|
983
1120
|
readonly isDestroying: boolean;
|
|
984
1121
|
readonly type: 'Open' | 'Blocked' | 'Destroying';
|
|
985
1122
|
}
|
|
986
|
-
/** @name PalletNominationPoolsCommissionChangeRate (
|
|
1123
|
+
/** @name PalletNominationPoolsCommissionChangeRate (75) */
|
|
987
1124
|
interface PalletNominationPoolsCommissionChangeRate extends Struct {
|
|
988
1125
|
readonly maxIncrease: Perbill;
|
|
989
1126
|
readonly minDelay: u64;
|
|
990
1127
|
}
|
|
991
|
-
/** @name PalletNominationPoolsCommissionClaimPermission (
|
|
1128
|
+
/** @name PalletNominationPoolsCommissionClaimPermission (77) */
|
|
992
1129
|
interface PalletNominationPoolsCommissionClaimPermission extends Enum {
|
|
993
1130
|
readonly isPermissionless: boolean;
|
|
994
1131
|
readonly isAccount: boolean;
|
|
995
1132
|
readonly asAccount: AccountId32;
|
|
996
1133
|
readonly type: 'Permissionless' | 'Account';
|
|
997
1134
|
}
|
|
998
|
-
/** @name PalletSchedulerEvent (
|
|
1135
|
+
/** @name PalletSchedulerEvent (78) */
|
|
999
1136
|
interface PalletSchedulerEvent extends Enum {
|
|
1000
1137
|
readonly isScheduled: boolean;
|
|
1001
1138
|
readonly asScheduled: {
|
|
@@ -1030,7 +1167,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1030
1167
|
} & Struct;
|
|
1031
1168
|
readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallUnavailable' | 'PeriodicFailed' | 'PermanentlyOverweight';
|
|
1032
1169
|
}
|
|
1033
|
-
/** @name PalletPreimageEvent (
|
|
1170
|
+
/** @name PalletPreimageEvent (81) */
|
|
1034
1171
|
interface PalletPreimageEvent extends Enum {
|
|
1035
1172
|
readonly isNoted: boolean;
|
|
1036
1173
|
readonly asNoted: {
|
|
@@ -1046,7 +1183,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1046
1183
|
} & Struct;
|
|
1047
1184
|
readonly type: 'Noted' | 'Requested' | 'Cleared';
|
|
1048
1185
|
}
|
|
1049
|
-
/** @name PalletOffencesEvent (
|
|
1186
|
+
/** @name PalletOffencesEvent (82) */
|
|
1050
1187
|
interface PalletOffencesEvent extends Enum {
|
|
1051
1188
|
readonly isOffence: boolean;
|
|
1052
1189
|
readonly asOffence: {
|
|
@@ -1055,7 +1192,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1055
1192
|
} & Struct;
|
|
1056
1193
|
readonly type: 'Offence';
|
|
1057
1194
|
}
|
|
1058
|
-
/** @name PalletTxPauseEvent (
|
|
1195
|
+
/** @name PalletTxPauseEvent (84) */
|
|
1059
1196
|
interface PalletTxPauseEvent extends Enum {
|
|
1060
1197
|
readonly isCallPaused: boolean;
|
|
1061
1198
|
readonly asCallPaused: {
|
|
@@ -1067,7 +1204,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1067
1204
|
} & Struct;
|
|
1068
1205
|
readonly type: 'CallPaused' | 'CallUnpaused';
|
|
1069
1206
|
}
|
|
1070
|
-
/** @name PalletImOnlineEvent (
|
|
1207
|
+
/** @name PalletImOnlineEvent (87) */
|
|
1071
1208
|
interface PalletImOnlineEvent extends Enum {
|
|
1072
1209
|
readonly isHeartbeatReceived: boolean;
|
|
1073
1210
|
readonly asHeartbeatReceived: {
|
|
@@ -1080,24 +1217,24 @@ declare module '@polkadot/types/lookup' {
|
|
|
1080
1217
|
} & Struct;
|
|
1081
1218
|
readonly type: 'HeartbeatReceived' | 'AllGood' | 'SomeOffline';
|
|
1082
1219
|
}
|
|
1083
|
-
/** @name PalletImOnlineSr25519AppSr25519Public (
|
|
1220
|
+
/** @name PalletImOnlineSr25519AppSr25519Public (88) */
|
|
1084
1221
|
interface PalletImOnlineSr25519AppSr25519Public extends SpCoreSr25519Public {
|
|
1085
1222
|
}
|
|
1086
|
-
/** @name SpCoreSr25519Public (
|
|
1223
|
+
/** @name SpCoreSr25519Public (89) */
|
|
1087
1224
|
interface SpCoreSr25519Public extends U8aFixed {
|
|
1088
1225
|
}
|
|
1089
|
-
/** @name SpStakingExposure (
|
|
1226
|
+
/** @name SpStakingExposure (92) */
|
|
1090
1227
|
interface SpStakingExposure extends Struct {
|
|
1091
1228
|
readonly total: Compact<u128>;
|
|
1092
1229
|
readonly own: Compact<u128>;
|
|
1093
1230
|
readonly others: Vec<SpStakingIndividualExposure>;
|
|
1094
1231
|
}
|
|
1095
|
-
/** @name SpStakingIndividualExposure (
|
|
1232
|
+
/** @name SpStakingIndividualExposure (95) */
|
|
1096
1233
|
interface SpStakingIndividualExposure extends Struct {
|
|
1097
1234
|
readonly who: AccountId32;
|
|
1098
1235
|
readonly value: Compact<u128>;
|
|
1099
1236
|
}
|
|
1100
|
-
/** @name PalletIdentityEvent (
|
|
1237
|
+
/** @name PalletIdentityEvent (96) */
|
|
1101
1238
|
interface PalletIdentityEvent extends Enum {
|
|
1102
1239
|
readonly isIdentitySet: boolean;
|
|
1103
1240
|
readonly asIdentitySet: {
|
|
@@ -1185,7 +1322,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1185
1322
|
} & Struct;
|
|
1186
1323
|
readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked' | 'AuthorityAdded' | 'AuthorityRemoved' | 'UsernameSet' | 'UsernameQueued' | 'PreapprovalExpired' | 'PrimaryUsernameSet' | 'DanglingUsernameRemoved';
|
|
1187
1324
|
}
|
|
1188
|
-
/** @name PalletUtilityEvent (
|
|
1325
|
+
/** @name PalletUtilityEvent (98) */
|
|
1189
1326
|
interface PalletUtilityEvent extends Enum {
|
|
1190
1327
|
readonly isBatchInterrupted: boolean;
|
|
1191
1328
|
readonly asBatchInterrupted: {
|
|
@@ -1205,7 +1342,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1205
1342
|
} & Struct;
|
|
1206
1343
|
readonly type: 'BatchInterrupted' | 'BatchCompleted' | 'BatchCompletedWithErrors' | 'ItemCompleted' | 'ItemFailed' | 'DispatchedAs';
|
|
1207
1344
|
}
|
|
1208
|
-
/** @name PalletMultisigEvent (
|
|
1345
|
+
/** @name PalletMultisigEvent (99) */
|
|
1209
1346
|
interface PalletMultisigEvent extends Enum {
|
|
1210
1347
|
readonly isNewMultisig: boolean;
|
|
1211
1348
|
readonly asNewMultisig: {
|
|
@@ -1237,12 +1374,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
1237
1374
|
} & Struct;
|
|
1238
1375
|
readonly type: 'NewMultisig' | 'MultisigApproval' | 'MultisigExecuted' | 'MultisigCancelled';
|
|
1239
1376
|
}
|
|
1240
|
-
/** @name PalletMultisigTimepoint (
|
|
1377
|
+
/** @name PalletMultisigTimepoint (100) */
|
|
1241
1378
|
interface PalletMultisigTimepoint extends Struct {
|
|
1242
1379
|
readonly height: u64;
|
|
1243
1380
|
readonly index: u32;
|
|
1244
1381
|
}
|
|
1245
|
-
/** @name PalletEthereumEvent (
|
|
1382
|
+
/** @name PalletEthereumEvent (101) */
|
|
1246
1383
|
interface PalletEthereumEvent extends Enum {
|
|
1247
1384
|
readonly isExecuted: boolean;
|
|
1248
1385
|
readonly asExecuted: {
|
|
@@ -1254,7 +1391,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1254
1391
|
} & Struct;
|
|
1255
1392
|
readonly type: 'Executed';
|
|
1256
1393
|
}
|
|
1257
|
-
/** @name EvmCoreErrorExitReason (
|
|
1394
|
+
/** @name EvmCoreErrorExitReason (104) */
|
|
1258
1395
|
interface EvmCoreErrorExitReason extends Enum {
|
|
1259
1396
|
readonly isSucceed: boolean;
|
|
1260
1397
|
readonly asSucceed: EvmCoreErrorExitSucceed;
|
|
@@ -1266,14 +1403,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1266
1403
|
readonly asFatal: EvmCoreErrorExitFatal;
|
|
1267
1404
|
readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
|
|
1268
1405
|
}
|
|
1269
|
-
/** @name EvmCoreErrorExitSucceed (
|
|
1406
|
+
/** @name EvmCoreErrorExitSucceed (105) */
|
|
1270
1407
|
interface EvmCoreErrorExitSucceed extends Enum {
|
|
1271
1408
|
readonly isStopped: boolean;
|
|
1272
1409
|
readonly isReturned: boolean;
|
|
1273
1410
|
readonly isSuicided: boolean;
|
|
1274
1411
|
readonly type: 'Stopped' | 'Returned' | 'Suicided';
|
|
1275
1412
|
}
|
|
1276
|
-
/** @name EvmCoreErrorExitError (
|
|
1413
|
+
/** @name EvmCoreErrorExitError (106) */
|
|
1277
1414
|
interface EvmCoreErrorExitError extends Enum {
|
|
1278
1415
|
readonly isStackUnderflow: boolean;
|
|
1279
1416
|
readonly isStackOverflow: boolean;
|
|
@@ -1295,12 +1432,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
1295
1432
|
readonly asInvalidCode: u8;
|
|
1296
1433
|
readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'MaxNonce' | 'InvalidCode';
|
|
1297
1434
|
}
|
|
1298
|
-
/** @name EvmCoreErrorExitRevert (
|
|
1435
|
+
/** @name EvmCoreErrorExitRevert (110) */
|
|
1299
1436
|
interface EvmCoreErrorExitRevert extends Enum {
|
|
1300
1437
|
readonly isReverted: boolean;
|
|
1301
1438
|
readonly type: 'Reverted';
|
|
1302
1439
|
}
|
|
1303
|
-
/** @name EvmCoreErrorExitFatal (
|
|
1440
|
+
/** @name EvmCoreErrorExitFatal (111) */
|
|
1304
1441
|
interface EvmCoreErrorExitFatal extends Enum {
|
|
1305
1442
|
readonly isNotSupported: boolean;
|
|
1306
1443
|
readonly isUnhandledInterrupt: boolean;
|
|
@@ -1310,7 +1447,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1310
1447
|
readonly asOther: Text;
|
|
1311
1448
|
readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
|
|
1312
1449
|
}
|
|
1313
|
-
/** @name PalletEvmEvent (
|
|
1450
|
+
/** @name PalletEvmEvent (112) */
|
|
1314
1451
|
interface PalletEvmEvent extends Enum {
|
|
1315
1452
|
readonly isLog: boolean;
|
|
1316
1453
|
readonly asLog: {
|
|
@@ -1334,13 +1471,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
1334
1471
|
} & Struct;
|
|
1335
1472
|
readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';
|
|
1336
1473
|
}
|
|
1337
|
-
/** @name EthereumLog (
|
|
1474
|
+
/** @name EthereumLog (113) */
|
|
1338
1475
|
interface EthereumLog extends Struct {
|
|
1339
1476
|
readonly address: H160;
|
|
1340
1477
|
readonly topics: Vec<H256>;
|
|
1341
1478
|
readonly data: Bytes;
|
|
1342
1479
|
}
|
|
1343
|
-
/** @name PalletBaseFeeEvent (
|
|
1480
|
+
/** @name PalletBaseFeeEvent (115) */
|
|
1344
1481
|
interface PalletBaseFeeEvent extends Enum {
|
|
1345
1482
|
readonly isNewBaseFeePerGas: boolean;
|
|
1346
1483
|
readonly asNewBaseFeePerGas: {
|
|
@@ -1353,7 +1490,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1353
1490
|
} & Struct;
|
|
1354
1491
|
readonly type: 'NewBaseFeePerGas' | 'BaseFeeOverflow' | 'NewElasticity';
|
|
1355
1492
|
}
|
|
1356
|
-
/** @name PalletAirdropClaimsEvent (
|
|
1493
|
+
/** @name PalletAirdropClaimsEvent (119) */
|
|
1357
1494
|
interface PalletAirdropClaimsEvent extends Enum {
|
|
1358
1495
|
readonly isClaimed: boolean;
|
|
1359
1496
|
readonly asClaimed: {
|
|
@@ -1363,7 +1500,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1363
1500
|
} & Struct;
|
|
1364
1501
|
readonly type: 'Claimed';
|
|
1365
1502
|
}
|
|
1366
|
-
/** @name PalletAirdropClaimsUtilsMultiAddress (
|
|
1503
|
+
/** @name PalletAirdropClaimsUtilsMultiAddress (120) */
|
|
1367
1504
|
interface PalletAirdropClaimsUtilsMultiAddress extends Enum {
|
|
1368
1505
|
readonly isEvm: boolean;
|
|
1369
1506
|
readonly asEvm: PalletAirdropClaimsUtilsEthereumAddress;
|
|
@@ -1371,10 +1508,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
1371
1508
|
readonly asNative: AccountId32;
|
|
1372
1509
|
readonly type: 'Evm' | 'Native';
|
|
1373
1510
|
}
|
|
1374
|
-
/** @name PalletAirdropClaimsUtilsEthereumAddress (
|
|
1511
|
+
/** @name PalletAirdropClaimsUtilsEthereumAddress (121) */
|
|
1375
1512
|
interface PalletAirdropClaimsUtilsEthereumAddress extends U8aFixed {
|
|
1376
1513
|
}
|
|
1377
|
-
/** @name PalletRolesEvent (
|
|
1514
|
+
/** @name PalletRolesEvent (122) */
|
|
1378
1515
|
interface PalletRolesEvent extends Enum {
|
|
1379
1516
|
readonly isRoleAssigned: boolean;
|
|
1380
1517
|
readonly asRoleAssigned: {
|
|
@@ -1431,7 +1568,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1431
1568
|
} & Struct;
|
|
1432
1569
|
readonly type: 'RoleAssigned' | 'RoleRemoved' | 'Slashed' | 'ProfileCreated' | 'ProfileUpdated' | 'ProfileDeleted' | 'PendingJobs' | 'RolesRewardSet' | 'PayoutStarted' | 'Rewarded' | 'MinRestakingBondUpdated';
|
|
1433
1570
|
}
|
|
1434
|
-
/** @name TanglePrimitivesRolesRoleType (
|
|
1571
|
+
/** @name TanglePrimitivesRolesRoleType (123) */
|
|
1435
1572
|
interface TanglePrimitivesRolesRoleType extends Enum {
|
|
1436
1573
|
readonly isTss: boolean;
|
|
1437
1574
|
readonly asTss: TanglePrimitivesRolesTssThresholdSignatureRoleType;
|
|
@@ -1440,7 +1577,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1440
1577
|
readonly isLightClientRelaying: boolean;
|
|
1441
1578
|
readonly type: 'Tss' | 'ZkSaaS' | 'LightClientRelaying';
|
|
1442
1579
|
}
|
|
1443
|
-
/** @name TanglePrimitivesRolesTssThresholdSignatureRoleType (
|
|
1580
|
+
/** @name TanglePrimitivesRolesTssThresholdSignatureRoleType (124) */
|
|
1444
1581
|
interface TanglePrimitivesRolesTssThresholdSignatureRoleType extends Enum {
|
|
1445
1582
|
readonly isDfnsCGGMP21Secp256k1: boolean;
|
|
1446
1583
|
readonly isDfnsCGGMP21Secp256r1: boolean;
|
|
@@ -1453,15 +1590,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
1453
1590
|
readonly isZcashFrostEd25519: boolean;
|
|
1454
1591
|
readonly isZcashFrostEd448: boolean;
|
|
1455
1592
|
readonly isGennaroDKGBls381: boolean;
|
|
1456
|
-
readonly
|
|
1593
|
+
readonly isWstsV2: boolean;
|
|
1594
|
+
readonly type: 'DfnsCGGMP21Secp256k1' | 'DfnsCGGMP21Secp256r1' | 'DfnsCGGMP21Stark' | 'SilentShardDKLS23Secp256k1' | 'ZcashFrostP256' | 'ZcashFrostP384' | 'ZcashFrostSecp256k1' | 'ZcashFrostRistretto255' | 'ZcashFrostEd25519' | 'ZcashFrostEd448' | 'GennaroDKGBls381' | 'WstsV2';
|
|
1457
1595
|
}
|
|
1458
|
-
/** @name TanglePrimitivesRolesZksaasZeroKnowledgeRoleType (
|
|
1596
|
+
/** @name TanglePrimitivesRolesZksaasZeroKnowledgeRoleType (125) */
|
|
1459
1597
|
interface TanglePrimitivesRolesZksaasZeroKnowledgeRoleType extends Enum {
|
|
1460
1598
|
readonly isZkSaaSGroth16: boolean;
|
|
1461
1599
|
readonly isZkSaaSMarlin: boolean;
|
|
1462
1600
|
readonly type: 'ZkSaaSGroth16' | 'ZkSaaSMarlin';
|
|
1463
1601
|
}
|
|
1464
|
-
/** @name PalletJobsModuleEvent (
|
|
1602
|
+
/** @name PalletJobsModuleEvent (129) */
|
|
1465
1603
|
interface PalletJobsModuleEvent extends Enum {
|
|
1466
1604
|
readonly isJobSubmitted: boolean;
|
|
1467
1605
|
readonly asJobSubmitted: {
|
|
@@ -1504,20 +1642,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
1504
1642
|
} & Struct;
|
|
1505
1643
|
readonly type: 'JobSubmitted' | 'JobResultSubmitted' | 'ValidatorRewarded' | 'JobRefunded' | 'JobParticipantsUpdated' | 'JobReSubmitted' | 'JobResultExtended';
|
|
1506
1644
|
}
|
|
1507
|
-
/** @name TanglePrimitivesJobsJobSubmission (
|
|
1645
|
+
/** @name TanglePrimitivesJobsJobSubmission (130) */
|
|
1508
1646
|
interface TanglePrimitivesJobsJobSubmission extends Struct {
|
|
1509
1647
|
readonly expiry: u64;
|
|
1510
1648
|
readonly ttl: u64;
|
|
1511
1649
|
readonly jobType: TanglePrimitivesJobsJobType;
|
|
1512
1650
|
readonly fallback: TanglePrimitivesJobsFallbackOptions;
|
|
1513
1651
|
}
|
|
1514
|
-
/** @name TangleTestnetRuntimeMaxParticipants (
|
|
1652
|
+
/** @name TangleTestnetRuntimeMaxParticipants (131) */
|
|
1515
1653
|
type TangleTestnetRuntimeMaxParticipants = Null;
|
|
1516
|
-
/** @name TangleTestnetRuntimeMaxSubmissionLen (
|
|
1654
|
+
/** @name TangleTestnetRuntimeMaxSubmissionLen (132) */
|
|
1517
1655
|
type TangleTestnetRuntimeMaxSubmissionLen = Null;
|
|
1518
|
-
/** @name TangleTestnetRuntimeMaxAdditionalParamsLen (
|
|
1656
|
+
/** @name TangleTestnetRuntimeMaxAdditionalParamsLen (133) */
|
|
1519
1657
|
type TangleTestnetRuntimeMaxAdditionalParamsLen = Null;
|
|
1520
|
-
/** @name TanglePrimitivesJobsJobType (
|
|
1658
|
+
/** @name TanglePrimitivesJobsJobType (134) */
|
|
1521
1659
|
interface TanglePrimitivesJobsJobType extends Enum {
|
|
1522
1660
|
readonly isDkgtssPhaseOne: boolean;
|
|
1523
1661
|
readonly asDkgtssPhaseOne: TanglePrimitivesJobsTssDkgtssPhaseOneJobType;
|
|
@@ -1533,45 +1671,46 @@ declare module '@polkadot/types/lookup' {
|
|
|
1533
1671
|
readonly asZkSaaSPhaseTwo: TanglePrimitivesJobsZksaasZkSaaSPhaseTwoJobType;
|
|
1534
1672
|
readonly type: 'DkgtssPhaseOne' | 'DkgtssPhaseTwo' | 'DkgtssPhaseThree' | 'DkgtssPhaseFour' | 'ZkSaaSPhaseOne' | 'ZkSaaSPhaseTwo';
|
|
1535
1673
|
}
|
|
1536
|
-
/** @name TanglePrimitivesJobsTssDkgtssPhaseOneJobType (
|
|
1674
|
+
/** @name TanglePrimitivesJobsTssDkgtssPhaseOneJobType (135) */
|
|
1537
1675
|
interface TanglePrimitivesJobsTssDkgtssPhaseOneJobType extends Struct {
|
|
1538
1676
|
readonly participants: Vec<AccountId32>;
|
|
1539
1677
|
readonly threshold: u8;
|
|
1540
1678
|
readonly permittedCaller: Option<AccountId32>;
|
|
1541
1679
|
readonly roleType: TanglePrimitivesRolesTssThresholdSignatureRoleType;
|
|
1680
|
+
readonly hdWallet: bool;
|
|
1542
1681
|
}
|
|
1543
|
-
/** @name TanglePrimitivesJobsTssDkgtssPhaseTwoJobType (
|
|
1682
|
+
/** @name TanglePrimitivesJobsTssDkgtssPhaseTwoJobType (138) */
|
|
1544
1683
|
interface TanglePrimitivesJobsTssDkgtssPhaseTwoJobType extends Struct {
|
|
1545
1684
|
readonly phaseOneId: u64;
|
|
1546
1685
|
readonly submission: Bytes;
|
|
1547
1686
|
readonly derivationPath: Option<Bytes>;
|
|
1548
1687
|
readonly roleType: TanglePrimitivesRolesTssThresholdSignatureRoleType;
|
|
1549
1688
|
}
|
|
1550
|
-
/** @name TanglePrimitivesJobsTssDkgtssPhaseThreeJobType (
|
|
1689
|
+
/** @name TanglePrimitivesJobsTssDkgtssPhaseThreeJobType (142) */
|
|
1551
1690
|
interface TanglePrimitivesJobsTssDkgtssPhaseThreeJobType extends Struct {
|
|
1552
1691
|
readonly phaseOneId: u64;
|
|
1553
1692
|
readonly roleType: TanglePrimitivesRolesTssThresholdSignatureRoleType;
|
|
1554
1693
|
}
|
|
1555
|
-
/** @name TanglePrimitivesJobsTssDkgtssPhaseFourJobType (
|
|
1694
|
+
/** @name TanglePrimitivesJobsTssDkgtssPhaseFourJobType (143) */
|
|
1556
1695
|
interface TanglePrimitivesJobsTssDkgtssPhaseFourJobType extends Struct {
|
|
1557
1696
|
readonly phaseOneId: u64;
|
|
1558
1697
|
readonly newPhaseOneId: u64;
|
|
1559
1698
|
readonly roleType: TanglePrimitivesRolesTssThresholdSignatureRoleType;
|
|
1560
1699
|
}
|
|
1561
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSPhaseOneJobType (
|
|
1700
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSPhaseOneJobType (144) */
|
|
1562
1701
|
interface TanglePrimitivesJobsZksaasZkSaaSPhaseOneJobType extends Struct {
|
|
1563
1702
|
readonly participants: Vec<AccountId32>;
|
|
1564
1703
|
readonly permittedCaller: Option<AccountId32>;
|
|
1565
1704
|
readonly system: TanglePrimitivesJobsZksaasZkSaaSSystem;
|
|
1566
1705
|
readonly roleType: TanglePrimitivesRolesZksaasZeroKnowledgeRoleType;
|
|
1567
1706
|
}
|
|
1568
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSSystem (
|
|
1707
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSSystem (145) */
|
|
1569
1708
|
interface TanglePrimitivesJobsZksaasZkSaaSSystem extends Enum {
|
|
1570
1709
|
readonly isGroth16: boolean;
|
|
1571
1710
|
readonly asGroth16: TanglePrimitivesJobsZksaasGroth16System;
|
|
1572
1711
|
readonly type: 'Groth16';
|
|
1573
1712
|
}
|
|
1574
|
-
/** @name TanglePrimitivesJobsZksaasGroth16System (
|
|
1713
|
+
/** @name TanglePrimitivesJobsZksaasGroth16System (146) */
|
|
1575
1714
|
interface TanglePrimitivesJobsZksaasGroth16System extends Struct {
|
|
1576
1715
|
readonly circuit: TanglePrimitivesJobsZksaasHyperData;
|
|
1577
1716
|
readonly numInputs: u64;
|
|
@@ -1580,7 +1719,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1580
1719
|
readonly verifyingKey: Bytes;
|
|
1581
1720
|
readonly wasm: TanglePrimitivesJobsZksaasHyperData;
|
|
1582
1721
|
}
|
|
1583
|
-
/** @name TanglePrimitivesJobsZksaasHyperData (
|
|
1722
|
+
/** @name TanglePrimitivesJobsZksaasHyperData (147) */
|
|
1584
1723
|
interface TanglePrimitivesJobsZksaasHyperData extends Enum {
|
|
1585
1724
|
readonly isRaw: boolean;
|
|
1586
1725
|
readonly asRaw: Bytes;
|
|
@@ -1590,39 +1729,39 @@ declare module '@polkadot/types/lookup' {
|
|
|
1590
1729
|
readonly asHttp: Bytes;
|
|
1591
1730
|
readonly type: 'Raw' | 'Ipfs' | 'Http';
|
|
1592
1731
|
}
|
|
1593
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSPhaseTwoJobType (
|
|
1732
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSPhaseTwoJobType (148) */
|
|
1594
1733
|
interface TanglePrimitivesJobsZksaasZkSaaSPhaseTwoJobType extends Struct {
|
|
1595
1734
|
readonly phaseOneId: u64;
|
|
1596
1735
|
readonly request: TanglePrimitivesJobsZksaasZkSaaSPhaseTwoRequest;
|
|
1597
1736
|
readonly roleType: TanglePrimitivesRolesZksaasZeroKnowledgeRoleType;
|
|
1598
1737
|
}
|
|
1599
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSPhaseTwoRequest (
|
|
1738
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSPhaseTwoRequest (149) */
|
|
1600
1739
|
interface TanglePrimitivesJobsZksaasZkSaaSPhaseTwoRequest extends Enum {
|
|
1601
1740
|
readonly isGroth16: boolean;
|
|
1602
1741
|
readonly asGroth16: TanglePrimitivesJobsZksaasGroth16ProveRequest;
|
|
1603
1742
|
readonly type: 'Groth16';
|
|
1604
1743
|
}
|
|
1605
|
-
/** @name TanglePrimitivesJobsZksaasGroth16ProveRequest (
|
|
1744
|
+
/** @name TanglePrimitivesJobsZksaasGroth16ProveRequest (150) */
|
|
1606
1745
|
interface TanglePrimitivesJobsZksaasGroth16ProveRequest extends Struct {
|
|
1607
1746
|
readonly publicInput: Bytes;
|
|
1608
1747
|
readonly aShares: Vec<TanglePrimitivesJobsZksaasHyperData>;
|
|
1609
1748
|
readonly axShares: Vec<TanglePrimitivesJobsZksaasHyperData>;
|
|
1610
1749
|
readonly qapShares: Vec<TanglePrimitivesJobsZksaasQapShare>;
|
|
1611
1750
|
}
|
|
1612
|
-
/** @name TanglePrimitivesJobsZksaasQapShare (
|
|
1751
|
+
/** @name TanglePrimitivesJobsZksaasQapShare (154) */
|
|
1613
1752
|
interface TanglePrimitivesJobsZksaasQapShare extends Struct {
|
|
1614
1753
|
readonly a: TanglePrimitivesJobsZksaasHyperData;
|
|
1615
1754
|
readonly b: TanglePrimitivesJobsZksaasHyperData;
|
|
1616
1755
|
readonly c: TanglePrimitivesJobsZksaasHyperData;
|
|
1617
1756
|
}
|
|
1618
|
-
/** @name TanglePrimitivesJobsFallbackOptions (
|
|
1757
|
+
/** @name TanglePrimitivesJobsFallbackOptions (156) */
|
|
1619
1758
|
interface TanglePrimitivesJobsFallbackOptions extends Enum {
|
|
1620
1759
|
readonly isDestroy: boolean;
|
|
1621
1760
|
readonly isRegenerateWithThreshold: boolean;
|
|
1622
1761
|
readonly asRegenerateWithThreshold: u8;
|
|
1623
1762
|
readonly type: 'Destroy' | 'RegenerateWithThreshold';
|
|
1624
1763
|
}
|
|
1625
|
-
/** @name TanglePrimitivesJobsJobInfo (
|
|
1764
|
+
/** @name TanglePrimitivesJobsJobInfo (157) */
|
|
1626
1765
|
interface TanglePrimitivesJobsJobInfo extends Struct {
|
|
1627
1766
|
readonly owner: AccountId32;
|
|
1628
1767
|
readonly expiry: u64;
|
|
@@ -1631,7 +1770,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1631
1770
|
readonly fee: u128;
|
|
1632
1771
|
readonly fallback: TanglePrimitivesJobsFallbackOptions;
|
|
1633
1772
|
}
|
|
1634
|
-
/** @name PalletDkgEvent (
|
|
1773
|
+
/** @name PalletDkgEvent (158) */
|
|
1635
1774
|
interface PalletDkgEvent extends Enum {
|
|
1636
1775
|
readonly isFeeUpdated: boolean;
|
|
1637
1776
|
readonly asFeeUpdated: PalletDkgFeeInfo;
|
|
@@ -1643,7 +1782,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1643
1782
|
} & Struct;
|
|
1644
1783
|
readonly type: 'FeeUpdated' | 'KeyRotated';
|
|
1645
1784
|
}
|
|
1646
|
-
/** @name PalletDkgFeeInfo (
|
|
1785
|
+
/** @name PalletDkgFeeInfo (159) */
|
|
1647
1786
|
interface PalletDkgFeeInfo extends Struct {
|
|
1648
1787
|
readonly baseFee: u128;
|
|
1649
1788
|
readonly dkgValidatorFee: u128;
|
|
@@ -1652,20 +1791,419 @@ declare module '@polkadot/types/lookup' {
|
|
|
1652
1791
|
readonly storageFeePerByte: u128;
|
|
1653
1792
|
readonly storageFeePerBlock: u128;
|
|
1654
1793
|
}
|
|
1655
|
-
/** @name PalletZksaasEvent (
|
|
1794
|
+
/** @name PalletZksaasEvent (160) */
|
|
1656
1795
|
interface PalletZksaasEvent extends Enum {
|
|
1657
1796
|
readonly isFeeUpdated: boolean;
|
|
1658
1797
|
readonly asFeeUpdated: PalletZksaasFeeInfo;
|
|
1659
1798
|
readonly type: 'FeeUpdated';
|
|
1660
1799
|
}
|
|
1661
|
-
/** @name PalletZksaasFeeInfo (
|
|
1800
|
+
/** @name PalletZksaasFeeInfo (161) */
|
|
1662
1801
|
interface PalletZksaasFeeInfo extends Struct {
|
|
1663
1802
|
readonly baseFee: u128;
|
|
1664
1803
|
readonly circuitFee: u128;
|
|
1665
1804
|
readonly proveFee: u128;
|
|
1666
1805
|
readonly storageFeePerByte: u128;
|
|
1667
1806
|
}
|
|
1668
|
-
/** @name
|
|
1807
|
+
/** @name PalletProxyEvent (162) */
|
|
1808
|
+
interface PalletProxyEvent extends Enum {
|
|
1809
|
+
readonly isProxyExecuted: boolean;
|
|
1810
|
+
readonly asProxyExecuted: {
|
|
1811
|
+
readonly result: Result<Null, SpRuntimeDispatchError>;
|
|
1812
|
+
} & Struct;
|
|
1813
|
+
readonly isPureCreated: boolean;
|
|
1814
|
+
readonly asPureCreated: {
|
|
1815
|
+
readonly pure: AccountId32;
|
|
1816
|
+
readonly who: AccountId32;
|
|
1817
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
|
1818
|
+
readonly disambiguationIndex: u16;
|
|
1819
|
+
} & Struct;
|
|
1820
|
+
readonly isAnnounced: boolean;
|
|
1821
|
+
readonly asAnnounced: {
|
|
1822
|
+
readonly real: AccountId32;
|
|
1823
|
+
readonly proxy: AccountId32;
|
|
1824
|
+
readonly callHash: H256;
|
|
1825
|
+
} & Struct;
|
|
1826
|
+
readonly isProxyAdded: boolean;
|
|
1827
|
+
readonly asProxyAdded: {
|
|
1828
|
+
readonly delegator: AccountId32;
|
|
1829
|
+
readonly delegatee: AccountId32;
|
|
1830
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
|
1831
|
+
readonly delay: u64;
|
|
1832
|
+
} & Struct;
|
|
1833
|
+
readonly isProxyRemoved: boolean;
|
|
1834
|
+
readonly asProxyRemoved: {
|
|
1835
|
+
readonly delegator: AccountId32;
|
|
1836
|
+
readonly delegatee: AccountId32;
|
|
1837
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
|
1838
|
+
readonly delay: u64;
|
|
1839
|
+
} & Struct;
|
|
1840
|
+
readonly type: 'ProxyExecuted' | 'PureCreated' | 'Announced' | 'ProxyAdded' | 'ProxyRemoved';
|
|
1841
|
+
}
|
|
1842
|
+
/** @name TangleTestnetRuntimeProxyType (163) */
|
|
1843
|
+
interface TangleTestnetRuntimeProxyType extends Enum {
|
|
1844
|
+
readonly isAny: boolean;
|
|
1845
|
+
readonly isNonTransfer: boolean;
|
|
1846
|
+
readonly isGovernance: boolean;
|
|
1847
|
+
readonly isStaking: boolean;
|
|
1848
|
+
readonly type: 'Any' | 'NonTransfer' | 'Governance' | 'Staking';
|
|
1849
|
+
}
|
|
1850
|
+
/** @name PalletMultiAssetDelegationEvent (165) */
|
|
1851
|
+
interface PalletMultiAssetDelegationEvent extends Enum {
|
|
1852
|
+
readonly isOperatorJoined: boolean;
|
|
1853
|
+
readonly asOperatorJoined: {
|
|
1854
|
+
readonly who: AccountId32;
|
|
1855
|
+
} & Struct;
|
|
1856
|
+
readonly isOperatorLeavingScheduled: boolean;
|
|
1857
|
+
readonly asOperatorLeavingScheduled: {
|
|
1858
|
+
readonly who: AccountId32;
|
|
1859
|
+
} & Struct;
|
|
1860
|
+
readonly isOperatorLeaveCancelled: boolean;
|
|
1861
|
+
readonly asOperatorLeaveCancelled: {
|
|
1862
|
+
readonly who: AccountId32;
|
|
1863
|
+
} & Struct;
|
|
1864
|
+
readonly isOperatorLeaveExecuted: boolean;
|
|
1865
|
+
readonly asOperatorLeaveExecuted: {
|
|
1866
|
+
readonly who: AccountId32;
|
|
1867
|
+
} & Struct;
|
|
1868
|
+
readonly isOperatorBondMore: boolean;
|
|
1869
|
+
readonly asOperatorBondMore: {
|
|
1870
|
+
readonly who: AccountId32;
|
|
1871
|
+
readonly additionalBond: u128;
|
|
1872
|
+
} & Struct;
|
|
1873
|
+
readonly isOperatorBondLessScheduled: boolean;
|
|
1874
|
+
readonly asOperatorBondLessScheduled: {
|
|
1875
|
+
readonly who: AccountId32;
|
|
1876
|
+
readonly bondLessAmount: u128;
|
|
1877
|
+
} & Struct;
|
|
1878
|
+
readonly isOperatorBondLessExecuted: boolean;
|
|
1879
|
+
readonly asOperatorBondLessExecuted: {
|
|
1880
|
+
readonly who: AccountId32;
|
|
1881
|
+
} & Struct;
|
|
1882
|
+
readonly isOperatorBondLessCancelled: boolean;
|
|
1883
|
+
readonly asOperatorBondLessCancelled: {
|
|
1884
|
+
readonly who: AccountId32;
|
|
1885
|
+
} & Struct;
|
|
1886
|
+
readonly isOperatorWentOffline: boolean;
|
|
1887
|
+
readonly asOperatorWentOffline: {
|
|
1888
|
+
readonly who: AccountId32;
|
|
1889
|
+
} & Struct;
|
|
1890
|
+
readonly isOperatorWentOnline: boolean;
|
|
1891
|
+
readonly asOperatorWentOnline: {
|
|
1892
|
+
readonly who: AccountId32;
|
|
1893
|
+
} & Struct;
|
|
1894
|
+
readonly isDeposited: boolean;
|
|
1895
|
+
readonly asDeposited: {
|
|
1896
|
+
readonly who: AccountId32;
|
|
1897
|
+
readonly amount: u128;
|
|
1898
|
+
readonly assetId: Option<u128>;
|
|
1899
|
+
} & Struct;
|
|
1900
|
+
readonly isScheduledUnstake: boolean;
|
|
1901
|
+
readonly asScheduledUnstake: {
|
|
1902
|
+
readonly who: AccountId32;
|
|
1903
|
+
readonly amount: u128;
|
|
1904
|
+
readonly assetId: Option<u128>;
|
|
1905
|
+
} & Struct;
|
|
1906
|
+
readonly isExecutedUnstake: boolean;
|
|
1907
|
+
readonly asExecutedUnstake: {
|
|
1908
|
+
readonly who: AccountId32;
|
|
1909
|
+
} & Struct;
|
|
1910
|
+
readonly isCancelledUnstake: boolean;
|
|
1911
|
+
readonly asCancelledUnstake: {
|
|
1912
|
+
readonly who: AccountId32;
|
|
1913
|
+
} & Struct;
|
|
1914
|
+
readonly isDelegated: boolean;
|
|
1915
|
+
readonly asDelegated: {
|
|
1916
|
+
readonly who: AccountId32;
|
|
1917
|
+
readonly operator: AccountId32;
|
|
1918
|
+
readonly amount: u128;
|
|
1919
|
+
readonly assetId: u128;
|
|
1920
|
+
} & Struct;
|
|
1921
|
+
readonly isScheduledDelegatorBondLess: boolean;
|
|
1922
|
+
readonly asScheduledDelegatorBondLess: {
|
|
1923
|
+
readonly who: AccountId32;
|
|
1924
|
+
readonly operator: AccountId32;
|
|
1925
|
+
readonly amount: u128;
|
|
1926
|
+
readonly assetId: u128;
|
|
1927
|
+
} & Struct;
|
|
1928
|
+
readonly isExecutedDelegatorBondLess: boolean;
|
|
1929
|
+
readonly asExecutedDelegatorBondLess: {
|
|
1930
|
+
readonly who: AccountId32;
|
|
1931
|
+
} & Struct;
|
|
1932
|
+
readonly isCancelledDelegatorBondLess: boolean;
|
|
1933
|
+
readonly asCancelledDelegatorBondLess: {
|
|
1934
|
+
readonly who: AccountId32;
|
|
1935
|
+
} & Struct;
|
|
1936
|
+
readonly isWhitelistedAssetsSet: boolean;
|
|
1937
|
+
readonly asWhitelistedAssetsSet: {
|
|
1938
|
+
readonly assets: Vec<u128>;
|
|
1939
|
+
} & Struct;
|
|
1940
|
+
readonly isIncentiveAPYAndCapSet: boolean;
|
|
1941
|
+
readonly asIncentiveAPYAndCapSet: {
|
|
1942
|
+
readonly assetId: u128;
|
|
1943
|
+
readonly apy: u128;
|
|
1944
|
+
readonly cap: u128;
|
|
1945
|
+
} & Struct;
|
|
1946
|
+
readonly isBlueprintWhitelisted: boolean;
|
|
1947
|
+
readonly asBlueprintWhitelisted: {
|
|
1948
|
+
readonly blueprintId: u32;
|
|
1949
|
+
} & Struct;
|
|
1950
|
+
readonly type: 'OperatorJoined' | 'OperatorLeavingScheduled' | 'OperatorLeaveCancelled' | 'OperatorLeaveExecuted' | 'OperatorBondMore' | 'OperatorBondLessScheduled' | 'OperatorBondLessExecuted' | 'OperatorBondLessCancelled' | 'OperatorWentOffline' | 'OperatorWentOnline' | 'Deposited' | 'ScheduledUnstake' | 'ExecutedUnstake' | 'CancelledUnstake' | 'Delegated' | 'ScheduledDelegatorBondLess' | 'ExecutedDelegatorBondLess' | 'CancelledDelegatorBondLess' | 'WhitelistedAssetsSet' | 'IncentiveAPYAndCapSet' | 'BlueprintWhitelisted';
|
|
1951
|
+
}
|
|
1952
|
+
/** @name SygmaAccessSegregatorEvent (168) */
|
|
1953
|
+
interface SygmaAccessSegregatorEvent extends Enum {
|
|
1954
|
+
readonly isAccessGranted: boolean;
|
|
1955
|
+
readonly asAccessGranted: {
|
|
1956
|
+
readonly palletIndex: u8;
|
|
1957
|
+
readonly extrinsicName: Bytes;
|
|
1958
|
+
readonly who: AccountId32;
|
|
1959
|
+
} & Struct;
|
|
1960
|
+
readonly type: 'AccessGranted';
|
|
1961
|
+
}
|
|
1962
|
+
/** @name SygmaBasicFeehandlerEvent (169) */
|
|
1963
|
+
interface SygmaBasicFeehandlerEvent extends Enum {
|
|
1964
|
+
readonly isFeeSet: boolean;
|
|
1965
|
+
readonly asFeeSet: {
|
|
1966
|
+
readonly domain: u8;
|
|
1967
|
+
readonly asset: StagingXcmV4AssetAssetId;
|
|
1968
|
+
readonly amount: u128;
|
|
1969
|
+
} & Struct;
|
|
1970
|
+
readonly type: 'FeeSet';
|
|
1971
|
+
}
|
|
1972
|
+
/** @name StagingXcmV4AssetAssetId (170) */
|
|
1973
|
+
interface StagingXcmV4AssetAssetId extends StagingXcmV4Location {
|
|
1974
|
+
}
|
|
1975
|
+
/** @name StagingXcmV4Location (171) */
|
|
1976
|
+
interface StagingXcmV4Location extends Struct {
|
|
1977
|
+
readonly parents: u8;
|
|
1978
|
+
readonly interior: StagingXcmV4Junctions;
|
|
1979
|
+
}
|
|
1980
|
+
/** @name StagingXcmV4Junctions (172) */
|
|
1981
|
+
interface StagingXcmV4Junctions extends Enum {
|
|
1982
|
+
readonly isHere: boolean;
|
|
1983
|
+
readonly isX1: boolean;
|
|
1984
|
+
readonly asX1: StagingXcmV4Junction;
|
|
1985
|
+
readonly isX2: boolean;
|
|
1986
|
+
readonly asX2: StagingXcmV4Junction;
|
|
1987
|
+
readonly isX3: boolean;
|
|
1988
|
+
readonly asX3: StagingXcmV4Junction;
|
|
1989
|
+
readonly isX4: boolean;
|
|
1990
|
+
readonly asX4: StagingXcmV4Junction;
|
|
1991
|
+
readonly isX5: boolean;
|
|
1992
|
+
readonly asX5: StagingXcmV4Junction;
|
|
1993
|
+
readonly isX6: boolean;
|
|
1994
|
+
readonly asX6: StagingXcmV4Junction;
|
|
1995
|
+
readonly isX7: boolean;
|
|
1996
|
+
readonly asX7: StagingXcmV4Junction;
|
|
1997
|
+
readonly isX8: boolean;
|
|
1998
|
+
readonly asX8: StagingXcmV4Junction;
|
|
1999
|
+
readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
|
|
2000
|
+
}
|
|
2001
|
+
/** @name StagingXcmV4Junction (174) */
|
|
2002
|
+
interface StagingXcmV4Junction extends Enum {
|
|
2003
|
+
readonly isParachain: boolean;
|
|
2004
|
+
readonly asParachain: Compact<u32>;
|
|
2005
|
+
readonly isAccountId32: boolean;
|
|
2006
|
+
readonly asAccountId32: {
|
|
2007
|
+
readonly network: Option<StagingXcmV4JunctionNetworkId>;
|
|
2008
|
+
readonly id: U8aFixed;
|
|
2009
|
+
} & Struct;
|
|
2010
|
+
readonly isAccountIndex64: boolean;
|
|
2011
|
+
readonly asAccountIndex64: {
|
|
2012
|
+
readonly network: Option<StagingXcmV4JunctionNetworkId>;
|
|
2013
|
+
readonly index: Compact<u64>;
|
|
2014
|
+
} & Struct;
|
|
2015
|
+
readonly isAccountKey20: boolean;
|
|
2016
|
+
readonly asAccountKey20: {
|
|
2017
|
+
readonly network: Option<StagingXcmV4JunctionNetworkId>;
|
|
2018
|
+
readonly key: U8aFixed;
|
|
2019
|
+
} & Struct;
|
|
2020
|
+
readonly isPalletInstance: boolean;
|
|
2021
|
+
readonly asPalletInstance: u8;
|
|
2022
|
+
readonly isGeneralIndex: boolean;
|
|
2023
|
+
readonly asGeneralIndex: Compact<u128>;
|
|
2024
|
+
readonly isGeneralKey: boolean;
|
|
2025
|
+
readonly asGeneralKey: {
|
|
2026
|
+
readonly length: u8;
|
|
2027
|
+
readonly data: U8aFixed;
|
|
2028
|
+
} & Struct;
|
|
2029
|
+
readonly isOnlyChild: boolean;
|
|
2030
|
+
readonly isPlurality: boolean;
|
|
2031
|
+
readonly asPlurality: {
|
|
2032
|
+
readonly id: XcmV3JunctionBodyId;
|
|
2033
|
+
readonly part: XcmV3JunctionBodyPart;
|
|
2034
|
+
} & Struct;
|
|
2035
|
+
readonly isGlobalConsensus: boolean;
|
|
2036
|
+
readonly asGlobalConsensus: StagingXcmV4JunctionNetworkId;
|
|
2037
|
+
readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality' | 'GlobalConsensus';
|
|
2038
|
+
}
|
|
2039
|
+
/** @name StagingXcmV4JunctionNetworkId (177) */
|
|
2040
|
+
interface StagingXcmV4JunctionNetworkId extends Enum {
|
|
2041
|
+
readonly isByGenesis: boolean;
|
|
2042
|
+
readonly asByGenesis: U8aFixed;
|
|
2043
|
+
readonly isByFork: boolean;
|
|
2044
|
+
readonly asByFork: {
|
|
2045
|
+
readonly blockNumber: u64;
|
|
2046
|
+
readonly blockHash: U8aFixed;
|
|
2047
|
+
} & Struct;
|
|
2048
|
+
readonly isPolkadot: boolean;
|
|
2049
|
+
readonly isKusama: boolean;
|
|
2050
|
+
readonly isWestend: boolean;
|
|
2051
|
+
readonly isRococo: boolean;
|
|
2052
|
+
readonly isWococo: boolean;
|
|
2053
|
+
readonly isEthereum: boolean;
|
|
2054
|
+
readonly asEthereum: {
|
|
2055
|
+
readonly chainId: Compact<u64>;
|
|
2056
|
+
} & Struct;
|
|
2057
|
+
readonly isBitcoinCore: boolean;
|
|
2058
|
+
readonly isBitcoinCash: boolean;
|
|
2059
|
+
readonly isPolkadotBulletin: boolean;
|
|
2060
|
+
readonly type: 'ByGenesis' | 'ByFork' | 'Polkadot' | 'Kusama' | 'Westend' | 'Rococo' | 'Wococo' | 'Ethereum' | 'BitcoinCore' | 'BitcoinCash' | 'PolkadotBulletin';
|
|
2061
|
+
}
|
|
2062
|
+
/** @name XcmV3JunctionBodyId (178) */
|
|
2063
|
+
interface XcmV3JunctionBodyId extends Enum {
|
|
2064
|
+
readonly isUnit: boolean;
|
|
2065
|
+
readonly isMoniker: boolean;
|
|
2066
|
+
readonly asMoniker: U8aFixed;
|
|
2067
|
+
readonly isIndex: boolean;
|
|
2068
|
+
readonly asIndex: Compact<u32>;
|
|
2069
|
+
readonly isExecutive: boolean;
|
|
2070
|
+
readonly isTechnical: boolean;
|
|
2071
|
+
readonly isLegislative: boolean;
|
|
2072
|
+
readonly isJudicial: boolean;
|
|
2073
|
+
readonly isDefense: boolean;
|
|
2074
|
+
readonly isAdministration: boolean;
|
|
2075
|
+
readonly isTreasury: boolean;
|
|
2076
|
+
readonly type: 'Unit' | 'Moniker' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';
|
|
2077
|
+
}
|
|
2078
|
+
/** @name XcmV3JunctionBodyPart (179) */
|
|
2079
|
+
interface XcmV3JunctionBodyPart extends Enum {
|
|
2080
|
+
readonly isVoice: boolean;
|
|
2081
|
+
readonly isMembers: boolean;
|
|
2082
|
+
readonly asMembers: {
|
|
2083
|
+
readonly count: Compact<u32>;
|
|
2084
|
+
} & Struct;
|
|
2085
|
+
readonly isFraction: boolean;
|
|
2086
|
+
readonly asFraction: {
|
|
2087
|
+
readonly nom: Compact<u32>;
|
|
2088
|
+
readonly denom: Compact<u32>;
|
|
2089
|
+
} & Struct;
|
|
2090
|
+
readonly isAtLeastProportion: boolean;
|
|
2091
|
+
readonly asAtLeastProportion: {
|
|
2092
|
+
readonly nom: Compact<u32>;
|
|
2093
|
+
readonly denom: Compact<u32>;
|
|
2094
|
+
} & Struct;
|
|
2095
|
+
readonly isMoreThanProportion: boolean;
|
|
2096
|
+
readonly asMoreThanProportion: {
|
|
2097
|
+
readonly nom: Compact<u32>;
|
|
2098
|
+
readonly denom: Compact<u32>;
|
|
2099
|
+
} & Struct;
|
|
2100
|
+
readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
|
|
2101
|
+
}
|
|
2102
|
+
/** @name SygmaFeeHandlerRouterEvent (187) */
|
|
2103
|
+
interface SygmaFeeHandlerRouterEvent extends Enum {
|
|
2104
|
+
readonly isFeeHandlerSet: boolean;
|
|
2105
|
+
readonly asFeeHandlerSet: {
|
|
2106
|
+
readonly domain: u8;
|
|
2107
|
+
readonly asset: StagingXcmV4AssetAssetId;
|
|
2108
|
+
readonly handlerType: SygmaFeeHandlerRouterFeeHandlerType;
|
|
2109
|
+
} & Struct;
|
|
2110
|
+
readonly type: 'FeeHandlerSet';
|
|
2111
|
+
}
|
|
2112
|
+
/** @name SygmaFeeHandlerRouterFeeHandlerType (188) */
|
|
2113
|
+
interface SygmaFeeHandlerRouterFeeHandlerType extends Enum {
|
|
2114
|
+
readonly isBasicFeeHandler: boolean;
|
|
2115
|
+
readonly isPercentageFeeHandler: boolean;
|
|
2116
|
+
readonly isDynamicFeeHandler: boolean;
|
|
2117
|
+
readonly type: 'BasicFeeHandler' | 'PercentageFeeHandler' | 'DynamicFeeHandler';
|
|
2118
|
+
}
|
|
2119
|
+
/** @name SygmaPercentageFeehandlerEvent (189) */
|
|
2120
|
+
interface SygmaPercentageFeehandlerEvent extends Enum {
|
|
2121
|
+
readonly isFeeRateSet: boolean;
|
|
2122
|
+
readonly asFeeRateSet: {
|
|
2123
|
+
readonly domain: u8;
|
|
2124
|
+
readonly asset: StagingXcmV4AssetAssetId;
|
|
2125
|
+
readonly rateBasisPoint: u32;
|
|
2126
|
+
readonly feeLowerBound: u128;
|
|
2127
|
+
readonly feeUpperBound: u128;
|
|
2128
|
+
} & Struct;
|
|
2129
|
+
readonly type: 'FeeRateSet';
|
|
2130
|
+
}
|
|
2131
|
+
/** @name SygmaBridgeEvent (190) */
|
|
2132
|
+
interface SygmaBridgeEvent extends Enum {
|
|
2133
|
+
readonly isDeposit: boolean;
|
|
2134
|
+
readonly asDeposit: {
|
|
2135
|
+
readonly destDomainId: u8;
|
|
2136
|
+
readonly resourceId: U8aFixed;
|
|
2137
|
+
readonly depositNonce: u64;
|
|
2138
|
+
readonly sender: AccountId32;
|
|
2139
|
+
readonly transferType: SygmaTraitsTransferType;
|
|
2140
|
+
readonly depositData: Bytes;
|
|
2141
|
+
readonly handlerResponse: Bytes;
|
|
2142
|
+
} & Struct;
|
|
2143
|
+
readonly isProposalExecution: boolean;
|
|
2144
|
+
readonly asProposalExecution: {
|
|
2145
|
+
readonly originDomainId: u8;
|
|
2146
|
+
readonly depositNonce: u64;
|
|
2147
|
+
readonly dataHash: U8aFixed;
|
|
2148
|
+
} & Struct;
|
|
2149
|
+
readonly isFailedHandlerExecution: boolean;
|
|
2150
|
+
readonly asFailedHandlerExecution: {
|
|
2151
|
+
readonly error: Bytes;
|
|
2152
|
+
readonly originDomainId: u8;
|
|
2153
|
+
readonly depositNonce: u64;
|
|
2154
|
+
} & Struct;
|
|
2155
|
+
readonly isRetry: boolean;
|
|
2156
|
+
readonly asRetry: {
|
|
2157
|
+
readonly depositOnBlockHeight: u128;
|
|
2158
|
+
readonly destDomainId: u8;
|
|
2159
|
+
readonly sender: AccountId32;
|
|
2160
|
+
} & Struct;
|
|
2161
|
+
readonly isBridgePaused: boolean;
|
|
2162
|
+
readonly asBridgePaused: {
|
|
2163
|
+
readonly destDomainId: u8;
|
|
2164
|
+
} & Struct;
|
|
2165
|
+
readonly isBridgeUnpaused: boolean;
|
|
2166
|
+
readonly asBridgeUnpaused: {
|
|
2167
|
+
readonly destDomainId: u8;
|
|
2168
|
+
} & Struct;
|
|
2169
|
+
readonly isRegisterDestDomain: boolean;
|
|
2170
|
+
readonly asRegisterDestDomain: {
|
|
2171
|
+
readonly sender: AccountId32;
|
|
2172
|
+
readonly domainId: u8;
|
|
2173
|
+
readonly chainId: U256;
|
|
2174
|
+
} & Struct;
|
|
2175
|
+
readonly isUnregisterDestDomain: boolean;
|
|
2176
|
+
readonly asUnregisterDestDomain: {
|
|
2177
|
+
readonly sender: AccountId32;
|
|
2178
|
+
readonly domainId: u8;
|
|
2179
|
+
readonly chainId: U256;
|
|
2180
|
+
} & Struct;
|
|
2181
|
+
readonly isFeeCollected: boolean;
|
|
2182
|
+
readonly asFeeCollected: {
|
|
2183
|
+
readonly feePayer: AccountId32;
|
|
2184
|
+
readonly destDomainId: u8;
|
|
2185
|
+
readonly resourceId: U8aFixed;
|
|
2186
|
+
readonly feeAmount: u128;
|
|
2187
|
+
readonly feeAssetId: StagingXcmV4AssetAssetId;
|
|
2188
|
+
} & Struct;
|
|
2189
|
+
readonly isAllBridgePaused: boolean;
|
|
2190
|
+
readonly asAllBridgePaused: {
|
|
2191
|
+
readonly sender: AccountId32;
|
|
2192
|
+
} & Struct;
|
|
2193
|
+
readonly isAllBridgeUnpaused: boolean;
|
|
2194
|
+
readonly asAllBridgeUnpaused: {
|
|
2195
|
+
readonly sender: AccountId32;
|
|
2196
|
+
} & Struct;
|
|
2197
|
+
readonly type: 'Deposit' | 'ProposalExecution' | 'FailedHandlerExecution' | 'Retry' | 'BridgePaused' | 'BridgeUnpaused' | 'RegisterDestDomain' | 'UnregisterDestDomain' | 'FeeCollected' | 'AllBridgePaused' | 'AllBridgeUnpaused';
|
|
2198
|
+
}
|
|
2199
|
+
/** @name SygmaTraitsTransferType (191) */
|
|
2200
|
+
interface SygmaTraitsTransferType extends Enum {
|
|
2201
|
+
readonly isFungibleTransfer: boolean;
|
|
2202
|
+
readonly isNonFungibleTransfer: boolean;
|
|
2203
|
+
readonly isGenericTransfer: boolean;
|
|
2204
|
+
readonly type: 'FungibleTransfer' | 'NonFungibleTransfer' | 'GenericTransfer';
|
|
2205
|
+
}
|
|
2206
|
+
/** @name FrameSystemPhase (192) */
|
|
1669
2207
|
interface FrameSystemPhase extends Enum {
|
|
1670
2208
|
readonly isApplyExtrinsic: boolean;
|
|
1671
2209
|
readonly asApplyExtrinsic: u32;
|
|
@@ -1673,17 +2211,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
1673
2211
|
readonly isInitialization: boolean;
|
|
1674
2212
|
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
|
|
1675
2213
|
}
|
|
1676
|
-
/** @name FrameSystemLastRuntimeUpgradeInfo (
|
|
2214
|
+
/** @name FrameSystemLastRuntimeUpgradeInfo (194) */
|
|
1677
2215
|
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
|
|
1678
2216
|
readonly specVersion: Compact<u32>;
|
|
1679
2217
|
readonly specName: Text;
|
|
1680
2218
|
}
|
|
1681
|
-
/** @name FrameSystemCodeUpgradeAuthorization (
|
|
2219
|
+
/** @name FrameSystemCodeUpgradeAuthorization (195) */
|
|
1682
2220
|
interface FrameSystemCodeUpgradeAuthorization extends Struct {
|
|
1683
2221
|
readonly codeHash: H256;
|
|
1684
2222
|
readonly checkVersion: bool;
|
|
1685
2223
|
}
|
|
1686
|
-
/** @name FrameSystemCall (
|
|
2224
|
+
/** @name FrameSystemCall (196) */
|
|
1687
2225
|
interface FrameSystemCall extends Enum {
|
|
1688
2226
|
readonly isRemark: boolean;
|
|
1689
2227
|
readonly asRemark: {
|
|
@@ -1732,41 +2270,41 @@ declare module '@polkadot/types/lookup' {
|
|
|
1732
2270
|
} & Struct;
|
|
1733
2271
|
readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent' | 'AuthorizeUpgrade' | 'AuthorizeUpgradeWithoutChecks' | 'ApplyAuthorizedUpgrade';
|
|
1734
2272
|
}
|
|
1735
|
-
/** @name FrameSystemLimitsBlockWeights (
|
|
2273
|
+
/** @name FrameSystemLimitsBlockWeights (200) */
|
|
1736
2274
|
interface FrameSystemLimitsBlockWeights extends Struct {
|
|
1737
2275
|
readonly baseBlock: SpWeightsWeightV2Weight;
|
|
1738
2276
|
readonly maxBlock: SpWeightsWeightV2Weight;
|
|
1739
2277
|
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
|
|
1740
2278
|
}
|
|
1741
|
-
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (
|
|
2279
|
+
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (201) */
|
|
1742
2280
|
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
|
|
1743
2281
|
readonly normal: FrameSystemLimitsWeightsPerClass;
|
|
1744
2282
|
readonly operational: FrameSystemLimitsWeightsPerClass;
|
|
1745
2283
|
readonly mandatory: FrameSystemLimitsWeightsPerClass;
|
|
1746
2284
|
}
|
|
1747
|
-
/** @name FrameSystemLimitsWeightsPerClass (
|
|
2285
|
+
/** @name FrameSystemLimitsWeightsPerClass (202) */
|
|
1748
2286
|
interface FrameSystemLimitsWeightsPerClass extends Struct {
|
|
1749
2287
|
readonly baseExtrinsic: SpWeightsWeightV2Weight;
|
|
1750
2288
|
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
|
|
1751
2289
|
readonly maxTotal: Option<SpWeightsWeightV2Weight>;
|
|
1752
2290
|
readonly reserved: Option<SpWeightsWeightV2Weight>;
|
|
1753
2291
|
}
|
|
1754
|
-
/** @name FrameSystemLimitsBlockLength (
|
|
2292
|
+
/** @name FrameSystemLimitsBlockLength (204) */
|
|
1755
2293
|
interface FrameSystemLimitsBlockLength extends Struct {
|
|
1756
2294
|
readonly max: FrameSupportDispatchPerDispatchClassU32;
|
|
1757
2295
|
}
|
|
1758
|
-
/** @name FrameSupportDispatchPerDispatchClassU32 (
|
|
2296
|
+
/** @name FrameSupportDispatchPerDispatchClassU32 (205) */
|
|
1759
2297
|
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
|
|
1760
2298
|
readonly normal: u32;
|
|
1761
2299
|
readonly operational: u32;
|
|
1762
2300
|
readonly mandatory: u32;
|
|
1763
2301
|
}
|
|
1764
|
-
/** @name SpWeightsRuntimeDbWeight (
|
|
2302
|
+
/** @name SpWeightsRuntimeDbWeight (206) */
|
|
1765
2303
|
interface SpWeightsRuntimeDbWeight extends Struct {
|
|
1766
2304
|
readonly read: u64;
|
|
1767
2305
|
readonly write: u64;
|
|
1768
2306
|
}
|
|
1769
|
-
/** @name SpVersionRuntimeVersion (
|
|
2307
|
+
/** @name SpVersionRuntimeVersion (207) */
|
|
1770
2308
|
interface SpVersionRuntimeVersion extends Struct {
|
|
1771
2309
|
readonly specName: Text;
|
|
1772
2310
|
readonly implName: Text;
|
|
@@ -1777,7 +2315,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1777
2315
|
readonly transactionVersion: u32;
|
|
1778
2316
|
readonly stateVersion: u8;
|
|
1779
2317
|
}
|
|
1780
|
-
/** @name FrameSystemError (
|
|
2318
|
+
/** @name FrameSystemError (212) */
|
|
1781
2319
|
interface FrameSystemError extends Enum {
|
|
1782
2320
|
readonly isInvalidSpecName: boolean;
|
|
1783
2321
|
readonly isSpecVersionNeedsToIncrease: boolean;
|
|
@@ -1789,7 +2327,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1789
2327
|
readonly isUnauthorized: boolean;
|
|
1790
2328
|
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered' | 'NothingAuthorized' | 'Unauthorized';
|
|
1791
2329
|
}
|
|
1792
|
-
/** @name PalletTimestampCall (
|
|
2330
|
+
/** @name PalletTimestampCall (213) */
|
|
1793
2331
|
interface PalletTimestampCall extends Enum {
|
|
1794
2332
|
readonly isSet: boolean;
|
|
1795
2333
|
readonly asSet: {
|
|
@@ -1797,7 +2335,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1797
2335
|
} & Struct;
|
|
1798
2336
|
readonly type: 'Set';
|
|
1799
2337
|
}
|
|
1800
|
-
/** @name PalletSudoCall (
|
|
2338
|
+
/** @name PalletSudoCall (214) */
|
|
1801
2339
|
interface PalletSudoCall extends Enum {
|
|
1802
2340
|
readonly isSudo: boolean;
|
|
1803
2341
|
readonly asSudo: {
|
|
@@ -1820,7 +2358,188 @@ declare module '@polkadot/types/lookup' {
|
|
|
1820
2358
|
readonly isRemoveKey: boolean;
|
|
1821
2359
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
|
1822
2360
|
}
|
|
1823
|
-
/** @name
|
|
2361
|
+
/** @name PalletAssetsCall (216) */
|
|
2362
|
+
interface PalletAssetsCall extends Enum {
|
|
2363
|
+
readonly isCreate: boolean;
|
|
2364
|
+
readonly asCreate: {
|
|
2365
|
+
readonly id: Compact<u128>;
|
|
2366
|
+
readonly admin: MultiAddress;
|
|
2367
|
+
readonly minBalance: u128;
|
|
2368
|
+
} & Struct;
|
|
2369
|
+
readonly isForceCreate: boolean;
|
|
2370
|
+
readonly asForceCreate: {
|
|
2371
|
+
readonly id: Compact<u128>;
|
|
2372
|
+
readonly owner: MultiAddress;
|
|
2373
|
+
readonly isSufficient: bool;
|
|
2374
|
+
readonly minBalance: Compact<u128>;
|
|
2375
|
+
} & Struct;
|
|
2376
|
+
readonly isStartDestroy: boolean;
|
|
2377
|
+
readonly asStartDestroy: {
|
|
2378
|
+
readonly id: Compact<u128>;
|
|
2379
|
+
} & Struct;
|
|
2380
|
+
readonly isDestroyAccounts: boolean;
|
|
2381
|
+
readonly asDestroyAccounts: {
|
|
2382
|
+
readonly id: Compact<u128>;
|
|
2383
|
+
} & Struct;
|
|
2384
|
+
readonly isDestroyApprovals: boolean;
|
|
2385
|
+
readonly asDestroyApprovals: {
|
|
2386
|
+
readonly id: Compact<u128>;
|
|
2387
|
+
} & Struct;
|
|
2388
|
+
readonly isFinishDestroy: boolean;
|
|
2389
|
+
readonly asFinishDestroy: {
|
|
2390
|
+
readonly id: Compact<u128>;
|
|
2391
|
+
} & Struct;
|
|
2392
|
+
readonly isMint: boolean;
|
|
2393
|
+
readonly asMint: {
|
|
2394
|
+
readonly id: Compact<u128>;
|
|
2395
|
+
readonly beneficiary: MultiAddress;
|
|
2396
|
+
readonly amount: Compact<u128>;
|
|
2397
|
+
} & Struct;
|
|
2398
|
+
readonly isBurn: boolean;
|
|
2399
|
+
readonly asBurn: {
|
|
2400
|
+
readonly id: Compact<u128>;
|
|
2401
|
+
readonly who: MultiAddress;
|
|
2402
|
+
readonly amount: Compact<u128>;
|
|
2403
|
+
} & Struct;
|
|
2404
|
+
readonly isTransfer: boolean;
|
|
2405
|
+
readonly asTransfer: {
|
|
2406
|
+
readonly id: Compact<u128>;
|
|
2407
|
+
readonly target: MultiAddress;
|
|
2408
|
+
readonly amount: Compact<u128>;
|
|
2409
|
+
} & Struct;
|
|
2410
|
+
readonly isTransferKeepAlive: boolean;
|
|
2411
|
+
readonly asTransferKeepAlive: {
|
|
2412
|
+
readonly id: Compact<u128>;
|
|
2413
|
+
readonly target: MultiAddress;
|
|
2414
|
+
readonly amount: Compact<u128>;
|
|
2415
|
+
} & Struct;
|
|
2416
|
+
readonly isForceTransfer: boolean;
|
|
2417
|
+
readonly asForceTransfer: {
|
|
2418
|
+
readonly id: Compact<u128>;
|
|
2419
|
+
readonly source: MultiAddress;
|
|
2420
|
+
readonly dest: MultiAddress;
|
|
2421
|
+
readonly amount: Compact<u128>;
|
|
2422
|
+
} & Struct;
|
|
2423
|
+
readonly isFreeze: boolean;
|
|
2424
|
+
readonly asFreeze: {
|
|
2425
|
+
readonly id: Compact<u128>;
|
|
2426
|
+
readonly who: MultiAddress;
|
|
2427
|
+
} & Struct;
|
|
2428
|
+
readonly isThaw: boolean;
|
|
2429
|
+
readonly asThaw: {
|
|
2430
|
+
readonly id: Compact<u128>;
|
|
2431
|
+
readonly who: MultiAddress;
|
|
2432
|
+
} & Struct;
|
|
2433
|
+
readonly isFreezeAsset: boolean;
|
|
2434
|
+
readonly asFreezeAsset: {
|
|
2435
|
+
readonly id: Compact<u128>;
|
|
2436
|
+
} & Struct;
|
|
2437
|
+
readonly isThawAsset: boolean;
|
|
2438
|
+
readonly asThawAsset: {
|
|
2439
|
+
readonly id: Compact<u128>;
|
|
2440
|
+
} & Struct;
|
|
2441
|
+
readonly isTransferOwnership: boolean;
|
|
2442
|
+
readonly asTransferOwnership: {
|
|
2443
|
+
readonly id: Compact<u128>;
|
|
2444
|
+
readonly owner: MultiAddress;
|
|
2445
|
+
} & Struct;
|
|
2446
|
+
readonly isSetTeam: boolean;
|
|
2447
|
+
readonly asSetTeam: {
|
|
2448
|
+
readonly id: Compact<u128>;
|
|
2449
|
+
readonly issuer: MultiAddress;
|
|
2450
|
+
readonly admin: MultiAddress;
|
|
2451
|
+
readonly freezer: MultiAddress;
|
|
2452
|
+
} & Struct;
|
|
2453
|
+
readonly isSetMetadata: boolean;
|
|
2454
|
+
readonly asSetMetadata: {
|
|
2455
|
+
readonly id: Compact<u128>;
|
|
2456
|
+
readonly name: Bytes;
|
|
2457
|
+
readonly symbol: Bytes;
|
|
2458
|
+
readonly decimals: u8;
|
|
2459
|
+
} & Struct;
|
|
2460
|
+
readonly isClearMetadata: boolean;
|
|
2461
|
+
readonly asClearMetadata: {
|
|
2462
|
+
readonly id: Compact<u128>;
|
|
2463
|
+
} & Struct;
|
|
2464
|
+
readonly isForceSetMetadata: boolean;
|
|
2465
|
+
readonly asForceSetMetadata: {
|
|
2466
|
+
readonly id: Compact<u128>;
|
|
2467
|
+
readonly name: Bytes;
|
|
2468
|
+
readonly symbol: Bytes;
|
|
2469
|
+
readonly decimals: u8;
|
|
2470
|
+
readonly isFrozen: bool;
|
|
2471
|
+
} & Struct;
|
|
2472
|
+
readonly isForceClearMetadata: boolean;
|
|
2473
|
+
readonly asForceClearMetadata: {
|
|
2474
|
+
readonly id: Compact<u128>;
|
|
2475
|
+
} & Struct;
|
|
2476
|
+
readonly isForceAssetStatus: boolean;
|
|
2477
|
+
readonly asForceAssetStatus: {
|
|
2478
|
+
readonly id: Compact<u128>;
|
|
2479
|
+
readonly owner: MultiAddress;
|
|
2480
|
+
readonly issuer: MultiAddress;
|
|
2481
|
+
readonly admin: MultiAddress;
|
|
2482
|
+
readonly freezer: MultiAddress;
|
|
2483
|
+
readonly minBalance: Compact<u128>;
|
|
2484
|
+
readonly isSufficient: bool;
|
|
2485
|
+
readonly isFrozen: bool;
|
|
2486
|
+
} & Struct;
|
|
2487
|
+
readonly isApproveTransfer: boolean;
|
|
2488
|
+
readonly asApproveTransfer: {
|
|
2489
|
+
readonly id: Compact<u128>;
|
|
2490
|
+
readonly delegate: MultiAddress;
|
|
2491
|
+
readonly amount: Compact<u128>;
|
|
2492
|
+
} & Struct;
|
|
2493
|
+
readonly isCancelApproval: boolean;
|
|
2494
|
+
readonly asCancelApproval: {
|
|
2495
|
+
readonly id: Compact<u128>;
|
|
2496
|
+
readonly delegate: MultiAddress;
|
|
2497
|
+
} & Struct;
|
|
2498
|
+
readonly isForceCancelApproval: boolean;
|
|
2499
|
+
readonly asForceCancelApproval: {
|
|
2500
|
+
readonly id: Compact<u128>;
|
|
2501
|
+
readonly owner: MultiAddress;
|
|
2502
|
+
readonly delegate: MultiAddress;
|
|
2503
|
+
} & Struct;
|
|
2504
|
+
readonly isTransferApproved: boolean;
|
|
2505
|
+
readonly asTransferApproved: {
|
|
2506
|
+
readonly id: Compact<u128>;
|
|
2507
|
+
readonly owner: MultiAddress;
|
|
2508
|
+
readonly destination: MultiAddress;
|
|
2509
|
+
readonly amount: Compact<u128>;
|
|
2510
|
+
} & Struct;
|
|
2511
|
+
readonly isTouch: boolean;
|
|
2512
|
+
readonly asTouch: {
|
|
2513
|
+
readonly id: Compact<u128>;
|
|
2514
|
+
} & Struct;
|
|
2515
|
+
readonly isRefund: boolean;
|
|
2516
|
+
readonly asRefund: {
|
|
2517
|
+
readonly id: Compact<u128>;
|
|
2518
|
+
readonly allowBurn: bool;
|
|
2519
|
+
} & Struct;
|
|
2520
|
+
readonly isSetMinBalance: boolean;
|
|
2521
|
+
readonly asSetMinBalance: {
|
|
2522
|
+
readonly id: Compact<u128>;
|
|
2523
|
+
readonly minBalance: u128;
|
|
2524
|
+
} & Struct;
|
|
2525
|
+
readonly isTouchOther: boolean;
|
|
2526
|
+
readonly asTouchOther: {
|
|
2527
|
+
readonly id: Compact<u128>;
|
|
2528
|
+
readonly who: MultiAddress;
|
|
2529
|
+
} & Struct;
|
|
2530
|
+
readonly isRefundOther: boolean;
|
|
2531
|
+
readonly asRefundOther: {
|
|
2532
|
+
readonly id: Compact<u128>;
|
|
2533
|
+
readonly who: MultiAddress;
|
|
2534
|
+
} & Struct;
|
|
2535
|
+
readonly isBlock: boolean;
|
|
2536
|
+
readonly asBlock: {
|
|
2537
|
+
readonly id: Compact<u128>;
|
|
2538
|
+
readonly who: MultiAddress;
|
|
2539
|
+
} & Struct;
|
|
2540
|
+
readonly type: 'Create' | 'ForceCreate' | 'StartDestroy' | 'DestroyAccounts' | 'DestroyApprovals' | 'FinishDestroy' | 'Mint' | 'Burn' | 'Transfer' | 'TransferKeepAlive' | 'ForceTransfer' | 'Freeze' | 'Thaw' | 'FreezeAsset' | 'ThawAsset' | 'TransferOwnership' | 'SetTeam' | 'SetMetadata' | 'ClearMetadata' | 'ForceSetMetadata' | 'ForceClearMetadata' | 'ForceAssetStatus' | 'ApproveTransfer' | 'CancelApproval' | 'ForceCancelApproval' | 'TransferApproved' | 'Touch' | 'Refund' | 'SetMinBalance' | 'TouchOther' | 'RefundOther' | 'Block';
|
|
2541
|
+
}
|
|
2542
|
+
/** @name PalletBalancesCall (218) */
|
|
1824
2543
|
interface PalletBalancesCall extends Enum {
|
|
1825
2544
|
readonly isTransferAllowDeath: boolean;
|
|
1826
2545
|
readonly asTransferAllowDeath: {
|
|
@@ -1864,13 +2583,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
1864
2583
|
} & Struct;
|
|
1865
2584
|
readonly type: 'TransferAllowDeath' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'ForceSetBalance' | 'ForceAdjustTotalIssuance';
|
|
1866
2585
|
}
|
|
1867
|
-
/** @name PalletBalancesAdjustmentDirection (
|
|
2586
|
+
/** @name PalletBalancesAdjustmentDirection (219) */
|
|
1868
2587
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
|
1869
2588
|
readonly isIncrease: boolean;
|
|
1870
2589
|
readonly isDecrease: boolean;
|
|
1871
2590
|
readonly type: 'Increase' | 'Decrease';
|
|
1872
2591
|
}
|
|
1873
|
-
/** @name PalletBabeCall (
|
|
2592
|
+
/** @name PalletBabeCall (220) */
|
|
1874
2593
|
interface PalletBabeCall extends Enum {
|
|
1875
2594
|
readonly isReportEquivocation: boolean;
|
|
1876
2595
|
readonly asReportEquivocation: {
|
|
@@ -1888,14 +2607,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1888
2607
|
} & Struct;
|
|
1889
2608
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'PlanConfigChange';
|
|
1890
2609
|
}
|
|
1891
|
-
/** @name SpConsensusSlotsEquivocationProof (
|
|
2610
|
+
/** @name SpConsensusSlotsEquivocationProof (221) */
|
|
1892
2611
|
interface SpConsensusSlotsEquivocationProof extends Struct {
|
|
1893
2612
|
readonly offender: SpConsensusBabeAppPublic;
|
|
1894
2613
|
readonly slot: u64;
|
|
1895
2614
|
readonly firstHeader: SpRuntimeHeader;
|
|
1896
2615
|
readonly secondHeader: SpRuntimeHeader;
|
|
1897
2616
|
}
|
|
1898
|
-
/** @name SpRuntimeHeader (
|
|
2617
|
+
/** @name SpRuntimeHeader (222) */
|
|
1899
2618
|
interface SpRuntimeHeader extends Struct {
|
|
1900
2619
|
readonly parentHash: H256;
|
|
1901
2620
|
readonly number: Compact<u64>;
|
|
@@ -1903,16 +2622,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
1903
2622
|
readonly extrinsicsRoot: H256;
|
|
1904
2623
|
readonly digest: SpRuntimeDigest;
|
|
1905
2624
|
}
|
|
1906
|
-
/** @name SpConsensusBabeAppPublic (
|
|
2625
|
+
/** @name SpConsensusBabeAppPublic (223) */
|
|
1907
2626
|
interface SpConsensusBabeAppPublic extends SpCoreSr25519Public {
|
|
1908
2627
|
}
|
|
1909
|
-
/** @name SpSessionMembershipProof (
|
|
2628
|
+
/** @name SpSessionMembershipProof (225) */
|
|
1910
2629
|
interface SpSessionMembershipProof extends Struct {
|
|
1911
2630
|
readonly session: u32;
|
|
1912
2631
|
readonly trieNodes: Vec<Bytes>;
|
|
1913
2632
|
readonly validatorCount: u32;
|
|
1914
2633
|
}
|
|
1915
|
-
/** @name SpConsensusBabeDigestsNextConfigDescriptor (
|
|
2634
|
+
/** @name SpConsensusBabeDigestsNextConfigDescriptor (226) */
|
|
1916
2635
|
interface SpConsensusBabeDigestsNextConfigDescriptor extends Enum {
|
|
1917
2636
|
readonly isV1: boolean;
|
|
1918
2637
|
readonly asV1: {
|
|
@@ -1921,14 +2640,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1921
2640
|
} & Struct;
|
|
1922
2641
|
readonly type: 'V1';
|
|
1923
2642
|
}
|
|
1924
|
-
/** @name SpConsensusBabeAllowedSlots (
|
|
2643
|
+
/** @name SpConsensusBabeAllowedSlots (228) */
|
|
1925
2644
|
interface SpConsensusBabeAllowedSlots extends Enum {
|
|
1926
2645
|
readonly isPrimarySlots: boolean;
|
|
1927
2646
|
readonly isPrimaryAndSecondaryPlainSlots: boolean;
|
|
1928
2647
|
readonly isPrimaryAndSecondaryVRFSlots: boolean;
|
|
1929
2648
|
readonly type: 'PrimarySlots' | 'PrimaryAndSecondaryPlainSlots' | 'PrimaryAndSecondaryVRFSlots';
|
|
1930
2649
|
}
|
|
1931
|
-
/** @name PalletGrandpaCall (
|
|
2650
|
+
/** @name PalletGrandpaCall (229) */
|
|
1932
2651
|
interface PalletGrandpaCall extends Enum {
|
|
1933
2652
|
readonly isReportEquivocation: boolean;
|
|
1934
2653
|
readonly asReportEquivocation: {
|
|
@@ -1947,12 +2666,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
1947
2666
|
} & Struct;
|
|
1948
2667
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
1949
2668
|
}
|
|
1950
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
2669
|
+
/** @name SpConsensusGrandpaEquivocationProof (230) */
|
|
1951
2670
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
1952
2671
|
readonly setId: u64;
|
|
1953
2672
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
1954
2673
|
}
|
|
1955
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
2674
|
+
/** @name SpConsensusGrandpaEquivocation (231) */
|
|
1956
2675
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
1957
2676
|
readonly isPrevote: boolean;
|
|
1958
2677
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -1960,39 +2679,39 @@ declare module '@polkadot/types/lookup' {
|
|
|
1960
2679
|
readonly asPrecommit: FinalityGrandpaEquivocationPrecommit;
|
|
1961
2680
|
readonly type: 'Prevote' | 'Precommit';
|
|
1962
2681
|
}
|
|
1963
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
2682
|
+
/** @name FinalityGrandpaEquivocationPrevote (232) */
|
|
1964
2683
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
1965
2684
|
readonly roundNumber: u64;
|
|
1966
2685
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
1967
2686
|
readonly first: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
1968
2687
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
1969
2688
|
}
|
|
1970
|
-
/** @name FinalityGrandpaPrevote (
|
|
2689
|
+
/** @name FinalityGrandpaPrevote (233) */
|
|
1971
2690
|
interface FinalityGrandpaPrevote extends Struct {
|
|
1972
2691
|
readonly targetHash: H256;
|
|
1973
2692
|
readonly targetNumber: u64;
|
|
1974
2693
|
}
|
|
1975
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
2694
|
+
/** @name SpConsensusGrandpaAppSignature (234) */
|
|
1976
2695
|
interface SpConsensusGrandpaAppSignature extends SpCoreEd25519Signature {
|
|
1977
2696
|
}
|
|
1978
|
-
/** @name SpCoreEd25519Signature (
|
|
2697
|
+
/** @name SpCoreEd25519Signature (235) */
|
|
1979
2698
|
interface SpCoreEd25519Signature extends U8aFixed {
|
|
1980
2699
|
}
|
|
1981
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
2700
|
+
/** @name FinalityGrandpaEquivocationPrecommit (238) */
|
|
1982
2701
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
1983
2702
|
readonly roundNumber: u64;
|
|
1984
2703
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
1985
2704
|
readonly first: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
1986
2705
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
1987
2706
|
}
|
|
1988
|
-
/** @name FinalityGrandpaPrecommit (
|
|
2707
|
+
/** @name FinalityGrandpaPrecommit (239) */
|
|
1989
2708
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
1990
2709
|
readonly targetHash: H256;
|
|
1991
2710
|
readonly targetNumber: u64;
|
|
1992
2711
|
}
|
|
1993
|
-
/** @name SpCoreVoid (
|
|
2712
|
+
/** @name SpCoreVoid (241) */
|
|
1994
2713
|
type SpCoreVoid = Null;
|
|
1995
|
-
/** @name PalletIndicesCall (
|
|
2714
|
+
/** @name PalletIndicesCall (242) */
|
|
1996
2715
|
interface PalletIndicesCall extends Enum {
|
|
1997
2716
|
readonly isClaim: boolean;
|
|
1998
2717
|
readonly asClaim: {
|
|
@@ -2019,7 +2738,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2019
2738
|
} & Struct;
|
|
2020
2739
|
readonly type: 'Claim' | 'Transfer' | 'Free' | 'ForceTransfer' | 'Freeze';
|
|
2021
2740
|
}
|
|
2022
|
-
/** @name PalletDemocracyCall (
|
|
2741
|
+
/** @name PalletDemocracyCall (243) */
|
|
2023
2742
|
interface PalletDemocracyCall extends Enum {
|
|
2024
2743
|
readonly isPropose: boolean;
|
|
2025
2744
|
readonly asPropose: {
|
|
@@ -2102,7 +2821,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2102
2821
|
} & Struct;
|
|
2103
2822
|
readonly type: 'Propose' | 'Second' | 'Vote' | 'EmergencyCancel' | 'ExternalPropose' | 'ExternalProposeMajority' | 'ExternalProposeDefault' | 'FastTrack' | 'VetoExternal' | 'CancelReferendum' | 'Delegate' | 'Undelegate' | 'ClearPublicProposals' | 'Unlock' | 'RemoveVote' | 'RemoveOtherVote' | 'Blacklist' | 'CancelProposal' | 'SetMetadata';
|
|
2104
2823
|
}
|
|
2105
|
-
/** @name FrameSupportPreimagesBounded (
|
|
2824
|
+
/** @name FrameSupportPreimagesBounded (244) */
|
|
2106
2825
|
interface FrameSupportPreimagesBounded extends Enum {
|
|
2107
2826
|
readonly isLegacy: boolean;
|
|
2108
2827
|
readonly asLegacy: {
|
|
@@ -2117,9 +2836,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
2117
2836
|
} & Struct;
|
|
2118
2837
|
readonly type: 'Legacy' | 'Inline' | 'Lookup';
|
|
2119
2838
|
}
|
|
2120
|
-
/** @name SpRuntimeBlakeTwo256 (
|
|
2839
|
+
/** @name SpRuntimeBlakeTwo256 (245) */
|
|
2121
2840
|
type SpRuntimeBlakeTwo256 = Null;
|
|
2122
|
-
/** @name PalletDemocracyConviction (
|
|
2841
|
+
/** @name PalletDemocracyConviction (247) */
|
|
2123
2842
|
interface PalletDemocracyConviction extends Enum {
|
|
2124
2843
|
readonly isNone: boolean;
|
|
2125
2844
|
readonly isLocked1x: boolean;
|
|
@@ -2130,7 +2849,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2130
2849
|
readonly isLocked6x: boolean;
|
|
2131
2850
|
readonly type: 'None' | 'Locked1x' | 'Locked2x' | 'Locked3x' | 'Locked4x' | 'Locked5x' | 'Locked6x';
|
|
2132
2851
|
}
|
|
2133
|
-
/** @name PalletCollectiveCall (
|
|
2852
|
+
/** @name PalletCollectiveCall (250) */
|
|
2134
2853
|
interface PalletCollectiveCall extends Enum {
|
|
2135
2854
|
readonly isSetMembers: boolean;
|
|
2136
2855
|
readonly asSetMembers: {
|
|
@@ -2168,7 +2887,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2168
2887
|
} & Struct;
|
|
2169
2888
|
readonly type: 'SetMembers' | 'Execute' | 'Propose' | 'Vote' | 'DisapproveProposal' | 'Close';
|
|
2170
2889
|
}
|
|
2171
|
-
/** @name PalletVestingCall (
|
|
2890
|
+
/** @name PalletVestingCall (251) */
|
|
2172
2891
|
interface PalletVestingCall extends Enum {
|
|
2173
2892
|
readonly isVest: boolean;
|
|
2174
2893
|
readonly isVestOther: boolean;
|
|
@@ -2198,13 +2917,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2198
2917
|
} & Struct;
|
|
2199
2918
|
readonly type: 'Vest' | 'VestOther' | 'VestedTransfer' | 'ForceVestedTransfer' | 'MergeSchedules' | 'ForceRemoveVestingSchedule';
|
|
2200
2919
|
}
|
|
2201
|
-
/** @name PalletVestingVestingInfo (
|
|
2920
|
+
/** @name PalletVestingVestingInfo (252) */
|
|
2202
2921
|
interface PalletVestingVestingInfo extends Struct {
|
|
2203
2922
|
readonly locked: u128;
|
|
2204
2923
|
readonly perBlock: u128;
|
|
2205
2924
|
readonly startingBlock: u64;
|
|
2206
2925
|
}
|
|
2207
|
-
/** @name PalletElectionsPhragmenCall (
|
|
2926
|
+
/** @name PalletElectionsPhragmenCall (253) */
|
|
2208
2927
|
interface PalletElectionsPhragmenCall extends Enum {
|
|
2209
2928
|
readonly isVote: boolean;
|
|
2210
2929
|
readonly asVote: {
|
|
@@ -2233,7 +2952,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2233
2952
|
} & Struct;
|
|
2234
2953
|
readonly type: 'Vote' | 'RemoveVoter' | 'SubmitCandidacy' | 'RenounceCandidacy' | 'RemoveMember' | 'CleanDefunctVoters';
|
|
2235
2954
|
}
|
|
2236
|
-
/** @name PalletElectionsPhragmenRenouncing (
|
|
2955
|
+
/** @name PalletElectionsPhragmenRenouncing (254) */
|
|
2237
2956
|
interface PalletElectionsPhragmenRenouncing extends Enum {
|
|
2238
2957
|
readonly isMember: boolean;
|
|
2239
2958
|
readonly isRunnerUp: boolean;
|
|
@@ -2241,7 +2960,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2241
2960
|
readonly asCandidate: Compact<u32>;
|
|
2242
2961
|
readonly type: 'Member' | 'RunnerUp' | 'Candidate';
|
|
2243
2962
|
}
|
|
2244
|
-
/** @name PalletElectionProviderMultiPhaseCall (
|
|
2963
|
+
/** @name PalletElectionProviderMultiPhaseCall (255) */
|
|
2245
2964
|
interface PalletElectionProviderMultiPhaseCall extends Enum {
|
|
2246
2965
|
readonly isSubmitUnsigned: boolean;
|
|
2247
2966
|
readonly asSubmitUnsigned: {
|
|
@@ -2267,13 +2986,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2267
2986
|
} & Struct;
|
|
2268
2987
|
readonly type: 'SubmitUnsigned' | 'SetMinimumUntrustedScore' | 'SetEmergencyElectionResult' | 'Submit' | 'GovernanceFallback';
|
|
2269
2988
|
}
|
|
2270
|
-
/** @name PalletElectionProviderMultiPhaseRawSolution (
|
|
2989
|
+
/** @name PalletElectionProviderMultiPhaseRawSolution (256) */
|
|
2271
2990
|
interface PalletElectionProviderMultiPhaseRawSolution extends Struct {
|
|
2272
2991
|
readonly solution: TangleTestnetRuntimeNposSolution16;
|
|
2273
2992
|
readonly score: SpNposElectionsElectionScore;
|
|
2274
2993
|
readonly round: u32;
|
|
2275
2994
|
}
|
|
2276
|
-
/** @name TangleTestnetRuntimeNposSolution16 (
|
|
2995
|
+
/** @name TangleTestnetRuntimeNposSolution16 (257) */
|
|
2277
2996
|
interface TangleTestnetRuntimeNposSolution16 extends Struct {
|
|
2278
2997
|
readonly votes1: Vec<ITuple<[Compact<u32>, Compact<u16>]>>;
|
|
2279
2998
|
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<PerU16>]>, Compact<u16>]>>;
|
|
@@ -2292,17 +3011,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
2292
3011
|
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
|
2293
3012
|
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
|
2294
3013
|
}
|
|
2295
|
-
/** @name PalletElectionProviderMultiPhaseSolutionOrSnapshotSize (
|
|
3014
|
+
/** @name PalletElectionProviderMultiPhaseSolutionOrSnapshotSize (308) */
|
|
2296
3015
|
interface PalletElectionProviderMultiPhaseSolutionOrSnapshotSize extends Struct {
|
|
2297
3016
|
readonly voters: Compact<u32>;
|
|
2298
3017
|
readonly targets: Compact<u32>;
|
|
2299
3018
|
}
|
|
2300
|
-
/** @name SpNposElectionsSupport (
|
|
3019
|
+
/** @name SpNposElectionsSupport (312) */
|
|
2301
3020
|
interface SpNposElectionsSupport extends Struct {
|
|
2302
3021
|
readonly total: u128;
|
|
2303
3022
|
readonly voters: Vec<ITuple<[AccountId32, u128]>>;
|
|
2304
3023
|
}
|
|
2305
|
-
/** @name PalletStakingPalletCall (
|
|
3024
|
+
/** @name PalletStakingPalletCall (313) */
|
|
2306
3025
|
interface PalletStakingPalletCall extends Enum {
|
|
2307
3026
|
readonly isBond: boolean;
|
|
2308
3027
|
readonly asBond: {
|
|
@@ -2419,7 +3138,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2419
3138
|
} & Struct;
|
|
2420
3139
|
readonly type: 'Bond' | 'BondExtra' | 'Unbond' | 'WithdrawUnbonded' | 'Validate' | 'Nominate' | 'Chill' | 'SetPayee' | 'SetController' | 'SetValidatorCount' | 'IncreaseValidatorCount' | 'ScaleValidatorCount' | 'ForceNoEras' | 'ForceNewEra' | 'SetInvulnerables' | 'ForceUnstake' | 'ForceNewEraAlways' | 'CancelDeferredSlash' | 'PayoutStakers' | 'Rebond' | 'ReapStash' | 'Kick' | 'SetStakingConfigs' | 'ChillOther' | 'ForceApplyMinCommission' | 'SetMinCommission' | 'PayoutStakersByPage' | 'UpdatePayee' | 'DeprecateControllerBatch';
|
|
2421
3140
|
}
|
|
2422
|
-
/** @name PalletStakingPalletConfigOpU128 (
|
|
3141
|
+
/** @name PalletStakingPalletConfigOpU128 (317) */
|
|
2423
3142
|
interface PalletStakingPalletConfigOpU128 extends Enum {
|
|
2424
3143
|
readonly isNoop: boolean;
|
|
2425
3144
|
readonly isSet: boolean;
|
|
@@ -2427,7 +3146,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2427
3146
|
readonly isRemove: boolean;
|
|
2428
3147
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
|
2429
3148
|
}
|
|
2430
|
-
/** @name PalletStakingPalletConfigOpU32 (
|
|
3149
|
+
/** @name PalletStakingPalletConfigOpU32 (318) */
|
|
2431
3150
|
interface PalletStakingPalletConfigOpU32 extends Enum {
|
|
2432
3151
|
readonly isNoop: boolean;
|
|
2433
3152
|
readonly isSet: boolean;
|
|
@@ -2435,7 +3154,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2435
3154
|
readonly isRemove: boolean;
|
|
2436
3155
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
|
2437
3156
|
}
|
|
2438
|
-
/** @name PalletStakingPalletConfigOpPercent (
|
|
3157
|
+
/** @name PalletStakingPalletConfigOpPercent (319) */
|
|
2439
3158
|
interface PalletStakingPalletConfigOpPercent extends Enum {
|
|
2440
3159
|
readonly isNoop: boolean;
|
|
2441
3160
|
readonly isSet: boolean;
|
|
@@ -2443,7 +3162,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2443
3162
|
readonly isRemove: boolean;
|
|
2444
3163
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
|
2445
3164
|
}
|
|
2446
|
-
/** @name PalletStakingPalletConfigOpPerbill (
|
|
3165
|
+
/** @name PalletStakingPalletConfigOpPerbill (320) */
|
|
2447
3166
|
interface PalletStakingPalletConfigOpPerbill extends Enum {
|
|
2448
3167
|
readonly isNoop: boolean;
|
|
2449
3168
|
readonly isSet: boolean;
|
|
@@ -2451,7 +3170,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2451
3170
|
readonly isRemove: boolean;
|
|
2452
3171
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
|
2453
3172
|
}
|
|
2454
|
-
/** @name PalletSessionCall (
|
|
3173
|
+
/** @name PalletSessionCall (322) */
|
|
2455
3174
|
interface PalletSessionCall extends Enum {
|
|
2456
3175
|
readonly isSetKeys: boolean;
|
|
2457
3176
|
readonly asSetKeys: {
|
|
@@ -2461,20 +3180,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
2461
3180
|
readonly isPurgeKeys: boolean;
|
|
2462
3181
|
readonly type: 'SetKeys' | 'PurgeKeys';
|
|
2463
3182
|
}
|
|
2464
|
-
/** @name TangleTestnetRuntimeOpaqueSessionKeys (
|
|
3183
|
+
/** @name TangleTestnetRuntimeOpaqueSessionKeys (323) */
|
|
2465
3184
|
interface TangleTestnetRuntimeOpaqueSessionKeys extends Struct {
|
|
2466
3185
|
readonly babe: SpConsensusBabeAppPublic;
|
|
2467
3186
|
readonly grandpa: SpConsensusGrandpaAppPublic;
|
|
2468
3187
|
readonly imOnline: PalletImOnlineSr25519AppSr25519Public;
|
|
2469
3188
|
readonly role: TangleCryptoPrimitivesCryptoPublic;
|
|
2470
3189
|
}
|
|
2471
|
-
/** @name TangleCryptoPrimitivesCryptoPublic (
|
|
3190
|
+
/** @name TangleCryptoPrimitivesCryptoPublic (324) */
|
|
2472
3191
|
interface TangleCryptoPrimitivesCryptoPublic extends SpCoreEcdsaPublic {
|
|
2473
3192
|
}
|
|
2474
|
-
/** @name SpCoreEcdsaPublic (
|
|
3193
|
+
/** @name SpCoreEcdsaPublic (325) */
|
|
2475
3194
|
interface SpCoreEcdsaPublic extends U8aFixed {
|
|
2476
3195
|
}
|
|
2477
|
-
/** @name PalletTreasuryCall (
|
|
3196
|
+
/** @name PalletTreasuryCall (327) */
|
|
2478
3197
|
interface PalletTreasuryCall extends Enum {
|
|
2479
3198
|
readonly isProposeSpend: boolean;
|
|
2480
3199
|
readonly asProposeSpend: {
|
|
@@ -2519,7 +3238,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2519
3238
|
} & Struct;
|
|
2520
3239
|
readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'SpendLocal' | 'RemoveApproval' | 'Spend' | 'Payout' | 'CheckStatus' | 'VoidSpend';
|
|
2521
3240
|
}
|
|
2522
|
-
/** @name PalletBountiesCall (
|
|
3241
|
+
/** @name PalletBountiesCall (329) */
|
|
2523
3242
|
interface PalletBountiesCall extends Enum {
|
|
2524
3243
|
readonly isProposeBounty: boolean;
|
|
2525
3244
|
readonly asProposeBounty: {
|
|
@@ -2564,7 +3283,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2564
3283
|
} & Struct;
|
|
2565
3284
|
readonly type: 'ProposeBounty' | 'ApproveBounty' | 'ProposeCurator' | 'UnassignCurator' | 'AcceptCurator' | 'AwardBounty' | 'ClaimBounty' | 'CloseBounty' | 'ExtendBountyExpiry';
|
|
2566
3285
|
}
|
|
2567
|
-
/** @name PalletChildBountiesCall (
|
|
3286
|
+
/** @name PalletChildBountiesCall (330) */
|
|
2568
3287
|
interface PalletChildBountiesCall extends Enum {
|
|
2569
3288
|
readonly isAddChildBounty: boolean;
|
|
2570
3289
|
readonly asAddChildBounty: {
|
|
@@ -2607,7 +3326,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2607
3326
|
} & Struct;
|
|
2608
3327
|
readonly type: 'AddChildBounty' | 'ProposeCurator' | 'AcceptCurator' | 'UnassignCurator' | 'AwardChildBounty' | 'ClaimChildBounty' | 'CloseChildBounty';
|
|
2609
3328
|
}
|
|
2610
|
-
/** @name PalletBagsListCall (
|
|
3329
|
+
/** @name PalletBagsListCall (331) */
|
|
2611
3330
|
interface PalletBagsListCall extends Enum {
|
|
2612
3331
|
readonly isRebag: boolean;
|
|
2613
3332
|
readonly asRebag: {
|
|
@@ -2624,7 +3343,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2624
3343
|
} & Struct;
|
|
2625
3344
|
readonly type: 'Rebag' | 'PutInFrontOf' | 'PutInFrontOfOther';
|
|
2626
3345
|
}
|
|
2627
|
-
/** @name PalletNominationPoolsCall (
|
|
3346
|
+
/** @name PalletNominationPoolsCall (332) */
|
|
2628
3347
|
interface PalletNominationPoolsCall extends Enum {
|
|
2629
3348
|
readonly isJoin: boolean;
|
|
2630
3349
|
readonly asJoin: {
|
|
@@ -2744,14 +3463,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2744
3463
|
} & Struct;
|
|
2745
3464
|
readonly type: 'Join' | 'BondExtra' | 'ClaimPayout' | 'Unbond' | 'PoolWithdrawUnbonded' | 'WithdrawUnbonded' | 'Create' | 'CreateWithPoolId' | 'Nominate' | 'SetState' | 'SetMetadata' | 'SetConfigs' | 'UpdateRoles' | 'Chill' | 'BondExtraOther' | 'SetClaimPermission' | 'ClaimPayoutOther' | 'SetCommission' | 'SetCommissionMax' | 'SetCommissionChangeRate' | 'ClaimCommission' | 'AdjustPoolDeposit' | 'SetCommissionClaimPermission';
|
|
2746
3465
|
}
|
|
2747
|
-
/** @name PalletNominationPoolsBondExtra (
|
|
3466
|
+
/** @name PalletNominationPoolsBondExtra (333) */
|
|
2748
3467
|
interface PalletNominationPoolsBondExtra extends Enum {
|
|
2749
3468
|
readonly isFreeBalance: boolean;
|
|
2750
3469
|
readonly asFreeBalance: u128;
|
|
2751
3470
|
readonly isRewards: boolean;
|
|
2752
3471
|
readonly type: 'FreeBalance' | 'Rewards';
|
|
2753
3472
|
}
|
|
2754
|
-
/** @name PalletNominationPoolsConfigOpU128 (
|
|
3473
|
+
/** @name PalletNominationPoolsConfigOpU128 (334) */
|
|
2755
3474
|
interface PalletNominationPoolsConfigOpU128 extends Enum {
|
|
2756
3475
|
readonly isNoop: boolean;
|
|
2757
3476
|
readonly isSet: boolean;
|
|
@@ -2759,7 +3478,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2759
3478
|
readonly isRemove: boolean;
|
|
2760
3479
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
|
2761
3480
|
}
|
|
2762
|
-
/** @name PalletNominationPoolsConfigOpU32 (
|
|
3481
|
+
/** @name PalletNominationPoolsConfigOpU32 (335) */
|
|
2763
3482
|
interface PalletNominationPoolsConfigOpU32 extends Enum {
|
|
2764
3483
|
readonly isNoop: boolean;
|
|
2765
3484
|
readonly isSet: boolean;
|
|
@@ -2767,7 +3486,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2767
3486
|
readonly isRemove: boolean;
|
|
2768
3487
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
|
2769
3488
|
}
|
|
2770
|
-
/** @name PalletNominationPoolsConfigOpPerbill (
|
|
3489
|
+
/** @name PalletNominationPoolsConfigOpPerbill (336) */
|
|
2771
3490
|
interface PalletNominationPoolsConfigOpPerbill extends Enum {
|
|
2772
3491
|
readonly isNoop: boolean;
|
|
2773
3492
|
readonly isSet: boolean;
|
|
@@ -2775,7 +3494,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2775
3494
|
readonly isRemove: boolean;
|
|
2776
3495
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
|
2777
3496
|
}
|
|
2778
|
-
/** @name PalletNominationPoolsConfigOpAccountId32 (
|
|
3497
|
+
/** @name PalletNominationPoolsConfigOpAccountId32 (337) */
|
|
2779
3498
|
interface PalletNominationPoolsConfigOpAccountId32 extends Enum {
|
|
2780
3499
|
readonly isNoop: boolean;
|
|
2781
3500
|
readonly isSet: boolean;
|
|
@@ -2783,7 +3502,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2783
3502
|
readonly isRemove: boolean;
|
|
2784
3503
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
|
2785
3504
|
}
|
|
2786
|
-
/** @name PalletNominationPoolsClaimPermission (
|
|
3505
|
+
/** @name PalletNominationPoolsClaimPermission (338) */
|
|
2787
3506
|
interface PalletNominationPoolsClaimPermission extends Enum {
|
|
2788
3507
|
readonly isPermissioned: boolean;
|
|
2789
3508
|
readonly isPermissionlessCompound: boolean;
|
|
@@ -2791,7 +3510,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2791
3510
|
readonly isPermissionlessAll: boolean;
|
|
2792
3511
|
readonly type: 'Permissioned' | 'PermissionlessCompound' | 'PermissionlessWithdraw' | 'PermissionlessAll';
|
|
2793
3512
|
}
|
|
2794
|
-
/** @name PalletSchedulerCall (
|
|
3513
|
+
/** @name PalletSchedulerCall (339) */
|
|
2795
3514
|
interface PalletSchedulerCall extends Enum {
|
|
2796
3515
|
readonly isSchedule: boolean;
|
|
2797
3516
|
readonly asSchedule: {
|
|
@@ -2834,7 +3553,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2834
3553
|
} & Struct;
|
|
2835
3554
|
readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter';
|
|
2836
3555
|
}
|
|
2837
|
-
/** @name PalletPreimageCall (
|
|
3556
|
+
/** @name PalletPreimageCall (341) */
|
|
2838
3557
|
interface PalletPreimageCall extends Enum {
|
|
2839
3558
|
readonly isNotePreimage: boolean;
|
|
2840
3559
|
readonly asNotePreimage: {
|
|
@@ -2858,7 +3577,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2858
3577
|
} & Struct;
|
|
2859
3578
|
readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage' | 'EnsureUpdated';
|
|
2860
3579
|
}
|
|
2861
|
-
/** @name PalletTxPauseCall (
|
|
3580
|
+
/** @name PalletTxPauseCall (342) */
|
|
2862
3581
|
interface PalletTxPauseCall extends Enum {
|
|
2863
3582
|
readonly isPause: boolean;
|
|
2864
3583
|
readonly asPause: {
|
|
@@ -2870,7 +3589,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2870
3589
|
} & Struct;
|
|
2871
3590
|
readonly type: 'Pause' | 'Unpause';
|
|
2872
3591
|
}
|
|
2873
|
-
/** @name PalletImOnlineCall (
|
|
3592
|
+
/** @name PalletImOnlineCall (343) */
|
|
2874
3593
|
interface PalletImOnlineCall extends Enum {
|
|
2875
3594
|
readonly isHeartbeat: boolean;
|
|
2876
3595
|
readonly asHeartbeat: {
|
|
@@ -2879,20 +3598,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
2879
3598
|
} & Struct;
|
|
2880
3599
|
readonly type: 'Heartbeat';
|
|
2881
3600
|
}
|
|
2882
|
-
/** @name PalletImOnlineHeartbeat (
|
|
3601
|
+
/** @name PalletImOnlineHeartbeat (344) */
|
|
2883
3602
|
interface PalletImOnlineHeartbeat extends Struct {
|
|
2884
3603
|
readonly blockNumber: u64;
|
|
2885
3604
|
readonly sessionIndex: u32;
|
|
2886
3605
|
readonly authorityIndex: u32;
|
|
2887
3606
|
readonly validatorsLen: u32;
|
|
2888
3607
|
}
|
|
2889
|
-
/** @name PalletImOnlineSr25519AppSr25519Signature (
|
|
3608
|
+
/** @name PalletImOnlineSr25519AppSr25519Signature (345) */
|
|
2890
3609
|
interface PalletImOnlineSr25519AppSr25519Signature extends SpCoreSr25519Signature {
|
|
2891
3610
|
}
|
|
2892
|
-
/** @name SpCoreSr25519Signature (
|
|
3611
|
+
/** @name SpCoreSr25519Signature (346) */
|
|
2893
3612
|
interface SpCoreSr25519Signature extends U8aFixed {
|
|
2894
3613
|
}
|
|
2895
|
-
/** @name PalletIdentityCall (
|
|
3614
|
+
/** @name PalletIdentityCall (347) */
|
|
2896
3615
|
interface PalletIdentityCall extends Enum {
|
|
2897
3616
|
readonly isAddRegistrar: boolean;
|
|
2898
3617
|
readonly asAddRegistrar: {
|
|
@@ -2991,7 +3710,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2991
3710
|
} & Struct;
|
|
2992
3711
|
readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'AddUsernameAuthority' | 'RemoveUsernameAuthority' | 'SetUsernameFor' | 'AcceptUsername' | 'RemoveExpiredApproval' | 'SetPrimaryUsername' | 'RemoveDanglingUsername';
|
|
2993
3712
|
}
|
|
2994
|
-
/** @name PalletIdentityLegacyIdentityInfo (
|
|
3713
|
+
/** @name PalletIdentityLegacyIdentityInfo (348) */
|
|
2995
3714
|
interface PalletIdentityLegacyIdentityInfo extends Struct {
|
|
2996
3715
|
readonly additional: Vec<ITuple<[Data, Data]>>;
|
|
2997
3716
|
readonly display: Data;
|
|
@@ -3003,7 +3722,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3003
3722
|
readonly image: Data;
|
|
3004
3723
|
readonly twitter: Data;
|
|
3005
3724
|
}
|
|
3006
|
-
/** @name PalletIdentityJudgement (
|
|
3725
|
+
/** @name PalletIdentityJudgement (384) */
|
|
3007
3726
|
interface PalletIdentityJudgement extends Enum {
|
|
3008
3727
|
readonly isUnknown: boolean;
|
|
3009
3728
|
readonly isFeePaid: boolean;
|
|
@@ -3015,7 +3734,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3015
3734
|
readonly isErroneous: boolean;
|
|
3016
3735
|
readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';
|
|
3017
3736
|
}
|
|
3018
|
-
/** @name SpRuntimeMultiSignature (
|
|
3737
|
+
/** @name SpRuntimeMultiSignature (386) */
|
|
3019
3738
|
interface SpRuntimeMultiSignature extends Enum {
|
|
3020
3739
|
readonly isEd25519: boolean;
|
|
3021
3740
|
readonly asEd25519: SpCoreEd25519Signature;
|
|
@@ -3025,10 +3744,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
3025
3744
|
readonly asEcdsa: SpCoreEcdsaSignature;
|
|
3026
3745
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
|
|
3027
3746
|
}
|
|
3028
|
-
/** @name SpCoreEcdsaSignature (
|
|
3747
|
+
/** @name SpCoreEcdsaSignature (387) */
|
|
3029
3748
|
interface SpCoreEcdsaSignature extends U8aFixed {
|
|
3030
3749
|
}
|
|
3031
|
-
/** @name PalletUtilityCall (
|
|
3750
|
+
/** @name PalletUtilityCall (389) */
|
|
3032
3751
|
interface PalletUtilityCall extends Enum {
|
|
3033
3752
|
readonly isBatch: boolean;
|
|
3034
3753
|
readonly asBatch: {
|
|
@@ -3059,7 +3778,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3059
3778
|
} & Struct;
|
|
3060
3779
|
readonly type: 'Batch' | 'AsDerivative' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight';
|
|
3061
3780
|
}
|
|
3062
|
-
/** @name TangleTestnetRuntimeOriginCaller (
|
|
3781
|
+
/** @name TangleTestnetRuntimeOriginCaller (391) */
|
|
3063
3782
|
interface TangleTestnetRuntimeOriginCaller extends Enum {
|
|
3064
3783
|
readonly isSystem: boolean;
|
|
3065
3784
|
readonly asSystem: FrameSupportDispatchRawOrigin;
|
|
@@ -3070,7 +3789,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3070
3789
|
readonly asEthereum: PalletEthereumRawOrigin;
|
|
3071
3790
|
readonly type: 'System' | 'Void' | 'Council' | 'Ethereum';
|
|
3072
3791
|
}
|
|
3073
|
-
/** @name FrameSupportDispatchRawOrigin (
|
|
3792
|
+
/** @name FrameSupportDispatchRawOrigin (392) */
|
|
3074
3793
|
interface FrameSupportDispatchRawOrigin extends Enum {
|
|
3075
3794
|
readonly isRoot: boolean;
|
|
3076
3795
|
readonly isSigned: boolean;
|
|
@@ -3078,7 +3797,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3078
3797
|
readonly isNone: boolean;
|
|
3079
3798
|
readonly type: 'Root' | 'Signed' | 'None';
|
|
3080
3799
|
}
|
|
3081
|
-
/** @name PalletCollectiveRawOrigin (
|
|
3800
|
+
/** @name PalletCollectiveRawOrigin (393) */
|
|
3082
3801
|
interface PalletCollectiveRawOrigin extends Enum {
|
|
3083
3802
|
readonly isMembers: boolean;
|
|
3084
3803
|
readonly asMembers: ITuple<[u32, u32]>;
|
|
@@ -3087,13 +3806,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3087
3806
|
readonly isPhantom: boolean;
|
|
3088
3807
|
readonly type: 'Members' | 'Member' | 'Phantom';
|
|
3089
3808
|
}
|
|
3090
|
-
/** @name PalletEthereumRawOrigin (
|
|
3809
|
+
/** @name PalletEthereumRawOrigin (394) */
|
|
3091
3810
|
interface PalletEthereumRawOrigin extends Enum {
|
|
3092
3811
|
readonly isEthereumTransaction: boolean;
|
|
3093
3812
|
readonly asEthereumTransaction: H160;
|
|
3094
3813
|
readonly type: 'EthereumTransaction';
|
|
3095
3814
|
}
|
|
3096
|
-
/** @name PalletMultisigCall (
|
|
3815
|
+
/** @name PalletMultisigCall (395) */
|
|
3097
3816
|
interface PalletMultisigCall extends Enum {
|
|
3098
3817
|
readonly isAsMultiThreshold1: boolean;
|
|
3099
3818
|
readonly asAsMultiThreshold1: {
|
|
@@ -3125,7 +3844,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3125
3844
|
} & Struct;
|
|
3126
3845
|
readonly type: 'AsMultiThreshold1' | 'AsMulti' | 'ApproveAsMulti' | 'CancelAsMulti';
|
|
3127
3846
|
}
|
|
3128
|
-
/** @name PalletEthereumCall (
|
|
3847
|
+
/** @name PalletEthereumCall (397) */
|
|
3129
3848
|
interface PalletEthereumCall extends Enum {
|
|
3130
3849
|
readonly isTransact: boolean;
|
|
3131
3850
|
readonly asTransact: {
|
|
@@ -3133,7 +3852,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3133
3852
|
} & Struct;
|
|
3134
3853
|
readonly type: 'Transact';
|
|
3135
3854
|
}
|
|
3136
|
-
/** @name EthereumTransactionTransactionV2 (
|
|
3855
|
+
/** @name EthereumTransactionTransactionV2 (398) */
|
|
3137
3856
|
interface EthereumTransactionTransactionV2 extends Enum {
|
|
3138
3857
|
readonly isLegacy: boolean;
|
|
3139
3858
|
readonly asLegacy: EthereumTransactionLegacyTransaction;
|
|
@@ -3143,7 +3862,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3143
3862
|
readonly asEip1559: EthereumTransactionEip1559Transaction;
|
|
3144
3863
|
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
|
|
3145
3864
|
}
|
|
3146
|
-
/** @name EthereumTransactionLegacyTransaction (
|
|
3865
|
+
/** @name EthereumTransactionLegacyTransaction (399) */
|
|
3147
3866
|
interface EthereumTransactionLegacyTransaction extends Struct {
|
|
3148
3867
|
readonly nonce: U256;
|
|
3149
3868
|
readonly gasPrice: U256;
|
|
@@ -3153,20 +3872,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
3153
3872
|
readonly input: Bytes;
|
|
3154
3873
|
readonly signature: EthereumTransactionTransactionSignature;
|
|
3155
3874
|
}
|
|
3156
|
-
/** @name EthereumTransactionTransactionAction (
|
|
3875
|
+
/** @name EthereumTransactionTransactionAction (400) */
|
|
3157
3876
|
interface EthereumTransactionTransactionAction extends Enum {
|
|
3158
3877
|
readonly isCall: boolean;
|
|
3159
3878
|
readonly asCall: H160;
|
|
3160
3879
|
readonly isCreate: boolean;
|
|
3161
3880
|
readonly type: 'Call' | 'Create';
|
|
3162
3881
|
}
|
|
3163
|
-
/** @name EthereumTransactionTransactionSignature (
|
|
3882
|
+
/** @name EthereumTransactionTransactionSignature (401) */
|
|
3164
3883
|
interface EthereumTransactionTransactionSignature extends Struct {
|
|
3165
3884
|
readonly v: u64;
|
|
3166
3885
|
readonly r: H256;
|
|
3167
3886
|
readonly s: H256;
|
|
3168
3887
|
}
|
|
3169
|
-
/** @name EthereumTransactionEip2930Transaction (
|
|
3888
|
+
/** @name EthereumTransactionEip2930Transaction (403) */
|
|
3170
3889
|
interface EthereumTransactionEip2930Transaction extends Struct {
|
|
3171
3890
|
readonly chainId: u64;
|
|
3172
3891
|
readonly nonce: U256;
|
|
@@ -3180,12 +3899,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
3180
3899
|
readonly r: H256;
|
|
3181
3900
|
readonly s: H256;
|
|
3182
3901
|
}
|
|
3183
|
-
/** @name EthereumTransactionAccessListItem (
|
|
3902
|
+
/** @name EthereumTransactionAccessListItem (405) */
|
|
3184
3903
|
interface EthereumTransactionAccessListItem extends Struct {
|
|
3185
3904
|
readonly address: H160;
|
|
3186
3905
|
readonly storageKeys: Vec<H256>;
|
|
3187
3906
|
}
|
|
3188
|
-
/** @name EthereumTransactionEip1559Transaction (
|
|
3907
|
+
/** @name EthereumTransactionEip1559Transaction (406) */
|
|
3189
3908
|
interface EthereumTransactionEip1559Transaction extends Struct {
|
|
3190
3909
|
readonly chainId: u64;
|
|
3191
3910
|
readonly nonce: U256;
|
|
@@ -3200,7 +3919,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3200
3919
|
readonly r: H256;
|
|
3201
3920
|
readonly s: H256;
|
|
3202
3921
|
}
|
|
3203
|
-
/** @name PalletEvmCall (
|
|
3922
|
+
/** @name PalletEvmCall (407) */
|
|
3204
3923
|
interface PalletEvmCall extends Enum {
|
|
3205
3924
|
readonly isWithdraw: boolean;
|
|
3206
3925
|
readonly asWithdraw: {
|
|
@@ -3244,7 +3963,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3244
3963
|
} & Struct;
|
|
3245
3964
|
readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
|
|
3246
3965
|
}
|
|
3247
|
-
/** @name PalletDynamicFeeCall (
|
|
3966
|
+
/** @name PalletDynamicFeeCall (411) */
|
|
3248
3967
|
interface PalletDynamicFeeCall extends Enum {
|
|
3249
3968
|
readonly isNoteMinGasPriceTarget: boolean;
|
|
3250
3969
|
readonly asNoteMinGasPriceTarget: {
|
|
@@ -3252,7 +3971,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3252
3971
|
} & Struct;
|
|
3253
3972
|
readonly type: 'NoteMinGasPriceTarget';
|
|
3254
3973
|
}
|
|
3255
|
-
/** @name PalletBaseFeeCall (
|
|
3974
|
+
/** @name PalletBaseFeeCall (412) */
|
|
3256
3975
|
interface PalletBaseFeeCall extends Enum {
|
|
3257
3976
|
readonly isSetBaseFeePerGas: boolean;
|
|
3258
3977
|
readonly asSetBaseFeePerGas: {
|
|
@@ -3264,7 +3983,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3264
3983
|
} & Struct;
|
|
3265
3984
|
readonly type: 'SetBaseFeePerGas' | 'SetElasticity';
|
|
3266
3985
|
}
|
|
3267
|
-
/** @name PalletHotfixSufficientsCall (
|
|
3986
|
+
/** @name PalletHotfixSufficientsCall (413) */
|
|
3268
3987
|
interface PalletHotfixSufficientsCall extends Enum {
|
|
3269
3988
|
readonly isHotfixIncAccountSufficients: boolean;
|
|
3270
3989
|
readonly asHotfixIncAccountSufficients: {
|
|
@@ -3272,7 +3991,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3272
3991
|
} & Struct;
|
|
3273
3992
|
readonly type: 'HotfixIncAccountSufficients';
|
|
3274
3993
|
}
|
|
3275
|
-
/** @name PalletAirdropClaimsCall (
|
|
3994
|
+
/** @name PalletAirdropClaimsCall (415) */
|
|
3276
3995
|
interface PalletAirdropClaimsCall extends Enum {
|
|
3277
3996
|
readonly isClaim: boolean;
|
|
3278
3997
|
readonly asClaim: {
|
|
@@ -3304,9 +4023,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3304
4023
|
readonly expiryBlock: u64;
|
|
3305
4024
|
readonly dest: PalletAirdropClaimsUtilsMultiAddress;
|
|
3306
4025
|
} & Struct;
|
|
3307
|
-
readonly
|
|
4026
|
+
readonly isClaimSigned: boolean;
|
|
4027
|
+
readonly asClaimSigned: {
|
|
4028
|
+
readonly dest: Option<PalletAirdropClaimsUtilsMultiAddress>;
|
|
4029
|
+
} & Struct;
|
|
4030
|
+
readonly type: 'Claim' | 'MintClaim' | 'ClaimAttest' | 'MoveClaim' | 'ForceSetExpiryConfig' | 'ClaimSigned';
|
|
3308
4031
|
}
|
|
3309
|
-
/** @name PalletAirdropClaimsUtilsMultiAddressSignature (
|
|
4032
|
+
/** @name PalletAirdropClaimsUtilsMultiAddressSignature (417) */
|
|
3310
4033
|
interface PalletAirdropClaimsUtilsMultiAddressSignature extends Enum {
|
|
3311
4034
|
readonly isEvm: boolean;
|
|
3312
4035
|
readonly asEvm: PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature;
|
|
@@ -3314,19 +4037,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
3314
4037
|
readonly asNative: PalletAirdropClaimsUtilsSr25519Signature;
|
|
3315
4038
|
readonly type: 'Evm' | 'Native';
|
|
3316
4039
|
}
|
|
3317
|
-
/** @name PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature (
|
|
4040
|
+
/** @name PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature (418) */
|
|
3318
4041
|
interface PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature extends U8aFixed {
|
|
3319
4042
|
}
|
|
3320
|
-
/** @name PalletAirdropClaimsUtilsSr25519Signature (
|
|
4043
|
+
/** @name PalletAirdropClaimsUtilsSr25519Signature (419) */
|
|
3321
4044
|
interface PalletAirdropClaimsUtilsSr25519Signature extends SpCoreSr25519Signature {
|
|
3322
4045
|
}
|
|
3323
|
-
/** @name PalletAirdropClaimsStatementKind (
|
|
4046
|
+
/** @name PalletAirdropClaimsStatementKind (425) */
|
|
3324
4047
|
interface PalletAirdropClaimsStatementKind extends Enum {
|
|
3325
4048
|
readonly isRegular: boolean;
|
|
3326
4049
|
readonly isSafe: boolean;
|
|
3327
4050
|
readonly type: 'Regular' | 'Safe';
|
|
3328
4051
|
}
|
|
3329
|
-
/** @name PalletRolesCall (
|
|
4052
|
+
/** @name PalletRolesCall (426) */
|
|
3330
4053
|
interface PalletRolesCall extends Enum {
|
|
3331
4054
|
readonly isCreateProfile: boolean;
|
|
3332
4055
|
readonly asCreateProfile: {
|
|
@@ -3355,7 +4078,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3355
4078
|
} & Struct;
|
|
3356
4079
|
readonly type: 'CreateProfile' | 'UpdateProfile' | 'DeleteProfile' | 'Chill' | 'UnbondFunds' | 'WithdrawUnbonded' | 'PayoutStakers' | 'SetMinRestakingBond';
|
|
3357
4080
|
}
|
|
3358
|
-
/** @name PalletRolesProfile (
|
|
4081
|
+
/** @name PalletRolesProfile (427) */
|
|
3359
4082
|
interface PalletRolesProfile extends Enum {
|
|
3360
4083
|
readonly isIndependent: boolean;
|
|
3361
4084
|
readonly asIndependent: PalletRolesProfileIndependentRestakeProfile;
|
|
@@ -3363,21 +4086,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3363
4086
|
readonly asShared: PalletRolesProfileSharedRestakeProfile;
|
|
3364
4087
|
readonly type: 'Independent' | 'Shared';
|
|
3365
4088
|
}
|
|
3366
|
-
/** @name PalletRolesProfileIndependentRestakeProfile (
|
|
4089
|
+
/** @name PalletRolesProfileIndependentRestakeProfile (428) */
|
|
3367
4090
|
interface PalletRolesProfileIndependentRestakeProfile extends Struct {
|
|
3368
4091
|
readonly records: Vec<PalletRolesProfileRecord>;
|
|
3369
4092
|
}
|
|
3370
|
-
/** @name PalletRolesProfileRecord (
|
|
4093
|
+
/** @name PalletRolesProfileRecord (430) */
|
|
3371
4094
|
interface PalletRolesProfileRecord extends Struct {
|
|
3372
4095
|
readonly role: TanglePrimitivesRolesRoleType;
|
|
3373
4096
|
readonly amount: Option<u128>;
|
|
3374
4097
|
}
|
|
3375
|
-
/** @name PalletRolesProfileSharedRestakeProfile (
|
|
4098
|
+
/** @name PalletRolesProfileSharedRestakeProfile (432) */
|
|
3376
4099
|
interface PalletRolesProfileSharedRestakeProfile extends Struct {
|
|
3377
4100
|
readonly records: Vec<PalletRolesProfileRecord>;
|
|
3378
4101
|
readonly amount: u128;
|
|
3379
4102
|
}
|
|
3380
|
-
/** @name PalletJobsModuleCall (
|
|
4103
|
+
/** @name PalletJobsModuleCall (433) */
|
|
3381
4104
|
interface PalletJobsModuleCall extends Enum {
|
|
3382
4105
|
readonly isSubmitJob: boolean;
|
|
3383
4106
|
readonly asSubmitJob: {
|
|
@@ -3420,7 +4143,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3420
4143
|
} & Struct;
|
|
3421
4144
|
readonly type: 'SubmitJob' | 'SubmitJobResult' | 'WithdrawRewards' | 'ReportInactiveValidator' | 'SetPermittedCaller' | 'SetTimeFee' | 'SubmitMisbehavior' | 'ExtendJobResultTtl';
|
|
3422
4145
|
}
|
|
3423
|
-
/** @name TanglePrimitivesJobsJobResult (
|
|
4146
|
+
/** @name TanglePrimitivesJobsJobResult (434) */
|
|
3424
4147
|
interface TanglePrimitivesJobsJobResult extends Enum {
|
|
3425
4148
|
readonly isDkgPhaseOne: boolean;
|
|
3426
4149
|
readonly asDkgPhaseOne: TanglePrimitivesJobsTssDkgtssKeySubmissionResult;
|
|
@@ -3436,23 +4159,24 @@ declare module '@polkadot/types/lookup' {
|
|
|
3436
4159
|
readonly asZkSaaSPhaseTwo: TanglePrimitivesJobsZksaasZkSaaSProofResult;
|
|
3437
4160
|
readonly type: 'DkgPhaseOne' | 'DkgPhaseTwo' | 'DkgPhaseThree' | 'DkgPhaseFour' | 'ZkSaaSPhaseOne' | 'ZkSaaSPhaseTwo';
|
|
3438
4161
|
}
|
|
3439
|
-
/** @name TangleTestnetRuntimeMaxKeyLen (
|
|
4162
|
+
/** @name TangleTestnetRuntimeMaxKeyLen (435) */
|
|
3440
4163
|
type TangleTestnetRuntimeMaxKeyLen = Null;
|
|
3441
|
-
/** @name TangleTestnetRuntimeMaxSignatureLen (
|
|
4164
|
+
/** @name TangleTestnetRuntimeMaxSignatureLen (436) */
|
|
3442
4165
|
type TangleTestnetRuntimeMaxSignatureLen = Null;
|
|
3443
|
-
/** @name TangleTestnetRuntimeMaxDataLen (
|
|
4166
|
+
/** @name TangleTestnetRuntimeMaxDataLen (437) */
|
|
3444
4167
|
type TangleTestnetRuntimeMaxDataLen = Null;
|
|
3445
|
-
/** @name TangleTestnetRuntimeMaxProofLen (
|
|
4168
|
+
/** @name TangleTestnetRuntimeMaxProofLen (438) */
|
|
3446
4169
|
type TangleTestnetRuntimeMaxProofLen = Null;
|
|
3447
|
-
/** @name TanglePrimitivesJobsTssDkgtssKeySubmissionResult (
|
|
4170
|
+
/** @name TanglePrimitivesJobsTssDkgtssKeySubmissionResult (439) */
|
|
3448
4171
|
interface TanglePrimitivesJobsTssDkgtssKeySubmissionResult extends Struct {
|
|
3449
4172
|
readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
|
|
3450
4173
|
readonly key: Bytes;
|
|
4174
|
+
readonly chainCode: Option<U8aFixed>;
|
|
3451
4175
|
readonly participants: Vec<Bytes>;
|
|
3452
4176
|
readonly signatures: Vec<Bytes>;
|
|
3453
4177
|
readonly threshold: u8;
|
|
3454
4178
|
}
|
|
3455
|
-
/** @name TanglePrimitivesJobsTssDigitalSignatureScheme (
|
|
4179
|
+
/** @name TanglePrimitivesJobsTssDigitalSignatureScheme (440) */
|
|
3456
4180
|
interface TanglePrimitivesJobsTssDigitalSignatureScheme extends Enum {
|
|
3457
4181
|
readonly isEcdsaSecp256k1: boolean;
|
|
3458
4182
|
readonly isEcdsaSecp256r1: boolean;
|
|
@@ -3462,25 +4186,26 @@ declare module '@polkadot/types/lookup' {
|
|
|
3462
4186
|
readonly isSchnorrSecp256k1: boolean;
|
|
3463
4187
|
readonly isSchnorrSr25519: boolean;
|
|
3464
4188
|
readonly isSchnorrRistretto255: boolean;
|
|
3465
|
-
readonly isSchnorrRedJubJub: boolean;
|
|
3466
4189
|
readonly isSchnorrEd25519: boolean;
|
|
3467
4190
|
readonly isSchnorrEd448: boolean;
|
|
4191
|
+
readonly isSchnorrTaproot: boolean;
|
|
3468
4192
|
readonly isBls381: boolean;
|
|
3469
|
-
readonly type: 'EcdsaSecp256k1' | 'EcdsaSecp256r1' | 'EcdsaStark' | 'SchnorrP256' | 'SchnorrP384' | 'SchnorrSecp256k1' | 'SchnorrSr25519' | 'SchnorrRistretto255' | '
|
|
4193
|
+
readonly type: 'EcdsaSecp256k1' | 'EcdsaSecp256r1' | 'EcdsaStark' | 'SchnorrP256' | 'SchnorrP384' | 'SchnorrSecp256k1' | 'SchnorrSr25519' | 'SchnorrRistretto255' | 'SchnorrEd25519' | 'SchnorrEd448' | 'SchnorrTaproot' | 'Bls381';
|
|
3470
4194
|
}
|
|
3471
|
-
/** @name TanglePrimitivesJobsTssDkgtssSignatureResult (
|
|
4195
|
+
/** @name TanglePrimitivesJobsTssDkgtssSignatureResult (447) */
|
|
3472
4196
|
interface TanglePrimitivesJobsTssDkgtssSignatureResult extends Struct {
|
|
3473
4197
|
readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
|
|
3474
|
-
readonly derivationPath: Option<Bytes>;
|
|
3475
4198
|
readonly data: Bytes;
|
|
3476
4199
|
readonly signature: Bytes;
|
|
3477
4200
|
readonly verifyingKey: Bytes;
|
|
4201
|
+
readonly derivationPath: Option<Bytes>;
|
|
4202
|
+
readonly chainCode: Option<U8aFixed>;
|
|
3478
4203
|
}
|
|
3479
|
-
/** @name TanglePrimitivesJobsTssDkgtssKeyRefreshResult (
|
|
4204
|
+
/** @name TanglePrimitivesJobsTssDkgtssKeyRefreshResult (449) */
|
|
3480
4205
|
interface TanglePrimitivesJobsTssDkgtssKeyRefreshResult extends Struct {
|
|
3481
4206
|
readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
|
|
3482
4207
|
}
|
|
3483
|
-
/** @name TanglePrimitivesJobsTssDkgtssKeyRotationResult (
|
|
4208
|
+
/** @name TanglePrimitivesJobsTssDkgtssKeyRotationResult (450) */
|
|
3484
4209
|
interface TanglePrimitivesJobsTssDkgtssKeyRotationResult extends Struct {
|
|
3485
4210
|
readonly phaseOneId: u64;
|
|
3486
4211
|
readonly newPhaseOneId: u64;
|
|
@@ -3489,13 +4214,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3489
4214
|
readonly signature: Bytes;
|
|
3490
4215
|
readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
|
|
3491
4216
|
readonly derivationPath: Option<Bytes>;
|
|
4217
|
+
readonly chainCode: Option<U8aFixed>;
|
|
3492
4218
|
}
|
|
3493
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSCircuitResult (
|
|
4219
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSCircuitResult (451) */
|
|
3494
4220
|
interface TanglePrimitivesJobsZksaasZkSaaSCircuitResult extends Struct {
|
|
3495
4221
|
readonly jobId: u64;
|
|
3496
4222
|
readonly participants: Vec<SpCoreEcdsaPublic>;
|
|
3497
4223
|
}
|
|
3498
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSProofResult (
|
|
4224
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSProofResult (454) */
|
|
3499
4225
|
interface TanglePrimitivesJobsZksaasZkSaaSProofResult extends Enum {
|
|
3500
4226
|
readonly isArkworks: boolean;
|
|
3501
4227
|
readonly asArkworks: TanglePrimitivesJobsZksaasArkworksProofResult;
|
|
@@ -3503,15 +4229,15 @@ declare module '@polkadot/types/lookup' {
|
|
|
3503
4229
|
readonly asCircom: TanglePrimitivesJobsZksaasCircomProofResult;
|
|
3504
4230
|
readonly type: 'Arkworks' | 'Circom';
|
|
3505
4231
|
}
|
|
3506
|
-
/** @name TanglePrimitivesJobsZksaasArkworksProofResult (
|
|
4232
|
+
/** @name TanglePrimitivesJobsZksaasArkworksProofResult (455) */
|
|
3507
4233
|
interface TanglePrimitivesJobsZksaasArkworksProofResult extends Struct {
|
|
3508
4234
|
readonly proof: Bytes;
|
|
3509
4235
|
}
|
|
3510
|
-
/** @name TanglePrimitivesJobsZksaasCircomProofResult (
|
|
4236
|
+
/** @name TanglePrimitivesJobsZksaasCircomProofResult (457) */
|
|
3511
4237
|
interface TanglePrimitivesJobsZksaasCircomProofResult extends Struct {
|
|
3512
4238
|
readonly proof: Bytes;
|
|
3513
4239
|
}
|
|
3514
|
-
/** @name TanglePrimitivesJobsValidatorOffenceType (
|
|
4240
|
+
/** @name TanglePrimitivesJobsValidatorOffenceType (458) */
|
|
3515
4241
|
interface TanglePrimitivesJobsValidatorOffenceType extends Enum {
|
|
3516
4242
|
readonly isInactivity: boolean;
|
|
3517
4243
|
readonly isInvalidSignatureSubmitted: boolean;
|
|
@@ -3519,21 +4245,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3519
4245
|
readonly isApprovedInvalidAction: boolean;
|
|
3520
4246
|
readonly type: 'Inactivity' | 'InvalidSignatureSubmitted' | 'RejectedValidAction' | 'ApprovedInvalidAction';
|
|
3521
4247
|
}
|
|
3522
|
-
/** @name TanglePrimitivesMisbehaviorMisbehaviorSubmission (
|
|
4248
|
+
/** @name TanglePrimitivesMisbehaviorMisbehaviorSubmission (459) */
|
|
3523
4249
|
interface TanglePrimitivesMisbehaviorMisbehaviorSubmission extends Struct {
|
|
3524
4250
|
readonly roleType: TanglePrimitivesRolesRoleType;
|
|
3525
4251
|
readonly offender: U8aFixed;
|
|
3526
4252
|
readonly jobId: u64;
|
|
3527
4253
|
readonly justification: TanglePrimitivesMisbehaviorMisbehaviorJustification;
|
|
3528
4254
|
}
|
|
3529
|
-
/** @name TanglePrimitivesMisbehaviorMisbehaviorJustification (
|
|
4255
|
+
/** @name TanglePrimitivesMisbehaviorMisbehaviorJustification (460) */
|
|
3530
4256
|
interface TanglePrimitivesMisbehaviorMisbehaviorJustification extends Enum {
|
|
3531
4257
|
readonly isDkgtss: boolean;
|
|
3532
4258
|
readonly asDkgtss: TanglePrimitivesMisbehaviorDkgtssJustification;
|
|
3533
4259
|
readonly isZkSaaS: boolean;
|
|
3534
4260
|
readonly type: 'Dkgtss' | 'ZkSaaS';
|
|
3535
4261
|
}
|
|
3536
|
-
/** @name TanglePrimitivesMisbehaviorDkgtssJustification (
|
|
4262
|
+
/** @name TanglePrimitivesMisbehaviorDkgtssJustification (461) */
|
|
3537
4263
|
interface TanglePrimitivesMisbehaviorDkgtssJustification extends Enum {
|
|
3538
4264
|
readonly isDfnsCGGMP21: boolean;
|
|
3539
4265
|
readonly asDfnsCGGMP21: TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification;
|
|
@@ -3541,7 +4267,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3541
4267
|
readonly asZCashFrost: TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification;
|
|
3542
4268
|
readonly type: 'DfnsCGGMP21' | 'ZCashFrost';
|
|
3543
4269
|
}
|
|
3544
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification (
|
|
4270
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification (462) */
|
|
3545
4271
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification extends Enum {
|
|
3546
4272
|
readonly isKeygen: boolean;
|
|
3547
4273
|
readonly asKeygen: {
|
|
@@ -3563,7 +4289,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3563
4289
|
} & Struct;
|
|
3564
4290
|
readonly type: 'Keygen' | 'KeyRefresh' | 'Signing';
|
|
3565
4291
|
}
|
|
3566
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted (
|
|
4292
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted (464) */
|
|
3567
4293
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted extends Enum {
|
|
3568
4294
|
readonly isInvalidDecommitment: boolean;
|
|
3569
4295
|
readonly asInvalidDecommitment: {
|
|
@@ -3586,13 +4312,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3586
4312
|
} & Struct;
|
|
3587
4313
|
readonly type: 'InvalidDecommitment' | 'InvalidSchnorrProof' | 'FeldmanVerificationFailed' | 'InvalidDataSize';
|
|
3588
4314
|
}
|
|
3589
|
-
/** @name TanglePrimitivesMisbehaviorSignedRoundMessage (
|
|
4315
|
+
/** @name TanglePrimitivesMisbehaviorSignedRoundMessage (465) */
|
|
3590
4316
|
interface TanglePrimitivesMisbehaviorSignedRoundMessage extends Struct {
|
|
3591
4317
|
readonly sender: u16;
|
|
3592
4318
|
readonly message: Bytes;
|
|
3593
4319
|
readonly signature: Bytes;
|
|
3594
4320
|
}
|
|
3595
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted (
|
|
4321
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted (467) */
|
|
3596
4322
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted extends Enum {
|
|
3597
4323
|
readonly isInvalidDecommitment: boolean;
|
|
3598
4324
|
readonly asInvalidDecommitment: {
|
|
@@ -3617,7 +4343,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3617
4343
|
readonly isPaillierDec: boolean;
|
|
3618
4344
|
readonly type: 'InvalidDecommitment' | 'InvalidSchnorrProof' | 'InvalidModProof' | 'InvalidFacProof' | 'InvalidRingPedersenParameters' | 'InvalidX' | 'InvalidXShare' | 'InvalidDataSize' | 'PaillierDec';
|
|
3619
4345
|
}
|
|
3620
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason (
|
|
4346
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason (468) */
|
|
3621
4347
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason extends Enum {
|
|
3622
4348
|
readonly isEqualityCheck: boolean;
|
|
3623
4349
|
readonly asEqualityCheck: u8;
|
|
@@ -3635,7 +4361,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3635
4361
|
readonly asIncorrectFourthRoot: u8;
|
|
3636
4362
|
readonly type: 'EqualityCheck' | 'RangeCheck' | 'Encryption' | 'PaillierEnc' | 'PaillierOp' | 'ModPow' | 'ModulusIsPrime' | 'ModulusIsEven' | 'IncorrectNthRoot' | 'IncorrectFourthRoot';
|
|
3637
4363
|
}
|
|
3638
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted (
|
|
4364
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted (469) */
|
|
3639
4365
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted extends Enum {
|
|
3640
4366
|
readonly isEncProofOfK: boolean;
|
|
3641
4367
|
readonly isInvalidPsi: boolean;
|
|
@@ -3643,7 +4369,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3643
4369
|
readonly isMismatchedDelta: boolean;
|
|
3644
4370
|
readonly type: 'EncProofOfK' | 'InvalidPsi' | 'InvalidPsiPrimePrime' | 'MismatchedDelta';
|
|
3645
4371
|
}
|
|
3646
|
-
/** @name TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification (
|
|
4372
|
+
/** @name TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification (470) */
|
|
3647
4373
|
interface TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification extends Enum {
|
|
3648
4374
|
readonly isKeygen: boolean;
|
|
3649
4375
|
readonly asKeygen: {
|
|
@@ -3659,7 +4385,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3659
4385
|
} & Struct;
|
|
3660
4386
|
readonly type: 'Keygen' | 'Signing';
|
|
3661
4387
|
}
|
|
3662
|
-
/** @name TanglePrimitivesMisbehaviorZcashFrostKeygenAborted (
|
|
4388
|
+
/** @name TanglePrimitivesMisbehaviorZcashFrostKeygenAborted (471) */
|
|
3663
4389
|
interface TanglePrimitivesMisbehaviorZcashFrostKeygenAborted extends Enum {
|
|
3664
4390
|
readonly isInvalidProofOfKnowledge: boolean;
|
|
3665
4391
|
readonly asInvalidProofOfKnowledge: {
|
|
@@ -3672,7 +4398,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3672
4398
|
} & Struct;
|
|
3673
4399
|
readonly type: 'InvalidProofOfKnowledge' | 'InvalidSecretShare';
|
|
3674
4400
|
}
|
|
3675
|
-
/** @name TanglePrimitivesMisbehaviorZcashFrostSigningAborted (
|
|
4401
|
+
/** @name TanglePrimitivesMisbehaviorZcashFrostSigningAborted (472) */
|
|
3676
4402
|
interface TanglePrimitivesMisbehaviorZcashFrostSigningAborted extends Enum {
|
|
3677
4403
|
readonly isInvalidSignatureShare: boolean;
|
|
3678
4404
|
readonly asInvalidSignatureShare: {
|
|
@@ -3681,9 +4407,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
3681
4407
|
} & Struct;
|
|
3682
4408
|
readonly type: 'InvalidSignatureShare';
|
|
3683
4409
|
}
|
|
3684
|
-
/** @name TanglePrimitivesMisbehaviorZkSaaSJustification (
|
|
4410
|
+
/** @name TanglePrimitivesMisbehaviorZkSaaSJustification (473) */
|
|
3685
4411
|
type TanglePrimitivesMisbehaviorZkSaaSJustification = Null;
|
|
3686
|
-
/** @name PalletDkgCall (
|
|
4412
|
+
/** @name PalletDkgCall (474) */
|
|
3687
4413
|
interface PalletDkgCall extends Enum {
|
|
3688
4414
|
readonly isSetFee: boolean;
|
|
3689
4415
|
readonly asSetFee: {
|
|
@@ -3691,7 +4417,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3691
4417
|
} & Struct;
|
|
3692
4418
|
readonly type: 'SetFee';
|
|
3693
4419
|
}
|
|
3694
|
-
/** @name PalletZksaasCall (
|
|
4420
|
+
/** @name PalletZksaasCall (475) */
|
|
3695
4421
|
interface PalletZksaasCall extends Enum {
|
|
3696
4422
|
readonly isSetFee: boolean;
|
|
3697
4423
|
readonly asSetFee: {
|
|
@@ -3699,62 +4425,391 @@ declare module '@polkadot/types/lookup' {
|
|
|
3699
4425
|
} & Struct;
|
|
3700
4426
|
readonly type: 'SetFee';
|
|
3701
4427
|
}
|
|
3702
|
-
/** @name
|
|
4428
|
+
/** @name PalletProxyCall (476) */
|
|
4429
|
+
interface PalletProxyCall extends Enum {
|
|
4430
|
+
readonly isProxy: boolean;
|
|
4431
|
+
readonly asProxy: {
|
|
4432
|
+
readonly real: MultiAddress;
|
|
4433
|
+
readonly forceProxyType: Option<TangleTestnetRuntimeProxyType>;
|
|
4434
|
+
readonly call: Call;
|
|
4435
|
+
} & Struct;
|
|
4436
|
+
readonly isAddProxy: boolean;
|
|
4437
|
+
readonly asAddProxy: {
|
|
4438
|
+
readonly delegate: MultiAddress;
|
|
4439
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
|
4440
|
+
readonly delay: u64;
|
|
4441
|
+
} & Struct;
|
|
4442
|
+
readonly isRemoveProxy: boolean;
|
|
4443
|
+
readonly asRemoveProxy: {
|
|
4444
|
+
readonly delegate: MultiAddress;
|
|
4445
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
|
4446
|
+
readonly delay: u64;
|
|
4447
|
+
} & Struct;
|
|
4448
|
+
readonly isRemoveProxies: boolean;
|
|
4449
|
+
readonly isCreatePure: boolean;
|
|
4450
|
+
readonly asCreatePure: {
|
|
4451
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
|
4452
|
+
readonly delay: u64;
|
|
4453
|
+
readonly index: u16;
|
|
4454
|
+
} & Struct;
|
|
4455
|
+
readonly isKillPure: boolean;
|
|
4456
|
+
readonly asKillPure: {
|
|
4457
|
+
readonly spawner: MultiAddress;
|
|
4458
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
|
4459
|
+
readonly index: u16;
|
|
4460
|
+
readonly height: Compact<u64>;
|
|
4461
|
+
readonly extIndex: Compact<u32>;
|
|
4462
|
+
} & Struct;
|
|
4463
|
+
readonly isAnnounce: boolean;
|
|
4464
|
+
readonly asAnnounce: {
|
|
4465
|
+
readonly real: MultiAddress;
|
|
4466
|
+
readonly callHash: H256;
|
|
4467
|
+
} & Struct;
|
|
4468
|
+
readonly isRemoveAnnouncement: boolean;
|
|
4469
|
+
readonly asRemoveAnnouncement: {
|
|
4470
|
+
readonly real: MultiAddress;
|
|
4471
|
+
readonly callHash: H256;
|
|
4472
|
+
} & Struct;
|
|
4473
|
+
readonly isRejectAnnouncement: boolean;
|
|
4474
|
+
readonly asRejectAnnouncement: {
|
|
4475
|
+
readonly delegate: MultiAddress;
|
|
4476
|
+
readonly callHash: H256;
|
|
4477
|
+
} & Struct;
|
|
4478
|
+
readonly isProxyAnnounced: boolean;
|
|
4479
|
+
readonly asProxyAnnounced: {
|
|
4480
|
+
readonly delegate: MultiAddress;
|
|
4481
|
+
readonly real: MultiAddress;
|
|
4482
|
+
readonly forceProxyType: Option<TangleTestnetRuntimeProxyType>;
|
|
4483
|
+
readonly call: Call;
|
|
4484
|
+
} & Struct;
|
|
4485
|
+
readonly type: 'Proxy' | 'AddProxy' | 'RemoveProxy' | 'RemoveProxies' | 'CreatePure' | 'KillPure' | 'Announce' | 'RemoveAnnouncement' | 'RejectAnnouncement' | 'ProxyAnnounced';
|
|
4486
|
+
}
|
|
4487
|
+
/** @name PalletMultiAssetDelegationCall (478) */
|
|
4488
|
+
interface PalletMultiAssetDelegationCall extends Enum {
|
|
4489
|
+
readonly isJoinOperators: boolean;
|
|
4490
|
+
readonly asJoinOperators: {
|
|
4491
|
+
readonly bondAmount: u128;
|
|
4492
|
+
} & Struct;
|
|
4493
|
+
readonly isScheduleLeaveOperators: boolean;
|
|
4494
|
+
readonly isCancelLeaveOperators: boolean;
|
|
4495
|
+
readonly isExecuteLeaveOperators: boolean;
|
|
4496
|
+
readonly isOperatorBondMore: boolean;
|
|
4497
|
+
readonly asOperatorBondMore: {
|
|
4498
|
+
readonly additionalBond: u128;
|
|
4499
|
+
} & Struct;
|
|
4500
|
+
readonly isScheduleOperatorBondLess: boolean;
|
|
4501
|
+
readonly asScheduleOperatorBondLess: {
|
|
4502
|
+
readonly bondLessAmount: u128;
|
|
4503
|
+
} & Struct;
|
|
4504
|
+
readonly isExecuteOperatorBondLess: boolean;
|
|
4505
|
+
readonly isCancelOperatorBondLess: boolean;
|
|
4506
|
+
readonly isGoOffline: boolean;
|
|
4507
|
+
readonly isGoOnline: boolean;
|
|
4508
|
+
readonly isDeposit: boolean;
|
|
4509
|
+
readonly asDeposit: {
|
|
4510
|
+
readonly assetId: Option<u128>;
|
|
4511
|
+
readonly amount: u128;
|
|
4512
|
+
} & Struct;
|
|
4513
|
+
readonly isScheduleUnstake: boolean;
|
|
4514
|
+
readonly asScheduleUnstake: {
|
|
4515
|
+
readonly assetId: Option<u128>;
|
|
4516
|
+
readonly amount: u128;
|
|
4517
|
+
} & Struct;
|
|
4518
|
+
readonly isExecuteUnstake: boolean;
|
|
4519
|
+
readonly isCancelUnstake: boolean;
|
|
4520
|
+
readonly isDelegate: boolean;
|
|
4521
|
+
readonly asDelegate: {
|
|
4522
|
+
readonly operator: AccountId32;
|
|
4523
|
+
readonly assetId: u128;
|
|
4524
|
+
readonly amount: u128;
|
|
4525
|
+
} & Struct;
|
|
4526
|
+
readonly isScheduleDelegatorBondLess: boolean;
|
|
4527
|
+
readonly asScheduleDelegatorBondLess: {
|
|
4528
|
+
readonly operator: AccountId32;
|
|
4529
|
+
readonly assetId: u128;
|
|
4530
|
+
readonly amount: u128;
|
|
4531
|
+
} & Struct;
|
|
4532
|
+
readonly isExecuteDelegatorBondLess: boolean;
|
|
4533
|
+
readonly isCancelDelegatorBondLess: boolean;
|
|
4534
|
+
readonly isSetWhitelistedAssets: boolean;
|
|
4535
|
+
readonly asSetWhitelistedAssets: {
|
|
4536
|
+
readonly assets: Vec<u128>;
|
|
4537
|
+
} & Struct;
|
|
4538
|
+
readonly isSetIncentiveApyAndCap: boolean;
|
|
4539
|
+
readonly asSetIncentiveApyAndCap: {
|
|
4540
|
+
readonly assetId: u128;
|
|
4541
|
+
readonly apy: u128;
|
|
4542
|
+
readonly cap: u128;
|
|
4543
|
+
} & Struct;
|
|
4544
|
+
readonly isWhitelistBlueprintForRewards: boolean;
|
|
4545
|
+
readonly asWhitelistBlueprintForRewards: {
|
|
4546
|
+
readonly blueprintId: u32;
|
|
4547
|
+
} & Struct;
|
|
4548
|
+
readonly type: 'JoinOperators' | 'ScheduleLeaveOperators' | 'CancelLeaveOperators' | 'ExecuteLeaveOperators' | 'OperatorBondMore' | 'ScheduleOperatorBondLess' | 'ExecuteOperatorBondLess' | 'CancelOperatorBondLess' | 'GoOffline' | 'GoOnline' | 'Deposit' | 'ScheduleUnstake' | 'ExecuteUnstake' | 'CancelUnstake' | 'Delegate' | 'ScheduleDelegatorBondLess' | 'ExecuteDelegatorBondLess' | 'CancelDelegatorBondLess' | 'SetWhitelistedAssets' | 'SetIncentiveApyAndCap' | 'WhitelistBlueprintForRewards';
|
|
4549
|
+
}
|
|
4550
|
+
/** @name SygmaAccessSegregatorCall (479) */
|
|
4551
|
+
interface SygmaAccessSegregatorCall extends Enum {
|
|
4552
|
+
readonly isGrantAccess: boolean;
|
|
4553
|
+
readonly asGrantAccess: {
|
|
4554
|
+
readonly palletIndex: u8;
|
|
4555
|
+
readonly extrinsicName: Bytes;
|
|
4556
|
+
readonly who: AccountId32;
|
|
4557
|
+
} & Struct;
|
|
4558
|
+
readonly type: 'GrantAccess';
|
|
4559
|
+
}
|
|
4560
|
+
/** @name SygmaBasicFeehandlerCall (480) */
|
|
4561
|
+
interface SygmaBasicFeehandlerCall extends Enum {
|
|
4562
|
+
readonly isSetFee: boolean;
|
|
4563
|
+
readonly asSetFee: {
|
|
4564
|
+
readonly domain: u8;
|
|
4565
|
+
readonly asset: StagingXcmV4AssetAssetId;
|
|
4566
|
+
readonly amount: u128;
|
|
4567
|
+
} & Struct;
|
|
4568
|
+
readonly type: 'SetFee';
|
|
4569
|
+
}
|
|
4570
|
+
/** @name SygmaFeeHandlerRouterCall (481) */
|
|
4571
|
+
interface SygmaFeeHandlerRouterCall extends Enum {
|
|
4572
|
+
readonly isSetFeeHandler: boolean;
|
|
4573
|
+
readonly asSetFeeHandler: {
|
|
4574
|
+
readonly domain: u8;
|
|
4575
|
+
readonly asset: StagingXcmV4AssetAssetId;
|
|
4576
|
+
readonly handlerType: SygmaFeeHandlerRouterFeeHandlerType;
|
|
4577
|
+
} & Struct;
|
|
4578
|
+
readonly type: 'SetFeeHandler';
|
|
4579
|
+
}
|
|
4580
|
+
/** @name SygmaPercentageFeehandlerCall (482) */
|
|
4581
|
+
interface SygmaPercentageFeehandlerCall extends Enum {
|
|
4582
|
+
readonly isSetFeeRate: boolean;
|
|
4583
|
+
readonly asSetFeeRate: {
|
|
4584
|
+
readonly domain: u8;
|
|
4585
|
+
readonly asset: StagingXcmV4AssetAssetId;
|
|
4586
|
+
readonly feeRateBasisPoint: u32;
|
|
4587
|
+
readonly feeLowerBound: u128;
|
|
4588
|
+
readonly feeUpperBound: u128;
|
|
4589
|
+
} & Struct;
|
|
4590
|
+
readonly type: 'SetFeeRate';
|
|
4591
|
+
}
|
|
4592
|
+
/** @name SygmaBridgeCall (483) */
|
|
4593
|
+
interface SygmaBridgeCall extends Enum {
|
|
4594
|
+
readonly isPauseBridge: boolean;
|
|
4595
|
+
readonly asPauseBridge: {
|
|
4596
|
+
readonly destDomainId: u8;
|
|
4597
|
+
} & Struct;
|
|
4598
|
+
readonly isUnpauseBridge: boolean;
|
|
4599
|
+
readonly asUnpauseBridge: {
|
|
4600
|
+
readonly destDomainId: u8;
|
|
4601
|
+
} & Struct;
|
|
4602
|
+
readonly isSetMpcAddress: boolean;
|
|
4603
|
+
readonly asSetMpcAddress: {
|
|
4604
|
+
readonly addr: SygmaTraitsMpcAddress;
|
|
4605
|
+
} & Struct;
|
|
4606
|
+
readonly isRegisterDomain: boolean;
|
|
4607
|
+
readonly asRegisterDomain: {
|
|
4608
|
+
readonly destDomainId: u8;
|
|
4609
|
+
readonly destChainId: U256;
|
|
4610
|
+
} & Struct;
|
|
4611
|
+
readonly isUnregisterDomain: boolean;
|
|
4612
|
+
readonly asUnregisterDomain: {
|
|
4613
|
+
readonly destDomainId: u8;
|
|
4614
|
+
readonly destChainId: U256;
|
|
4615
|
+
} & Struct;
|
|
4616
|
+
readonly isDeposit: boolean;
|
|
4617
|
+
readonly asDeposit: {
|
|
4618
|
+
readonly asset: StagingXcmV4Asset;
|
|
4619
|
+
readonly dest: StagingXcmV4Location;
|
|
4620
|
+
} & Struct;
|
|
4621
|
+
readonly isRetry: boolean;
|
|
4622
|
+
readonly asRetry: {
|
|
4623
|
+
readonly depositOnBlockHeight: u128;
|
|
4624
|
+
readonly destDomainId: u8;
|
|
4625
|
+
} & Struct;
|
|
4626
|
+
readonly isExecuteProposal: boolean;
|
|
4627
|
+
readonly asExecuteProposal: {
|
|
4628
|
+
readonly proposals: Vec<SygmaBridgeProposal>;
|
|
4629
|
+
readonly signature: Bytes;
|
|
4630
|
+
} & Struct;
|
|
4631
|
+
readonly isPauseAllBridges: boolean;
|
|
4632
|
+
readonly isUnpauseAllBridges: boolean;
|
|
4633
|
+
readonly type: 'PauseBridge' | 'UnpauseBridge' | 'SetMpcAddress' | 'RegisterDomain' | 'UnregisterDomain' | 'Deposit' | 'Retry' | 'ExecuteProposal' | 'PauseAllBridges' | 'UnpauseAllBridges';
|
|
4634
|
+
}
|
|
4635
|
+
/** @name SygmaTraitsMpcAddress (484) */
|
|
4636
|
+
interface SygmaTraitsMpcAddress extends U8aFixed {
|
|
4637
|
+
}
|
|
4638
|
+
/** @name StagingXcmV4Asset (485) */
|
|
4639
|
+
interface StagingXcmV4Asset extends Struct {
|
|
4640
|
+
readonly id: StagingXcmV4AssetAssetId;
|
|
4641
|
+
readonly fun: StagingXcmV4AssetFungibility;
|
|
4642
|
+
}
|
|
4643
|
+
/** @name StagingXcmV4AssetFungibility (486) */
|
|
4644
|
+
interface StagingXcmV4AssetFungibility extends Enum {
|
|
4645
|
+
readonly isFungible: boolean;
|
|
4646
|
+
readonly asFungible: Compact<u128>;
|
|
4647
|
+
readonly isNonFungible: boolean;
|
|
4648
|
+
readonly asNonFungible: StagingXcmV4AssetAssetInstance;
|
|
4649
|
+
readonly type: 'Fungible' | 'NonFungible';
|
|
4650
|
+
}
|
|
4651
|
+
/** @name StagingXcmV4AssetAssetInstance (487) */
|
|
4652
|
+
interface StagingXcmV4AssetAssetInstance extends Enum {
|
|
4653
|
+
readonly isUndefined: boolean;
|
|
4654
|
+
readonly isIndex: boolean;
|
|
4655
|
+
readonly asIndex: Compact<u128>;
|
|
4656
|
+
readonly isArray4: boolean;
|
|
4657
|
+
readonly asArray4: U8aFixed;
|
|
4658
|
+
readonly isArray8: boolean;
|
|
4659
|
+
readonly asArray8: U8aFixed;
|
|
4660
|
+
readonly isArray16: boolean;
|
|
4661
|
+
readonly asArray16: U8aFixed;
|
|
4662
|
+
readonly isArray32: boolean;
|
|
4663
|
+
readonly asArray32: U8aFixed;
|
|
4664
|
+
readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32';
|
|
4665
|
+
}
|
|
4666
|
+
/** @name SygmaBridgeProposal (489) */
|
|
4667
|
+
interface SygmaBridgeProposal extends Struct {
|
|
4668
|
+
readonly originDomainId: u8;
|
|
4669
|
+
readonly depositNonce: u64;
|
|
4670
|
+
readonly resourceId: U8aFixed;
|
|
4671
|
+
readonly data: Bytes;
|
|
4672
|
+
}
|
|
4673
|
+
/** @name PalletSudoError (490) */
|
|
3703
4674
|
interface PalletSudoError extends Enum {
|
|
3704
4675
|
readonly isRequireSudo: boolean;
|
|
3705
4676
|
readonly type: 'RequireSudo';
|
|
3706
4677
|
}
|
|
3707
|
-
/** @name
|
|
4678
|
+
/** @name PalletAssetsAssetDetails (492) */
|
|
4679
|
+
interface PalletAssetsAssetDetails extends Struct {
|
|
4680
|
+
readonly owner: AccountId32;
|
|
4681
|
+
readonly issuer: AccountId32;
|
|
4682
|
+
readonly admin: AccountId32;
|
|
4683
|
+
readonly freezer: AccountId32;
|
|
4684
|
+
readonly supply: u128;
|
|
4685
|
+
readonly deposit: u128;
|
|
4686
|
+
readonly minBalance: u128;
|
|
4687
|
+
readonly isSufficient: bool;
|
|
4688
|
+
readonly accounts: u32;
|
|
4689
|
+
readonly sufficients: u32;
|
|
4690
|
+
readonly approvals: u32;
|
|
4691
|
+
readonly status: PalletAssetsAssetStatus;
|
|
4692
|
+
}
|
|
4693
|
+
/** @name PalletAssetsAssetStatus (493) */
|
|
4694
|
+
interface PalletAssetsAssetStatus extends Enum {
|
|
4695
|
+
readonly isLive: boolean;
|
|
4696
|
+
readonly isFrozen: boolean;
|
|
4697
|
+
readonly isDestroying: boolean;
|
|
4698
|
+
readonly type: 'Live' | 'Frozen' | 'Destroying';
|
|
4699
|
+
}
|
|
4700
|
+
/** @name PalletAssetsAssetAccount (495) */
|
|
4701
|
+
interface PalletAssetsAssetAccount extends Struct {
|
|
4702
|
+
readonly balance: u128;
|
|
4703
|
+
readonly status: PalletAssetsAccountStatus;
|
|
4704
|
+
readonly reason: PalletAssetsExistenceReason;
|
|
4705
|
+
readonly extra: Null;
|
|
4706
|
+
}
|
|
4707
|
+
/** @name PalletAssetsAccountStatus (496) */
|
|
4708
|
+
interface PalletAssetsAccountStatus extends Enum {
|
|
4709
|
+
readonly isLiquid: boolean;
|
|
4710
|
+
readonly isFrozen: boolean;
|
|
4711
|
+
readonly isBlocked: boolean;
|
|
4712
|
+
readonly type: 'Liquid' | 'Frozen' | 'Blocked';
|
|
4713
|
+
}
|
|
4714
|
+
/** @name PalletAssetsExistenceReason (497) */
|
|
4715
|
+
interface PalletAssetsExistenceReason extends Enum {
|
|
4716
|
+
readonly isConsumer: boolean;
|
|
4717
|
+
readonly isSufficient: boolean;
|
|
4718
|
+
readonly isDepositHeld: boolean;
|
|
4719
|
+
readonly asDepositHeld: u128;
|
|
4720
|
+
readonly isDepositRefunded: boolean;
|
|
4721
|
+
readonly isDepositFrom: boolean;
|
|
4722
|
+
readonly asDepositFrom: ITuple<[AccountId32, u128]>;
|
|
4723
|
+
readonly type: 'Consumer' | 'Sufficient' | 'DepositHeld' | 'DepositRefunded' | 'DepositFrom';
|
|
4724
|
+
}
|
|
4725
|
+
/** @name PalletAssetsApproval (499) */
|
|
4726
|
+
interface PalletAssetsApproval extends Struct {
|
|
4727
|
+
readonly amount: u128;
|
|
4728
|
+
readonly deposit: u128;
|
|
4729
|
+
}
|
|
4730
|
+
/** @name PalletAssetsAssetMetadata (500) */
|
|
4731
|
+
interface PalletAssetsAssetMetadata extends Struct {
|
|
4732
|
+
readonly deposit: u128;
|
|
4733
|
+
readonly name: Bytes;
|
|
4734
|
+
readonly symbol: Bytes;
|
|
4735
|
+
readonly decimals: u8;
|
|
4736
|
+
readonly isFrozen: bool;
|
|
4737
|
+
}
|
|
4738
|
+
/** @name PalletAssetsError (502) */
|
|
4739
|
+
interface PalletAssetsError extends Enum {
|
|
4740
|
+
readonly isBalanceLow: boolean;
|
|
4741
|
+
readonly isNoAccount: boolean;
|
|
4742
|
+
readonly isNoPermission: boolean;
|
|
4743
|
+
readonly isUnknown: boolean;
|
|
4744
|
+
readonly isFrozen: boolean;
|
|
4745
|
+
readonly isInUse: boolean;
|
|
4746
|
+
readonly isBadWitness: boolean;
|
|
4747
|
+
readonly isMinBalanceZero: boolean;
|
|
4748
|
+
readonly isUnavailableConsumer: boolean;
|
|
4749
|
+
readonly isBadMetadata: boolean;
|
|
4750
|
+
readonly isUnapproved: boolean;
|
|
4751
|
+
readonly isWouldDie: boolean;
|
|
4752
|
+
readonly isAlreadyExists: boolean;
|
|
4753
|
+
readonly isNoDeposit: boolean;
|
|
4754
|
+
readonly isWouldBurn: boolean;
|
|
4755
|
+
readonly isLiveAsset: boolean;
|
|
4756
|
+
readonly isAssetNotLive: boolean;
|
|
4757
|
+
readonly isIncorrectStatus: boolean;
|
|
4758
|
+
readonly isNotFrozen: boolean;
|
|
4759
|
+
readonly isCallbackFailed: boolean;
|
|
4760
|
+
readonly type: 'BalanceLow' | 'NoAccount' | 'NoPermission' | 'Unknown' | 'Frozen' | 'InUse' | 'BadWitness' | 'MinBalanceZero' | 'UnavailableConsumer' | 'BadMetadata' | 'Unapproved' | 'WouldDie' | 'AlreadyExists' | 'NoDeposit' | 'WouldBurn' | 'LiveAsset' | 'AssetNotLive' | 'IncorrectStatus' | 'NotFrozen' | 'CallbackFailed';
|
|
4761
|
+
}
|
|
4762
|
+
/** @name PalletBalancesBalanceLock (504) */
|
|
3708
4763
|
interface PalletBalancesBalanceLock extends Struct {
|
|
3709
4764
|
readonly id: U8aFixed;
|
|
3710
4765
|
readonly amount: u128;
|
|
3711
4766
|
readonly reasons: PalletBalancesReasons;
|
|
3712
4767
|
}
|
|
3713
|
-
/** @name PalletBalancesReasons (
|
|
4768
|
+
/** @name PalletBalancesReasons (505) */
|
|
3714
4769
|
interface PalletBalancesReasons extends Enum {
|
|
3715
4770
|
readonly isFee: boolean;
|
|
3716
4771
|
readonly isMisc: boolean;
|
|
3717
4772
|
readonly isAll: boolean;
|
|
3718
4773
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
3719
4774
|
}
|
|
3720
|
-
/** @name PalletBalancesReserveData (
|
|
4775
|
+
/** @name PalletBalancesReserveData (508) */
|
|
3721
4776
|
interface PalletBalancesReserveData extends Struct {
|
|
3722
4777
|
readonly id: U8aFixed;
|
|
3723
4778
|
readonly amount: u128;
|
|
3724
4779
|
}
|
|
3725
|
-
/** @name PalletBalancesIdAmountRuntimeHoldReason (
|
|
4780
|
+
/** @name PalletBalancesIdAmountRuntimeHoldReason (511) */
|
|
3726
4781
|
interface PalletBalancesIdAmountRuntimeHoldReason extends Struct {
|
|
3727
4782
|
readonly id: TangleTestnetRuntimeRuntimeHoldReason;
|
|
3728
4783
|
readonly amount: u128;
|
|
3729
4784
|
}
|
|
3730
|
-
/** @name TangleTestnetRuntimeRuntimeHoldReason (
|
|
4785
|
+
/** @name TangleTestnetRuntimeRuntimeHoldReason (512) */
|
|
3731
4786
|
interface TangleTestnetRuntimeRuntimeHoldReason extends Enum {
|
|
3732
4787
|
readonly isPreimage: boolean;
|
|
3733
4788
|
readonly asPreimage: PalletPreimageHoldReason;
|
|
3734
4789
|
readonly type: 'Preimage';
|
|
3735
4790
|
}
|
|
3736
|
-
/** @name PalletPreimageHoldReason (
|
|
4791
|
+
/** @name PalletPreimageHoldReason (513) */
|
|
3737
4792
|
interface PalletPreimageHoldReason extends Enum {
|
|
3738
4793
|
readonly isPreimage: boolean;
|
|
3739
4794
|
readonly type: 'Preimage';
|
|
3740
4795
|
}
|
|
3741
|
-
/** @name PalletBalancesIdAmountRuntimeFreezeReason (
|
|
4796
|
+
/** @name PalletBalancesIdAmountRuntimeFreezeReason (516) */
|
|
3742
4797
|
interface PalletBalancesIdAmountRuntimeFreezeReason extends Struct {
|
|
3743
4798
|
readonly id: TangleTestnetRuntimeRuntimeFreezeReason;
|
|
3744
4799
|
readonly amount: u128;
|
|
3745
4800
|
}
|
|
3746
|
-
/** @name TangleTestnetRuntimeRuntimeFreezeReason (
|
|
4801
|
+
/** @name TangleTestnetRuntimeRuntimeFreezeReason (517) */
|
|
3747
4802
|
interface TangleTestnetRuntimeRuntimeFreezeReason extends Enum {
|
|
3748
4803
|
readonly isNominationPools: boolean;
|
|
3749
4804
|
readonly asNominationPools: PalletNominationPoolsFreezeReason;
|
|
3750
4805
|
readonly type: 'NominationPools';
|
|
3751
4806
|
}
|
|
3752
|
-
/** @name PalletNominationPoolsFreezeReason (
|
|
4807
|
+
/** @name PalletNominationPoolsFreezeReason (518) */
|
|
3753
4808
|
interface PalletNominationPoolsFreezeReason extends Enum {
|
|
3754
4809
|
readonly isPoolMinBalance: boolean;
|
|
3755
4810
|
readonly type: 'PoolMinBalance';
|
|
3756
4811
|
}
|
|
3757
|
-
/** @name PalletBalancesError (
|
|
4812
|
+
/** @name PalletBalancesError (520) */
|
|
3758
4813
|
interface PalletBalancesError extends Enum {
|
|
3759
4814
|
readonly isVestingBalance: boolean;
|
|
3760
4815
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -3770,13 +4825,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3770
4825
|
readonly isDeltaZero: boolean;
|
|
3771
4826
|
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
|
|
3772
4827
|
}
|
|
3773
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4828
|
+
/** @name PalletTransactionPaymentReleases (522) */
|
|
3774
4829
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
3775
4830
|
readonly isV1Ancient: boolean;
|
|
3776
4831
|
readonly isV2: boolean;
|
|
3777
4832
|
readonly type: 'V1Ancient' | 'V2';
|
|
3778
4833
|
}
|
|
3779
|
-
/** @name SpConsensusBabeDigestsPreDigest (
|
|
4834
|
+
/** @name SpConsensusBabeDigestsPreDigest (529) */
|
|
3780
4835
|
interface SpConsensusBabeDigestsPreDigest extends Enum {
|
|
3781
4836
|
readonly isPrimary: boolean;
|
|
3782
4837
|
readonly asPrimary: SpConsensusBabeDigestsPrimaryPreDigest;
|
|
@@ -3786,34 +4841,34 @@ declare module '@polkadot/types/lookup' {
|
|
|
3786
4841
|
readonly asSecondaryVRF: SpConsensusBabeDigestsSecondaryVRFPreDigest;
|
|
3787
4842
|
readonly type: 'Primary' | 'SecondaryPlain' | 'SecondaryVRF';
|
|
3788
4843
|
}
|
|
3789
|
-
/** @name SpConsensusBabeDigestsPrimaryPreDigest (
|
|
4844
|
+
/** @name SpConsensusBabeDigestsPrimaryPreDigest (530) */
|
|
3790
4845
|
interface SpConsensusBabeDigestsPrimaryPreDigest extends Struct {
|
|
3791
4846
|
readonly authorityIndex: u32;
|
|
3792
4847
|
readonly slot: u64;
|
|
3793
4848
|
readonly vrfSignature: SpCoreSr25519VrfVrfSignature;
|
|
3794
4849
|
}
|
|
3795
|
-
/** @name SpCoreSr25519VrfVrfSignature (
|
|
4850
|
+
/** @name SpCoreSr25519VrfVrfSignature (531) */
|
|
3796
4851
|
interface SpCoreSr25519VrfVrfSignature extends Struct {
|
|
3797
4852
|
readonly preOutput: U8aFixed;
|
|
3798
4853
|
readonly proof: U8aFixed;
|
|
3799
4854
|
}
|
|
3800
|
-
/** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (
|
|
4855
|
+
/** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (532) */
|
|
3801
4856
|
interface SpConsensusBabeDigestsSecondaryPlainPreDigest extends Struct {
|
|
3802
4857
|
readonly authorityIndex: u32;
|
|
3803
4858
|
readonly slot: u64;
|
|
3804
4859
|
}
|
|
3805
|
-
/** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (
|
|
4860
|
+
/** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (533) */
|
|
3806
4861
|
interface SpConsensusBabeDigestsSecondaryVRFPreDigest extends Struct {
|
|
3807
4862
|
readonly authorityIndex: u32;
|
|
3808
4863
|
readonly slot: u64;
|
|
3809
4864
|
readonly vrfSignature: SpCoreSr25519VrfVrfSignature;
|
|
3810
4865
|
}
|
|
3811
|
-
/** @name SpConsensusBabeBabeEpochConfiguration (
|
|
4866
|
+
/** @name SpConsensusBabeBabeEpochConfiguration (534) */
|
|
3812
4867
|
interface SpConsensusBabeBabeEpochConfiguration extends Struct {
|
|
3813
4868
|
readonly c: ITuple<[u64, u64]>;
|
|
3814
4869
|
readonly allowedSlots: SpConsensusBabeAllowedSlots;
|
|
3815
4870
|
}
|
|
3816
|
-
/** @name PalletBabeError (
|
|
4871
|
+
/** @name PalletBabeError (536) */
|
|
3817
4872
|
interface PalletBabeError extends Enum {
|
|
3818
4873
|
readonly isInvalidEquivocationProof: boolean;
|
|
3819
4874
|
readonly isInvalidKeyOwnershipProof: boolean;
|
|
@@ -3821,7 +4876,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3821
4876
|
readonly isInvalidConfiguration: boolean;
|
|
3822
4877
|
readonly type: 'InvalidEquivocationProof' | 'InvalidKeyOwnershipProof' | 'DuplicateOffenceReport' | 'InvalidConfiguration';
|
|
3823
4878
|
}
|
|
3824
|
-
/** @name PalletGrandpaStoredState (
|
|
4879
|
+
/** @name PalletGrandpaStoredState (537) */
|
|
3825
4880
|
interface PalletGrandpaStoredState extends Enum {
|
|
3826
4881
|
readonly isLive: boolean;
|
|
3827
4882
|
readonly isPendingPause: boolean;
|
|
@@ -3837,14 +4892,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3837
4892
|
} & Struct;
|
|
3838
4893
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
3839
4894
|
}
|
|
3840
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
4895
|
+
/** @name PalletGrandpaStoredPendingChange (538) */
|
|
3841
4896
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
3842
4897
|
readonly scheduledAt: u64;
|
|
3843
4898
|
readonly delay: u64;
|
|
3844
4899
|
readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
|
|
3845
4900
|
readonly forced: Option<u64>;
|
|
3846
4901
|
}
|
|
3847
|
-
/** @name PalletGrandpaError (
|
|
4902
|
+
/** @name PalletGrandpaError (540) */
|
|
3848
4903
|
interface PalletGrandpaError extends Enum {
|
|
3849
4904
|
readonly isPauseFailed: boolean;
|
|
3850
4905
|
readonly isResumeFailed: boolean;
|
|
@@ -3855,7 +4910,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3855
4910
|
readonly isDuplicateOffenceReport: boolean;
|
|
3856
4911
|
readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
|
|
3857
4912
|
}
|
|
3858
|
-
/** @name PalletIndicesError (
|
|
4913
|
+
/** @name PalletIndicesError (542) */
|
|
3859
4914
|
interface PalletIndicesError extends Enum {
|
|
3860
4915
|
readonly isNotAssigned: boolean;
|
|
3861
4916
|
readonly isNotOwner: boolean;
|
|
@@ -3864,7 +4919,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3864
4919
|
readonly isPermanent: boolean;
|
|
3865
4920
|
readonly type: 'NotAssigned' | 'NotOwner' | 'InUse' | 'NotTransfer' | 'Permanent';
|
|
3866
4921
|
}
|
|
3867
|
-
/** @name PalletDemocracyReferendumInfo (
|
|
4922
|
+
/** @name PalletDemocracyReferendumInfo (547) */
|
|
3868
4923
|
interface PalletDemocracyReferendumInfo extends Enum {
|
|
3869
4924
|
readonly isOngoing: boolean;
|
|
3870
4925
|
readonly asOngoing: PalletDemocracyReferendumStatus;
|
|
@@ -3875,7 +4930,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3875
4930
|
} & Struct;
|
|
3876
4931
|
readonly type: 'Ongoing' | 'Finished';
|
|
3877
4932
|
}
|
|
3878
|
-
/** @name PalletDemocracyReferendumStatus (
|
|
4933
|
+
/** @name PalletDemocracyReferendumStatus (548) */
|
|
3879
4934
|
interface PalletDemocracyReferendumStatus extends Struct {
|
|
3880
4935
|
readonly end: u64;
|
|
3881
4936
|
readonly proposal: FrameSupportPreimagesBounded;
|
|
@@ -3883,13 +4938,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3883
4938
|
readonly delay: u64;
|
|
3884
4939
|
readonly tally: PalletDemocracyTally;
|
|
3885
4940
|
}
|
|
3886
|
-
/** @name PalletDemocracyTally (
|
|
4941
|
+
/** @name PalletDemocracyTally (549) */
|
|
3887
4942
|
interface PalletDemocracyTally extends Struct {
|
|
3888
4943
|
readonly ayes: u128;
|
|
3889
4944
|
readonly nays: u128;
|
|
3890
4945
|
readonly turnout: u128;
|
|
3891
4946
|
}
|
|
3892
|
-
/** @name PalletDemocracyVoteVoting (
|
|
4947
|
+
/** @name PalletDemocracyVoteVoting (550) */
|
|
3893
4948
|
interface PalletDemocracyVoteVoting extends Enum {
|
|
3894
4949
|
readonly isDirect: boolean;
|
|
3895
4950
|
readonly asDirect: {
|
|
@@ -3907,15 +4962,15 @@ declare module '@polkadot/types/lookup' {
|
|
|
3907
4962
|
} & Struct;
|
|
3908
4963
|
readonly type: 'Direct' | 'Delegating';
|
|
3909
4964
|
}
|
|
3910
|
-
/** @name PalletDemocracyDelegations (
|
|
4965
|
+
/** @name PalletDemocracyDelegations (554) */
|
|
3911
4966
|
interface PalletDemocracyDelegations extends Struct {
|
|
3912
4967
|
readonly votes: u128;
|
|
3913
4968
|
readonly capital: u128;
|
|
3914
4969
|
}
|
|
3915
|
-
/** @name PalletDemocracyVotePriorLock (
|
|
4970
|
+
/** @name PalletDemocracyVotePriorLock (555) */
|
|
3916
4971
|
interface PalletDemocracyVotePriorLock extends ITuple<[u64, u128]> {
|
|
3917
4972
|
}
|
|
3918
|
-
/** @name PalletDemocracyError (
|
|
4973
|
+
/** @name PalletDemocracyError (558) */
|
|
3919
4974
|
interface PalletDemocracyError extends Enum {
|
|
3920
4975
|
readonly isValueLow: boolean;
|
|
3921
4976
|
readonly isProposalMissing: boolean;
|
|
@@ -3943,7 +4998,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3943
4998
|
readonly isPreimageNotExist: boolean;
|
|
3944
4999
|
readonly type: 'ValueLow' | 'ProposalMissing' | 'AlreadyCanceled' | 'DuplicateProposal' | 'ProposalBlacklisted' | 'NotSimpleMajority' | 'InvalidHash' | 'NoProposal' | 'AlreadyVetoed' | 'ReferendumInvalid' | 'NoneWaiting' | 'NotVoter' | 'NoPermission' | 'AlreadyDelegating' | 'InsufficientFunds' | 'NotDelegating' | 'VotesExist' | 'InstantNotAllowed' | 'Nonsense' | 'WrongUpperBound' | 'MaxVotesReached' | 'TooMany' | 'VotingPeriodLow' | 'PreimageNotExist';
|
|
3945
5000
|
}
|
|
3946
|
-
/** @name PalletCollectiveVotes (
|
|
5001
|
+
/** @name PalletCollectiveVotes (560) */
|
|
3947
5002
|
interface PalletCollectiveVotes extends Struct {
|
|
3948
5003
|
readonly index: u32;
|
|
3949
5004
|
readonly threshold: u32;
|
|
@@ -3951,7 +5006,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3951
5006
|
readonly nays: Vec<AccountId32>;
|
|
3952
5007
|
readonly end: u64;
|
|
3953
5008
|
}
|
|
3954
|
-
/** @name PalletCollectiveError (
|
|
5009
|
+
/** @name PalletCollectiveError (561) */
|
|
3955
5010
|
interface PalletCollectiveError extends Enum {
|
|
3956
5011
|
readonly isNotMember: boolean;
|
|
3957
5012
|
readonly isDuplicateProposal: boolean;
|
|
@@ -3966,13 +5021,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3966
5021
|
readonly isPrimeAccountNotMember: boolean;
|
|
3967
5022
|
readonly type: 'NotMember' | 'DuplicateProposal' | 'ProposalMissing' | 'WrongIndex' | 'DuplicateVote' | 'AlreadyInitialized' | 'TooEarly' | 'TooManyProposals' | 'WrongProposalWeight' | 'WrongProposalLength' | 'PrimeAccountNotMember';
|
|
3968
5023
|
}
|
|
3969
|
-
/** @name PalletVestingReleases (
|
|
5024
|
+
/** @name PalletVestingReleases (564) */
|
|
3970
5025
|
interface PalletVestingReleases extends Enum {
|
|
3971
5026
|
readonly isV0: boolean;
|
|
3972
5027
|
readonly isV1: boolean;
|
|
3973
5028
|
readonly type: 'V0' | 'V1';
|
|
3974
5029
|
}
|
|
3975
|
-
/** @name PalletVestingError (
|
|
5030
|
+
/** @name PalletVestingError (565) */
|
|
3976
5031
|
interface PalletVestingError extends Enum {
|
|
3977
5032
|
readonly isNotVesting: boolean;
|
|
3978
5033
|
readonly isAtMaxVestingSchedules: boolean;
|
|
@@ -3981,19 +5036,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
3981
5036
|
readonly isInvalidScheduleParams: boolean;
|
|
3982
5037
|
readonly type: 'NotVesting' | 'AtMaxVestingSchedules' | 'AmountLow' | 'ScheduleIndexOutOfBounds' | 'InvalidScheduleParams';
|
|
3983
5038
|
}
|
|
3984
|
-
/** @name PalletElectionsPhragmenSeatHolder (
|
|
5039
|
+
/** @name PalletElectionsPhragmenSeatHolder (567) */
|
|
3985
5040
|
interface PalletElectionsPhragmenSeatHolder extends Struct {
|
|
3986
5041
|
readonly who: AccountId32;
|
|
3987
5042
|
readonly stake: u128;
|
|
3988
5043
|
readonly deposit: u128;
|
|
3989
5044
|
}
|
|
3990
|
-
/** @name PalletElectionsPhragmenVoter (
|
|
5045
|
+
/** @name PalletElectionsPhragmenVoter (568) */
|
|
3991
5046
|
interface PalletElectionsPhragmenVoter extends Struct {
|
|
3992
5047
|
readonly votes: Vec<AccountId32>;
|
|
3993
5048
|
readonly stake: u128;
|
|
3994
5049
|
readonly deposit: u128;
|
|
3995
5050
|
}
|
|
3996
|
-
/** @name PalletElectionsPhragmenError (
|
|
5051
|
+
/** @name PalletElectionsPhragmenError (569) */
|
|
3997
5052
|
interface PalletElectionsPhragmenError extends Enum {
|
|
3998
5053
|
readonly isUnableToVote: boolean;
|
|
3999
5054
|
readonly isNoVotes: boolean;
|
|
@@ -4014,25 +5069,25 @@ declare module '@polkadot/types/lookup' {
|
|
|
4014
5069
|
readonly isInvalidReplacement: boolean;
|
|
4015
5070
|
readonly type: 'UnableToVote' | 'NoVotes' | 'TooManyVotes' | 'MaximumVotesExceeded' | 'LowBalance' | 'UnableToPayBond' | 'MustBeVoter' | 'DuplicatedCandidate' | 'TooManyCandidates' | 'MemberSubmit' | 'RunnerUpSubmit' | 'InsufficientCandidateFunds' | 'NotMember' | 'InvalidWitnessData' | 'InvalidVoteCount' | 'InvalidRenouncing' | 'InvalidReplacement';
|
|
4016
5071
|
}
|
|
4017
|
-
/** @name PalletElectionProviderMultiPhaseReadySolution (
|
|
5072
|
+
/** @name PalletElectionProviderMultiPhaseReadySolution (570) */
|
|
4018
5073
|
interface PalletElectionProviderMultiPhaseReadySolution extends Struct {
|
|
4019
5074
|
readonly supports: Vec<ITuple<[AccountId32, SpNposElectionsSupport]>>;
|
|
4020
5075
|
readonly score: SpNposElectionsElectionScore;
|
|
4021
5076
|
readonly compute: PalletElectionProviderMultiPhaseElectionCompute;
|
|
4022
5077
|
}
|
|
4023
|
-
/** @name PalletElectionProviderMultiPhaseRoundSnapshot (
|
|
5078
|
+
/** @name PalletElectionProviderMultiPhaseRoundSnapshot (572) */
|
|
4024
5079
|
interface PalletElectionProviderMultiPhaseRoundSnapshot extends Struct {
|
|
4025
5080
|
readonly voters: Vec<ITuple<[AccountId32, u64, Vec<AccountId32>]>>;
|
|
4026
5081
|
readonly targets: Vec<AccountId32>;
|
|
4027
5082
|
}
|
|
4028
|
-
/** @name PalletElectionProviderMultiPhaseSignedSignedSubmission (
|
|
5083
|
+
/** @name PalletElectionProviderMultiPhaseSignedSignedSubmission (579) */
|
|
4029
5084
|
interface PalletElectionProviderMultiPhaseSignedSignedSubmission extends Struct {
|
|
4030
5085
|
readonly who: AccountId32;
|
|
4031
5086
|
readonly deposit: u128;
|
|
4032
5087
|
readonly rawSolution: PalletElectionProviderMultiPhaseRawSolution;
|
|
4033
5088
|
readonly callFee: u128;
|
|
4034
5089
|
}
|
|
4035
|
-
/** @name PalletElectionProviderMultiPhaseError (
|
|
5090
|
+
/** @name PalletElectionProviderMultiPhaseError (580) */
|
|
4036
5091
|
interface PalletElectionProviderMultiPhaseError extends Enum {
|
|
4037
5092
|
readonly isPreDispatchEarlySubmission: boolean;
|
|
4038
5093
|
readonly isPreDispatchWrongWinnerCount: boolean;
|
|
@@ -4051,7 +5106,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4051
5106
|
readonly isPreDispatchDifferentRound: boolean;
|
|
4052
5107
|
readonly type: 'PreDispatchEarlySubmission' | 'PreDispatchWrongWinnerCount' | 'PreDispatchWeakSubmission' | 'SignedQueueFull' | 'SignedCannotPayDeposit' | 'SignedInvalidWitness' | 'SignedTooMuchWeight' | 'OcwCallWrongEra' | 'MissingSnapshotMetadata' | 'InvalidSubmissionIndex' | 'CallNotAllowed' | 'FallbackFailed' | 'BoundNotMet' | 'TooManyWinners' | 'PreDispatchDifferentRound';
|
|
4053
5108
|
}
|
|
4054
|
-
/** @name PalletStakingStakingLedger (
|
|
5109
|
+
/** @name PalletStakingStakingLedger (581) */
|
|
4055
5110
|
interface PalletStakingStakingLedger extends Struct {
|
|
4056
5111
|
readonly stash: AccountId32;
|
|
4057
5112
|
readonly total: Compact<u128>;
|
|
@@ -4059,40 +5114,40 @@ declare module '@polkadot/types/lookup' {
|
|
|
4059
5114
|
readonly unlocking: Vec<PalletStakingUnlockChunk>;
|
|
4060
5115
|
readonly legacyClaimedRewards: Vec<u32>;
|
|
4061
5116
|
}
|
|
4062
|
-
/** @name PalletStakingUnlockChunk (
|
|
5117
|
+
/** @name PalletStakingUnlockChunk (583) */
|
|
4063
5118
|
interface PalletStakingUnlockChunk extends Struct {
|
|
4064
5119
|
readonly value: Compact<u128>;
|
|
4065
5120
|
readonly era: Compact<u32>;
|
|
4066
5121
|
}
|
|
4067
|
-
/** @name PalletStakingNominations (
|
|
5122
|
+
/** @name PalletStakingNominations (586) */
|
|
4068
5123
|
interface PalletStakingNominations extends Struct {
|
|
4069
5124
|
readonly targets: Vec<AccountId32>;
|
|
4070
5125
|
readonly submittedIn: u32;
|
|
4071
5126
|
readonly suppressed: bool;
|
|
4072
5127
|
}
|
|
4073
|
-
/** @name PalletStakingActiveEraInfo (
|
|
5128
|
+
/** @name PalletStakingActiveEraInfo (587) */
|
|
4074
5129
|
interface PalletStakingActiveEraInfo extends Struct {
|
|
4075
5130
|
readonly index: u32;
|
|
4076
5131
|
readonly start: Option<u64>;
|
|
4077
5132
|
}
|
|
4078
|
-
/** @name SpStakingPagedExposureMetadata (
|
|
5133
|
+
/** @name SpStakingPagedExposureMetadata (589) */
|
|
4079
5134
|
interface SpStakingPagedExposureMetadata extends Struct {
|
|
4080
5135
|
readonly total: Compact<u128>;
|
|
4081
5136
|
readonly own: Compact<u128>;
|
|
4082
5137
|
readonly nominatorCount: u32;
|
|
4083
5138
|
readonly pageCount: u32;
|
|
4084
5139
|
}
|
|
4085
|
-
/** @name SpStakingExposurePage (
|
|
5140
|
+
/** @name SpStakingExposurePage (591) */
|
|
4086
5141
|
interface SpStakingExposurePage extends Struct {
|
|
4087
5142
|
readonly pageTotal: Compact<u128>;
|
|
4088
5143
|
readonly others: Vec<SpStakingIndividualExposure>;
|
|
4089
5144
|
}
|
|
4090
|
-
/** @name PalletStakingEraRewardPoints (
|
|
5145
|
+
/** @name PalletStakingEraRewardPoints (592) */
|
|
4091
5146
|
interface PalletStakingEraRewardPoints extends Struct {
|
|
4092
5147
|
readonly total: u32;
|
|
4093
5148
|
readonly individual: BTreeMap<AccountId32, u32>;
|
|
4094
5149
|
}
|
|
4095
|
-
/** @name PalletStakingUnappliedSlash (
|
|
5150
|
+
/** @name PalletStakingUnappliedSlash (597) */
|
|
4096
5151
|
interface PalletStakingUnappliedSlash extends Struct {
|
|
4097
5152
|
readonly validator: AccountId32;
|
|
4098
5153
|
readonly own: u128;
|
|
@@ -4100,19 +5155,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
4100
5155
|
readonly reporters: Vec<AccountId32>;
|
|
4101
5156
|
readonly payout: u128;
|
|
4102
5157
|
}
|
|
4103
|
-
/** @name PalletStakingSlashingSlashingSpans (
|
|
5158
|
+
/** @name PalletStakingSlashingSlashingSpans (601) */
|
|
4104
5159
|
interface PalletStakingSlashingSlashingSpans extends Struct {
|
|
4105
5160
|
readonly spanIndex: u32;
|
|
4106
5161
|
readonly lastStart: u32;
|
|
4107
5162
|
readonly lastNonzeroSlash: u32;
|
|
4108
5163
|
readonly prior: Vec<u32>;
|
|
4109
5164
|
}
|
|
4110
|
-
/** @name PalletStakingSlashingSpanRecord (
|
|
5165
|
+
/** @name PalletStakingSlashingSpanRecord (602) */
|
|
4111
5166
|
interface PalletStakingSlashingSpanRecord extends Struct {
|
|
4112
5167
|
readonly slashed: u128;
|
|
4113
5168
|
readonly paidOut: u128;
|
|
4114
5169
|
}
|
|
4115
|
-
/** @name PalletStakingPalletError (
|
|
5170
|
+
/** @name PalletStakingPalletError (605) */
|
|
4116
5171
|
interface PalletStakingPalletError extends Enum {
|
|
4117
5172
|
readonly isNotController: boolean;
|
|
4118
5173
|
readonly isNotStash: boolean;
|
|
@@ -4144,10 +5199,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4144
5199
|
readonly isRestakeActive: boolean;
|
|
4145
5200
|
readonly type: 'NotController' | 'NotStash' | 'AlreadyBonded' | 'AlreadyPaired' | 'EmptyTargets' | 'DuplicateIndex' | 'InvalidSlashIndex' | 'InsufficientBond' | 'NoMoreChunks' | 'NoUnlockChunk' | 'FundedTarget' | 'InvalidEraToReward' | 'InvalidNumberOfNominations' | 'NotSortedAndUnique' | 'AlreadyClaimed' | 'InvalidPage' | 'IncorrectHistoryDepth' | 'IncorrectSlashingSpans' | 'BadState' | 'TooManyTargets' | 'BadTarget' | 'CannotChillOther' | 'TooManyNominators' | 'TooManyValidators' | 'CommissionTooLow' | 'BoundNotMet' | 'ControllerDeprecated' | 'RestakeActive';
|
|
4146
5201
|
}
|
|
4147
|
-
/** @name SpCoreCryptoKeyTypeId (
|
|
5202
|
+
/** @name SpCoreCryptoKeyTypeId (609) */
|
|
4148
5203
|
interface SpCoreCryptoKeyTypeId extends U8aFixed {
|
|
4149
5204
|
}
|
|
4150
|
-
/** @name PalletSessionError (
|
|
5205
|
+
/** @name PalletSessionError (610) */
|
|
4151
5206
|
interface PalletSessionError extends Enum {
|
|
4152
5207
|
readonly isInvalidProof: boolean;
|
|
4153
5208
|
readonly isNoAssociatedValidatorId: boolean;
|
|
@@ -4156,14 +5211,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4156
5211
|
readonly isNoAccount: boolean;
|
|
4157
5212
|
readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
|
|
4158
5213
|
}
|
|
4159
|
-
/** @name PalletTreasuryProposal (
|
|
5214
|
+
/** @name PalletTreasuryProposal (612) */
|
|
4160
5215
|
interface PalletTreasuryProposal extends Struct {
|
|
4161
5216
|
readonly proposer: AccountId32;
|
|
4162
5217
|
readonly value: u128;
|
|
4163
5218
|
readonly beneficiary: AccountId32;
|
|
4164
5219
|
readonly bond: u128;
|
|
4165
5220
|
}
|
|
4166
|
-
/** @name PalletTreasurySpendStatus (
|
|
5221
|
+
/** @name PalletTreasurySpendStatus (614) */
|
|
4167
5222
|
interface PalletTreasurySpendStatus extends Struct {
|
|
4168
5223
|
readonly assetKind: Null;
|
|
4169
5224
|
readonly amount: u128;
|
|
@@ -4172,7 +5227,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4172
5227
|
readonly expireAt: u64;
|
|
4173
5228
|
readonly status: PalletTreasuryPaymentState;
|
|
4174
5229
|
}
|
|
4175
|
-
/** @name PalletTreasuryPaymentState (
|
|
5230
|
+
/** @name PalletTreasuryPaymentState (615) */
|
|
4176
5231
|
interface PalletTreasuryPaymentState extends Enum {
|
|
4177
5232
|
readonly isPending: boolean;
|
|
4178
5233
|
readonly isAttempted: boolean;
|
|
@@ -4182,10 +5237,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4182
5237
|
readonly isFailed: boolean;
|
|
4183
5238
|
readonly type: 'Pending' | 'Attempted' | 'Failed';
|
|
4184
5239
|
}
|
|
4185
|
-
/** @name FrameSupportPalletId (
|
|
5240
|
+
/** @name FrameSupportPalletId (616) */
|
|
4186
5241
|
interface FrameSupportPalletId extends U8aFixed {
|
|
4187
5242
|
}
|
|
4188
|
-
/** @name PalletTreasuryError (
|
|
5243
|
+
/** @name PalletTreasuryError (617) */
|
|
4189
5244
|
interface PalletTreasuryError extends Enum {
|
|
4190
5245
|
readonly isInsufficientProposersBalance: boolean;
|
|
4191
5246
|
readonly isInvalidIndex: boolean;
|
|
@@ -4201,7 +5256,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4201
5256
|
readonly isInconclusive: boolean;
|
|
4202
5257
|
readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved' | 'FailedToConvertBalance' | 'SpendExpired' | 'EarlyPayout' | 'AlreadyAttempted' | 'PayoutError' | 'NotAttempted' | 'Inconclusive';
|
|
4203
5258
|
}
|
|
4204
|
-
/** @name PalletBountiesBounty (
|
|
5259
|
+
/** @name PalletBountiesBounty (618) */
|
|
4205
5260
|
interface PalletBountiesBounty extends Struct {
|
|
4206
5261
|
readonly proposer: AccountId32;
|
|
4207
5262
|
readonly value: u128;
|
|
@@ -4210,7 +5265,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4210
5265
|
readonly bond: u128;
|
|
4211
5266
|
readonly status: PalletBountiesBountyStatus;
|
|
4212
5267
|
}
|
|
4213
|
-
/** @name PalletBountiesBountyStatus (
|
|
5268
|
+
/** @name PalletBountiesBountyStatus (619) */
|
|
4214
5269
|
interface PalletBountiesBountyStatus extends Enum {
|
|
4215
5270
|
readonly isProposed: boolean;
|
|
4216
5271
|
readonly isApproved: boolean;
|
|
@@ -4232,7 +5287,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4232
5287
|
} & Struct;
|
|
4233
5288
|
readonly type: 'Proposed' | 'Approved' | 'Funded' | 'CuratorProposed' | 'Active' | 'PendingPayout';
|
|
4234
5289
|
}
|
|
4235
|
-
/** @name PalletBountiesError (
|
|
5290
|
+
/** @name PalletBountiesError (621) */
|
|
4236
5291
|
interface PalletBountiesError extends Enum {
|
|
4237
5292
|
readonly isInsufficientProposersBalance: boolean;
|
|
4238
5293
|
readonly isInvalidIndex: boolean;
|
|
@@ -4247,7 +5302,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4247
5302
|
readonly isTooManyQueued: boolean;
|
|
4248
5303
|
readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'ReasonTooBig' | 'UnexpectedStatus' | 'RequireCurator' | 'InvalidValue' | 'InvalidFee' | 'PendingPayout' | 'Premature' | 'HasActiveChildBounty' | 'TooManyQueued';
|
|
4249
5304
|
}
|
|
4250
|
-
/** @name PalletChildBountiesChildBounty (
|
|
5305
|
+
/** @name PalletChildBountiesChildBounty (622) */
|
|
4251
5306
|
interface PalletChildBountiesChildBounty extends Struct {
|
|
4252
5307
|
readonly parentBounty: u32;
|
|
4253
5308
|
readonly value: u128;
|
|
@@ -4255,7 +5310,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4255
5310
|
readonly curatorDeposit: u128;
|
|
4256
5311
|
readonly status: PalletChildBountiesChildBountyStatus;
|
|
4257
5312
|
}
|
|
4258
|
-
/** @name PalletChildBountiesChildBountyStatus (
|
|
5313
|
+
/** @name PalletChildBountiesChildBountyStatus (623) */
|
|
4259
5314
|
interface PalletChildBountiesChildBountyStatus extends Enum {
|
|
4260
5315
|
readonly isAdded: boolean;
|
|
4261
5316
|
readonly isCuratorProposed: boolean;
|
|
@@ -4274,14 +5329,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4274
5329
|
} & Struct;
|
|
4275
5330
|
readonly type: 'Added' | 'CuratorProposed' | 'Active' | 'PendingPayout';
|
|
4276
5331
|
}
|
|
4277
|
-
/** @name PalletChildBountiesError (
|
|
5332
|
+
/** @name PalletChildBountiesError (624) */
|
|
4278
5333
|
interface PalletChildBountiesError extends Enum {
|
|
4279
5334
|
readonly isParentBountyNotActive: boolean;
|
|
4280
5335
|
readonly isInsufficientBountyBalance: boolean;
|
|
4281
5336
|
readonly isTooManyChildBounties: boolean;
|
|
4282
5337
|
readonly type: 'ParentBountyNotActive' | 'InsufficientBountyBalance' | 'TooManyChildBounties';
|
|
4283
5338
|
}
|
|
4284
|
-
/** @name PalletBagsListListNode (
|
|
5339
|
+
/** @name PalletBagsListListNode (625) */
|
|
4285
5340
|
interface PalletBagsListListNode extends Struct {
|
|
4286
5341
|
readonly id: AccountId32;
|
|
4287
5342
|
readonly prev: Option<AccountId32>;
|
|
@@ -4289,18 +5344,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
4289
5344
|
readonly bagUpper: u64;
|
|
4290
5345
|
readonly score: u64;
|
|
4291
5346
|
}
|
|
4292
|
-
/** @name PalletBagsListListBag (
|
|
5347
|
+
/** @name PalletBagsListListBag (626) */
|
|
4293
5348
|
interface PalletBagsListListBag extends Struct {
|
|
4294
5349
|
readonly head: Option<AccountId32>;
|
|
4295
5350
|
readonly tail: Option<AccountId32>;
|
|
4296
5351
|
}
|
|
4297
|
-
/** @name PalletBagsListError (
|
|
5352
|
+
/** @name PalletBagsListError (628) */
|
|
4298
5353
|
interface PalletBagsListError extends Enum {
|
|
4299
5354
|
readonly isList: boolean;
|
|
4300
5355
|
readonly asList: PalletBagsListListListError;
|
|
4301
5356
|
readonly type: 'List';
|
|
4302
5357
|
}
|
|
4303
|
-
/** @name PalletBagsListListListError (
|
|
5358
|
+
/** @name PalletBagsListListListError (629) */
|
|
4304
5359
|
interface PalletBagsListListListError extends Enum {
|
|
4305
5360
|
readonly isDuplicate: boolean;
|
|
4306
5361
|
readonly isNotHeavier: boolean;
|
|
@@ -4308,14 +5363,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4308
5363
|
readonly isNodeNotFound: boolean;
|
|
4309
5364
|
readonly type: 'Duplicate' | 'NotHeavier' | 'NotInSameBag' | 'NodeNotFound';
|
|
4310
5365
|
}
|
|
4311
|
-
/** @name PalletNominationPoolsPoolMember (
|
|
5366
|
+
/** @name PalletNominationPoolsPoolMember (630) */
|
|
4312
5367
|
interface PalletNominationPoolsPoolMember extends Struct {
|
|
4313
5368
|
readonly poolId: u32;
|
|
4314
5369
|
readonly points: u128;
|
|
4315
5370
|
readonly lastRecordedRewardCounter: u128;
|
|
4316
5371
|
readonly unbondingEras: BTreeMap<u32, u128>;
|
|
4317
5372
|
}
|
|
4318
|
-
/** @name PalletNominationPoolsBondedPoolInner (
|
|
5373
|
+
/** @name PalletNominationPoolsBondedPoolInner (635) */
|
|
4319
5374
|
interface PalletNominationPoolsBondedPoolInner extends Struct {
|
|
4320
5375
|
readonly commission: PalletNominationPoolsCommission;
|
|
4321
5376
|
readonly memberCounter: u32;
|
|
@@ -4323,7 +5378,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4323
5378
|
readonly roles: PalletNominationPoolsPoolRoles;
|
|
4324
5379
|
readonly state: PalletNominationPoolsPoolState;
|
|
4325
5380
|
}
|
|
4326
|
-
/** @name PalletNominationPoolsCommission (
|
|
5381
|
+
/** @name PalletNominationPoolsCommission (636) */
|
|
4327
5382
|
interface PalletNominationPoolsCommission extends Struct {
|
|
4328
5383
|
readonly current: Option<ITuple<[Perbill, AccountId32]>>;
|
|
4329
5384
|
readonly max: Option<Perbill>;
|
|
@@ -4331,14 +5386,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4331
5386
|
readonly throttleFrom: Option<u64>;
|
|
4332
5387
|
readonly claimPermission: Option<PalletNominationPoolsCommissionClaimPermission>;
|
|
4333
5388
|
}
|
|
4334
|
-
/** @name PalletNominationPoolsPoolRoles (
|
|
5389
|
+
/** @name PalletNominationPoolsPoolRoles (639) */
|
|
4335
5390
|
interface PalletNominationPoolsPoolRoles extends Struct {
|
|
4336
5391
|
readonly depositor: AccountId32;
|
|
4337
5392
|
readonly root: Option<AccountId32>;
|
|
4338
5393
|
readonly nominator: Option<AccountId32>;
|
|
4339
5394
|
readonly bouncer: Option<AccountId32>;
|
|
4340
5395
|
}
|
|
4341
|
-
/** @name PalletNominationPoolsRewardPool (
|
|
5396
|
+
/** @name PalletNominationPoolsRewardPool (640) */
|
|
4342
5397
|
interface PalletNominationPoolsRewardPool extends Struct {
|
|
4343
5398
|
readonly lastRecordedRewardCounter: u128;
|
|
4344
5399
|
readonly lastRecordedTotalPayouts: u128;
|
|
@@ -4346,17 +5401,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
4346
5401
|
readonly totalCommissionPending: u128;
|
|
4347
5402
|
readonly totalCommissionClaimed: u128;
|
|
4348
5403
|
}
|
|
4349
|
-
/** @name PalletNominationPoolsSubPools (
|
|
5404
|
+
/** @name PalletNominationPoolsSubPools (641) */
|
|
4350
5405
|
interface PalletNominationPoolsSubPools extends Struct {
|
|
4351
5406
|
readonly noEra: PalletNominationPoolsUnbondPool;
|
|
4352
5407
|
readonly withEra: BTreeMap<u32, PalletNominationPoolsUnbondPool>;
|
|
4353
5408
|
}
|
|
4354
|
-
/** @name PalletNominationPoolsUnbondPool (
|
|
5409
|
+
/** @name PalletNominationPoolsUnbondPool (642) */
|
|
4355
5410
|
interface PalletNominationPoolsUnbondPool extends Struct {
|
|
4356
5411
|
readonly points: u128;
|
|
4357
5412
|
readonly balance: u128;
|
|
4358
5413
|
}
|
|
4359
|
-
/** @name PalletNominationPoolsError (
|
|
5414
|
+
/** @name PalletNominationPoolsError (647) */
|
|
4360
5415
|
interface PalletNominationPoolsError extends Enum {
|
|
4361
5416
|
readonly isPoolNotFound: boolean;
|
|
4362
5417
|
readonly isPoolMemberNotFound: boolean;
|
|
@@ -4393,7 +5448,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4393
5448
|
readonly isNothingToAdjust: boolean;
|
|
4394
5449
|
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' | 'CommissionExceedsGlobalMaximum' | 'CommissionChangeThrottled' | 'CommissionChangeRateNotAllowed' | 'NoPendingCommission' | 'NoCommissionCurrentSet' | 'PoolIdInUse' | 'InvalidPoolId' | 'BondExtraRestricted' | 'NothingToAdjust';
|
|
4395
5450
|
}
|
|
4396
|
-
/** @name PalletNominationPoolsDefensiveError (
|
|
5451
|
+
/** @name PalletNominationPoolsDefensiveError (648) */
|
|
4397
5452
|
interface PalletNominationPoolsDefensiveError extends Enum {
|
|
4398
5453
|
readonly isNotEnoughSpaceInUnbondPool: boolean;
|
|
4399
5454
|
readonly isPoolNotFound: boolean;
|
|
@@ -4402,7 +5457,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4402
5457
|
readonly isBondedStashKilledPrematurely: boolean;
|
|
4403
5458
|
readonly type: 'NotEnoughSpaceInUnbondPool' | 'PoolNotFound' | 'RewardPoolNotFound' | 'SubPoolsNotFound' | 'BondedStashKilledPrematurely';
|
|
4404
5459
|
}
|
|
4405
|
-
/** @name PalletSchedulerScheduled (
|
|
5460
|
+
/** @name PalletSchedulerScheduled (651) */
|
|
4406
5461
|
interface PalletSchedulerScheduled extends Struct {
|
|
4407
5462
|
readonly maybeId: Option<U8aFixed>;
|
|
4408
5463
|
readonly priority: u8;
|
|
@@ -4410,7 +5465,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4410
5465
|
readonly maybePeriodic: Option<ITuple<[u64, u32]>>;
|
|
4411
5466
|
readonly origin: TangleTestnetRuntimeOriginCaller;
|
|
4412
5467
|
}
|
|
4413
|
-
/** @name PalletSchedulerError (
|
|
5468
|
+
/** @name PalletSchedulerError (653) */
|
|
4414
5469
|
interface PalletSchedulerError extends Enum {
|
|
4415
5470
|
readonly isFailedToSchedule: boolean;
|
|
4416
5471
|
readonly isNotFound: boolean;
|
|
@@ -4419,7 +5474,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4419
5474
|
readonly isNamed: boolean;
|
|
4420
5475
|
readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange' | 'Named';
|
|
4421
5476
|
}
|
|
4422
|
-
/** @name PalletPreimageOldRequestStatus (
|
|
5477
|
+
/** @name PalletPreimageOldRequestStatus (654) */
|
|
4423
5478
|
interface PalletPreimageOldRequestStatus extends Enum {
|
|
4424
5479
|
readonly isUnrequested: boolean;
|
|
4425
5480
|
readonly asUnrequested: {
|
|
@@ -4434,7 +5489,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4434
5489
|
} & Struct;
|
|
4435
5490
|
readonly type: 'Unrequested' | 'Requested';
|
|
4436
5491
|
}
|
|
4437
|
-
/** @name PalletPreimageRequestStatus (
|
|
5492
|
+
/** @name PalletPreimageRequestStatus (656) */
|
|
4438
5493
|
interface PalletPreimageRequestStatus extends Enum {
|
|
4439
5494
|
readonly isUnrequested: boolean;
|
|
4440
5495
|
readonly asUnrequested: {
|
|
@@ -4449,7 +5504,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4449
5504
|
} & Struct;
|
|
4450
5505
|
readonly type: 'Unrequested' | 'Requested';
|
|
4451
5506
|
}
|
|
4452
|
-
/** @name PalletPreimageError (
|
|
5507
|
+
/** @name PalletPreimageError (660) */
|
|
4453
5508
|
interface PalletPreimageError extends Enum {
|
|
4454
5509
|
readonly isTooBig: boolean;
|
|
4455
5510
|
readonly isAlreadyNoted: boolean;
|
|
@@ -4461,12 +5516,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
4461
5516
|
readonly isTooFew: boolean;
|
|
4462
5517
|
readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested' | 'TooMany' | 'TooFew';
|
|
4463
5518
|
}
|
|
4464
|
-
/** @name SpStakingOffenceOffenceDetails (
|
|
5519
|
+
/** @name SpStakingOffenceOffenceDetails (661) */
|
|
4465
5520
|
interface SpStakingOffenceOffenceDetails extends Struct {
|
|
4466
5521
|
readonly offender: ITuple<[AccountId32, SpStakingExposure]>;
|
|
4467
5522
|
readonly reporters: Vec<AccountId32>;
|
|
4468
5523
|
}
|
|
4469
|
-
/** @name PalletTxPauseError (
|
|
5524
|
+
/** @name PalletTxPauseError (663) */
|
|
4470
5525
|
interface PalletTxPauseError extends Enum {
|
|
4471
5526
|
readonly isIsPaused: boolean;
|
|
4472
5527
|
readonly isIsUnpaused: boolean;
|
|
@@ -4474,30 +5529,30 @@ declare module '@polkadot/types/lookup' {
|
|
|
4474
5529
|
readonly isNotFound: boolean;
|
|
4475
5530
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4476
5531
|
}
|
|
4477
|
-
/** @name PalletImOnlineError (
|
|
5532
|
+
/** @name PalletImOnlineError (666) */
|
|
4478
5533
|
interface PalletImOnlineError extends Enum {
|
|
4479
5534
|
readonly isInvalidKey: boolean;
|
|
4480
5535
|
readonly isDuplicatedHeartbeat: boolean;
|
|
4481
5536
|
readonly type: 'InvalidKey' | 'DuplicatedHeartbeat';
|
|
4482
5537
|
}
|
|
4483
|
-
/** @name PalletIdentityRegistration (
|
|
5538
|
+
/** @name PalletIdentityRegistration (668) */
|
|
4484
5539
|
interface PalletIdentityRegistration extends Struct {
|
|
4485
5540
|
readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;
|
|
4486
5541
|
readonly deposit: u128;
|
|
4487
5542
|
readonly info: PalletIdentityLegacyIdentityInfo;
|
|
4488
5543
|
}
|
|
4489
|
-
/** @name PalletIdentityRegistrarInfo (
|
|
5544
|
+
/** @name PalletIdentityRegistrarInfo (677) */
|
|
4490
5545
|
interface PalletIdentityRegistrarInfo extends Struct {
|
|
4491
5546
|
readonly account: AccountId32;
|
|
4492
5547
|
readonly fee: u128;
|
|
4493
5548
|
readonly fields: u64;
|
|
4494
5549
|
}
|
|
4495
|
-
/** @name PalletIdentityAuthorityProperties (
|
|
5550
|
+
/** @name PalletIdentityAuthorityProperties (679) */
|
|
4496
5551
|
interface PalletIdentityAuthorityProperties extends Struct {
|
|
4497
5552
|
readonly suffix: Bytes;
|
|
4498
5553
|
readonly allocation: u32;
|
|
4499
5554
|
}
|
|
4500
|
-
/** @name PalletIdentityError (
|
|
5555
|
+
/** @name PalletIdentityError (682) */
|
|
4501
5556
|
interface PalletIdentityError extends Enum {
|
|
4502
5557
|
readonly isTooManySubAccounts: boolean;
|
|
4503
5558
|
readonly isNotFound: boolean;
|
|
@@ -4527,19 +5582,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
4527
5582
|
readonly isNotExpired: boolean;
|
|
4528
5583
|
readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed' | 'InvalidSuffix' | 'NotUsernameAuthority' | 'NoAllocation' | 'InvalidSignature' | 'RequiresSignature' | 'InvalidUsername' | 'UsernameTaken' | 'NoUsername' | 'NotExpired';
|
|
4529
5584
|
}
|
|
4530
|
-
/** @name PalletUtilityError (
|
|
5585
|
+
/** @name PalletUtilityError (683) */
|
|
4531
5586
|
interface PalletUtilityError extends Enum {
|
|
4532
5587
|
readonly isTooManyCalls: boolean;
|
|
4533
5588
|
readonly type: 'TooManyCalls';
|
|
4534
5589
|
}
|
|
4535
|
-
/** @name PalletMultisigMultisig (
|
|
5590
|
+
/** @name PalletMultisigMultisig (685) */
|
|
4536
5591
|
interface PalletMultisigMultisig extends Struct {
|
|
4537
5592
|
readonly when: PalletMultisigTimepoint;
|
|
4538
5593
|
readonly deposit: u128;
|
|
4539
5594
|
readonly depositor: AccountId32;
|
|
4540
5595
|
readonly approvals: Vec<AccountId32>;
|
|
4541
5596
|
}
|
|
4542
|
-
/** @name PalletMultisigError (
|
|
5597
|
+
/** @name PalletMultisigError (686) */
|
|
4543
5598
|
interface PalletMultisigError extends Enum {
|
|
4544
5599
|
readonly isMinimumThreshold: boolean;
|
|
4545
5600
|
readonly isAlreadyApproved: boolean;
|
|
@@ -4557,7 +5612,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4557
5612
|
readonly isAlreadyStored: boolean;
|
|
4558
5613
|
readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
|
|
4559
5614
|
}
|
|
4560
|
-
/** @name FpRpcTransactionStatus (
|
|
5615
|
+
/** @name FpRpcTransactionStatus (689) */
|
|
4561
5616
|
interface FpRpcTransactionStatus extends Struct {
|
|
4562
5617
|
readonly transactionHash: H256;
|
|
4563
5618
|
readonly transactionIndex: u32;
|
|
@@ -4567,10 +5622,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4567
5622
|
readonly logs: Vec<EthereumLog>;
|
|
4568
5623
|
readonly logsBloom: EthbloomBloom;
|
|
4569
5624
|
}
|
|
4570
|
-
/** @name EthbloomBloom (
|
|
5625
|
+
/** @name EthbloomBloom (692) */
|
|
4571
5626
|
interface EthbloomBloom extends U8aFixed {
|
|
4572
5627
|
}
|
|
4573
|
-
/** @name EthereumReceiptReceiptV3 (
|
|
5628
|
+
/** @name EthereumReceiptReceiptV3 (694) */
|
|
4574
5629
|
interface EthereumReceiptReceiptV3 extends Enum {
|
|
4575
5630
|
readonly isLegacy: boolean;
|
|
4576
5631
|
readonly asLegacy: EthereumReceiptEip658ReceiptData;
|
|
@@ -4580,20 +5635,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
4580
5635
|
readonly asEip1559: EthereumReceiptEip658ReceiptData;
|
|
4581
5636
|
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
|
|
4582
5637
|
}
|
|
4583
|
-
/** @name EthereumReceiptEip658ReceiptData (
|
|
5638
|
+
/** @name EthereumReceiptEip658ReceiptData (695) */
|
|
4584
5639
|
interface EthereumReceiptEip658ReceiptData extends Struct {
|
|
4585
5640
|
readonly statusCode: u8;
|
|
4586
5641
|
readonly usedGas: U256;
|
|
4587
5642
|
readonly logsBloom: EthbloomBloom;
|
|
4588
5643
|
readonly logs: Vec<EthereumLog>;
|
|
4589
5644
|
}
|
|
4590
|
-
/** @name EthereumBlock (
|
|
5645
|
+
/** @name EthereumBlock (696) */
|
|
4591
5646
|
interface EthereumBlock extends Struct {
|
|
4592
5647
|
readonly header: EthereumHeader;
|
|
4593
5648
|
readonly transactions: Vec<EthereumTransactionTransactionV2>;
|
|
4594
5649
|
readonly ommers: Vec<EthereumHeader>;
|
|
4595
5650
|
}
|
|
4596
|
-
/** @name EthereumHeader (
|
|
5651
|
+
/** @name EthereumHeader (697) */
|
|
4597
5652
|
interface EthereumHeader extends Struct {
|
|
4598
5653
|
readonly parentHash: H256;
|
|
4599
5654
|
readonly ommersHash: H256;
|
|
@@ -4611,21 +5666,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4611
5666
|
readonly mixHash: H256;
|
|
4612
5667
|
readonly nonce: EthereumTypesHashH64;
|
|
4613
5668
|
}
|
|
4614
|
-
/** @name EthereumTypesHashH64 (
|
|
5669
|
+
/** @name EthereumTypesHashH64 (698) */
|
|
4615
5670
|
interface EthereumTypesHashH64 extends U8aFixed {
|
|
4616
5671
|
}
|
|
4617
|
-
/** @name PalletEthereumError (
|
|
5672
|
+
/** @name PalletEthereumError (703) */
|
|
4618
5673
|
interface PalletEthereumError extends Enum {
|
|
4619
5674
|
readonly isInvalidSignature: boolean;
|
|
4620
5675
|
readonly isPreLogExists: boolean;
|
|
4621
5676
|
readonly type: 'InvalidSignature' | 'PreLogExists';
|
|
4622
5677
|
}
|
|
4623
|
-
/** @name PalletEvmCodeMetadata (
|
|
5678
|
+
/** @name PalletEvmCodeMetadata (704) */
|
|
4624
5679
|
interface PalletEvmCodeMetadata extends Struct {
|
|
4625
5680
|
readonly size_: u64;
|
|
4626
5681
|
readonly hash_: H256;
|
|
4627
5682
|
}
|
|
4628
|
-
/** @name PalletEvmError (
|
|
5683
|
+
/** @name PalletEvmError (706) */
|
|
4629
5684
|
interface PalletEvmError extends Enum {
|
|
4630
5685
|
readonly isBalanceLow: boolean;
|
|
4631
5686
|
readonly isFeeOverflow: boolean;
|
|
@@ -4642,12 +5697,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
4642
5697
|
readonly isUndefined: boolean;
|
|
4643
5698
|
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'InvalidChainId' | 'InvalidSignature' | 'Reentrancy' | 'TransactionMustComeFromEOA' | 'Undefined';
|
|
4644
5699
|
}
|
|
4645
|
-
/** @name PalletHotfixSufficientsError (
|
|
5700
|
+
/** @name PalletHotfixSufficientsError (707) */
|
|
4646
5701
|
interface PalletHotfixSufficientsError extends Enum {
|
|
4647
5702
|
readonly isMaxAddressCountExceeded: boolean;
|
|
4648
5703
|
readonly type: 'MaxAddressCountExceeded';
|
|
4649
5704
|
}
|
|
4650
|
-
/** @name PalletAirdropClaimsError (
|
|
5705
|
+
/** @name PalletAirdropClaimsError (709) */
|
|
4651
5706
|
interface PalletAirdropClaimsError extends Enum {
|
|
4652
5707
|
readonly isInvalidEthereumSignature: boolean;
|
|
4653
5708
|
readonly isInvalidNativeSignature: boolean;
|
|
@@ -4659,7 +5714,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4659
5714
|
readonly isVestedBalanceExists: boolean;
|
|
4660
5715
|
readonly type: 'InvalidEthereumSignature' | 'InvalidNativeSignature' | 'InvalidNativeAccount' | 'SignerHasNoClaim' | 'SenderHasNoClaim' | 'PotUnderflow' | 'InvalidStatement' | 'VestedBalanceExists';
|
|
4661
5716
|
}
|
|
4662
|
-
/** @name PalletRolesRestakingLedger (
|
|
5717
|
+
/** @name PalletRolesRestakingLedger (710) */
|
|
4663
5718
|
interface PalletRolesRestakingLedger extends Struct {
|
|
4664
5719
|
readonly stash: AccountId32;
|
|
4665
5720
|
readonly total: Compact<u128>;
|
|
@@ -4670,12 +5725,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
4670
5725
|
readonly claimedRewards: Vec<u32>;
|
|
4671
5726
|
readonly maxActiveServices: u32;
|
|
4672
5727
|
}
|
|
4673
|
-
/** @name PalletRolesUnlockChunk (
|
|
5728
|
+
/** @name PalletRolesUnlockChunk (716) */
|
|
4674
5729
|
interface PalletRolesUnlockChunk extends Struct {
|
|
4675
5730
|
readonly value: Compact<u128>;
|
|
4676
5731
|
readonly era: Compact<u32>;
|
|
4677
5732
|
}
|
|
4678
|
-
/** @name PalletRolesError (
|
|
5733
|
+
/** @name PalletRolesError (720) */
|
|
4679
5734
|
interface PalletRolesError extends Enum {
|
|
4680
5735
|
readonly isNotValidator: boolean;
|
|
4681
5736
|
readonly isHasRoleAssigned: boolean;
|
|
@@ -4698,7 +5753,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4698
5753
|
readonly isNoMoreChunks: boolean;
|
|
4699
5754
|
readonly type: 'NotValidator' | 'HasRoleAssigned' | 'RoleNotAssigned' | 'MaxRoles' | 'RoleCannotBeRemoved' | 'RestakingAmountCannotBeUpdated' | 'ExceedsMaxRestakeValue' | 'InsufficientRestakingBond' | 'ProfileUpdateFailed' | 'ProfileAlreadyExists' | 'NoProfileFound' | 'ProfileDeleteRequestFailed' | 'SessionKeysNotProvided' | 'KeySizeExceeded' | 'CannotGetCurrentEra' | 'InvalidEraToReward' | 'BoundNotMet' | 'AlreadyClaimed' | 'NoMoreChunks';
|
|
4700
5755
|
}
|
|
4701
|
-
/** @name TanglePrimitivesJobsPhaseResult (
|
|
5756
|
+
/** @name TanglePrimitivesJobsPhaseResult (721) */
|
|
4702
5757
|
interface TanglePrimitivesJobsPhaseResult extends Struct {
|
|
4703
5758
|
readonly owner: AccountId32;
|
|
4704
5759
|
readonly result: TanglePrimitivesJobsJobResult;
|
|
@@ -4706,7 +5761,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4706
5761
|
readonly permittedCaller: Option<AccountId32>;
|
|
4707
5762
|
readonly jobType: TanglePrimitivesJobsJobType;
|
|
4708
5763
|
}
|
|
4709
|
-
/** @name PalletJobsModuleError (
|
|
5764
|
+
/** @name PalletJobsModuleError (723) */
|
|
4710
5765
|
interface PalletJobsModuleError extends Enum {
|
|
4711
5766
|
readonly isInvalidJobPhase: boolean;
|
|
4712
5767
|
readonly isInvalidValidator: boolean;
|
|
@@ -4728,7 +5783,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4728
5783
|
readonly isTooManyJobsForValidator: boolean;
|
|
4729
5784
|
readonly type: 'InvalidJobPhase' | 'InvalidValidator' | 'InvalidJobParams' | 'PreviousResultNotFound' | 'ResultExpired' | 'JobAlreadyExpired' | 'JobNotFound' | 'PhaseOneResultNotFound' | 'NoRewards' | 'NotEnoughValidators' | 'EmptyResult' | 'EmptyJob' | 'ValidatorRoleKeyNotFound' | 'ResultNotExpectedType' | 'NoPermission' | 'TooManyParticipants' | 'ExceedsMaxKeySize' | 'TooManyJobsForValidator';
|
|
4730
5785
|
}
|
|
4731
|
-
/** @name PalletDkgError (
|
|
5786
|
+
/** @name PalletDkgError (724) */
|
|
4732
5787
|
interface PalletDkgError extends Enum {
|
|
4733
5788
|
readonly isCannotRetreiveSigner: boolean;
|
|
4734
5789
|
readonly isNotEnoughSigners: boolean;
|
|
@@ -4780,29 +5835,218 @@ declare module '@polkadot/types/lookup' {
|
|
|
4780
5835
|
readonly isMalformedStarkSignature: boolean;
|
|
4781
5836
|
readonly type: 'CannotRetreiveSigner' | 'NotEnoughSigners' | 'InvalidSignatureData' | 'NoParticipantsFound' | 'NoSignaturesFound' | 'InvalidJobType' | 'DuplicateSignature' | 'InvalidSignature' | 'InvalidSignatureScheme' | 'InvalidSignatureDeserialization' | 'InvalidVerifyingKey' | 'InvalidVerifyingKeyDeserialization' | 'SigningKeyMismatch' | 'InvalidParticipantPublicKey' | 'InvalidBlsPublicKey' | 'InvalidRoleType' | 'InvalidJustification' | 'MalformedRoundMessage' | 'NotSignedByOffender' | 'ValidDecommitment' | 'ValidDataSize' | 'ValidFeldmanVerification' | 'ValidSchnorrProof' | 'ValidRingPedersenParameters' | 'ValidModProof' | 'ValidFrostSignatureShare' | 'InvalidFrostMessageSerialization' | 'InvalidFrostMessageDeserialization' | 'InvalidIdentifierDeserialization' | 'ValidFrostSignature' | 'UnknownIdentifier' | 'DuplicateIdentifier' | 'IncorrectNumberOfIdentifiers' | 'IdentifierDerivationNotSupported' | 'MalformedFrostSignature' | 'InvalidFrostSignature' | 'InvalidFrostSignatureShare' | 'InvalidFrostSignatureScheme' | 'MalformedFrostVerifyingKey' | 'MalformedFrostSigningKey' | 'MissingFrostCommitment' | 'IdentityCommitment' | 'FrostFieldError' | 'FrostGroupError' | 'FieldElementError' | 'InvalidPublicKey' | 'InvalidMessage' | 'MalformedStarkSignature';
|
|
4782
5837
|
}
|
|
4783
|
-
/** @name PalletZksaasError (
|
|
5838
|
+
/** @name PalletZksaasError (725) */
|
|
4784
5839
|
interface PalletZksaasError extends Enum {
|
|
4785
5840
|
readonly isInvalidJobType: boolean;
|
|
4786
5841
|
readonly isInvalidProof: boolean;
|
|
4787
5842
|
readonly isMalformedProof: boolean;
|
|
4788
5843
|
readonly type: 'InvalidJobType' | 'InvalidProof' | 'MalformedProof';
|
|
4789
5844
|
}
|
|
4790
|
-
/** @name
|
|
5845
|
+
/** @name PalletProxyProxyDefinition (728) */
|
|
5846
|
+
interface PalletProxyProxyDefinition extends Struct {
|
|
5847
|
+
readonly delegate: AccountId32;
|
|
5848
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
|
5849
|
+
readonly delay: u64;
|
|
5850
|
+
}
|
|
5851
|
+
/** @name PalletProxyAnnouncement (732) */
|
|
5852
|
+
interface PalletProxyAnnouncement extends Struct {
|
|
5853
|
+
readonly real: AccountId32;
|
|
5854
|
+
readonly callHash: H256;
|
|
5855
|
+
readonly height: u64;
|
|
5856
|
+
}
|
|
5857
|
+
/** @name PalletProxyError (734) */
|
|
5858
|
+
interface PalletProxyError extends Enum {
|
|
5859
|
+
readonly isTooMany: boolean;
|
|
5860
|
+
readonly isNotFound: boolean;
|
|
5861
|
+
readonly isNotProxy: boolean;
|
|
5862
|
+
readonly isUnproxyable: boolean;
|
|
5863
|
+
readonly isDuplicate: boolean;
|
|
5864
|
+
readonly isNoPermission: boolean;
|
|
5865
|
+
readonly isUnannounced: boolean;
|
|
5866
|
+
readonly isNoSelfProxy: boolean;
|
|
5867
|
+
readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
|
|
5868
|
+
}
|
|
5869
|
+
/** @name PalletMultiAssetDelegationOperatorOperatorMetadata (735) */
|
|
5870
|
+
interface PalletMultiAssetDelegationOperatorOperatorMetadata extends Struct {
|
|
5871
|
+
readonly bond: u128;
|
|
5872
|
+
readonly delegationCount: u32;
|
|
5873
|
+
readonly request: Option<PalletMultiAssetDelegationOperatorOperatorBondLessRequest>;
|
|
5874
|
+
readonly delegations: Vec<PalletMultiAssetDelegationOperatorDelegatorBond>;
|
|
5875
|
+
readonly status: PalletMultiAssetDelegationOperatorOperatorStatus;
|
|
5876
|
+
}
|
|
5877
|
+
/** @name PalletMultiAssetDelegationOperatorOperatorBondLessRequest (737) */
|
|
5878
|
+
interface PalletMultiAssetDelegationOperatorOperatorBondLessRequest extends Struct {
|
|
5879
|
+
readonly amount: u128;
|
|
5880
|
+
readonly requestTime: u32;
|
|
5881
|
+
}
|
|
5882
|
+
/** @name PalletMultiAssetDelegationOperatorDelegatorBond (739) */
|
|
5883
|
+
interface PalletMultiAssetDelegationOperatorDelegatorBond extends Struct {
|
|
5884
|
+
readonly delegator: AccountId32;
|
|
5885
|
+
readonly amount: u128;
|
|
5886
|
+
readonly assetId: u128;
|
|
5887
|
+
}
|
|
5888
|
+
/** @name PalletMultiAssetDelegationOperatorOperatorStatus (740) */
|
|
5889
|
+
interface PalletMultiAssetDelegationOperatorOperatorStatus extends Enum {
|
|
5890
|
+
readonly isActive: boolean;
|
|
5891
|
+
readonly isInactive: boolean;
|
|
5892
|
+
readonly isLeaving: boolean;
|
|
5893
|
+
readonly asLeaving: u32;
|
|
5894
|
+
readonly type: 'Active' | 'Inactive' | 'Leaving';
|
|
5895
|
+
}
|
|
5896
|
+
/** @name PalletMultiAssetDelegationOperatorOperatorSnapshot (741) */
|
|
5897
|
+
interface PalletMultiAssetDelegationOperatorOperatorSnapshot extends Struct {
|
|
5898
|
+
readonly bond: u128;
|
|
5899
|
+
readonly delegations: Vec<PalletMultiAssetDelegationOperatorDelegatorBond>;
|
|
5900
|
+
}
|
|
5901
|
+
/** @name PalletMultiAssetDelegationDelegatorDelegatorMetadata (742) */
|
|
5902
|
+
interface PalletMultiAssetDelegationDelegatorDelegatorMetadata extends Struct {
|
|
5903
|
+
readonly deposits: BTreeMap<u128, u128>;
|
|
5904
|
+
readonly unstakeRequest: Option<PalletMultiAssetDelegationDelegatorUnstakeRequest>;
|
|
5905
|
+
readonly delegations: Vec<PalletMultiAssetDelegationDelegatorBondInfoDelegator>;
|
|
5906
|
+
readonly delegatorBondLessRequest: Option<PalletMultiAssetDelegationDelegatorBondLessRequest>;
|
|
5907
|
+
readonly status: PalletMultiAssetDelegationDelegatorDelegatorStatus;
|
|
5908
|
+
}
|
|
5909
|
+
/** @name PalletMultiAssetDelegationDelegatorUnstakeRequest (747) */
|
|
5910
|
+
interface PalletMultiAssetDelegationDelegatorUnstakeRequest extends Struct {
|
|
5911
|
+
readonly assetId: u128;
|
|
5912
|
+
readonly amount: u128;
|
|
5913
|
+
readonly requestedRound: u32;
|
|
5914
|
+
}
|
|
5915
|
+
/** @name PalletMultiAssetDelegationDelegatorBondInfoDelegator (749) */
|
|
5916
|
+
interface PalletMultiAssetDelegationDelegatorBondInfoDelegator extends Struct {
|
|
5917
|
+
readonly operator: AccountId32;
|
|
5918
|
+
readonly amount: u128;
|
|
5919
|
+
readonly assetId: u128;
|
|
5920
|
+
}
|
|
5921
|
+
/** @name PalletMultiAssetDelegationDelegatorBondLessRequest (751) */
|
|
5922
|
+
interface PalletMultiAssetDelegationDelegatorBondLessRequest extends Struct {
|
|
5923
|
+
readonly assetId: u128;
|
|
5924
|
+
readonly amount: u128;
|
|
5925
|
+
readonly requestedRound: u32;
|
|
5926
|
+
}
|
|
5927
|
+
/** @name PalletMultiAssetDelegationDelegatorDelegatorStatus (752) */
|
|
5928
|
+
interface PalletMultiAssetDelegationDelegatorDelegatorStatus extends Enum {
|
|
5929
|
+
readonly isActive: boolean;
|
|
5930
|
+
readonly isLeavingScheduled: boolean;
|
|
5931
|
+
readonly asLeavingScheduled: u32;
|
|
5932
|
+
readonly type: 'Active' | 'LeavingScheduled';
|
|
5933
|
+
}
|
|
5934
|
+
/** @name PalletMultiAssetDelegationRewardsRewardConfig (753) */
|
|
5935
|
+
interface PalletMultiAssetDelegationRewardsRewardConfig extends Struct {
|
|
5936
|
+
readonly configs: BTreeMap<u128, PalletMultiAssetDelegationRewardsRewardConfigForAsset>;
|
|
5937
|
+
readonly whitelistedBlueprintIds: Vec<u32>;
|
|
5938
|
+
}
|
|
5939
|
+
/** @name PalletMultiAssetDelegationRewardsRewardConfigForAsset (755) */
|
|
5940
|
+
interface PalletMultiAssetDelegationRewardsRewardConfigForAsset extends Struct {
|
|
5941
|
+
readonly apy: u128;
|
|
5942
|
+
readonly cap: u128;
|
|
5943
|
+
}
|
|
5944
|
+
/** @name PalletMultiAssetDelegationError (758) */
|
|
5945
|
+
interface PalletMultiAssetDelegationError extends Enum {
|
|
5946
|
+
readonly isAlreadyOperator: boolean;
|
|
5947
|
+
readonly isBondTooLow: boolean;
|
|
5948
|
+
readonly isNotAnOperator: boolean;
|
|
5949
|
+
readonly isCannotExit: boolean;
|
|
5950
|
+
readonly isAlreadyLeaving: boolean;
|
|
5951
|
+
readonly isNotLeavingOperator: boolean;
|
|
5952
|
+
readonly isNotLeavingRound: boolean;
|
|
5953
|
+
readonly isNoScheduledBondLess: boolean;
|
|
5954
|
+
readonly isBondLessRequestNotSatisfied: boolean;
|
|
5955
|
+
readonly isNotActiveOperator: boolean;
|
|
5956
|
+
readonly isNotOfflineOperator: boolean;
|
|
5957
|
+
readonly isAlreadyDelegator: boolean;
|
|
5958
|
+
readonly isNotDelegator: boolean;
|
|
5959
|
+
readonly isWithdrawRequestAlreadyExists: boolean;
|
|
5960
|
+
readonly isInsufficientBalance: boolean;
|
|
5961
|
+
readonly isNoWithdrawRequest: boolean;
|
|
5962
|
+
readonly isUnstakeNotReady: boolean;
|
|
5963
|
+
readonly isNoBondLessRequest: boolean;
|
|
5964
|
+
readonly isBondLessNotReady: boolean;
|
|
5965
|
+
readonly isBondLessRequestAlreadyExists: boolean;
|
|
5966
|
+
readonly isActiveServicesUsingAsset: boolean;
|
|
5967
|
+
readonly isNoActiveDelegation: boolean;
|
|
5968
|
+
readonly isAssetNotWhitelisted: boolean;
|
|
5969
|
+
readonly isNotAuthorized: boolean;
|
|
5970
|
+
readonly isAssetNotFound: boolean;
|
|
5971
|
+
readonly isBlueprintAlreadyWhitelisted: boolean;
|
|
5972
|
+
readonly type: 'AlreadyOperator' | 'BondTooLow' | 'NotAnOperator' | 'CannotExit' | 'AlreadyLeaving' | 'NotLeavingOperator' | 'NotLeavingRound' | 'NoScheduledBondLess' | 'BondLessRequestNotSatisfied' | 'NotActiveOperator' | 'NotOfflineOperator' | 'AlreadyDelegator' | 'NotDelegator' | 'WithdrawRequestAlreadyExists' | 'InsufficientBalance' | 'NoWithdrawRequest' | 'UnstakeNotReady' | 'NoBondLessRequest' | 'BondLessNotReady' | 'BondLessRequestAlreadyExists' | 'ActiveServicesUsingAsset' | 'NoActiveDelegation' | 'AssetNotWhitelisted' | 'NotAuthorized' | 'AssetNotFound' | 'BlueprintAlreadyWhitelisted';
|
|
5973
|
+
}
|
|
5974
|
+
/** @name SygmaAccessSegregatorError (760) */
|
|
5975
|
+
interface SygmaAccessSegregatorError extends Enum {
|
|
5976
|
+
readonly isUnimplemented: boolean;
|
|
5977
|
+
readonly isGrantAccessFailed: boolean;
|
|
5978
|
+
readonly type: 'Unimplemented' | 'GrantAccessFailed';
|
|
5979
|
+
}
|
|
5980
|
+
/** @name SygmaBasicFeehandlerError (762) */
|
|
5981
|
+
interface SygmaBasicFeehandlerError extends Enum {
|
|
5982
|
+
readonly isUnimplemented: boolean;
|
|
5983
|
+
readonly isAccessDenied: boolean;
|
|
5984
|
+
readonly type: 'Unimplemented' | 'AccessDenied';
|
|
5985
|
+
}
|
|
5986
|
+
/** @name SygmaFeeHandlerRouterError (763) */
|
|
5987
|
+
interface SygmaFeeHandlerRouterError extends Enum {
|
|
5988
|
+
readonly isAccessDenied: boolean;
|
|
5989
|
+
readonly isUnimplemented: boolean;
|
|
5990
|
+
readonly type: 'AccessDenied' | 'Unimplemented';
|
|
5991
|
+
}
|
|
5992
|
+
/** @name SygmaPercentageFeehandlerError (765) */
|
|
5993
|
+
interface SygmaPercentageFeehandlerError extends Enum {
|
|
5994
|
+
readonly isUnimplemented: boolean;
|
|
5995
|
+
readonly isAccessDenied: boolean;
|
|
5996
|
+
readonly isFeeRateOutOfRange: boolean;
|
|
5997
|
+
readonly isInvalidFeeBound: boolean;
|
|
5998
|
+
readonly type: 'Unimplemented' | 'AccessDenied' | 'FeeRateOutOfRange' | 'InvalidFeeBound';
|
|
5999
|
+
}
|
|
6000
|
+
/** @name SygmaBridgeError (772) */
|
|
6001
|
+
interface SygmaBridgeError extends Enum {
|
|
6002
|
+
readonly isAccessDenied: boolean;
|
|
6003
|
+
readonly isBadMpcSignature: boolean;
|
|
6004
|
+
readonly isInsufficientBalance: boolean;
|
|
6005
|
+
readonly isTransactFailedDeposit: boolean;
|
|
6006
|
+
readonly isTransactFailedWithdraw: boolean;
|
|
6007
|
+
readonly isTransactFailedFeeDeposit: boolean;
|
|
6008
|
+
readonly isTransactFailedHoldInReserved: boolean;
|
|
6009
|
+
readonly isTransactFailedReleaseFromReserved: boolean;
|
|
6010
|
+
readonly isFeeTooExpensive: boolean;
|
|
6011
|
+
readonly isMissingMpcAddress: boolean;
|
|
6012
|
+
readonly isMpcAddrNotUpdatable: boolean;
|
|
6013
|
+
readonly isBridgePaused: boolean;
|
|
6014
|
+
readonly isBridgeUnpaused: boolean;
|
|
6015
|
+
readonly isMissingFeeConfig: boolean;
|
|
6016
|
+
readonly isAssetNotBound: boolean;
|
|
6017
|
+
readonly isProposalAlreadyComplete: boolean;
|
|
6018
|
+
readonly isEmptyProposalList: boolean;
|
|
6019
|
+
readonly isTransactorFailed: boolean;
|
|
6020
|
+
readonly isInvalidDepositDataInvalidLength: boolean;
|
|
6021
|
+
readonly isInvalidDepositDataInvalidAmount: boolean;
|
|
6022
|
+
readonly isInvalidDepositDataInvalidRecipientLength: boolean;
|
|
6023
|
+
readonly isInvalidDepositDataRecipientLengthNotMatch: boolean;
|
|
6024
|
+
readonly isInvalidDepositDataInvalidRecipient: boolean;
|
|
6025
|
+
readonly isDestDomainNotSupported: boolean;
|
|
6026
|
+
readonly isDestChainIDNotMatch: boolean;
|
|
6027
|
+
readonly isExtractDestDataFailed: boolean;
|
|
6028
|
+
readonly isDecimalConversionFail: boolean;
|
|
6029
|
+
readonly isDepositNonceOverflow: boolean;
|
|
6030
|
+
readonly isNoLiquidityHolderAccountBound: boolean;
|
|
6031
|
+
readonly isUnimplemented: boolean;
|
|
6032
|
+
readonly type: 'AccessDenied' | 'BadMpcSignature' | 'InsufficientBalance' | 'TransactFailedDeposit' | 'TransactFailedWithdraw' | 'TransactFailedFeeDeposit' | 'TransactFailedHoldInReserved' | 'TransactFailedReleaseFromReserved' | 'FeeTooExpensive' | 'MissingMpcAddress' | 'MpcAddrNotUpdatable' | 'BridgePaused' | 'BridgeUnpaused' | 'MissingFeeConfig' | 'AssetNotBound' | 'ProposalAlreadyComplete' | 'EmptyProposalList' | 'TransactorFailed' | 'InvalidDepositDataInvalidLength' | 'InvalidDepositDataInvalidAmount' | 'InvalidDepositDataInvalidRecipientLength' | 'InvalidDepositDataRecipientLengthNotMatch' | 'InvalidDepositDataInvalidRecipient' | 'DestDomainNotSupported' | 'DestChainIDNotMatch' | 'ExtractDestDataFailed' | 'DecimalConversionFail' | 'DepositNonceOverflow' | 'NoLiquidityHolderAccountBound' | 'Unimplemented';
|
|
6033
|
+
}
|
|
6034
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (775) */
|
|
4791
6035
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
4792
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
6036
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (776) */
|
|
4793
6037
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
4794
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
6038
|
+
/** @name FrameSystemExtensionsCheckTxVersion (777) */
|
|
4795
6039
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
4796
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
6040
|
+
/** @name FrameSystemExtensionsCheckGenesis (778) */
|
|
4797
6041
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
4798
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
6042
|
+
/** @name FrameSystemExtensionsCheckNonce (781) */
|
|
4799
6043
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
|
|
4800
6044
|
}
|
|
4801
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
6045
|
+
/** @name FrameSystemExtensionsCheckWeight (782) */
|
|
4802
6046
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
4803
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
6047
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (783) */
|
|
4804
6048
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
|
|
4805
6049
|
}
|
|
4806
|
-
/** @name TangleTestnetRuntimeRuntime (
|
|
6050
|
+
/** @name TangleTestnetRuntimeRuntime (785) */
|
|
4807
6051
|
type TangleTestnetRuntimeRuntime = Null;
|
|
4808
6052
|
}
|