@webb-tools/tangle-substrate-types 0.5.5 → 0.5.9
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 +104 -4
- package/build/interfaces/augment-api-errors.d.ts +365 -0
- package/build/interfaces/augment-api-events.d.ts +495 -2
- package/build/interfaces/augment-api-query.d.ts +140 -2
- package/build/interfaces/augment-api-tx.d.ts +609 -1
- package/build/interfaces/augment-types.d.ts +21 -2
- package/build/interfaces/lookup.d.ts +1377 -369
- package/build/interfaces/lookup.js +1360 -352
- package/build/interfaces/registry.d.ts +57 -1
- package/build/interfaces/types-lookup.d.ts +1477 -353
- 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/src/interfaces/augment-api-consts.ts +104 -4
- package/src/interfaces/augment-api-errors.ts +365 -0
- package/src/interfaces/augment-api-events.ts +294 -2
- package/src/interfaces/augment-api-query.ts +131 -2
- package/src/interfaces/augment-api-tx.ts +315 -1
- package/src/interfaces/augment-types.ts +21 -2
- package/src/interfaces/lookup.ts +1361 -353
- package/src/interfaces/registry.ts +57 -1
- package/src/interfaces/types-lookup.ts +1531 -353
- package/src/metadata/metadata.json +1 -1
- package/src/metadata/static-latest.ts +1 -1
- package/ts-types/src/interfaces/augment-api-consts.d.ts +104 -4
- package/ts-types/src/interfaces/augment-api-errors.d.ts +365 -0
- package/ts-types/src/interfaces/augment-api-events.d.ts +495 -2
- package/ts-types/src/interfaces/augment-api-query.d.ts +140 -2
- package/ts-types/src/interfaces/augment-api-tx.d.ts +609 -1
- package/ts-types/src/interfaces/augment-types.d.ts +21 -2
- package/ts-types/src/interfaces/lookup.d.ts +1377 -369
- package/ts-types/src/interfaces/registry.d.ts +57 -1
- package/ts-types/src/interfaces/types-lookup.d.ts +1477 -353
- 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,7 +1671,7 @@ 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;
|
@@ -1541,38 +1679,38 @@ declare module '@polkadot/types/lookup' {
|
|
1541
1679
|
readonly roleType: TanglePrimitivesRolesTssThresholdSignatureRoleType;
|
1542
1680
|
readonly hdWallet: bool;
|
1543
1681
|
}
|
1544
|
-
/** @name TanglePrimitivesJobsTssDkgtssPhaseTwoJobType (
|
1682
|
+
/** @name TanglePrimitivesJobsTssDkgtssPhaseTwoJobType (138) */
|
1545
1683
|
interface TanglePrimitivesJobsTssDkgtssPhaseTwoJobType extends Struct {
|
1546
1684
|
readonly phaseOneId: u64;
|
1547
1685
|
readonly submission: Bytes;
|
1548
1686
|
readonly derivationPath: Option<Bytes>;
|
1549
1687
|
readonly roleType: TanglePrimitivesRolesTssThresholdSignatureRoleType;
|
1550
1688
|
}
|
1551
|
-
/** @name TanglePrimitivesJobsTssDkgtssPhaseThreeJobType (
|
1689
|
+
/** @name TanglePrimitivesJobsTssDkgtssPhaseThreeJobType (142) */
|
1552
1690
|
interface TanglePrimitivesJobsTssDkgtssPhaseThreeJobType extends Struct {
|
1553
1691
|
readonly phaseOneId: u64;
|
1554
1692
|
readonly roleType: TanglePrimitivesRolesTssThresholdSignatureRoleType;
|
1555
1693
|
}
|
1556
|
-
/** @name TanglePrimitivesJobsTssDkgtssPhaseFourJobType (
|
1694
|
+
/** @name TanglePrimitivesJobsTssDkgtssPhaseFourJobType (143) */
|
1557
1695
|
interface TanglePrimitivesJobsTssDkgtssPhaseFourJobType extends Struct {
|
1558
1696
|
readonly phaseOneId: u64;
|
1559
1697
|
readonly newPhaseOneId: u64;
|
1560
1698
|
readonly roleType: TanglePrimitivesRolesTssThresholdSignatureRoleType;
|
1561
1699
|
}
|
1562
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSPhaseOneJobType (
|
1700
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSPhaseOneJobType (144) */
|
1563
1701
|
interface TanglePrimitivesJobsZksaasZkSaaSPhaseOneJobType extends Struct {
|
1564
1702
|
readonly participants: Vec<AccountId32>;
|
1565
1703
|
readonly permittedCaller: Option<AccountId32>;
|
1566
1704
|
readonly system: TanglePrimitivesJobsZksaasZkSaaSSystem;
|
1567
1705
|
readonly roleType: TanglePrimitivesRolesZksaasZeroKnowledgeRoleType;
|
1568
1706
|
}
|
1569
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSSystem (
|
1707
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSSystem (145) */
|
1570
1708
|
interface TanglePrimitivesJobsZksaasZkSaaSSystem extends Enum {
|
1571
1709
|
readonly isGroth16: boolean;
|
1572
1710
|
readonly asGroth16: TanglePrimitivesJobsZksaasGroth16System;
|
1573
1711
|
readonly type: 'Groth16';
|
1574
1712
|
}
|
1575
|
-
/** @name TanglePrimitivesJobsZksaasGroth16System (
|
1713
|
+
/** @name TanglePrimitivesJobsZksaasGroth16System (146) */
|
1576
1714
|
interface TanglePrimitivesJobsZksaasGroth16System extends Struct {
|
1577
1715
|
readonly circuit: TanglePrimitivesJobsZksaasHyperData;
|
1578
1716
|
readonly numInputs: u64;
|
@@ -1581,7 +1719,7 @@ declare module '@polkadot/types/lookup' {
|
|
1581
1719
|
readonly verifyingKey: Bytes;
|
1582
1720
|
readonly wasm: TanglePrimitivesJobsZksaasHyperData;
|
1583
1721
|
}
|
1584
|
-
/** @name TanglePrimitivesJobsZksaasHyperData (
|
1722
|
+
/** @name TanglePrimitivesJobsZksaasHyperData (147) */
|
1585
1723
|
interface TanglePrimitivesJobsZksaasHyperData extends Enum {
|
1586
1724
|
readonly isRaw: boolean;
|
1587
1725
|
readonly asRaw: Bytes;
|
@@ -1591,39 +1729,39 @@ declare module '@polkadot/types/lookup' {
|
|
1591
1729
|
readonly asHttp: Bytes;
|
1592
1730
|
readonly type: 'Raw' | 'Ipfs' | 'Http';
|
1593
1731
|
}
|
1594
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSPhaseTwoJobType (
|
1732
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSPhaseTwoJobType (148) */
|
1595
1733
|
interface TanglePrimitivesJobsZksaasZkSaaSPhaseTwoJobType extends Struct {
|
1596
1734
|
readonly phaseOneId: u64;
|
1597
1735
|
readonly request: TanglePrimitivesJobsZksaasZkSaaSPhaseTwoRequest;
|
1598
1736
|
readonly roleType: TanglePrimitivesRolesZksaasZeroKnowledgeRoleType;
|
1599
1737
|
}
|
1600
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSPhaseTwoRequest (
|
1738
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSPhaseTwoRequest (149) */
|
1601
1739
|
interface TanglePrimitivesJobsZksaasZkSaaSPhaseTwoRequest extends Enum {
|
1602
1740
|
readonly isGroth16: boolean;
|
1603
1741
|
readonly asGroth16: TanglePrimitivesJobsZksaasGroth16ProveRequest;
|
1604
1742
|
readonly type: 'Groth16';
|
1605
1743
|
}
|
1606
|
-
/** @name TanglePrimitivesJobsZksaasGroth16ProveRequest (
|
1744
|
+
/** @name TanglePrimitivesJobsZksaasGroth16ProveRequest (150) */
|
1607
1745
|
interface TanglePrimitivesJobsZksaasGroth16ProveRequest extends Struct {
|
1608
1746
|
readonly publicInput: Bytes;
|
1609
1747
|
readonly aShares: Vec<TanglePrimitivesJobsZksaasHyperData>;
|
1610
1748
|
readonly axShares: Vec<TanglePrimitivesJobsZksaasHyperData>;
|
1611
1749
|
readonly qapShares: Vec<TanglePrimitivesJobsZksaasQapShare>;
|
1612
1750
|
}
|
1613
|
-
/** @name TanglePrimitivesJobsZksaasQapShare (
|
1751
|
+
/** @name TanglePrimitivesJobsZksaasQapShare (154) */
|
1614
1752
|
interface TanglePrimitivesJobsZksaasQapShare extends Struct {
|
1615
1753
|
readonly a: TanglePrimitivesJobsZksaasHyperData;
|
1616
1754
|
readonly b: TanglePrimitivesJobsZksaasHyperData;
|
1617
1755
|
readonly c: TanglePrimitivesJobsZksaasHyperData;
|
1618
1756
|
}
|
1619
|
-
/** @name TanglePrimitivesJobsFallbackOptions (
|
1757
|
+
/** @name TanglePrimitivesJobsFallbackOptions (156) */
|
1620
1758
|
interface TanglePrimitivesJobsFallbackOptions extends Enum {
|
1621
1759
|
readonly isDestroy: boolean;
|
1622
1760
|
readonly isRegenerateWithThreshold: boolean;
|
1623
1761
|
readonly asRegenerateWithThreshold: u8;
|
1624
1762
|
readonly type: 'Destroy' | 'RegenerateWithThreshold';
|
1625
1763
|
}
|
1626
|
-
/** @name TanglePrimitivesJobsJobInfo (
|
1764
|
+
/** @name TanglePrimitivesJobsJobInfo (157) */
|
1627
1765
|
interface TanglePrimitivesJobsJobInfo extends Struct {
|
1628
1766
|
readonly owner: AccountId32;
|
1629
1767
|
readonly expiry: u64;
|
@@ -1632,7 +1770,7 @@ declare module '@polkadot/types/lookup' {
|
|
1632
1770
|
readonly fee: u128;
|
1633
1771
|
readonly fallback: TanglePrimitivesJobsFallbackOptions;
|
1634
1772
|
}
|
1635
|
-
/** @name PalletDkgEvent (
|
1773
|
+
/** @name PalletDkgEvent (158) */
|
1636
1774
|
interface PalletDkgEvent extends Enum {
|
1637
1775
|
readonly isFeeUpdated: boolean;
|
1638
1776
|
readonly asFeeUpdated: PalletDkgFeeInfo;
|
@@ -1644,7 +1782,7 @@ declare module '@polkadot/types/lookup' {
|
|
1644
1782
|
} & Struct;
|
1645
1783
|
readonly type: 'FeeUpdated' | 'KeyRotated';
|
1646
1784
|
}
|
1647
|
-
/** @name PalletDkgFeeInfo (
|
1785
|
+
/** @name PalletDkgFeeInfo (159) */
|
1648
1786
|
interface PalletDkgFeeInfo extends Struct {
|
1649
1787
|
readonly baseFee: u128;
|
1650
1788
|
readonly dkgValidatorFee: u128;
|
@@ -1653,20 +1791,20 @@ declare module '@polkadot/types/lookup' {
|
|
1653
1791
|
readonly storageFeePerByte: u128;
|
1654
1792
|
readonly storageFeePerBlock: u128;
|
1655
1793
|
}
|
1656
|
-
/** @name PalletZksaasEvent (
|
1794
|
+
/** @name PalletZksaasEvent (160) */
|
1657
1795
|
interface PalletZksaasEvent extends Enum {
|
1658
1796
|
readonly isFeeUpdated: boolean;
|
1659
1797
|
readonly asFeeUpdated: PalletZksaasFeeInfo;
|
1660
1798
|
readonly type: 'FeeUpdated';
|
1661
1799
|
}
|
1662
|
-
/** @name PalletZksaasFeeInfo (
|
1800
|
+
/** @name PalletZksaasFeeInfo (161) */
|
1663
1801
|
interface PalletZksaasFeeInfo extends Struct {
|
1664
1802
|
readonly baseFee: u128;
|
1665
1803
|
readonly circuitFee: u128;
|
1666
1804
|
readonly proveFee: u128;
|
1667
1805
|
readonly storageFeePerByte: u128;
|
1668
1806
|
}
|
1669
|
-
/** @name PalletProxyEvent (
|
1807
|
+
/** @name PalletProxyEvent (162) */
|
1670
1808
|
interface PalletProxyEvent extends Enum {
|
1671
1809
|
readonly isProxyExecuted: boolean;
|
1672
1810
|
readonly asProxyExecuted: {
|
@@ -1701,7 +1839,7 @@ declare module '@polkadot/types/lookup' {
|
|
1701
1839
|
} & Struct;
|
1702
1840
|
readonly type: 'ProxyExecuted' | 'PureCreated' | 'Announced' | 'ProxyAdded' | 'ProxyRemoved';
|
1703
1841
|
}
|
1704
|
-
/** @name TangleTestnetRuntimeProxyType (
|
1842
|
+
/** @name TangleTestnetRuntimeProxyType (163) */
|
1705
1843
|
interface TangleTestnetRuntimeProxyType extends Enum {
|
1706
1844
|
readonly isAny: boolean;
|
1707
1845
|
readonly isNonTransfer: boolean;
|
@@ -1709,7 +1847,363 @@ declare module '@polkadot/types/lookup' {
|
|
1709
1847
|
readonly isStaking: boolean;
|
1710
1848
|
readonly type: 'Any' | 'NonTransfer' | 'Governance' | 'Staking';
|
1711
1849
|
}
|
1712
|
-
/** @name
|
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) */
|
1713
2207
|
interface FrameSystemPhase extends Enum {
|
1714
2208
|
readonly isApplyExtrinsic: boolean;
|
1715
2209
|
readonly asApplyExtrinsic: u32;
|
@@ -1717,17 +2211,17 @@ declare module '@polkadot/types/lookup' {
|
|
1717
2211
|
readonly isInitialization: boolean;
|
1718
2212
|
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
|
1719
2213
|
}
|
1720
|
-
/** @name FrameSystemLastRuntimeUpgradeInfo (
|
2214
|
+
/** @name FrameSystemLastRuntimeUpgradeInfo (194) */
|
1721
2215
|
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
|
1722
2216
|
readonly specVersion: Compact<u32>;
|
1723
2217
|
readonly specName: Text;
|
1724
2218
|
}
|
1725
|
-
/** @name FrameSystemCodeUpgradeAuthorization (
|
2219
|
+
/** @name FrameSystemCodeUpgradeAuthorization (195) */
|
1726
2220
|
interface FrameSystemCodeUpgradeAuthorization extends Struct {
|
1727
2221
|
readonly codeHash: H256;
|
1728
2222
|
readonly checkVersion: bool;
|
1729
2223
|
}
|
1730
|
-
/** @name FrameSystemCall (
|
2224
|
+
/** @name FrameSystemCall (196) */
|
1731
2225
|
interface FrameSystemCall extends Enum {
|
1732
2226
|
readonly isRemark: boolean;
|
1733
2227
|
readonly asRemark: {
|
@@ -1776,41 +2270,41 @@ declare module '@polkadot/types/lookup' {
|
|
1776
2270
|
} & Struct;
|
1777
2271
|
readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent' | 'AuthorizeUpgrade' | 'AuthorizeUpgradeWithoutChecks' | 'ApplyAuthorizedUpgrade';
|
1778
2272
|
}
|
1779
|
-
/** @name FrameSystemLimitsBlockWeights (
|
2273
|
+
/** @name FrameSystemLimitsBlockWeights (200) */
|
1780
2274
|
interface FrameSystemLimitsBlockWeights extends Struct {
|
1781
2275
|
readonly baseBlock: SpWeightsWeightV2Weight;
|
1782
2276
|
readonly maxBlock: SpWeightsWeightV2Weight;
|
1783
2277
|
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
|
1784
2278
|
}
|
1785
|
-
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (
|
2279
|
+
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (201) */
|
1786
2280
|
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
|
1787
2281
|
readonly normal: FrameSystemLimitsWeightsPerClass;
|
1788
2282
|
readonly operational: FrameSystemLimitsWeightsPerClass;
|
1789
2283
|
readonly mandatory: FrameSystemLimitsWeightsPerClass;
|
1790
2284
|
}
|
1791
|
-
/** @name FrameSystemLimitsWeightsPerClass (
|
2285
|
+
/** @name FrameSystemLimitsWeightsPerClass (202) */
|
1792
2286
|
interface FrameSystemLimitsWeightsPerClass extends Struct {
|
1793
2287
|
readonly baseExtrinsic: SpWeightsWeightV2Weight;
|
1794
2288
|
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
|
1795
2289
|
readonly maxTotal: Option<SpWeightsWeightV2Weight>;
|
1796
2290
|
readonly reserved: Option<SpWeightsWeightV2Weight>;
|
1797
2291
|
}
|
1798
|
-
/** @name FrameSystemLimitsBlockLength (
|
2292
|
+
/** @name FrameSystemLimitsBlockLength (204) */
|
1799
2293
|
interface FrameSystemLimitsBlockLength extends Struct {
|
1800
2294
|
readonly max: FrameSupportDispatchPerDispatchClassU32;
|
1801
2295
|
}
|
1802
|
-
/** @name FrameSupportDispatchPerDispatchClassU32 (
|
2296
|
+
/** @name FrameSupportDispatchPerDispatchClassU32 (205) */
|
1803
2297
|
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
|
1804
2298
|
readonly normal: u32;
|
1805
2299
|
readonly operational: u32;
|
1806
2300
|
readonly mandatory: u32;
|
1807
2301
|
}
|
1808
|
-
/** @name SpWeightsRuntimeDbWeight (
|
2302
|
+
/** @name SpWeightsRuntimeDbWeight (206) */
|
1809
2303
|
interface SpWeightsRuntimeDbWeight extends Struct {
|
1810
2304
|
readonly read: u64;
|
1811
2305
|
readonly write: u64;
|
1812
2306
|
}
|
1813
|
-
/** @name SpVersionRuntimeVersion (
|
2307
|
+
/** @name SpVersionRuntimeVersion (207) */
|
1814
2308
|
interface SpVersionRuntimeVersion extends Struct {
|
1815
2309
|
readonly specName: Text;
|
1816
2310
|
readonly implName: Text;
|
@@ -1821,7 +2315,7 @@ declare module '@polkadot/types/lookup' {
|
|
1821
2315
|
readonly transactionVersion: u32;
|
1822
2316
|
readonly stateVersion: u8;
|
1823
2317
|
}
|
1824
|
-
/** @name FrameSystemError (
|
2318
|
+
/** @name FrameSystemError (212) */
|
1825
2319
|
interface FrameSystemError extends Enum {
|
1826
2320
|
readonly isInvalidSpecName: boolean;
|
1827
2321
|
readonly isSpecVersionNeedsToIncrease: boolean;
|
@@ -1833,7 +2327,7 @@ declare module '@polkadot/types/lookup' {
|
|
1833
2327
|
readonly isUnauthorized: boolean;
|
1834
2328
|
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered' | 'NothingAuthorized' | 'Unauthorized';
|
1835
2329
|
}
|
1836
|
-
/** @name PalletTimestampCall (
|
2330
|
+
/** @name PalletTimestampCall (213) */
|
1837
2331
|
interface PalletTimestampCall extends Enum {
|
1838
2332
|
readonly isSet: boolean;
|
1839
2333
|
readonly asSet: {
|
@@ -1841,7 +2335,7 @@ declare module '@polkadot/types/lookup' {
|
|
1841
2335
|
} & Struct;
|
1842
2336
|
readonly type: 'Set';
|
1843
2337
|
}
|
1844
|
-
/** @name PalletSudoCall (
|
2338
|
+
/** @name PalletSudoCall (214) */
|
1845
2339
|
interface PalletSudoCall extends Enum {
|
1846
2340
|
readonly isSudo: boolean;
|
1847
2341
|
readonly asSudo: {
|
@@ -1864,7 +2358,188 @@ declare module '@polkadot/types/lookup' {
|
|
1864
2358
|
readonly isRemoveKey: boolean;
|
1865
2359
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
1866
2360
|
}
|
1867
|
-
/** @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) */
|
1868
2543
|
interface PalletBalancesCall extends Enum {
|
1869
2544
|
readonly isTransferAllowDeath: boolean;
|
1870
2545
|
readonly asTransferAllowDeath: {
|
@@ -1908,13 +2583,13 @@ declare module '@polkadot/types/lookup' {
|
|
1908
2583
|
} & Struct;
|
1909
2584
|
readonly type: 'TransferAllowDeath' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'ForceSetBalance' | 'ForceAdjustTotalIssuance';
|
1910
2585
|
}
|
1911
|
-
/** @name PalletBalancesAdjustmentDirection (
|
2586
|
+
/** @name PalletBalancesAdjustmentDirection (219) */
|
1912
2587
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
1913
2588
|
readonly isIncrease: boolean;
|
1914
2589
|
readonly isDecrease: boolean;
|
1915
2590
|
readonly type: 'Increase' | 'Decrease';
|
1916
2591
|
}
|
1917
|
-
/** @name PalletBabeCall (
|
2592
|
+
/** @name PalletBabeCall (220) */
|
1918
2593
|
interface PalletBabeCall extends Enum {
|
1919
2594
|
readonly isReportEquivocation: boolean;
|
1920
2595
|
readonly asReportEquivocation: {
|
@@ -1932,14 +2607,14 @@ declare module '@polkadot/types/lookup' {
|
|
1932
2607
|
} & Struct;
|
1933
2608
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'PlanConfigChange';
|
1934
2609
|
}
|
1935
|
-
/** @name SpConsensusSlotsEquivocationProof (
|
2610
|
+
/** @name SpConsensusSlotsEquivocationProof (221) */
|
1936
2611
|
interface SpConsensusSlotsEquivocationProof extends Struct {
|
1937
2612
|
readonly offender: SpConsensusBabeAppPublic;
|
1938
2613
|
readonly slot: u64;
|
1939
2614
|
readonly firstHeader: SpRuntimeHeader;
|
1940
2615
|
readonly secondHeader: SpRuntimeHeader;
|
1941
2616
|
}
|
1942
|
-
/** @name SpRuntimeHeader (
|
2617
|
+
/** @name SpRuntimeHeader (222) */
|
1943
2618
|
interface SpRuntimeHeader extends Struct {
|
1944
2619
|
readonly parentHash: H256;
|
1945
2620
|
readonly number: Compact<u64>;
|
@@ -1947,16 +2622,16 @@ declare module '@polkadot/types/lookup' {
|
|
1947
2622
|
readonly extrinsicsRoot: H256;
|
1948
2623
|
readonly digest: SpRuntimeDigest;
|
1949
2624
|
}
|
1950
|
-
/** @name SpConsensusBabeAppPublic (
|
2625
|
+
/** @name SpConsensusBabeAppPublic (223) */
|
1951
2626
|
interface SpConsensusBabeAppPublic extends SpCoreSr25519Public {
|
1952
2627
|
}
|
1953
|
-
/** @name SpSessionMembershipProof (
|
2628
|
+
/** @name SpSessionMembershipProof (225) */
|
1954
2629
|
interface SpSessionMembershipProof extends Struct {
|
1955
2630
|
readonly session: u32;
|
1956
2631
|
readonly trieNodes: Vec<Bytes>;
|
1957
2632
|
readonly validatorCount: u32;
|
1958
2633
|
}
|
1959
|
-
/** @name SpConsensusBabeDigestsNextConfigDescriptor (
|
2634
|
+
/** @name SpConsensusBabeDigestsNextConfigDescriptor (226) */
|
1960
2635
|
interface SpConsensusBabeDigestsNextConfigDescriptor extends Enum {
|
1961
2636
|
readonly isV1: boolean;
|
1962
2637
|
readonly asV1: {
|
@@ -1965,14 +2640,14 @@ declare module '@polkadot/types/lookup' {
|
|
1965
2640
|
} & Struct;
|
1966
2641
|
readonly type: 'V1';
|
1967
2642
|
}
|
1968
|
-
/** @name SpConsensusBabeAllowedSlots (
|
2643
|
+
/** @name SpConsensusBabeAllowedSlots (228) */
|
1969
2644
|
interface SpConsensusBabeAllowedSlots extends Enum {
|
1970
2645
|
readonly isPrimarySlots: boolean;
|
1971
2646
|
readonly isPrimaryAndSecondaryPlainSlots: boolean;
|
1972
2647
|
readonly isPrimaryAndSecondaryVRFSlots: boolean;
|
1973
2648
|
readonly type: 'PrimarySlots' | 'PrimaryAndSecondaryPlainSlots' | 'PrimaryAndSecondaryVRFSlots';
|
1974
2649
|
}
|
1975
|
-
/** @name PalletGrandpaCall (
|
2650
|
+
/** @name PalletGrandpaCall (229) */
|
1976
2651
|
interface PalletGrandpaCall extends Enum {
|
1977
2652
|
readonly isReportEquivocation: boolean;
|
1978
2653
|
readonly asReportEquivocation: {
|
@@ -1991,12 +2666,12 @@ declare module '@polkadot/types/lookup' {
|
|
1991
2666
|
} & Struct;
|
1992
2667
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
1993
2668
|
}
|
1994
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
2669
|
+
/** @name SpConsensusGrandpaEquivocationProof (230) */
|
1995
2670
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
1996
2671
|
readonly setId: u64;
|
1997
2672
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
1998
2673
|
}
|
1999
|
-
/** @name SpConsensusGrandpaEquivocation (
|
2674
|
+
/** @name SpConsensusGrandpaEquivocation (231) */
|
2000
2675
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
2001
2676
|
readonly isPrevote: boolean;
|
2002
2677
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
@@ -2004,39 +2679,39 @@ declare module '@polkadot/types/lookup' {
|
|
2004
2679
|
readonly asPrecommit: FinalityGrandpaEquivocationPrecommit;
|
2005
2680
|
readonly type: 'Prevote' | 'Precommit';
|
2006
2681
|
}
|
2007
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
2682
|
+
/** @name FinalityGrandpaEquivocationPrevote (232) */
|
2008
2683
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
2009
2684
|
readonly roundNumber: u64;
|
2010
2685
|
readonly identity: SpConsensusGrandpaAppPublic;
|
2011
2686
|
readonly first: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
2012
2687
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
2013
2688
|
}
|
2014
|
-
/** @name FinalityGrandpaPrevote (
|
2689
|
+
/** @name FinalityGrandpaPrevote (233) */
|
2015
2690
|
interface FinalityGrandpaPrevote extends Struct {
|
2016
2691
|
readonly targetHash: H256;
|
2017
2692
|
readonly targetNumber: u64;
|
2018
2693
|
}
|
2019
|
-
/** @name SpConsensusGrandpaAppSignature (
|
2694
|
+
/** @name SpConsensusGrandpaAppSignature (234) */
|
2020
2695
|
interface SpConsensusGrandpaAppSignature extends SpCoreEd25519Signature {
|
2021
2696
|
}
|
2022
|
-
/** @name SpCoreEd25519Signature (
|
2697
|
+
/** @name SpCoreEd25519Signature (235) */
|
2023
2698
|
interface SpCoreEd25519Signature extends U8aFixed {
|
2024
2699
|
}
|
2025
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
2700
|
+
/** @name FinalityGrandpaEquivocationPrecommit (238) */
|
2026
2701
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
2027
2702
|
readonly roundNumber: u64;
|
2028
2703
|
readonly identity: SpConsensusGrandpaAppPublic;
|
2029
2704
|
readonly first: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
2030
2705
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
2031
2706
|
}
|
2032
|
-
/** @name FinalityGrandpaPrecommit (
|
2707
|
+
/** @name FinalityGrandpaPrecommit (239) */
|
2033
2708
|
interface FinalityGrandpaPrecommit extends Struct {
|
2034
2709
|
readonly targetHash: H256;
|
2035
2710
|
readonly targetNumber: u64;
|
2036
2711
|
}
|
2037
|
-
/** @name SpCoreVoid (
|
2712
|
+
/** @name SpCoreVoid (241) */
|
2038
2713
|
type SpCoreVoid = Null;
|
2039
|
-
/** @name PalletIndicesCall (
|
2714
|
+
/** @name PalletIndicesCall (242) */
|
2040
2715
|
interface PalletIndicesCall extends Enum {
|
2041
2716
|
readonly isClaim: boolean;
|
2042
2717
|
readonly asClaim: {
|
@@ -2063,7 +2738,7 @@ declare module '@polkadot/types/lookup' {
|
|
2063
2738
|
} & Struct;
|
2064
2739
|
readonly type: 'Claim' | 'Transfer' | 'Free' | 'ForceTransfer' | 'Freeze';
|
2065
2740
|
}
|
2066
|
-
/** @name PalletDemocracyCall (
|
2741
|
+
/** @name PalletDemocracyCall (243) */
|
2067
2742
|
interface PalletDemocracyCall extends Enum {
|
2068
2743
|
readonly isPropose: boolean;
|
2069
2744
|
readonly asPropose: {
|
@@ -2146,7 +2821,7 @@ declare module '@polkadot/types/lookup' {
|
|
2146
2821
|
} & Struct;
|
2147
2822
|
readonly type: 'Propose' | 'Second' | 'Vote' | 'EmergencyCancel' | 'ExternalPropose' | 'ExternalProposeMajority' | 'ExternalProposeDefault' | 'FastTrack' | 'VetoExternal' | 'CancelReferendum' | 'Delegate' | 'Undelegate' | 'ClearPublicProposals' | 'Unlock' | 'RemoveVote' | 'RemoveOtherVote' | 'Blacklist' | 'CancelProposal' | 'SetMetadata';
|
2148
2823
|
}
|
2149
|
-
/** @name FrameSupportPreimagesBounded (
|
2824
|
+
/** @name FrameSupportPreimagesBounded (244) */
|
2150
2825
|
interface FrameSupportPreimagesBounded extends Enum {
|
2151
2826
|
readonly isLegacy: boolean;
|
2152
2827
|
readonly asLegacy: {
|
@@ -2161,9 +2836,9 @@ declare module '@polkadot/types/lookup' {
|
|
2161
2836
|
} & Struct;
|
2162
2837
|
readonly type: 'Legacy' | 'Inline' | 'Lookup';
|
2163
2838
|
}
|
2164
|
-
/** @name SpRuntimeBlakeTwo256 (
|
2839
|
+
/** @name SpRuntimeBlakeTwo256 (245) */
|
2165
2840
|
type SpRuntimeBlakeTwo256 = Null;
|
2166
|
-
/** @name PalletDemocracyConviction (
|
2841
|
+
/** @name PalletDemocracyConviction (247) */
|
2167
2842
|
interface PalletDemocracyConviction extends Enum {
|
2168
2843
|
readonly isNone: boolean;
|
2169
2844
|
readonly isLocked1x: boolean;
|
@@ -2174,7 +2849,7 @@ declare module '@polkadot/types/lookup' {
|
|
2174
2849
|
readonly isLocked6x: boolean;
|
2175
2850
|
readonly type: 'None' | 'Locked1x' | 'Locked2x' | 'Locked3x' | 'Locked4x' | 'Locked5x' | 'Locked6x';
|
2176
2851
|
}
|
2177
|
-
/** @name PalletCollectiveCall (
|
2852
|
+
/** @name PalletCollectiveCall (250) */
|
2178
2853
|
interface PalletCollectiveCall extends Enum {
|
2179
2854
|
readonly isSetMembers: boolean;
|
2180
2855
|
readonly asSetMembers: {
|
@@ -2212,7 +2887,7 @@ declare module '@polkadot/types/lookup' {
|
|
2212
2887
|
} & Struct;
|
2213
2888
|
readonly type: 'SetMembers' | 'Execute' | 'Propose' | 'Vote' | 'DisapproveProposal' | 'Close';
|
2214
2889
|
}
|
2215
|
-
/** @name PalletVestingCall (
|
2890
|
+
/** @name PalletVestingCall (251) */
|
2216
2891
|
interface PalletVestingCall extends Enum {
|
2217
2892
|
readonly isVest: boolean;
|
2218
2893
|
readonly isVestOther: boolean;
|
@@ -2242,13 +2917,13 @@ declare module '@polkadot/types/lookup' {
|
|
2242
2917
|
} & Struct;
|
2243
2918
|
readonly type: 'Vest' | 'VestOther' | 'VestedTransfer' | 'ForceVestedTransfer' | 'MergeSchedules' | 'ForceRemoveVestingSchedule';
|
2244
2919
|
}
|
2245
|
-
/** @name PalletVestingVestingInfo (
|
2920
|
+
/** @name PalletVestingVestingInfo (252) */
|
2246
2921
|
interface PalletVestingVestingInfo extends Struct {
|
2247
2922
|
readonly locked: u128;
|
2248
2923
|
readonly perBlock: u128;
|
2249
2924
|
readonly startingBlock: u64;
|
2250
2925
|
}
|
2251
|
-
/** @name PalletElectionsPhragmenCall (
|
2926
|
+
/** @name PalletElectionsPhragmenCall (253) */
|
2252
2927
|
interface PalletElectionsPhragmenCall extends Enum {
|
2253
2928
|
readonly isVote: boolean;
|
2254
2929
|
readonly asVote: {
|
@@ -2277,7 +2952,7 @@ declare module '@polkadot/types/lookup' {
|
|
2277
2952
|
} & Struct;
|
2278
2953
|
readonly type: 'Vote' | 'RemoveVoter' | 'SubmitCandidacy' | 'RenounceCandidacy' | 'RemoveMember' | 'CleanDefunctVoters';
|
2279
2954
|
}
|
2280
|
-
/** @name PalletElectionsPhragmenRenouncing (
|
2955
|
+
/** @name PalletElectionsPhragmenRenouncing (254) */
|
2281
2956
|
interface PalletElectionsPhragmenRenouncing extends Enum {
|
2282
2957
|
readonly isMember: boolean;
|
2283
2958
|
readonly isRunnerUp: boolean;
|
@@ -2285,7 +2960,7 @@ declare module '@polkadot/types/lookup' {
|
|
2285
2960
|
readonly asCandidate: Compact<u32>;
|
2286
2961
|
readonly type: 'Member' | 'RunnerUp' | 'Candidate';
|
2287
2962
|
}
|
2288
|
-
/** @name PalletElectionProviderMultiPhaseCall (
|
2963
|
+
/** @name PalletElectionProviderMultiPhaseCall (255) */
|
2289
2964
|
interface PalletElectionProviderMultiPhaseCall extends Enum {
|
2290
2965
|
readonly isSubmitUnsigned: boolean;
|
2291
2966
|
readonly asSubmitUnsigned: {
|
@@ -2311,13 +2986,13 @@ declare module '@polkadot/types/lookup' {
|
|
2311
2986
|
} & Struct;
|
2312
2987
|
readonly type: 'SubmitUnsigned' | 'SetMinimumUntrustedScore' | 'SetEmergencyElectionResult' | 'Submit' | 'GovernanceFallback';
|
2313
2988
|
}
|
2314
|
-
/** @name PalletElectionProviderMultiPhaseRawSolution (
|
2989
|
+
/** @name PalletElectionProviderMultiPhaseRawSolution (256) */
|
2315
2990
|
interface PalletElectionProviderMultiPhaseRawSolution extends Struct {
|
2316
2991
|
readonly solution: TangleTestnetRuntimeNposSolution16;
|
2317
2992
|
readonly score: SpNposElectionsElectionScore;
|
2318
2993
|
readonly round: u32;
|
2319
2994
|
}
|
2320
|
-
/** @name TangleTestnetRuntimeNposSolution16 (
|
2995
|
+
/** @name TangleTestnetRuntimeNposSolution16 (257) */
|
2321
2996
|
interface TangleTestnetRuntimeNposSolution16 extends Struct {
|
2322
2997
|
readonly votes1: Vec<ITuple<[Compact<u32>, Compact<u16>]>>;
|
2323
2998
|
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<PerU16>]>, Compact<u16>]>>;
|
@@ -2336,17 +3011,17 @@ declare module '@polkadot/types/lookup' {
|
|
2336
3011
|
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
2337
3012
|
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
2338
3013
|
}
|
2339
|
-
/** @name PalletElectionProviderMultiPhaseSolutionOrSnapshotSize (
|
3014
|
+
/** @name PalletElectionProviderMultiPhaseSolutionOrSnapshotSize (308) */
|
2340
3015
|
interface PalletElectionProviderMultiPhaseSolutionOrSnapshotSize extends Struct {
|
2341
3016
|
readonly voters: Compact<u32>;
|
2342
3017
|
readonly targets: Compact<u32>;
|
2343
3018
|
}
|
2344
|
-
/** @name SpNposElectionsSupport (
|
3019
|
+
/** @name SpNposElectionsSupport (312) */
|
2345
3020
|
interface SpNposElectionsSupport extends Struct {
|
2346
3021
|
readonly total: u128;
|
2347
3022
|
readonly voters: Vec<ITuple<[AccountId32, u128]>>;
|
2348
3023
|
}
|
2349
|
-
/** @name PalletStakingPalletCall (
|
3024
|
+
/** @name PalletStakingPalletCall (313) */
|
2350
3025
|
interface PalletStakingPalletCall extends Enum {
|
2351
3026
|
readonly isBond: boolean;
|
2352
3027
|
readonly asBond: {
|
@@ -2463,7 +3138,7 @@ declare module '@polkadot/types/lookup' {
|
|
2463
3138
|
} & Struct;
|
2464
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';
|
2465
3140
|
}
|
2466
|
-
/** @name PalletStakingPalletConfigOpU128 (
|
3141
|
+
/** @name PalletStakingPalletConfigOpU128 (317) */
|
2467
3142
|
interface PalletStakingPalletConfigOpU128 extends Enum {
|
2468
3143
|
readonly isNoop: boolean;
|
2469
3144
|
readonly isSet: boolean;
|
@@ -2471,7 +3146,7 @@ declare module '@polkadot/types/lookup' {
|
|
2471
3146
|
readonly isRemove: boolean;
|
2472
3147
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2473
3148
|
}
|
2474
|
-
/** @name PalletStakingPalletConfigOpU32 (
|
3149
|
+
/** @name PalletStakingPalletConfigOpU32 (318) */
|
2475
3150
|
interface PalletStakingPalletConfigOpU32 extends Enum {
|
2476
3151
|
readonly isNoop: boolean;
|
2477
3152
|
readonly isSet: boolean;
|
@@ -2479,7 +3154,7 @@ declare module '@polkadot/types/lookup' {
|
|
2479
3154
|
readonly isRemove: boolean;
|
2480
3155
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2481
3156
|
}
|
2482
|
-
/** @name PalletStakingPalletConfigOpPercent (
|
3157
|
+
/** @name PalletStakingPalletConfigOpPercent (319) */
|
2483
3158
|
interface PalletStakingPalletConfigOpPercent extends Enum {
|
2484
3159
|
readonly isNoop: boolean;
|
2485
3160
|
readonly isSet: boolean;
|
@@ -2487,7 +3162,7 @@ declare module '@polkadot/types/lookup' {
|
|
2487
3162
|
readonly isRemove: boolean;
|
2488
3163
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2489
3164
|
}
|
2490
|
-
/** @name PalletStakingPalletConfigOpPerbill (
|
3165
|
+
/** @name PalletStakingPalletConfigOpPerbill (320) */
|
2491
3166
|
interface PalletStakingPalletConfigOpPerbill extends Enum {
|
2492
3167
|
readonly isNoop: boolean;
|
2493
3168
|
readonly isSet: boolean;
|
@@ -2495,7 +3170,7 @@ declare module '@polkadot/types/lookup' {
|
|
2495
3170
|
readonly isRemove: boolean;
|
2496
3171
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2497
3172
|
}
|
2498
|
-
/** @name PalletSessionCall (
|
3173
|
+
/** @name PalletSessionCall (322) */
|
2499
3174
|
interface PalletSessionCall extends Enum {
|
2500
3175
|
readonly isSetKeys: boolean;
|
2501
3176
|
readonly asSetKeys: {
|
@@ -2505,20 +3180,20 @@ declare module '@polkadot/types/lookup' {
|
|
2505
3180
|
readonly isPurgeKeys: boolean;
|
2506
3181
|
readonly type: 'SetKeys' | 'PurgeKeys';
|
2507
3182
|
}
|
2508
|
-
/** @name TangleTestnetRuntimeOpaqueSessionKeys (
|
3183
|
+
/** @name TangleTestnetRuntimeOpaqueSessionKeys (323) */
|
2509
3184
|
interface TangleTestnetRuntimeOpaqueSessionKeys extends Struct {
|
2510
3185
|
readonly babe: SpConsensusBabeAppPublic;
|
2511
3186
|
readonly grandpa: SpConsensusGrandpaAppPublic;
|
2512
3187
|
readonly imOnline: PalletImOnlineSr25519AppSr25519Public;
|
2513
3188
|
readonly role: TangleCryptoPrimitivesCryptoPublic;
|
2514
3189
|
}
|
2515
|
-
/** @name TangleCryptoPrimitivesCryptoPublic (
|
3190
|
+
/** @name TangleCryptoPrimitivesCryptoPublic (324) */
|
2516
3191
|
interface TangleCryptoPrimitivesCryptoPublic extends SpCoreEcdsaPublic {
|
2517
3192
|
}
|
2518
|
-
/** @name SpCoreEcdsaPublic (
|
3193
|
+
/** @name SpCoreEcdsaPublic (325) */
|
2519
3194
|
interface SpCoreEcdsaPublic extends U8aFixed {
|
2520
3195
|
}
|
2521
|
-
/** @name PalletTreasuryCall (
|
3196
|
+
/** @name PalletTreasuryCall (327) */
|
2522
3197
|
interface PalletTreasuryCall extends Enum {
|
2523
3198
|
readonly isProposeSpend: boolean;
|
2524
3199
|
readonly asProposeSpend: {
|
@@ -2563,7 +3238,7 @@ declare module '@polkadot/types/lookup' {
|
|
2563
3238
|
} & Struct;
|
2564
3239
|
readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'SpendLocal' | 'RemoveApproval' | 'Spend' | 'Payout' | 'CheckStatus' | 'VoidSpend';
|
2565
3240
|
}
|
2566
|
-
/** @name PalletBountiesCall (
|
3241
|
+
/** @name PalletBountiesCall (329) */
|
2567
3242
|
interface PalletBountiesCall extends Enum {
|
2568
3243
|
readonly isProposeBounty: boolean;
|
2569
3244
|
readonly asProposeBounty: {
|
@@ -2608,7 +3283,7 @@ declare module '@polkadot/types/lookup' {
|
|
2608
3283
|
} & Struct;
|
2609
3284
|
readonly type: 'ProposeBounty' | 'ApproveBounty' | 'ProposeCurator' | 'UnassignCurator' | 'AcceptCurator' | 'AwardBounty' | 'ClaimBounty' | 'CloseBounty' | 'ExtendBountyExpiry';
|
2610
3285
|
}
|
2611
|
-
/** @name PalletChildBountiesCall (
|
3286
|
+
/** @name PalletChildBountiesCall (330) */
|
2612
3287
|
interface PalletChildBountiesCall extends Enum {
|
2613
3288
|
readonly isAddChildBounty: boolean;
|
2614
3289
|
readonly asAddChildBounty: {
|
@@ -2651,7 +3326,7 @@ declare module '@polkadot/types/lookup' {
|
|
2651
3326
|
} & Struct;
|
2652
3327
|
readonly type: 'AddChildBounty' | 'ProposeCurator' | 'AcceptCurator' | 'UnassignCurator' | 'AwardChildBounty' | 'ClaimChildBounty' | 'CloseChildBounty';
|
2653
3328
|
}
|
2654
|
-
/** @name PalletBagsListCall (
|
3329
|
+
/** @name PalletBagsListCall (331) */
|
2655
3330
|
interface PalletBagsListCall extends Enum {
|
2656
3331
|
readonly isRebag: boolean;
|
2657
3332
|
readonly asRebag: {
|
@@ -2668,7 +3343,7 @@ declare module '@polkadot/types/lookup' {
|
|
2668
3343
|
} & Struct;
|
2669
3344
|
readonly type: 'Rebag' | 'PutInFrontOf' | 'PutInFrontOfOther';
|
2670
3345
|
}
|
2671
|
-
/** @name PalletNominationPoolsCall (
|
3346
|
+
/** @name PalletNominationPoolsCall (332) */
|
2672
3347
|
interface PalletNominationPoolsCall extends Enum {
|
2673
3348
|
readonly isJoin: boolean;
|
2674
3349
|
readonly asJoin: {
|
@@ -2788,14 +3463,14 @@ declare module '@polkadot/types/lookup' {
|
|
2788
3463
|
} & Struct;
|
2789
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';
|
2790
3465
|
}
|
2791
|
-
/** @name PalletNominationPoolsBondExtra (
|
3466
|
+
/** @name PalletNominationPoolsBondExtra (333) */
|
2792
3467
|
interface PalletNominationPoolsBondExtra extends Enum {
|
2793
3468
|
readonly isFreeBalance: boolean;
|
2794
3469
|
readonly asFreeBalance: u128;
|
2795
3470
|
readonly isRewards: boolean;
|
2796
3471
|
readonly type: 'FreeBalance' | 'Rewards';
|
2797
3472
|
}
|
2798
|
-
/** @name PalletNominationPoolsConfigOpU128 (
|
3473
|
+
/** @name PalletNominationPoolsConfigOpU128 (334) */
|
2799
3474
|
interface PalletNominationPoolsConfigOpU128 extends Enum {
|
2800
3475
|
readonly isNoop: boolean;
|
2801
3476
|
readonly isSet: boolean;
|
@@ -2803,7 +3478,7 @@ declare module '@polkadot/types/lookup' {
|
|
2803
3478
|
readonly isRemove: boolean;
|
2804
3479
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2805
3480
|
}
|
2806
|
-
/** @name PalletNominationPoolsConfigOpU32 (
|
3481
|
+
/** @name PalletNominationPoolsConfigOpU32 (335) */
|
2807
3482
|
interface PalletNominationPoolsConfigOpU32 extends Enum {
|
2808
3483
|
readonly isNoop: boolean;
|
2809
3484
|
readonly isSet: boolean;
|
@@ -2811,7 +3486,7 @@ declare module '@polkadot/types/lookup' {
|
|
2811
3486
|
readonly isRemove: boolean;
|
2812
3487
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2813
3488
|
}
|
2814
|
-
/** @name PalletNominationPoolsConfigOpPerbill (
|
3489
|
+
/** @name PalletNominationPoolsConfigOpPerbill (336) */
|
2815
3490
|
interface PalletNominationPoolsConfigOpPerbill extends Enum {
|
2816
3491
|
readonly isNoop: boolean;
|
2817
3492
|
readonly isSet: boolean;
|
@@ -2819,7 +3494,7 @@ declare module '@polkadot/types/lookup' {
|
|
2819
3494
|
readonly isRemove: boolean;
|
2820
3495
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2821
3496
|
}
|
2822
|
-
/** @name PalletNominationPoolsConfigOpAccountId32 (
|
3497
|
+
/** @name PalletNominationPoolsConfigOpAccountId32 (337) */
|
2823
3498
|
interface PalletNominationPoolsConfigOpAccountId32 extends Enum {
|
2824
3499
|
readonly isNoop: boolean;
|
2825
3500
|
readonly isSet: boolean;
|
@@ -2827,7 +3502,7 @@ declare module '@polkadot/types/lookup' {
|
|
2827
3502
|
readonly isRemove: boolean;
|
2828
3503
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2829
3504
|
}
|
2830
|
-
/** @name PalletNominationPoolsClaimPermission (
|
3505
|
+
/** @name PalletNominationPoolsClaimPermission (338) */
|
2831
3506
|
interface PalletNominationPoolsClaimPermission extends Enum {
|
2832
3507
|
readonly isPermissioned: boolean;
|
2833
3508
|
readonly isPermissionlessCompound: boolean;
|
@@ -2835,7 +3510,7 @@ declare module '@polkadot/types/lookup' {
|
|
2835
3510
|
readonly isPermissionlessAll: boolean;
|
2836
3511
|
readonly type: 'Permissioned' | 'PermissionlessCompound' | 'PermissionlessWithdraw' | 'PermissionlessAll';
|
2837
3512
|
}
|
2838
|
-
/** @name PalletSchedulerCall (
|
3513
|
+
/** @name PalletSchedulerCall (339) */
|
2839
3514
|
interface PalletSchedulerCall extends Enum {
|
2840
3515
|
readonly isSchedule: boolean;
|
2841
3516
|
readonly asSchedule: {
|
@@ -2878,7 +3553,7 @@ declare module '@polkadot/types/lookup' {
|
|
2878
3553
|
} & Struct;
|
2879
3554
|
readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter';
|
2880
3555
|
}
|
2881
|
-
/** @name PalletPreimageCall (
|
3556
|
+
/** @name PalletPreimageCall (341) */
|
2882
3557
|
interface PalletPreimageCall extends Enum {
|
2883
3558
|
readonly isNotePreimage: boolean;
|
2884
3559
|
readonly asNotePreimage: {
|
@@ -2902,7 +3577,7 @@ declare module '@polkadot/types/lookup' {
|
|
2902
3577
|
} & Struct;
|
2903
3578
|
readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage' | 'EnsureUpdated';
|
2904
3579
|
}
|
2905
|
-
/** @name PalletTxPauseCall (
|
3580
|
+
/** @name PalletTxPauseCall (342) */
|
2906
3581
|
interface PalletTxPauseCall extends Enum {
|
2907
3582
|
readonly isPause: boolean;
|
2908
3583
|
readonly asPause: {
|
@@ -2914,7 +3589,7 @@ declare module '@polkadot/types/lookup' {
|
|
2914
3589
|
} & Struct;
|
2915
3590
|
readonly type: 'Pause' | 'Unpause';
|
2916
3591
|
}
|
2917
|
-
/** @name PalletImOnlineCall (
|
3592
|
+
/** @name PalletImOnlineCall (343) */
|
2918
3593
|
interface PalletImOnlineCall extends Enum {
|
2919
3594
|
readonly isHeartbeat: boolean;
|
2920
3595
|
readonly asHeartbeat: {
|
@@ -2923,20 +3598,20 @@ declare module '@polkadot/types/lookup' {
|
|
2923
3598
|
} & Struct;
|
2924
3599
|
readonly type: 'Heartbeat';
|
2925
3600
|
}
|
2926
|
-
/** @name PalletImOnlineHeartbeat (
|
3601
|
+
/** @name PalletImOnlineHeartbeat (344) */
|
2927
3602
|
interface PalletImOnlineHeartbeat extends Struct {
|
2928
3603
|
readonly blockNumber: u64;
|
2929
3604
|
readonly sessionIndex: u32;
|
2930
3605
|
readonly authorityIndex: u32;
|
2931
3606
|
readonly validatorsLen: u32;
|
2932
3607
|
}
|
2933
|
-
/** @name PalletImOnlineSr25519AppSr25519Signature (
|
3608
|
+
/** @name PalletImOnlineSr25519AppSr25519Signature (345) */
|
2934
3609
|
interface PalletImOnlineSr25519AppSr25519Signature extends SpCoreSr25519Signature {
|
2935
3610
|
}
|
2936
|
-
/** @name SpCoreSr25519Signature (
|
3611
|
+
/** @name SpCoreSr25519Signature (346) */
|
2937
3612
|
interface SpCoreSr25519Signature extends U8aFixed {
|
2938
3613
|
}
|
2939
|
-
/** @name PalletIdentityCall (
|
3614
|
+
/** @name PalletIdentityCall (347) */
|
2940
3615
|
interface PalletIdentityCall extends Enum {
|
2941
3616
|
readonly isAddRegistrar: boolean;
|
2942
3617
|
readonly asAddRegistrar: {
|
@@ -3035,7 +3710,7 @@ declare module '@polkadot/types/lookup' {
|
|
3035
3710
|
} & Struct;
|
3036
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';
|
3037
3712
|
}
|
3038
|
-
/** @name PalletIdentityLegacyIdentityInfo (
|
3713
|
+
/** @name PalletIdentityLegacyIdentityInfo (348) */
|
3039
3714
|
interface PalletIdentityLegacyIdentityInfo extends Struct {
|
3040
3715
|
readonly additional: Vec<ITuple<[Data, Data]>>;
|
3041
3716
|
readonly display: Data;
|
@@ -3047,7 +3722,7 @@ declare module '@polkadot/types/lookup' {
|
|
3047
3722
|
readonly image: Data;
|
3048
3723
|
readonly twitter: Data;
|
3049
3724
|
}
|
3050
|
-
/** @name PalletIdentityJudgement (
|
3725
|
+
/** @name PalletIdentityJudgement (384) */
|
3051
3726
|
interface PalletIdentityJudgement extends Enum {
|
3052
3727
|
readonly isUnknown: boolean;
|
3053
3728
|
readonly isFeePaid: boolean;
|
@@ -3059,7 +3734,7 @@ declare module '@polkadot/types/lookup' {
|
|
3059
3734
|
readonly isErroneous: boolean;
|
3060
3735
|
readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';
|
3061
3736
|
}
|
3062
|
-
/** @name SpRuntimeMultiSignature (
|
3737
|
+
/** @name SpRuntimeMultiSignature (386) */
|
3063
3738
|
interface SpRuntimeMultiSignature extends Enum {
|
3064
3739
|
readonly isEd25519: boolean;
|
3065
3740
|
readonly asEd25519: SpCoreEd25519Signature;
|
@@ -3069,10 +3744,10 @@ declare module '@polkadot/types/lookup' {
|
|
3069
3744
|
readonly asEcdsa: SpCoreEcdsaSignature;
|
3070
3745
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
|
3071
3746
|
}
|
3072
|
-
/** @name SpCoreEcdsaSignature (
|
3747
|
+
/** @name SpCoreEcdsaSignature (387) */
|
3073
3748
|
interface SpCoreEcdsaSignature extends U8aFixed {
|
3074
3749
|
}
|
3075
|
-
/** @name PalletUtilityCall (
|
3750
|
+
/** @name PalletUtilityCall (389) */
|
3076
3751
|
interface PalletUtilityCall extends Enum {
|
3077
3752
|
readonly isBatch: boolean;
|
3078
3753
|
readonly asBatch: {
|
@@ -3103,7 +3778,7 @@ declare module '@polkadot/types/lookup' {
|
|
3103
3778
|
} & Struct;
|
3104
3779
|
readonly type: 'Batch' | 'AsDerivative' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight';
|
3105
3780
|
}
|
3106
|
-
/** @name TangleTestnetRuntimeOriginCaller (
|
3781
|
+
/** @name TangleTestnetRuntimeOriginCaller (391) */
|
3107
3782
|
interface TangleTestnetRuntimeOriginCaller extends Enum {
|
3108
3783
|
readonly isSystem: boolean;
|
3109
3784
|
readonly asSystem: FrameSupportDispatchRawOrigin;
|
@@ -3114,7 +3789,7 @@ declare module '@polkadot/types/lookup' {
|
|
3114
3789
|
readonly asEthereum: PalletEthereumRawOrigin;
|
3115
3790
|
readonly type: 'System' | 'Void' | 'Council' | 'Ethereum';
|
3116
3791
|
}
|
3117
|
-
/** @name FrameSupportDispatchRawOrigin (
|
3792
|
+
/** @name FrameSupportDispatchRawOrigin (392) */
|
3118
3793
|
interface FrameSupportDispatchRawOrigin extends Enum {
|
3119
3794
|
readonly isRoot: boolean;
|
3120
3795
|
readonly isSigned: boolean;
|
@@ -3122,7 +3797,7 @@ declare module '@polkadot/types/lookup' {
|
|
3122
3797
|
readonly isNone: boolean;
|
3123
3798
|
readonly type: 'Root' | 'Signed' | 'None';
|
3124
3799
|
}
|
3125
|
-
/** @name PalletCollectiveRawOrigin (
|
3800
|
+
/** @name PalletCollectiveRawOrigin (393) */
|
3126
3801
|
interface PalletCollectiveRawOrigin extends Enum {
|
3127
3802
|
readonly isMembers: boolean;
|
3128
3803
|
readonly asMembers: ITuple<[u32, u32]>;
|
@@ -3131,13 +3806,13 @@ declare module '@polkadot/types/lookup' {
|
|
3131
3806
|
readonly isPhantom: boolean;
|
3132
3807
|
readonly type: 'Members' | 'Member' | 'Phantom';
|
3133
3808
|
}
|
3134
|
-
/** @name PalletEthereumRawOrigin (
|
3809
|
+
/** @name PalletEthereumRawOrigin (394) */
|
3135
3810
|
interface PalletEthereumRawOrigin extends Enum {
|
3136
3811
|
readonly isEthereumTransaction: boolean;
|
3137
3812
|
readonly asEthereumTransaction: H160;
|
3138
3813
|
readonly type: 'EthereumTransaction';
|
3139
3814
|
}
|
3140
|
-
/** @name PalletMultisigCall (
|
3815
|
+
/** @name PalletMultisigCall (395) */
|
3141
3816
|
interface PalletMultisigCall extends Enum {
|
3142
3817
|
readonly isAsMultiThreshold1: boolean;
|
3143
3818
|
readonly asAsMultiThreshold1: {
|
@@ -3169,7 +3844,7 @@ declare module '@polkadot/types/lookup' {
|
|
3169
3844
|
} & Struct;
|
3170
3845
|
readonly type: 'AsMultiThreshold1' | 'AsMulti' | 'ApproveAsMulti' | 'CancelAsMulti';
|
3171
3846
|
}
|
3172
|
-
/** @name PalletEthereumCall (
|
3847
|
+
/** @name PalletEthereumCall (397) */
|
3173
3848
|
interface PalletEthereumCall extends Enum {
|
3174
3849
|
readonly isTransact: boolean;
|
3175
3850
|
readonly asTransact: {
|
@@ -3177,7 +3852,7 @@ declare module '@polkadot/types/lookup' {
|
|
3177
3852
|
} & Struct;
|
3178
3853
|
readonly type: 'Transact';
|
3179
3854
|
}
|
3180
|
-
/** @name EthereumTransactionTransactionV2 (
|
3855
|
+
/** @name EthereumTransactionTransactionV2 (398) */
|
3181
3856
|
interface EthereumTransactionTransactionV2 extends Enum {
|
3182
3857
|
readonly isLegacy: boolean;
|
3183
3858
|
readonly asLegacy: EthereumTransactionLegacyTransaction;
|
@@ -3187,7 +3862,7 @@ declare module '@polkadot/types/lookup' {
|
|
3187
3862
|
readonly asEip1559: EthereumTransactionEip1559Transaction;
|
3188
3863
|
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
|
3189
3864
|
}
|
3190
|
-
/** @name EthereumTransactionLegacyTransaction (
|
3865
|
+
/** @name EthereumTransactionLegacyTransaction (399) */
|
3191
3866
|
interface EthereumTransactionLegacyTransaction extends Struct {
|
3192
3867
|
readonly nonce: U256;
|
3193
3868
|
readonly gasPrice: U256;
|
@@ -3197,20 +3872,20 @@ declare module '@polkadot/types/lookup' {
|
|
3197
3872
|
readonly input: Bytes;
|
3198
3873
|
readonly signature: EthereumTransactionTransactionSignature;
|
3199
3874
|
}
|
3200
|
-
/** @name EthereumTransactionTransactionAction (
|
3875
|
+
/** @name EthereumTransactionTransactionAction (400) */
|
3201
3876
|
interface EthereumTransactionTransactionAction extends Enum {
|
3202
3877
|
readonly isCall: boolean;
|
3203
3878
|
readonly asCall: H160;
|
3204
3879
|
readonly isCreate: boolean;
|
3205
3880
|
readonly type: 'Call' | 'Create';
|
3206
3881
|
}
|
3207
|
-
/** @name EthereumTransactionTransactionSignature (
|
3882
|
+
/** @name EthereumTransactionTransactionSignature (401) */
|
3208
3883
|
interface EthereumTransactionTransactionSignature extends Struct {
|
3209
3884
|
readonly v: u64;
|
3210
3885
|
readonly r: H256;
|
3211
3886
|
readonly s: H256;
|
3212
3887
|
}
|
3213
|
-
/** @name EthereumTransactionEip2930Transaction (
|
3888
|
+
/** @name EthereumTransactionEip2930Transaction (403) */
|
3214
3889
|
interface EthereumTransactionEip2930Transaction extends Struct {
|
3215
3890
|
readonly chainId: u64;
|
3216
3891
|
readonly nonce: U256;
|
@@ -3224,12 +3899,12 @@ declare module '@polkadot/types/lookup' {
|
|
3224
3899
|
readonly r: H256;
|
3225
3900
|
readonly s: H256;
|
3226
3901
|
}
|
3227
|
-
/** @name EthereumTransactionAccessListItem (
|
3902
|
+
/** @name EthereumTransactionAccessListItem (405) */
|
3228
3903
|
interface EthereumTransactionAccessListItem extends Struct {
|
3229
3904
|
readonly address: H160;
|
3230
3905
|
readonly storageKeys: Vec<H256>;
|
3231
3906
|
}
|
3232
|
-
/** @name EthereumTransactionEip1559Transaction (
|
3907
|
+
/** @name EthereumTransactionEip1559Transaction (406) */
|
3233
3908
|
interface EthereumTransactionEip1559Transaction extends Struct {
|
3234
3909
|
readonly chainId: u64;
|
3235
3910
|
readonly nonce: U256;
|
@@ -3244,7 +3919,7 @@ declare module '@polkadot/types/lookup' {
|
|
3244
3919
|
readonly r: H256;
|
3245
3920
|
readonly s: H256;
|
3246
3921
|
}
|
3247
|
-
/** @name PalletEvmCall (
|
3922
|
+
/** @name PalletEvmCall (407) */
|
3248
3923
|
interface PalletEvmCall extends Enum {
|
3249
3924
|
readonly isWithdraw: boolean;
|
3250
3925
|
readonly asWithdraw: {
|
@@ -3288,7 +3963,7 @@ declare module '@polkadot/types/lookup' {
|
|
3288
3963
|
} & Struct;
|
3289
3964
|
readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
|
3290
3965
|
}
|
3291
|
-
/** @name PalletDynamicFeeCall (
|
3966
|
+
/** @name PalletDynamicFeeCall (411) */
|
3292
3967
|
interface PalletDynamicFeeCall extends Enum {
|
3293
3968
|
readonly isNoteMinGasPriceTarget: boolean;
|
3294
3969
|
readonly asNoteMinGasPriceTarget: {
|
@@ -3296,7 +3971,7 @@ declare module '@polkadot/types/lookup' {
|
|
3296
3971
|
} & Struct;
|
3297
3972
|
readonly type: 'NoteMinGasPriceTarget';
|
3298
3973
|
}
|
3299
|
-
/** @name PalletBaseFeeCall (
|
3974
|
+
/** @name PalletBaseFeeCall (412) */
|
3300
3975
|
interface PalletBaseFeeCall extends Enum {
|
3301
3976
|
readonly isSetBaseFeePerGas: boolean;
|
3302
3977
|
readonly asSetBaseFeePerGas: {
|
@@ -3308,7 +3983,7 @@ declare module '@polkadot/types/lookup' {
|
|
3308
3983
|
} & Struct;
|
3309
3984
|
readonly type: 'SetBaseFeePerGas' | 'SetElasticity';
|
3310
3985
|
}
|
3311
|
-
/** @name PalletHotfixSufficientsCall (
|
3986
|
+
/** @name PalletHotfixSufficientsCall (413) */
|
3312
3987
|
interface PalletHotfixSufficientsCall extends Enum {
|
3313
3988
|
readonly isHotfixIncAccountSufficients: boolean;
|
3314
3989
|
readonly asHotfixIncAccountSufficients: {
|
@@ -3316,7 +3991,7 @@ declare module '@polkadot/types/lookup' {
|
|
3316
3991
|
} & Struct;
|
3317
3992
|
readonly type: 'HotfixIncAccountSufficients';
|
3318
3993
|
}
|
3319
|
-
/** @name PalletAirdropClaimsCall (
|
3994
|
+
/** @name PalletAirdropClaimsCall (415) */
|
3320
3995
|
interface PalletAirdropClaimsCall extends Enum {
|
3321
3996
|
readonly isClaim: boolean;
|
3322
3997
|
readonly asClaim: {
|
@@ -3348,9 +4023,13 @@ declare module '@polkadot/types/lookup' {
|
|
3348
4023
|
readonly expiryBlock: u64;
|
3349
4024
|
readonly dest: PalletAirdropClaimsUtilsMultiAddress;
|
3350
4025
|
} & Struct;
|
3351
|
-
readonly
|
4026
|
+
readonly isClaimSigned: boolean;
|
4027
|
+
readonly asClaimSigned: {
|
4028
|
+
readonly dest: Option<PalletAirdropClaimsUtilsMultiAddress>;
|
4029
|
+
} & Struct;
|
4030
|
+
readonly type: 'Claim' | 'MintClaim' | 'ClaimAttest' | 'MoveClaim' | 'ForceSetExpiryConfig' | 'ClaimSigned';
|
3352
4031
|
}
|
3353
|
-
/** @name PalletAirdropClaimsUtilsMultiAddressSignature (
|
4032
|
+
/** @name PalletAirdropClaimsUtilsMultiAddressSignature (417) */
|
3354
4033
|
interface PalletAirdropClaimsUtilsMultiAddressSignature extends Enum {
|
3355
4034
|
readonly isEvm: boolean;
|
3356
4035
|
readonly asEvm: PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature;
|
@@ -3358,19 +4037,19 @@ declare module '@polkadot/types/lookup' {
|
|
3358
4037
|
readonly asNative: PalletAirdropClaimsUtilsSr25519Signature;
|
3359
4038
|
readonly type: 'Evm' | 'Native';
|
3360
4039
|
}
|
3361
|
-
/** @name PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature (
|
4040
|
+
/** @name PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature (418) */
|
3362
4041
|
interface PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature extends U8aFixed {
|
3363
4042
|
}
|
3364
|
-
/** @name PalletAirdropClaimsUtilsSr25519Signature (
|
4043
|
+
/** @name PalletAirdropClaimsUtilsSr25519Signature (419) */
|
3365
4044
|
interface PalletAirdropClaimsUtilsSr25519Signature extends SpCoreSr25519Signature {
|
3366
4045
|
}
|
3367
|
-
/** @name PalletAirdropClaimsStatementKind (
|
4046
|
+
/** @name PalletAirdropClaimsStatementKind (425) */
|
3368
4047
|
interface PalletAirdropClaimsStatementKind extends Enum {
|
3369
4048
|
readonly isRegular: boolean;
|
3370
4049
|
readonly isSafe: boolean;
|
3371
4050
|
readonly type: 'Regular' | 'Safe';
|
3372
4051
|
}
|
3373
|
-
/** @name PalletRolesCall (
|
4052
|
+
/** @name PalletRolesCall (426) */
|
3374
4053
|
interface PalletRolesCall extends Enum {
|
3375
4054
|
readonly isCreateProfile: boolean;
|
3376
4055
|
readonly asCreateProfile: {
|
@@ -3399,7 +4078,7 @@ declare module '@polkadot/types/lookup' {
|
|
3399
4078
|
} & Struct;
|
3400
4079
|
readonly type: 'CreateProfile' | 'UpdateProfile' | 'DeleteProfile' | 'Chill' | 'UnbondFunds' | 'WithdrawUnbonded' | 'PayoutStakers' | 'SetMinRestakingBond';
|
3401
4080
|
}
|
3402
|
-
/** @name PalletRolesProfile (
|
4081
|
+
/** @name PalletRolesProfile (427) */
|
3403
4082
|
interface PalletRolesProfile extends Enum {
|
3404
4083
|
readonly isIndependent: boolean;
|
3405
4084
|
readonly asIndependent: PalletRolesProfileIndependentRestakeProfile;
|
@@ -3407,21 +4086,21 @@ declare module '@polkadot/types/lookup' {
|
|
3407
4086
|
readonly asShared: PalletRolesProfileSharedRestakeProfile;
|
3408
4087
|
readonly type: 'Independent' | 'Shared';
|
3409
4088
|
}
|
3410
|
-
/** @name PalletRolesProfileIndependentRestakeProfile (
|
4089
|
+
/** @name PalletRolesProfileIndependentRestakeProfile (428) */
|
3411
4090
|
interface PalletRolesProfileIndependentRestakeProfile extends Struct {
|
3412
4091
|
readonly records: Vec<PalletRolesProfileRecord>;
|
3413
4092
|
}
|
3414
|
-
/** @name PalletRolesProfileRecord (
|
4093
|
+
/** @name PalletRolesProfileRecord (430) */
|
3415
4094
|
interface PalletRolesProfileRecord extends Struct {
|
3416
4095
|
readonly role: TanglePrimitivesRolesRoleType;
|
3417
4096
|
readonly amount: Option<u128>;
|
3418
4097
|
}
|
3419
|
-
/** @name PalletRolesProfileSharedRestakeProfile (
|
4098
|
+
/** @name PalletRolesProfileSharedRestakeProfile (432) */
|
3420
4099
|
interface PalletRolesProfileSharedRestakeProfile extends Struct {
|
3421
4100
|
readonly records: Vec<PalletRolesProfileRecord>;
|
3422
4101
|
readonly amount: u128;
|
3423
4102
|
}
|
3424
|
-
/** @name PalletJobsModuleCall (
|
4103
|
+
/** @name PalletJobsModuleCall (433) */
|
3425
4104
|
interface PalletJobsModuleCall extends Enum {
|
3426
4105
|
readonly isSubmitJob: boolean;
|
3427
4106
|
readonly asSubmitJob: {
|
@@ -3464,7 +4143,7 @@ declare module '@polkadot/types/lookup' {
|
|
3464
4143
|
} & Struct;
|
3465
4144
|
readonly type: 'SubmitJob' | 'SubmitJobResult' | 'WithdrawRewards' | 'ReportInactiveValidator' | 'SetPermittedCaller' | 'SetTimeFee' | 'SubmitMisbehavior' | 'ExtendJobResultTtl';
|
3466
4145
|
}
|
3467
|
-
/** @name TanglePrimitivesJobsJobResult (
|
4146
|
+
/** @name TanglePrimitivesJobsJobResult (434) */
|
3468
4147
|
interface TanglePrimitivesJobsJobResult extends Enum {
|
3469
4148
|
readonly isDkgPhaseOne: boolean;
|
3470
4149
|
readonly asDkgPhaseOne: TanglePrimitivesJobsTssDkgtssKeySubmissionResult;
|
@@ -3480,15 +4159,15 @@ declare module '@polkadot/types/lookup' {
|
|
3480
4159
|
readonly asZkSaaSPhaseTwo: TanglePrimitivesJobsZksaasZkSaaSProofResult;
|
3481
4160
|
readonly type: 'DkgPhaseOne' | 'DkgPhaseTwo' | 'DkgPhaseThree' | 'DkgPhaseFour' | 'ZkSaaSPhaseOne' | 'ZkSaaSPhaseTwo';
|
3482
4161
|
}
|
3483
|
-
/** @name TangleTestnetRuntimeMaxKeyLen (
|
4162
|
+
/** @name TangleTestnetRuntimeMaxKeyLen (435) */
|
3484
4163
|
type TangleTestnetRuntimeMaxKeyLen = Null;
|
3485
|
-
/** @name TangleTestnetRuntimeMaxSignatureLen (
|
4164
|
+
/** @name TangleTestnetRuntimeMaxSignatureLen (436) */
|
3486
4165
|
type TangleTestnetRuntimeMaxSignatureLen = Null;
|
3487
|
-
/** @name TangleTestnetRuntimeMaxDataLen (
|
4166
|
+
/** @name TangleTestnetRuntimeMaxDataLen (437) */
|
3488
4167
|
type TangleTestnetRuntimeMaxDataLen = Null;
|
3489
|
-
/** @name TangleTestnetRuntimeMaxProofLen (
|
4168
|
+
/** @name TangleTestnetRuntimeMaxProofLen (438) */
|
3490
4169
|
type TangleTestnetRuntimeMaxProofLen = Null;
|
3491
|
-
/** @name TanglePrimitivesJobsTssDkgtssKeySubmissionResult (
|
4170
|
+
/** @name TanglePrimitivesJobsTssDkgtssKeySubmissionResult (439) */
|
3492
4171
|
interface TanglePrimitivesJobsTssDkgtssKeySubmissionResult extends Struct {
|
3493
4172
|
readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
|
3494
4173
|
readonly key: Bytes;
|
@@ -3497,7 +4176,7 @@ declare module '@polkadot/types/lookup' {
|
|
3497
4176
|
readonly signatures: Vec<Bytes>;
|
3498
4177
|
readonly threshold: u8;
|
3499
4178
|
}
|
3500
|
-
/** @name TanglePrimitivesJobsTssDigitalSignatureScheme (
|
4179
|
+
/** @name TanglePrimitivesJobsTssDigitalSignatureScheme (440) */
|
3501
4180
|
interface TanglePrimitivesJobsTssDigitalSignatureScheme extends Enum {
|
3502
4181
|
readonly isEcdsaSecp256k1: boolean;
|
3503
4182
|
readonly isEcdsaSecp256r1: boolean;
|
@@ -3507,13 +4186,13 @@ declare module '@polkadot/types/lookup' {
|
|
3507
4186
|
readonly isSchnorrSecp256k1: boolean;
|
3508
4187
|
readonly isSchnorrSr25519: boolean;
|
3509
4188
|
readonly isSchnorrRistretto255: boolean;
|
3510
|
-
readonly isSchnorrRedJubJub: boolean;
|
3511
4189
|
readonly isSchnorrEd25519: boolean;
|
3512
4190
|
readonly isSchnorrEd448: boolean;
|
4191
|
+
readonly isSchnorrTaproot: boolean;
|
3513
4192
|
readonly isBls381: boolean;
|
3514
|
-
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';
|
3515
4194
|
}
|
3516
|
-
/** @name TanglePrimitivesJobsTssDkgtssSignatureResult (
|
4195
|
+
/** @name TanglePrimitivesJobsTssDkgtssSignatureResult (447) */
|
3517
4196
|
interface TanglePrimitivesJobsTssDkgtssSignatureResult extends Struct {
|
3518
4197
|
readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
|
3519
4198
|
readonly data: Bytes;
|
@@ -3522,11 +4201,11 @@ declare module '@polkadot/types/lookup' {
|
|
3522
4201
|
readonly derivationPath: Option<Bytes>;
|
3523
4202
|
readonly chainCode: Option<U8aFixed>;
|
3524
4203
|
}
|
3525
|
-
/** @name TanglePrimitivesJobsTssDkgtssKeyRefreshResult (
|
4204
|
+
/** @name TanglePrimitivesJobsTssDkgtssKeyRefreshResult (449) */
|
3526
4205
|
interface TanglePrimitivesJobsTssDkgtssKeyRefreshResult extends Struct {
|
3527
4206
|
readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
|
3528
4207
|
}
|
3529
|
-
/** @name TanglePrimitivesJobsTssDkgtssKeyRotationResult (
|
4208
|
+
/** @name TanglePrimitivesJobsTssDkgtssKeyRotationResult (450) */
|
3530
4209
|
interface TanglePrimitivesJobsTssDkgtssKeyRotationResult extends Struct {
|
3531
4210
|
readonly phaseOneId: u64;
|
3532
4211
|
readonly newPhaseOneId: u64;
|
@@ -3537,12 +4216,12 @@ declare module '@polkadot/types/lookup' {
|
|
3537
4216
|
readonly derivationPath: Option<Bytes>;
|
3538
4217
|
readonly chainCode: Option<U8aFixed>;
|
3539
4218
|
}
|
3540
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSCircuitResult (
|
4219
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSCircuitResult (451) */
|
3541
4220
|
interface TanglePrimitivesJobsZksaasZkSaaSCircuitResult extends Struct {
|
3542
4221
|
readonly jobId: u64;
|
3543
4222
|
readonly participants: Vec<SpCoreEcdsaPublic>;
|
3544
4223
|
}
|
3545
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSProofResult (
|
4224
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSProofResult (454) */
|
3546
4225
|
interface TanglePrimitivesJobsZksaasZkSaaSProofResult extends Enum {
|
3547
4226
|
readonly isArkworks: boolean;
|
3548
4227
|
readonly asArkworks: TanglePrimitivesJobsZksaasArkworksProofResult;
|
@@ -3550,15 +4229,15 @@ declare module '@polkadot/types/lookup' {
|
|
3550
4229
|
readonly asCircom: TanglePrimitivesJobsZksaasCircomProofResult;
|
3551
4230
|
readonly type: 'Arkworks' | 'Circom';
|
3552
4231
|
}
|
3553
|
-
/** @name TanglePrimitivesJobsZksaasArkworksProofResult (
|
4232
|
+
/** @name TanglePrimitivesJobsZksaasArkworksProofResult (455) */
|
3554
4233
|
interface TanglePrimitivesJobsZksaasArkworksProofResult extends Struct {
|
3555
4234
|
readonly proof: Bytes;
|
3556
4235
|
}
|
3557
|
-
/** @name TanglePrimitivesJobsZksaasCircomProofResult (
|
4236
|
+
/** @name TanglePrimitivesJobsZksaasCircomProofResult (457) */
|
3558
4237
|
interface TanglePrimitivesJobsZksaasCircomProofResult extends Struct {
|
3559
4238
|
readonly proof: Bytes;
|
3560
4239
|
}
|
3561
|
-
/** @name TanglePrimitivesJobsValidatorOffenceType (
|
4240
|
+
/** @name TanglePrimitivesJobsValidatorOffenceType (458) */
|
3562
4241
|
interface TanglePrimitivesJobsValidatorOffenceType extends Enum {
|
3563
4242
|
readonly isInactivity: boolean;
|
3564
4243
|
readonly isInvalidSignatureSubmitted: boolean;
|
@@ -3566,21 +4245,21 @@ declare module '@polkadot/types/lookup' {
|
|
3566
4245
|
readonly isApprovedInvalidAction: boolean;
|
3567
4246
|
readonly type: 'Inactivity' | 'InvalidSignatureSubmitted' | 'RejectedValidAction' | 'ApprovedInvalidAction';
|
3568
4247
|
}
|
3569
|
-
/** @name TanglePrimitivesMisbehaviorMisbehaviorSubmission (
|
4248
|
+
/** @name TanglePrimitivesMisbehaviorMisbehaviorSubmission (459) */
|
3570
4249
|
interface TanglePrimitivesMisbehaviorMisbehaviorSubmission extends Struct {
|
3571
4250
|
readonly roleType: TanglePrimitivesRolesRoleType;
|
3572
4251
|
readonly offender: U8aFixed;
|
3573
4252
|
readonly jobId: u64;
|
3574
4253
|
readonly justification: TanglePrimitivesMisbehaviorMisbehaviorJustification;
|
3575
4254
|
}
|
3576
|
-
/** @name TanglePrimitivesMisbehaviorMisbehaviorJustification (
|
4255
|
+
/** @name TanglePrimitivesMisbehaviorMisbehaviorJustification (460) */
|
3577
4256
|
interface TanglePrimitivesMisbehaviorMisbehaviorJustification extends Enum {
|
3578
4257
|
readonly isDkgtss: boolean;
|
3579
4258
|
readonly asDkgtss: TanglePrimitivesMisbehaviorDkgtssJustification;
|
3580
4259
|
readonly isZkSaaS: boolean;
|
3581
4260
|
readonly type: 'Dkgtss' | 'ZkSaaS';
|
3582
4261
|
}
|
3583
|
-
/** @name TanglePrimitivesMisbehaviorDkgtssJustification (
|
4262
|
+
/** @name TanglePrimitivesMisbehaviorDkgtssJustification (461) */
|
3584
4263
|
interface TanglePrimitivesMisbehaviorDkgtssJustification extends Enum {
|
3585
4264
|
readonly isDfnsCGGMP21: boolean;
|
3586
4265
|
readonly asDfnsCGGMP21: TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification;
|
@@ -3588,7 +4267,7 @@ declare module '@polkadot/types/lookup' {
|
|
3588
4267
|
readonly asZCashFrost: TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification;
|
3589
4268
|
readonly type: 'DfnsCGGMP21' | 'ZCashFrost';
|
3590
4269
|
}
|
3591
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification (
|
4270
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification (462) */
|
3592
4271
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification extends Enum {
|
3593
4272
|
readonly isKeygen: boolean;
|
3594
4273
|
readonly asKeygen: {
|
@@ -3610,7 +4289,7 @@ declare module '@polkadot/types/lookup' {
|
|
3610
4289
|
} & Struct;
|
3611
4290
|
readonly type: 'Keygen' | 'KeyRefresh' | 'Signing';
|
3612
4291
|
}
|
3613
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted (
|
4292
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted (464) */
|
3614
4293
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted extends Enum {
|
3615
4294
|
readonly isInvalidDecommitment: boolean;
|
3616
4295
|
readonly asInvalidDecommitment: {
|
@@ -3633,13 +4312,13 @@ declare module '@polkadot/types/lookup' {
|
|
3633
4312
|
} & Struct;
|
3634
4313
|
readonly type: 'InvalidDecommitment' | 'InvalidSchnorrProof' | 'FeldmanVerificationFailed' | 'InvalidDataSize';
|
3635
4314
|
}
|
3636
|
-
/** @name TanglePrimitivesMisbehaviorSignedRoundMessage (
|
4315
|
+
/** @name TanglePrimitivesMisbehaviorSignedRoundMessage (465) */
|
3637
4316
|
interface TanglePrimitivesMisbehaviorSignedRoundMessage extends Struct {
|
3638
4317
|
readonly sender: u16;
|
3639
4318
|
readonly message: Bytes;
|
3640
4319
|
readonly signature: Bytes;
|
3641
4320
|
}
|
3642
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted (
|
4321
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted (467) */
|
3643
4322
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted extends Enum {
|
3644
4323
|
readonly isInvalidDecommitment: boolean;
|
3645
4324
|
readonly asInvalidDecommitment: {
|
@@ -3664,7 +4343,7 @@ declare module '@polkadot/types/lookup' {
|
|
3664
4343
|
readonly isPaillierDec: boolean;
|
3665
4344
|
readonly type: 'InvalidDecommitment' | 'InvalidSchnorrProof' | 'InvalidModProof' | 'InvalidFacProof' | 'InvalidRingPedersenParameters' | 'InvalidX' | 'InvalidXShare' | 'InvalidDataSize' | 'PaillierDec';
|
3666
4345
|
}
|
3667
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason (
|
4346
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason (468) */
|
3668
4347
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason extends Enum {
|
3669
4348
|
readonly isEqualityCheck: boolean;
|
3670
4349
|
readonly asEqualityCheck: u8;
|
@@ -3682,7 +4361,7 @@ declare module '@polkadot/types/lookup' {
|
|
3682
4361
|
readonly asIncorrectFourthRoot: u8;
|
3683
4362
|
readonly type: 'EqualityCheck' | 'RangeCheck' | 'Encryption' | 'PaillierEnc' | 'PaillierOp' | 'ModPow' | 'ModulusIsPrime' | 'ModulusIsEven' | 'IncorrectNthRoot' | 'IncorrectFourthRoot';
|
3684
4363
|
}
|
3685
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted (
|
4364
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted (469) */
|
3686
4365
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted extends Enum {
|
3687
4366
|
readonly isEncProofOfK: boolean;
|
3688
4367
|
readonly isInvalidPsi: boolean;
|
@@ -3690,7 +4369,7 @@ declare module '@polkadot/types/lookup' {
|
|
3690
4369
|
readonly isMismatchedDelta: boolean;
|
3691
4370
|
readonly type: 'EncProofOfK' | 'InvalidPsi' | 'InvalidPsiPrimePrime' | 'MismatchedDelta';
|
3692
4371
|
}
|
3693
|
-
/** @name TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification (
|
4372
|
+
/** @name TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification (470) */
|
3694
4373
|
interface TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification extends Enum {
|
3695
4374
|
readonly isKeygen: boolean;
|
3696
4375
|
readonly asKeygen: {
|
@@ -3706,7 +4385,7 @@ declare module '@polkadot/types/lookup' {
|
|
3706
4385
|
} & Struct;
|
3707
4386
|
readonly type: 'Keygen' | 'Signing';
|
3708
4387
|
}
|
3709
|
-
/** @name TanglePrimitivesMisbehaviorZcashFrostKeygenAborted (
|
4388
|
+
/** @name TanglePrimitivesMisbehaviorZcashFrostKeygenAborted (471) */
|
3710
4389
|
interface TanglePrimitivesMisbehaviorZcashFrostKeygenAborted extends Enum {
|
3711
4390
|
readonly isInvalidProofOfKnowledge: boolean;
|
3712
4391
|
readonly asInvalidProofOfKnowledge: {
|
@@ -3719,7 +4398,7 @@ declare module '@polkadot/types/lookup' {
|
|
3719
4398
|
} & Struct;
|
3720
4399
|
readonly type: 'InvalidProofOfKnowledge' | 'InvalidSecretShare';
|
3721
4400
|
}
|
3722
|
-
/** @name TanglePrimitivesMisbehaviorZcashFrostSigningAborted (
|
4401
|
+
/** @name TanglePrimitivesMisbehaviorZcashFrostSigningAborted (472) */
|
3723
4402
|
interface TanglePrimitivesMisbehaviorZcashFrostSigningAborted extends Enum {
|
3724
4403
|
readonly isInvalidSignatureShare: boolean;
|
3725
4404
|
readonly asInvalidSignatureShare: {
|
@@ -3728,9 +4407,9 @@ declare module '@polkadot/types/lookup' {
|
|
3728
4407
|
} & Struct;
|
3729
4408
|
readonly type: 'InvalidSignatureShare';
|
3730
4409
|
}
|
3731
|
-
/** @name TanglePrimitivesMisbehaviorZkSaaSJustification (
|
4410
|
+
/** @name TanglePrimitivesMisbehaviorZkSaaSJustification (473) */
|
3732
4411
|
type TanglePrimitivesMisbehaviorZkSaaSJustification = Null;
|
3733
|
-
/** @name PalletDkgCall (
|
4412
|
+
/** @name PalletDkgCall (474) */
|
3734
4413
|
interface PalletDkgCall extends Enum {
|
3735
4414
|
readonly isSetFee: boolean;
|
3736
4415
|
readonly asSetFee: {
|
@@ -3738,7 +4417,7 @@ declare module '@polkadot/types/lookup' {
|
|
3738
4417
|
} & Struct;
|
3739
4418
|
readonly type: 'SetFee';
|
3740
4419
|
}
|
3741
|
-
/** @name PalletZksaasCall (
|
4420
|
+
/** @name PalletZksaasCall (475) */
|
3742
4421
|
interface PalletZksaasCall extends Enum {
|
3743
4422
|
readonly isSetFee: boolean;
|
3744
4423
|
readonly asSetFee: {
|
@@ -3746,7 +4425,7 @@ declare module '@polkadot/types/lookup' {
|
|
3746
4425
|
} & Struct;
|
3747
4426
|
readonly type: 'SetFee';
|
3748
4427
|
}
|
3749
|
-
/** @name PalletProxyCall (
|
4428
|
+
/** @name PalletProxyCall (476) */
|
3750
4429
|
interface PalletProxyCall extends Enum {
|
3751
4430
|
readonly isProxy: boolean;
|
3752
4431
|
readonly asProxy: {
|
@@ -3805,62 +4484,332 @@ declare module '@polkadot/types/lookup' {
|
|
3805
4484
|
} & Struct;
|
3806
4485
|
readonly type: 'Proxy' | 'AddProxy' | 'RemoveProxy' | 'RemoveProxies' | 'CreatePure' | 'KillPure' | 'Announce' | 'RemoveAnnouncement' | 'RejectAnnouncement' | 'ProxyAnnounced';
|
3807
4486
|
}
|
3808
|
-
/** @name
|
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) */
|
3809
4674
|
interface PalletSudoError extends Enum {
|
3810
4675
|
readonly isRequireSudo: boolean;
|
3811
4676
|
readonly type: 'RequireSudo';
|
3812
4677
|
}
|
3813
|
-
/** @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) */
|
3814
4763
|
interface PalletBalancesBalanceLock extends Struct {
|
3815
4764
|
readonly id: U8aFixed;
|
3816
4765
|
readonly amount: u128;
|
3817
4766
|
readonly reasons: PalletBalancesReasons;
|
3818
4767
|
}
|
3819
|
-
/** @name PalletBalancesReasons (
|
4768
|
+
/** @name PalletBalancesReasons (505) */
|
3820
4769
|
interface PalletBalancesReasons extends Enum {
|
3821
4770
|
readonly isFee: boolean;
|
3822
4771
|
readonly isMisc: boolean;
|
3823
4772
|
readonly isAll: boolean;
|
3824
4773
|
readonly type: 'Fee' | 'Misc' | 'All';
|
3825
4774
|
}
|
3826
|
-
/** @name PalletBalancesReserveData (
|
4775
|
+
/** @name PalletBalancesReserveData (508) */
|
3827
4776
|
interface PalletBalancesReserveData extends Struct {
|
3828
4777
|
readonly id: U8aFixed;
|
3829
4778
|
readonly amount: u128;
|
3830
4779
|
}
|
3831
|
-
/** @name PalletBalancesIdAmountRuntimeHoldReason (
|
4780
|
+
/** @name PalletBalancesIdAmountRuntimeHoldReason (511) */
|
3832
4781
|
interface PalletBalancesIdAmountRuntimeHoldReason extends Struct {
|
3833
4782
|
readonly id: TangleTestnetRuntimeRuntimeHoldReason;
|
3834
4783
|
readonly amount: u128;
|
3835
4784
|
}
|
3836
|
-
/** @name TangleTestnetRuntimeRuntimeHoldReason (
|
4785
|
+
/** @name TangleTestnetRuntimeRuntimeHoldReason (512) */
|
3837
4786
|
interface TangleTestnetRuntimeRuntimeHoldReason extends Enum {
|
3838
4787
|
readonly isPreimage: boolean;
|
3839
4788
|
readonly asPreimage: PalletPreimageHoldReason;
|
3840
4789
|
readonly type: 'Preimage';
|
3841
4790
|
}
|
3842
|
-
/** @name PalletPreimageHoldReason (
|
4791
|
+
/** @name PalletPreimageHoldReason (513) */
|
3843
4792
|
interface PalletPreimageHoldReason extends Enum {
|
3844
4793
|
readonly isPreimage: boolean;
|
3845
4794
|
readonly type: 'Preimage';
|
3846
4795
|
}
|
3847
|
-
/** @name PalletBalancesIdAmountRuntimeFreezeReason (
|
4796
|
+
/** @name PalletBalancesIdAmountRuntimeFreezeReason (516) */
|
3848
4797
|
interface PalletBalancesIdAmountRuntimeFreezeReason extends Struct {
|
3849
4798
|
readonly id: TangleTestnetRuntimeRuntimeFreezeReason;
|
3850
4799
|
readonly amount: u128;
|
3851
4800
|
}
|
3852
|
-
/** @name TangleTestnetRuntimeRuntimeFreezeReason (
|
4801
|
+
/** @name TangleTestnetRuntimeRuntimeFreezeReason (517) */
|
3853
4802
|
interface TangleTestnetRuntimeRuntimeFreezeReason extends Enum {
|
3854
4803
|
readonly isNominationPools: boolean;
|
3855
4804
|
readonly asNominationPools: PalletNominationPoolsFreezeReason;
|
3856
4805
|
readonly type: 'NominationPools';
|
3857
4806
|
}
|
3858
|
-
/** @name PalletNominationPoolsFreezeReason (
|
4807
|
+
/** @name PalletNominationPoolsFreezeReason (518) */
|
3859
4808
|
interface PalletNominationPoolsFreezeReason extends Enum {
|
3860
4809
|
readonly isPoolMinBalance: boolean;
|
3861
4810
|
readonly type: 'PoolMinBalance';
|
3862
4811
|
}
|
3863
|
-
/** @name PalletBalancesError (
|
4812
|
+
/** @name PalletBalancesError (520) */
|
3864
4813
|
interface PalletBalancesError extends Enum {
|
3865
4814
|
readonly isVestingBalance: boolean;
|
3866
4815
|
readonly isLiquidityRestrictions: boolean;
|
@@ -3876,13 +4825,13 @@ declare module '@polkadot/types/lookup' {
|
|
3876
4825
|
readonly isDeltaZero: boolean;
|
3877
4826
|
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
|
3878
4827
|
}
|
3879
|
-
/** @name PalletTransactionPaymentReleases (
|
4828
|
+
/** @name PalletTransactionPaymentReleases (522) */
|
3880
4829
|
interface PalletTransactionPaymentReleases extends Enum {
|
3881
4830
|
readonly isV1Ancient: boolean;
|
3882
4831
|
readonly isV2: boolean;
|
3883
4832
|
readonly type: 'V1Ancient' | 'V2';
|
3884
4833
|
}
|
3885
|
-
/** @name SpConsensusBabeDigestsPreDigest (
|
4834
|
+
/** @name SpConsensusBabeDigestsPreDigest (529) */
|
3886
4835
|
interface SpConsensusBabeDigestsPreDigest extends Enum {
|
3887
4836
|
readonly isPrimary: boolean;
|
3888
4837
|
readonly asPrimary: SpConsensusBabeDigestsPrimaryPreDigest;
|
@@ -3892,34 +4841,34 @@ declare module '@polkadot/types/lookup' {
|
|
3892
4841
|
readonly asSecondaryVRF: SpConsensusBabeDigestsSecondaryVRFPreDigest;
|
3893
4842
|
readonly type: 'Primary' | 'SecondaryPlain' | 'SecondaryVRF';
|
3894
4843
|
}
|
3895
|
-
/** @name SpConsensusBabeDigestsPrimaryPreDigest (
|
4844
|
+
/** @name SpConsensusBabeDigestsPrimaryPreDigest (530) */
|
3896
4845
|
interface SpConsensusBabeDigestsPrimaryPreDigest extends Struct {
|
3897
4846
|
readonly authorityIndex: u32;
|
3898
4847
|
readonly slot: u64;
|
3899
4848
|
readonly vrfSignature: SpCoreSr25519VrfVrfSignature;
|
3900
4849
|
}
|
3901
|
-
/** @name SpCoreSr25519VrfVrfSignature (
|
4850
|
+
/** @name SpCoreSr25519VrfVrfSignature (531) */
|
3902
4851
|
interface SpCoreSr25519VrfVrfSignature extends Struct {
|
3903
4852
|
readonly preOutput: U8aFixed;
|
3904
4853
|
readonly proof: U8aFixed;
|
3905
4854
|
}
|
3906
|
-
/** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (
|
4855
|
+
/** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (532) */
|
3907
4856
|
interface SpConsensusBabeDigestsSecondaryPlainPreDigest extends Struct {
|
3908
4857
|
readonly authorityIndex: u32;
|
3909
4858
|
readonly slot: u64;
|
3910
4859
|
}
|
3911
|
-
/** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (
|
4860
|
+
/** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (533) */
|
3912
4861
|
interface SpConsensusBabeDigestsSecondaryVRFPreDigest extends Struct {
|
3913
4862
|
readonly authorityIndex: u32;
|
3914
4863
|
readonly slot: u64;
|
3915
4864
|
readonly vrfSignature: SpCoreSr25519VrfVrfSignature;
|
3916
4865
|
}
|
3917
|
-
/** @name SpConsensusBabeBabeEpochConfiguration (
|
4866
|
+
/** @name SpConsensusBabeBabeEpochConfiguration (534) */
|
3918
4867
|
interface SpConsensusBabeBabeEpochConfiguration extends Struct {
|
3919
4868
|
readonly c: ITuple<[u64, u64]>;
|
3920
4869
|
readonly allowedSlots: SpConsensusBabeAllowedSlots;
|
3921
4870
|
}
|
3922
|
-
/** @name PalletBabeError (
|
4871
|
+
/** @name PalletBabeError (536) */
|
3923
4872
|
interface PalletBabeError extends Enum {
|
3924
4873
|
readonly isInvalidEquivocationProof: boolean;
|
3925
4874
|
readonly isInvalidKeyOwnershipProof: boolean;
|
@@ -3927,7 +4876,7 @@ declare module '@polkadot/types/lookup' {
|
|
3927
4876
|
readonly isInvalidConfiguration: boolean;
|
3928
4877
|
readonly type: 'InvalidEquivocationProof' | 'InvalidKeyOwnershipProof' | 'DuplicateOffenceReport' | 'InvalidConfiguration';
|
3929
4878
|
}
|
3930
|
-
/** @name PalletGrandpaStoredState (
|
4879
|
+
/** @name PalletGrandpaStoredState (537) */
|
3931
4880
|
interface PalletGrandpaStoredState extends Enum {
|
3932
4881
|
readonly isLive: boolean;
|
3933
4882
|
readonly isPendingPause: boolean;
|
@@ -3943,14 +4892,14 @@ declare module '@polkadot/types/lookup' {
|
|
3943
4892
|
} & Struct;
|
3944
4893
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
3945
4894
|
}
|
3946
|
-
/** @name PalletGrandpaStoredPendingChange (
|
4895
|
+
/** @name PalletGrandpaStoredPendingChange (538) */
|
3947
4896
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
3948
4897
|
readonly scheduledAt: u64;
|
3949
4898
|
readonly delay: u64;
|
3950
4899
|
readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
|
3951
4900
|
readonly forced: Option<u64>;
|
3952
4901
|
}
|
3953
|
-
/** @name PalletGrandpaError (
|
4902
|
+
/** @name PalletGrandpaError (540) */
|
3954
4903
|
interface PalletGrandpaError extends Enum {
|
3955
4904
|
readonly isPauseFailed: boolean;
|
3956
4905
|
readonly isResumeFailed: boolean;
|
@@ -3961,7 +4910,7 @@ declare module '@polkadot/types/lookup' {
|
|
3961
4910
|
readonly isDuplicateOffenceReport: boolean;
|
3962
4911
|
readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
|
3963
4912
|
}
|
3964
|
-
/** @name PalletIndicesError (
|
4913
|
+
/** @name PalletIndicesError (542) */
|
3965
4914
|
interface PalletIndicesError extends Enum {
|
3966
4915
|
readonly isNotAssigned: boolean;
|
3967
4916
|
readonly isNotOwner: boolean;
|
@@ -3970,7 +4919,7 @@ declare module '@polkadot/types/lookup' {
|
|
3970
4919
|
readonly isPermanent: boolean;
|
3971
4920
|
readonly type: 'NotAssigned' | 'NotOwner' | 'InUse' | 'NotTransfer' | 'Permanent';
|
3972
4921
|
}
|
3973
|
-
/** @name PalletDemocracyReferendumInfo (
|
4922
|
+
/** @name PalletDemocracyReferendumInfo (547) */
|
3974
4923
|
interface PalletDemocracyReferendumInfo extends Enum {
|
3975
4924
|
readonly isOngoing: boolean;
|
3976
4925
|
readonly asOngoing: PalletDemocracyReferendumStatus;
|
@@ -3981,7 +4930,7 @@ declare module '@polkadot/types/lookup' {
|
|
3981
4930
|
} & Struct;
|
3982
4931
|
readonly type: 'Ongoing' | 'Finished';
|
3983
4932
|
}
|
3984
|
-
/** @name PalletDemocracyReferendumStatus (
|
4933
|
+
/** @name PalletDemocracyReferendumStatus (548) */
|
3985
4934
|
interface PalletDemocracyReferendumStatus extends Struct {
|
3986
4935
|
readonly end: u64;
|
3987
4936
|
readonly proposal: FrameSupportPreimagesBounded;
|
@@ -3989,13 +4938,13 @@ declare module '@polkadot/types/lookup' {
|
|
3989
4938
|
readonly delay: u64;
|
3990
4939
|
readonly tally: PalletDemocracyTally;
|
3991
4940
|
}
|
3992
|
-
/** @name PalletDemocracyTally (
|
4941
|
+
/** @name PalletDemocracyTally (549) */
|
3993
4942
|
interface PalletDemocracyTally extends Struct {
|
3994
4943
|
readonly ayes: u128;
|
3995
4944
|
readonly nays: u128;
|
3996
4945
|
readonly turnout: u128;
|
3997
4946
|
}
|
3998
|
-
/** @name PalletDemocracyVoteVoting (
|
4947
|
+
/** @name PalletDemocracyVoteVoting (550) */
|
3999
4948
|
interface PalletDemocracyVoteVoting extends Enum {
|
4000
4949
|
readonly isDirect: boolean;
|
4001
4950
|
readonly asDirect: {
|
@@ -4013,15 +4962,15 @@ declare module '@polkadot/types/lookup' {
|
|
4013
4962
|
} & Struct;
|
4014
4963
|
readonly type: 'Direct' | 'Delegating';
|
4015
4964
|
}
|
4016
|
-
/** @name PalletDemocracyDelegations (
|
4965
|
+
/** @name PalletDemocracyDelegations (554) */
|
4017
4966
|
interface PalletDemocracyDelegations extends Struct {
|
4018
4967
|
readonly votes: u128;
|
4019
4968
|
readonly capital: u128;
|
4020
4969
|
}
|
4021
|
-
/** @name PalletDemocracyVotePriorLock (
|
4970
|
+
/** @name PalletDemocracyVotePriorLock (555) */
|
4022
4971
|
interface PalletDemocracyVotePriorLock extends ITuple<[u64, u128]> {
|
4023
4972
|
}
|
4024
|
-
/** @name PalletDemocracyError (
|
4973
|
+
/** @name PalletDemocracyError (558) */
|
4025
4974
|
interface PalletDemocracyError extends Enum {
|
4026
4975
|
readonly isValueLow: boolean;
|
4027
4976
|
readonly isProposalMissing: boolean;
|
@@ -4049,7 +4998,7 @@ declare module '@polkadot/types/lookup' {
|
|
4049
4998
|
readonly isPreimageNotExist: boolean;
|
4050
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';
|
4051
5000
|
}
|
4052
|
-
/** @name PalletCollectiveVotes (
|
5001
|
+
/** @name PalletCollectiveVotes (560) */
|
4053
5002
|
interface PalletCollectiveVotes extends Struct {
|
4054
5003
|
readonly index: u32;
|
4055
5004
|
readonly threshold: u32;
|
@@ -4057,7 +5006,7 @@ declare module '@polkadot/types/lookup' {
|
|
4057
5006
|
readonly nays: Vec<AccountId32>;
|
4058
5007
|
readonly end: u64;
|
4059
5008
|
}
|
4060
|
-
/** @name PalletCollectiveError (
|
5009
|
+
/** @name PalletCollectiveError (561) */
|
4061
5010
|
interface PalletCollectiveError extends Enum {
|
4062
5011
|
readonly isNotMember: boolean;
|
4063
5012
|
readonly isDuplicateProposal: boolean;
|
@@ -4072,13 +5021,13 @@ declare module '@polkadot/types/lookup' {
|
|
4072
5021
|
readonly isPrimeAccountNotMember: boolean;
|
4073
5022
|
readonly type: 'NotMember' | 'DuplicateProposal' | 'ProposalMissing' | 'WrongIndex' | 'DuplicateVote' | 'AlreadyInitialized' | 'TooEarly' | 'TooManyProposals' | 'WrongProposalWeight' | 'WrongProposalLength' | 'PrimeAccountNotMember';
|
4074
5023
|
}
|
4075
|
-
/** @name PalletVestingReleases (
|
5024
|
+
/** @name PalletVestingReleases (564) */
|
4076
5025
|
interface PalletVestingReleases extends Enum {
|
4077
5026
|
readonly isV0: boolean;
|
4078
5027
|
readonly isV1: boolean;
|
4079
5028
|
readonly type: 'V0' | 'V1';
|
4080
5029
|
}
|
4081
|
-
/** @name PalletVestingError (
|
5030
|
+
/** @name PalletVestingError (565) */
|
4082
5031
|
interface PalletVestingError extends Enum {
|
4083
5032
|
readonly isNotVesting: boolean;
|
4084
5033
|
readonly isAtMaxVestingSchedules: boolean;
|
@@ -4087,19 +5036,19 @@ declare module '@polkadot/types/lookup' {
|
|
4087
5036
|
readonly isInvalidScheduleParams: boolean;
|
4088
5037
|
readonly type: 'NotVesting' | 'AtMaxVestingSchedules' | 'AmountLow' | 'ScheduleIndexOutOfBounds' | 'InvalidScheduleParams';
|
4089
5038
|
}
|
4090
|
-
/** @name PalletElectionsPhragmenSeatHolder (
|
5039
|
+
/** @name PalletElectionsPhragmenSeatHolder (567) */
|
4091
5040
|
interface PalletElectionsPhragmenSeatHolder extends Struct {
|
4092
5041
|
readonly who: AccountId32;
|
4093
5042
|
readonly stake: u128;
|
4094
5043
|
readonly deposit: u128;
|
4095
5044
|
}
|
4096
|
-
/** @name PalletElectionsPhragmenVoter (
|
5045
|
+
/** @name PalletElectionsPhragmenVoter (568) */
|
4097
5046
|
interface PalletElectionsPhragmenVoter extends Struct {
|
4098
5047
|
readonly votes: Vec<AccountId32>;
|
4099
5048
|
readonly stake: u128;
|
4100
5049
|
readonly deposit: u128;
|
4101
5050
|
}
|
4102
|
-
/** @name PalletElectionsPhragmenError (
|
5051
|
+
/** @name PalletElectionsPhragmenError (569) */
|
4103
5052
|
interface PalletElectionsPhragmenError extends Enum {
|
4104
5053
|
readonly isUnableToVote: boolean;
|
4105
5054
|
readonly isNoVotes: boolean;
|
@@ -4120,25 +5069,25 @@ declare module '@polkadot/types/lookup' {
|
|
4120
5069
|
readonly isInvalidReplacement: boolean;
|
4121
5070
|
readonly type: 'UnableToVote' | 'NoVotes' | 'TooManyVotes' | 'MaximumVotesExceeded' | 'LowBalance' | 'UnableToPayBond' | 'MustBeVoter' | 'DuplicatedCandidate' | 'TooManyCandidates' | 'MemberSubmit' | 'RunnerUpSubmit' | 'InsufficientCandidateFunds' | 'NotMember' | 'InvalidWitnessData' | 'InvalidVoteCount' | 'InvalidRenouncing' | 'InvalidReplacement';
|
4122
5071
|
}
|
4123
|
-
/** @name PalletElectionProviderMultiPhaseReadySolution (
|
5072
|
+
/** @name PalletElectionProviderMultiPhaseReadySolution (570) */
|
4124
5073
|
interface PalletElectionProviderMultiPhaseReadySolution extends Struct {
|
4125
5074
|
readonly supports: Vec<ITuple<[AccountId32, SpNposElectionsSupport]>>;
|
4126
5075
|
readonly score: SpNposElectionsElectionScore;
|
4127
5076
|
readonly compute: PalletElectionProviderMultiPhaseElectionCompute;
|
4128
5077
|
}
|
4129
|
-
/** @name PalletElectionProviderMultiPhaseRoundSnapshot (
|
5078
|
+
/** @name PalletElectionProviderMultiPhaseRoundSnapshot (572) */
|
4130
5079
|
interface PalletElectionProviderMultiPhaseRoundSnapshot extends Struct {
|
4131
5080
|
readonly voters: Vec<ITuple<[AccountId32, u64, Vec<AccountId32>]>>;
|
4132
5081
|
readonly targets: Vec<AccountId32>;
|
4133
5082
|
}
|
4134
|
-
/** @name PalletElectionProviderMultiPhaseSignedSignedSubmission (
|
5083
|
+
/** @name PalletElectionProviderMultiPhaseSignedSignedSubmission (579) */
|
4135
5084
|
interface PalletElectionProviderMultiPhaseSignedSignedSubmission extends Struct {
|
4136
5085
|
readonly who: AccountId32;
|
4137
5086
|
readonly deposit: u128;
|
4138
5087
|
readonly rawSolution: PalletElectionProviderMultiPhaseRawSolution;
|
4139
5088
|
readonly callFee: u128;
|
4140
5089
|
}
|
4141
|
-
/** @name PalletElectionProviderMultiPhaseError (
|
5090
|
+
/** @name PalletElectionProviderMultiPhaseError (580) */
|
4142
5091
|
interface PalletElectionProviderMultiPhaseError extends Enum {
|
4143
5092
|
readonly isPreDispatchEarlySubmission: boolean;
|
4144
5093
|
readonly isPreDispatchWrongWinnerCount: boolean;
|
@@ -4157,7 +5106,7 @@ declare module '@polkadot/types/lookup' {
|
|
4157
5106
|
readonly isPreDispatchDifferentRound: boolean;
|
4158
5107
|
readonly type: 'PreDispatchEarlySubmission' | 'PreDispatchWrongWinnerCount' | 'PreDispatchWeakSubmission' | 'SignedQueueFull' | 'SignedCannotPayDeposit' | 'SignedInvalidWitness' | 'SignedTooMuchWeight' | 'OcwCallWrongEra' | 'MissingSnapshotMetadata' | 'InvalidSubmissionIndex' | 'CallNotAllowed' | 'FallbackFailed' | 'BoundNotMet' | 'TooManyWinners' | 'PreDispatchDifferentRound';
|
4159
5108
|
}
|
4160
|
-
/** @name PalletStakingStakingLedger (
|
5109
|
+
/** @name PalletStakingStakingLedger (581) */
|
4161
5110
|
interface PalletStakingStakingLedger extends Struct {
|
4162
5111
|
readonly stash: AccountId32;
|
4163
5112
|
readonly total: Compact<u128>;
|
@@ -4165,40 +5114,40 @@ declare module '@polkadot/types/lookup' {
|
|
4165
5114
|
readonly unlocking: Vec<PalletStakingUnlockChunk>;
|
4166
5115
|
readonly legacyClaimedRewards: Vec<u32>;
|
4167
5116
|
}
|
4168
|
-
/** @name PalletStakingUnlockChunk (
|
5117
|
+
/** @name PalletStakingUnlockChunk (583) */
|
4169
5118
|
interface PalletStakingUnlockChunk extends Struct {
|
4170
5119
|
readonly value: Compact<u128>;
|
4171
5120
|
readonly era: Compact<u32>;
|
4172
5121
|
}
|
4173
|
-
/** @name PalletStakingNominations (
|
5122
|
+
/** @name PalletStakingNominations (586) */
|
4174
5123
|
interface PalletStakingNominations extends Struct {
|
4175
5124
|
readonly targets: Vec<AccountId32>;
|
4176
5125
|
readonly submittedIn: u32;
|
4177
5126
|
readonly suppressed: bool;
|
4178
5127
|
}
|
4179
|
-
/** @name PalletStakingActiveEraInfo (
|
5128
|
+
/** @name PalletStakingActiveEraInfo (587) */
|
4180
5129
|
interface PalletStakingActiveEraInfo extends Struct {
|
4181
5130
|
readonly index: u32;
|
4182
5131
|
readonly start: Option<u64>;
|
4183
5132
|
}
|
4184
|
-
/** @name SpStakingPagedExposureMetadata (
|
5133
|
+
/** @name SpStakingPagedExposureMetadata (589) */
|
4185
5134
|
interface SpStakingPagedExposureMetadata extends Struct {
|
4186
5135
|
readonly total: Compact<u128>;
|
4187
5136
|
readonly own: Compact<u128>;
|
4188
5137
|
readonly nominatorCount: u32;
|
4189
5138
|
readonly pageCount: u32;
|
4190
5139
|
}
|
4191
|
-
/** @name SpStakingExposurePage (
|
5140
|
+
/** @name SpStakingExposurePage (591) */
|
4192
5141
|
interface SpStakingExposurePage extends Struct {
|
4193
5142
|
readonly pageTotal: Compact<u128>;
|
4194
5143
|
readonly others: Vec<SpStakingIndividualExposure>;
|
4195
5144
|
}
|
4196
|
-
/** @name PalletStakingEraRewardPoints (
|
5145
|
+
/** @name PalletStakingEraRewardPoints (592) */
|
4197
5146
|
interface PalletStakingEraRewardPoints extends Struct {
|
4198
5147
|
readonly total: u32;
|
4199
5148
|
readonly individual: BTreeMap<AccountId32, u32>;
|
4200
5149
|
}
|
4201
|
-
/** @name PalletStakingUnappliedSlash (
|
5150
|
+
/** @name PalletStakingUnappliedSlash (597) */
|
4202
5151
|
interface PalletStakingUnappliedSlash extends Struct {
|
4203
5152
|
readonly validator: AccountId32;
|
4204
5153
|
readonly own: u128;
|
@@ -4206,19 +5155,19 @@ declare module '@polkadot/types/lookup' {
|
|
4206
5155
|
readonly reporters: Vec<AccountId32>;
|
4207
5156
|
readonly payout: u128;
|
4208
5157
|
}
|
4209
|
-
/** @name PalletStakingSlashingSlashingSpans (
|
5158
|
+
/** @name PalletStakingSlashingSlashingSpans (601) */
|
4210
5159
|
interface PalletStakingSlashingSlashingSpans extends Struct {
|
4211
5160
|
readonly spanIndex: u32;
|
4212
5161
|
readonly lastStart: u32;
|
4213
5162
|
readonly lastNonzeroSlash: u32;
|
4214
5163
|
readonly prior: Vec<u32>;
|
4215
5164
|
}
|
4216
|
-
/** @name PalletStakingSlashingSpanRecord (
|
5165
|
+
/** @name PalletStakingSlashingSpanRecord (602) */
|
4217
5166
|
interface PalletStakingSlashingSpanRecord extends Struct {
|
4218
5167
|
readonly slashed: u128;
|
4219
5168
|
readonly paidOut: u128;
|
4220
5169
|
}
|
4221
|
-
/** @name PalletStakingPalletError (
|
5170
|
+
/** @name PalletStakingPalletError (605) */
|
4222
5171
|
interface PalletStakingPalletError extends Enum {
|
4223
5172
|
readonly isNotController: boolean;
|
4224
5173
|
readonly isNotStash: boolean;
|
@@ -4250,10 +5199,10 @@ declare module '@polkadot/types/lookup' {
|
|
4250
5199
|
readonly isRestakeActive: boolean;
|
4251
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';
|
4252
5201
|
}
|
4253
|
-
/** @name SpCoreCryptoKeyTypeId (
|
5202
|
+
/** @name SpCoreCryptoKeyTypeId (609) */
|
4254
5203
|
interface SpCoreCryptoKeyTypeId extends U8aFixed {
|
4255
5204
|
}
|
4256
|
-
/** @name PalletSessionError (
|
5205
|
+
/** @name PalletSessionError (610) */
|
4257
5206
|
interface PalletSessionError extends Enum {
|
4258
5207
|
readonly isInvalidProof: boolean;
|
4259
5208
|
readonly isNoAssociatedValidatorId: boolean;
|
@@ -4262,14 +5211,14 @@ declare module '@polkadot/types/lookup' {
|
|
4262
5211
|
readonly isNoAccount: boolean;
|
4263
5212
|
readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
|
4264
5213
|
}
|
4265
|
-
/** @name PalletTreasuryProposal (
|
5214
|
+
/** @name PalletTreasuryProposal (612) */
|
4266
5215
|
interface PalletTreasuryProposal extends Struct {
|
4267
5216
|
readonly proposer: AccountId32;
|
4268
5217
|
readonly value: u128;
|
4269
5218
|
readonly beneficiary: AccountId32;
|
4270
5219
|
readonly bond: u128;
|
4271
5220
|
}
|
4272
|
-
/** @name PalletTreasurySpendStatus (
|
5221
|
+
/** @name PalletTreasurySpendStatus (614) */
|
4273
5222
|
interface PalletTreasurySpendStatus extends Struct {
|
4274
5223
|
readonly assetKind: Null;
|
4275
5224
|
readonly amount: u128;
|
@@ -4278,7 +5227,7 @@ declare module '@polkadot/types/lookup' {
|
|
4278
5227
|
readonly expireAt: u64;
|
4279
5228
|
readonly status: PalletTreasuryPaymentState;
|
4280
5229
|
}
|
4281
|
-
/** @name PalletTreasuryPaymentState (
|
5230
|
+
/** @name PalletTreasuryPaymentState (615) */
|
4282
5231
|
interface PalletTreasuryPaymentState extends Enum {
|
4283
5232
|
readonly isPending: boolean;
|
4284
5233
|
readonly isAttempted: boolean;
|
@@ -4288,10 +5237,10 @@ declare module '@polkadot/types/lookup' {
|
|
4288
5237
|
readonly isFailed: boolean;
|
4289
5238
|
readonly type: 'Pending' | 'Attempted' | 'Failed';
|
4290
5239
|
}
|
4291
|
-
/** @name FrameSupportPalletId (
|
5240
|
+
/** @name FrameSupportPalletId (616) */
|
4292
5241
|
interface FrameSupportPalletId extends U8aFixed {
|
4293
5242
|
}
|
4294
|
-
/** @name PalletTreasuryError (
|
5243
|
+
/** @name PalletTreasuryError (617) */
|
4295
5244
|
interface PalletTreasuryError extends Enum {
|
4296
5245
|
readonly isInsufficientProposersBalance: boolean;
|
4297
5246
|
readonly isInvalidIndex: boolean;
|
@@ -4307,7 +5256,7 @@ declare module '@polkadot/types/lookup' {
|
|
4307
5256
|
readonly isInconclusive: boolean;
|
4308
5257
|
readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved' | 'FailedToConvertBalance' | 'SpendExpired' | 'EarlyPayout' | 'AlreadyAttempted' | 'PayoutError' | 'NotAttempted' | 'Inconclusive';
|
4309
5258
|
}
|
4310
|
-
/** @name PalletBountiesBounty (
|
5259
|
+
/** @name PalletBountiesBounty (618) */
|
4311
5260
|
interface PalletBountiesBounty extends Struct {
|
4312
5261
|
readonly proposer: AccountId32;
|
4313
5262
|
readonly value: u128;
|
@@ -4316,7 +5265,7 @@ declare module '@polkadot/types/lookup' {
|
|
4316
5265
|
readonly bond: u128;
|
4317
5266
|
readonly status: PalletBountiesBountyStatus;
|
4318
5267
|
}
|
4319
|
-
/** @name PalletBountiesBountyStatus (
|
5268
|
+
/** @name PalletBountiesBountyStatus (619) */
|
4320
5269
|
interface PalletBountiesBountyStatus extends Enum {
|
4321
5270
|
readonly isProposed: boolean;
|
4322
5271
|
readonly isApproved: boolean;
|
@@ -4338,7 +5287,7 @@ declare module '@polkadot/types/lookup' {
|
|
4338
5287
|
} & Struct;
|
4339
5288
|
readonly type: 'Proposed' | 'Approved' | 'Funded' | 'CuratorProposed' | 'Active' | 'PendingPayout';
|
4340
5289
|
}
|
4341
|
-
/** @name PalletBountiesError (
|
5290
|
+
/** @name PalletBountiesError (621) */
|
4342
5291
|
interface PalletBountiesError extends Enum {
|
4343
5292
|
readonly isInsufficientProposersBalance: boolean;
|
4344
5293
|
readonly isInvalidIndex: boolean;
|
@@ -4353,7 +5302,7 @@ declare module '@polkadot/types/lookup' {
|
|
4353
5302
|
readonly isTooManyQueued: boolean;
|
4354
5303
|
readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'ReasonTooBig' | 'UnexpectedStatus' | 'RequireCurator' | 'InvalidValue' | 'InvalidFee' | 'PendingPayout' | 'Premature' | 'HasActiveChildBounty' | 'TooManyQueued';
|
4355
5304
|
}
|
4356
|
-
/** @name PalletChildBountiesChildBounty (
|
5305
|
+
/** @name PalletChildBountiesChildBounty (622) */
|
4357
5306
|
interface PalletChildBountiesChildBounty extends Struct {
|
4358
5307
|
readonly parentBounty: u32;
|
4359
5308
|
readonly value: u128;
|
@@ -4361,7 +5310,7 @@ declare module '@polkadot/types/lookup' {
|
|
4361
5310
|
readonly curatorDeposit: u128;
|
4362
5311
|
readonly status: PalletChildBountiesChildBountyStatus;
|
4363
5312
|
}
|
4364
|
-
/** @name PalletChildBountiesChildBountyStatus (
|
5313
|
+
/** @name PalletChildBountiesChildBountyStatus (623) */
|
4365
5314
|
interface PalletChildBountiesChildBountyStatus extends Enum {
|
4366
5315
|
readonly isAdded: boolean;
|
4367
5316
|
readonly isCuratorProposed: boolean;
|
@@ -4380,14 +5329,14 @@ declare module '@polkadot/types/lookup' {
|
|
4380
5329
|
} & Struct;
|
4381
5330
|
readonly type: 'Added' | 'CuratorProposed' | 'Active' | 'PendingPayout';
|
4382
5331
|
}
|
4383
|
-
/** @name PalletChildBountiesError (
|
5332
|
+
/** @name PalletChildBountiesError (624) */
|
4384
5333
|
interface PalletChildBountiesError extends Enum {
|
4385
5334
|
readonly isParentBountyNotActive: boolean;
|
4386
5335
|
readonly isInsufficientBountyBalance: boolean;
|
4387
5336
|
readonly isTooManyChildBounties: boolean;
|
4388
5337
|
readonly type: 'ParentBountyNotActive' | 'InsufficientBountyBalance' | 'TooManyChildBounties';
|
4389
5338
|
}
|
4390
|
-
/** @name PalletBagsListListNode (
|
5339
|
+
/** @name PalletBagsListListNode (625) */
|
4391
5340
|
interface PalletBagsListListNode extends Struct {
|
4392
5341
|
readonly id: AccountId32;
|
4393
5342
|
readonly prev: Option<AccountId32>;
|
@@ -4395,18 +5344,18 @@ declare module '@polkadot/types/lookup' {
|
|
4395
5344
|
readonly bagUpper: u64;
|
4396
5345
|
readonly score: u64;
|
4397
5346
|
}
|
4398
|
-
/** @name PalletBagsListListBag (
|
5347
|
+
/** @name PalletBagsListListBag (626) */
|
4399
5348
|
interface PalletBagsListListBag extends Struct {
|
4400
5349
|
readonly head: Option<AccountId32>;
|
4401
5350
|
readonly tail: Option<AccountId32>;
|
4402
5351
|
}
|
4403
|
-
/** @name PalletBagsListError (
|
5352
|
+
/** @name PalletBagsListError (628) */
|
4404
5353
|
interface PalletBagsListError extends Enum {
|
4405
5354
|
readonly isList: boolean;
|
4406
5355
|
readonly asList: PalletBagsListListListError;
|
4407
5356
|
readonly type: 'List';
|
4408
5357
|
}
|
4409
|
-
/** @name PalletBagsListListListError (
|
5358
|
+
/** @name PalletBagsListListListError (629) */
|
4410
5359
|
interface PalletBagsListListListError extends Enum {
|
4411
5360
|
readonly isDuplicate: boolean;
|
4412
5361
|
readonly isNotHeavier: boolean;
|
@@ -4414,14 +5363,14 @@ declare module '@polkadot/types/lookup' {
|
|
4414
5363
|
readonly isNodeNotFound: boolean;
|
4415
5364
|
readonly type: 'Duplicate' | 'NotHeavier' | 'NotInSameBag' | 'NodeNotFound';
|
4416
5365
|
}
|
4417
|
-
/** @name PalletNominationPoolsPoolMember (
|
5366
|
+
/** @name PalletNominationPoolsPoolMember (630) */
|
4418
5367
|
interface PalletNominationPoolsPoolMember extends Struct {
|
4419
5368
|
readonly poolId: u32;
|
4420
5369
|
readonly points: u128;
|
4421
5370
|
readonly lastRecordedRewardCounter: u128;
|
4422
5371
|
readonly unbondingEras: BTreeMap<u32, u128>;
|
4423
5372
|
}
|
4424
|
-
/** @name PalletNominationPoolsBondedPoolInner (
|
5373
|
+
/** @name PalletNominationPoolsBondedPoolInner (635) */
|
4425
5374
|
interface PalletNominationPoolsBondedPoolInner extends Struct {
|
4426
5375
|
readonly commission: PalletNominationPoolsCommission;
|
4427
5376
|
readonly memberCounter: u32;
|
@@ -4429,7 +5378,7 @@ declare module '@polkadot/types/lookup' {
|
|
4429
5378
|
readonly roles: PalletNominationPoolsPoolRoles;
|
4430
5379
|
readonly state: PalletNominationPoolsPoolState;
|
4431
5380
|
}
|
4432
|
-
/** @name PalletNominationPoolsCommission (
|
5381
|
+
/** @name PalletNominationPoolsCommission (636) */
|
4433
5382
|
interface PalletNominationPoolsCommission extends Struct {
|
4434
5383
|
readonly current: Option<ITuple<[Perbill, AccountId32]>>;
|
4435
5384
|
readonly max: Option<Perbill>;
|
@@ -4437,14 +5386,14 @@ declare module '@polkadot/types/lookup' {
|
|
4437
5386
|
readonly throttleFrom: Option<u64>;
|
4438
5387
|
readonly claimPermission: Option<PalletNominationPoolsCommissionClaimPermission>;
|
4439
5388
|
}
|
4440
|
-
/** @name PalletNominationPoolsPoolRoles (
|
5389
|
+
/** @name PalletNominationPoolsPoolRoles (639) */
|
4441
5390
|
interface PalletNominationPoolsPoolRoles extends Struct {
|
4442
5391
|
readonly depositor: AccountId32;
|
4443
5392
|
readonly root: Option<AccountId32>;
|
4444
5393
|
readonly nominator: Option<AccountId32>;
|
4445
5394
|
readonly bouncer: Option<AccountId32>;
|
4446
5395
|
}
|
4447
|
-
/** @name PalletNominationPoolsRewardPool (
|
5396
|
+
/** @name PalletNominationPoolsRewardPool (640) */
|
4448
5397
|
interface PalletNominationPoolsRewardPool extends Struct {
|
4449
5398
|
readonly lastRecordedRewardCounter: u128;
|
4450
5399
|
readonly lastRecordedTotalPayouts: u128;
|
@@ -4452,17 +5401,17 @@ declare module '@polkadot/types/lookup' {
|
|
4452
5401
|
readonly totalCommissionPending: u128;
|
4453
5402
|
readonly totalCommissionClaimed: u128;
|
4454
5403
|
}
|
4455
|
-
/** @name PalletNominationPoolsSubPools (
|
5404
|
+
/** @name PalletNominationPoolsSubPools (641) */
|
4456
5405
|
interface PalletNominationPoolsSubPools extends Struct {
|
4457
5406
|
readonly noEra: PalletNominationPoolsUnbondPool;
|
4458
5407
|
readonly withEra: BTreeMap<u32, PalletNominationPoolsUnbondPool>;
|
4459
5408
|
}
|
4460
|
-
/** @name PalletNominationPoolsUnbondPool (
|
5409
|
+
/** @name PalletNominationPoolsUnbondPool (642) */
|
4461
5410
|
interface PalletNominationPoolsUnbondPool extends Struct {
|
4462
5411
|
readonly points: u128;
|
4463
5412
|
readonly balance: u128;
|
4464
5413
|
}
|
4465
|
-
/** @name PalletNominationPoolsError (
|
5414
|
+
/** @name PalletNominationPoolsError (647) */
|
4466
5415
|
interface PalletNominationPoolsError extends Enum {
|
4467
5416
|
readonly isPoolNotFound: boolean;
|
4468
5417
|
readonly isPoolMemberNotFound: boolean;
|
@@ -4499,7 +5448,7 @@ declare module '@polkadot/types/lookup' {
|
|
4499
5448
|
readonly isNothingToAdjust: boolean;
|
4500
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';
|
4501
5450
|
}
|
4502
|
-
/** @name PalletNominationPoolsDefensiveError (
|
5451
|
+
/** @name PalletNominationPoolsDefensiveError (648) */
|
4503
5452
|
interface PalletNominationPoolsDefensiveError extends Enum {
|
4504
5453
|
readonly isNotEnoughSpaceInUnbondPool: boolean;
|
4505
5454
|
readonly isPoolNotFound: boolean;
|
@@ -4508,7 +5457,7 @@ declare module '@polkadot/types/lookup' {
|
|
4508
5457
|
readonly isBondedStashKilledPrematurely: boolean;
|
4509
5458
|
readonly type: 'NotEnoughSpaceInUnbondPool' | 'PoolNotFound' | 'RewardPoolNotFound' | 'SubPoolsNotFound' | 'BondedStashKilledPrematurely';
|
4510
5459
|
}
|
4511
|
-
/** @name PalletSchedulerScheduled (
|
5460
|
+
/** @name PalletSchedulerScheduled (651) */
|
4512
5461
|
interface PalletSchedulerScheduled extends Struct {
|
4513
5462
|
readonly maybeId: Option<U8aFixed>;
|
4514
5463
|
readonly priority: u8;
|
@@ -4516,7 +5465,7 @@ declare module '@polkadot/types/lookup' {
|
|
4516
5465
|
readonly maybePeriodic: Option<ITuple<[u64, u32]>>;
|
4517
5466
|
readonly origin: TangleTestnetRuntimeOriginCaller;
|
4518
5467
|
}
|
4519
|
-
/** @name PalletSchedulerError (
|
5468
|
+
/** @name PalletSchedulerError (653) */
|
4520
5469
|
interface PalletSchedulerError extends Enum {
|
4521
5470
|
readonly isFailedToSchedule: boolean;
|
4522
5471
|
readonly isNotFound: boolean;
|
@@ -4525,7 +5474,7 @@ declare module '@polkadot/types/lookup' {
|
|
4525
5474
|
readonly isNamed: boolean;
|
4526
5475
|
readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange' | 'Named';
|
4527
5476
|
}
|
4528
|
-
/** @name PalletPreimageOldRequestStatus (
|
5477
|
+
/** @name PalletPreimageOldRequestStatus (654) */
|
4529
5478
|
interface PalletPreimageOldRequestStatus extends Enum {
|
4530
5479
|
readonly isUnrequested: boolean;
|
4531
5480
|
readonly asUnrequested: {
|
@@ -4540,7 +5489,7 @@ declare module '@polkadot/types/lookup' {
|
|
4540
5489
|
} & Struct;
|
4541
5490
|
readonly type: 'Unrequested' | 'Requested';
|
4542
5491
|
}
|
4543
|
-
/** @name PalletPreimageRequestStatus (
|
5492
|
+
/** @name PalletPreimageRequestStatus (656) */
|
4544
5493
|
interface PalletPreimageRequestStatus extends Enum {
|
4545
5494
|
readonly isUnrequested: boolean;
|
4546
5495
|
readonly asUnrequested: {
|
@@ -4555,7 +5504,7 @@ declare module '@polkadot/types/lookup' {
|
|
4555
5504
|
} & Struct;
|
4556
5505
|
readonly type: 'Unrequested' | 'Requested';
|
4557
5506
|
}
|
4558
|
-
/** @name PalletPreimageError (
|
5507
|
+
/** @name PalletPreimageError (660) */
|
4559
5508
|
interface PalletPreimageError extends Enum {
|
4560
5509
|
readonly isTooBig: boolean;
|
4561
5510
|
readonly isAlreadyNoted: boolean;
|
@@ -4567,12 +5516,12 @@ declare module '@polkadot/types/lookup' {
|
|
4567
5516
|
readonly isTooFew: boolean;
|
4568
5517
|
readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested' | 'TooMany' | 'TooFew';
|
4569
5518
|
}
|
4570
|
-
/** @name SpStakingOffenceOffenceDetails (
|
5519
|
+
/** @name SpStakingOffenceOffenceDetails (661) */
|
4571
5520
|
interface SpStakingOffenceOffenceDetails extends Struct {
|
4572
5521
|
readonly offender: ITuple<[AccountId32, SpStakingExposure]>;
|
4573
5522
|
readonly reporters: Vec<AccountId32>;
|
4574
5523
|
}
|
4575
|
-
/** @name PalletTxPauseError (
|
5524
|
+
/** @name PalletTxPauseError (663) */
|
4576
5525
|
interface PalletTxPauseError extends Enum {
|
4577
5526
|
readonly isIsPaused: boolean;
|
4578
5527
|
readonly isIsUnpaused: boolean;
|
@@ -4580,30 +5529,30 @@ declare module '@polkadot/types/lookup' {
|
|
4580
5529
|
readonly isNotFound: boolean;
|
4581
5530
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
4582
5531
|
}
|
4583
|
-
/** @name PalletImOnlineError (
|
5532
|
+
/** @name PalletImOnlineError (666) */
|
4584
5533
|
interface PalletImOnlineError extends Enum {
|
4585
5534
|
readonly isInvalidKey: boolean;
|
4586
5535
|
readonly isDuplicatedHeartbeat: boolean;
|
4587
5536
|
readonly type: 'InvalidKey' | 'DuplicatedHeartbeat';
|
4588
5537
|
}
|
4589
|
-
/** @name PalletIdentityRegistration (
|
5538
|
+
/** @name PalletIdentityRegistration (668) */
|
4590
5539
|
interface PalletIdentityRegistration extends Struct {
|
4591
5540
|
readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;
|
4592
5541
|
readonly deposit: u128;
|
4593
5542
|
readonly info: PalletIdentityLegacyIdentityInfo;
|
4594
5543
|
}
|
4595
|
-
/** @name PalletIdentityRegistrarInfo (
|
5544
|
+
/** @name PalletIdentityRegistrarInfo (677) */
|
4596
5545
|
interface PalletIdentityRegistrarInfo extends Struct {
|
4597
5546
|
readonly account: AccountId32;
|
4598
5547
|
readonly fee: u128;
|
4599
5548
|
readonly fields: u64;
|
4600
5549
|
}
|
4601
|
-
/** @name PalletIdentityAuthorityProperties (
|
5550
|
+
/** @name PalletIdentityAuthorityProperties (679) */
|
4602
5551
|
interface PalletIdentityAuthorityProperties extends Struct {
|
4603
5552
|
readonly suffix: Bytes;
|
4604
5553
|
readonly allocation: u32;
|
4605
5554
|
}
|
4606
|
-
/** @name PalletIdentityError (
|
5555
|
+
/** @name PalletIdentityError (682) */
|
4607
5556
|
interface PalletIdentityError extends Enum {
|
4608
5557
|
readonly isTooManySubAccounts: boolean;
|
4609
5558
|
readonly isNotFound: boolean;
|
@@ -4633,19 +5582,19 @@ declare module '@polkadot/types/lookup' {
|
|
4633
5582
|
readonly isNotExpired: boolean;
|
4634
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';
|
4635
5584
|
}
|
4636
|
-
/** @name PalletUtilityError (
|
5585
|
+
/** @name PalletUtilityError (683) */
|
4637
5586
|
interface PalletUtilityError extends Enum {
|
4638
5587
|
readonly isTooManyCalls: boolean;
|
4639
5588
|
readonly type: 'TooManyCalls';
|
4640
5589
|
}
|
4641
|
-
/** @name PalletMultisigMultisig (
|
5590
|
+
/** @name PalletMultisigMultisig (685) */
|
4642
5591
|
interface PalletMultisigMultisig extends Struct {
|
4643
5592
|
readonly when: PalletMultisigTimepoint;
|
4644
5593
|
readonly deposit: u128;
|
4645
5594
|
readonly depositor: AccountId32;
|
4646
5595
|
readonly approvals: Vec<AccountId32>;
|
4647
5596
|
}
|
4648
|
-
/** @name PalletMultisigError (
|
5597
|
+
/** @name PalletMultisigError (686) */
|
4649
5598
|
interface PalletMultisigError extends Enum {
|
4650
5599
|
readonly isMinimumThreshold: boolean;
|
4651
5600
|
readonly isAlreadyApproved: boolean;
|
@@ -4663,7 +5612,7 @@ declare module '@polkadot/types/lookup' {
|
|
4663
5612
|
readonly isAlreadyStored: boolean;
|
4664
5613
|
readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
|
4665
5614
|
}
|
4666
|
-
/** @name FpRpcTransactionStatus (
|
5615
|
+
/** @name FpRpcTransactionStatus (689) */
|
4667
5616
|
interface FpRpcTransactionStatus extends Struct {
|
4668
5617
|
readonly transactionHash: H256;
|
4669
5618
|
readonly transactionIndex: u32;
|
@@ -4673,10 +5622,10 @@ declare module '@polkadot/types/lookup' {
|
|
4673
5622
|
readonly logs: Vec<EthereumLog>;
|
4674
5623
|
readonly logsBloom: EthbloomBloom;
|
4675
5624
|
}
|
4676
|
-
/** @name EthbloomBloom (
|
5625
|
+
/** @name EthbloomBloom (692) */
|
4677
5626
|
interface EthbloomBloom extends U8aFixed {
|
4678
5627
|
}
|
4679
|
-
/** @name EthereumReceiptReceiptV3 (
|
5628
|
+
/** @name EthereumReceiptReceiptV3 (694) */
|
4680
5629
|
interface EthereumReceiptReceiptV3 extends Enum {
|
4681
5630
|
readonly isLegacy: boolean;
|
4682
5631
|
readonly asLegacy: EthereumReceiptEip658ReceiptData;
|
@@ -4686,20 +5635,20 @@ declare module '@polkadot/types/lookup' {
|
|
4686
5635
|
readonly asEip1559: EthereumReceiptEip658ReceiptData;
|
4687
5636
|
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
|
4688
5637
|
}
|
4689
|
-
/** @name EthereumReceiptEip658ReceiptData (
|
5638
|
+
/** @name EthereumReceiptEip658ReceiptData (695) */
|
4690
5639
|
interface EthereumReceiptEip658ReceiptData extends Struct {
|
4691
5640
|
readonly statusCode: u8;
|
4692
5641
|
readonly usedGas: U256;
|
4693
5642
|
readonly logsBloom: EthbloomBloom;
|
4694
5643
|
readonly logs: Vec<EthereumLog>;
|
4695
5644
|
}
|
4696
|
-
/** @name EthereumBlock (
|
5645
|
+
/** @name EthereumBlock (696) */
|
4697
5646
|
interface EthereumBlock extends Struct {
|
4698
5647
|
readonly header: EthereumHeader;
|
4699
5648
|
readonly transactions: Vec<EthereumTransactionTransactionV2>;
|
4700
5649
|
readonly ommers: Vec<EthereumHeader>;
|
4701
5650
|
}
|
4702
|
-
/** @name EthereumHeader (
|
5651
|
+
/** @name EthereumHeader (697) */
|
4703
5652
|
interface EthereumHeader extends Struct {
|
4704
5653
|
readonly parentHash: H256;
|
4705
5654
|
readonly ommersHash: H256;
|
@@ -4717,21 +5666,21 @@ declare module '@polkadot/types/lookup' {
|
|
4717
5666
|
readonly mixHash: H256;
|
4718
5667
|
readonly nonce: EthereumTypesHashH64;
|
4719
5668
|
}
|
4720
|
-
/** @name EthereumTypesHashH64 (
|
5669
|
+
/** @name EthereumTypesHashH64 (698) */
|
4721
5670
|
interface EthereumTypesHashH64 extends U8aFixed {
|
4722
5671
|
}
|
4723
|
-
/** @name PalletEthereumError (
|
5672
|
+
/** @name PalletEthereumError (703) */
|
4724
5673
|
interface PalletEthereumError extends Enum {
|
4725
5674
|
readonly isInvalidSignature: boolean;
|
4726
5675
|
readonly isPreLogExists: boolean;
|
4727
5676
|
readonly type: 'InvalidSignature' | 'PreLogExists';
|
4728
5677
|
}
|
4729
|
-
/** @name PalletEvmCodeMetadata (
|
5678
|
+
/** @name PalletEvmCodeMetadata (704) */
|
4730
5679
|
interface PalletEvmCodeMetadata extends Struct {
|
4731
5680
|
readonly size_: u64;
|
4732
5681
|
readonly hash_: H256;
|
4733
5682
|
}
|
4734
|
-
/** @name PalletEvmError (
|
5683
|
+
/** @name PalletEvmError (706) */
|
4735
5684
|
interface PalletEvmError extends Enum {
|
4736
5685
|
readonly isBalanceLow: boolean;
|
4737
5686
|
readonly isFeeOverflow: boolean;
|
@@ -4748,12 +5697,12 @@ declare module '@polkadot/types/lookup' {
|
|
4748
5697
|
readonly isUndefined: boolean;
|
4749
5698
|
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'InvalidChainId' | 'InvalidSignature' | 'Reentrancy' | 'TransactionMustComeFromEOA' | 'Undefined';
|
4750
5699
|
}
|
4751
|
-
/** @name PalletHotfixSufficientsError (
|
5700
|
+
/** @name PalletHotfixSufficientsError (707) */
|
4752
5701
|
interface PalletHotfixSufficientsError extends Enum {
|
4753
5702
|
readonly isMaxAddressCountExceeded: boolean;
|
4754
5703
|
readonly type: 'MaxAddressCountExceeded';
|
4755
5704
|
}
|
4756
|
-
/** @name PalletAirdropClaimsError (
|
5705
|
+
/** @name PalletAirdropClaimsError (709) */
|
4757
5706
|
interface PalletAirdropClaimsError extends Enum {
|
4758
5707
|
readonly isInvalidEthereumSignature: boolean;
|
4759
5708
|
readonly isInvalidNativeSignature: boolean;
|
@@ -4765,7 +5714,7 @@ declare module '@polkadot/types/lookup' {
|
|
4765
5714
|
readonly isVestedBalanceExists: boolean;
|
4766
5715
|
readonly type: 'InvalidEthereumSignature' | 'InvalidNativeSignature' | 'InvalidNativeAccount' | 'SignerHasNoClaim' | 'SenderHasNoClaim' | 'PotUnderflow' | 'InvalidStatement' | 'VestedBalanceExists';
|
4767
5716
|
}
|
4768
|
-
/** @name PalletRolesRestakingLedger (
|
5717
|
+
/** @name PalletRolesRestakingLedger (710) */
|
4769
5718
|
interface PalletRolesRestakingLedger extends Struct {
|
4770
5719
|
readonly stash: AccountId32;
|
4771
5720
|
readonly total: Compact<u128>;
|
@@ -4776,12 +5725,12 @@ declare module '@polkadot/types/lookup' {
|
|
4776
5725
|
readonly claimedRewards: Vec<u32>;
|
4777
5726
|
readonly maxActiveServices: u32;
|
4778
5727
|
}
|
4779
|
-
/** @name PalletRolesUnlockChunk (
|
5728
|
+
/** @name PalletRolesUnlockChunk (716) */
|
4780
5729
|
interface PalletRolesUnlockChunk extends Struct {
|
4781
5730
|
readonly value: Compact<u128>;
|
4782
5731
|
readonly era: Compact<u32>;
|
4783
5732
|
}
|
4784
|
-
/** @name PalletRolesError (
|
5733
|
+
/** @name PalletRolesError (720) */
|
4785
5734
|
interface PalletRolesError extends Enum {
|
4786
5735
|
readonly isNotValidator: boolean;
|
4787
5736
|
readonly isHasRoleAssigned: boolean;
|
@@ -4804,7 +5753,7 @@ declare module '@polkadot/types/lookup' {
|
|
4804
5753
|
readonly isNoMoreChunks: boolean;
|
4805
5754
|
readonly type: 'NotValidator' | 'HasRoleAssigned' | 'RoleNotAssigned' | 'MaxRoles' | 'RoleCannotBeRemoved' | 'RestakingAmountCannotBeUpdated' | 'ExceedsMaxRestakeValue' | 'InsufficientRestakingBond' | 'ProfileUpdateFailed' | 'ProfileAlreadyExists' | 'NoProfileFound' | 'ProfileDeleteRequestFailed' | 'SessionKeysNotProvided' | 'KeySizeExceeded' | 'CannotGetCurrentEra' | 'InvalidEraToReward' | 'BoundNotMet' | 'AlreadyClaimed' | 'NoMoreChunks';
|
4806
5755
|
}
|
4807
|
-
/** @name TanglePrimitivesJobsPhaseResult (
|
5756
|
+
/** @name TanglePrimitivesJobsPhaseResult (721) */
|
4808
5757
|
interface TanglePrimitivesJobsPhaseResult extends Struct {
|
4809
5758
|
readonly owner: AccountId32;
|
4810
5759
|
readonly result: TanglePrimitivesJobsJobResult;
|
@@ -4812,7 +5761,7 @@ declare module '@polkadot/types/lookup' {
|
|
4812
5761
|
readonly permittedCaller: Option<AccountId32>;
|
4813
5762
|
readonly jobType: TanglePrimitivesJobsJobType;
|
4814
5763
|
}
|
4815
|
-
/** @name PalletJobsModuleError (
|
5764
|
+
/** @name PalletJobsModuleError (723) */
|
4816
5765
|
interface PalletJobsModuleError extends Enum {
|
4817
5766
|
readonly isInvalidJobPhase: boolean;
|
4818
5767
|
readonly isInvalidValidator: boolean;
|
@@ -4834,7 +5783,7 @@ declare module '@polkadot/types/lookup' {
|
|
4834
5783
|
readonly isTooManyJobsForValidator: boolean;
|
4835
5784
|
readonly type: 'InvalidJobPhase' | 'InvalidValidator' | 'InvalidJobParams' | 'PreviousResultNotFound' | 'ResultExpired' | 'JobAlreadyExpired' | 'JobNotFound' | 'PhaseOneResultNotFound' | 'NoRewards' | 'NotEnoughValidators' | 'EmptyResult' | 'EmptyJob' | 'ValidatorRoleKeyNotFound' | 'ResultNotExpectedType' | 'NoPermission' | 'TooManyParticipants' | 'ExceedsMaxKeySize' | 'TooManyJobsForValidator';
|
4836
5785
|
}
|
4837
|
-
/** @name PalletDkgError (
|
5786
|
+
/** @name PalletDkgError (724) */
|
4838
5787
|
interface PalletDkgError extends Enum {
|
4839
5788
|
readonly isCannotRetreiveSigner: boolean;
|
4840
5789
|
readonly isNotEnoughSigners: boolean;
|
@@ -4886,26 +5835,26 @@ declare module '@polkadot/types/lookup' {
|
|
4886
5835
|
readonly isMalformedStarkSignature: boolean;
|
4887
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';
|
4888
5837
|
}
|
4889
|
-
/** @name PalletZksaasError (
|
5838
|
+
/** @name PalletZksaasError (725) */
|
4890
5839
|
interface PalletZksaasError extends Enum {
|
4891
5840
|
readonly isInvalidJobType: boolean;
|
4892
5841
|
readonly isInvalidProof: boolean;
|
4893
5842
|
readonly isMalformedProof: boolean;
|
4894
5843
|
readonly type: 'InvalidJobType' | 'InvalidProof' | 'MalformedProof';
|
4895
5844
|
}
|
4896
|
-
/** @name PalletProxyProxyDefinition (
|
5845
|
+
/** @name PalletProxyProxyDefinition (728) */
|
4897
5846
|
interface PalletProxyProxyDefinition extends Struct {
|
4898
5847
|
readonly delegate: AccountId32;
|
4899
5848
|
readonly proxyType: TangleTestnetRuntimeProxyType;
|
4900
5849
|
readonly delay: u64;
|
4901
5850
|
}
|
4902
|
-
/** @name PalletProxyAnnouncement (
|
5851
|
+
/** @name PalletProxyAnnouncement (732) */
|
4903
5852
|
interface PalletProxyAnnouncement extends Struct {
|
4904
5853
|
readonly real: AccountId32;
|
4905
5854
|
readonly callHash: H256;
|
4906
5855
|
readonly height: u64;
|
4907
5856
|
}
|
4908
|
-
/** @name PalletProxyError (
|
5857
|
+
/** @name PalletProxyError (734) */
|
4909
5858
|
interface PalletProxyError extends Enum {
|
4910
5859
|
readonly isTooMany: boolean;
|
4911
5860
|
readonly isNotFound: boolean;
|
@@ -4917,22 +5866,197 @@ declare module '@polkadot/types/lookup' {
|
|
4917
5866
|
readonly isNoSelfProxy: boolean;
|
4918
5867
|
readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
|
4919
5868
|
}
|
4920
|
-
/** @name
|
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) */
|
4921
6035
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
4922
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
6036
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (776) */
|
4923
6037
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
4924
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
6038
|
+
/** @name FrameSystemExtensionsCheckTxVersion (777) */
|
4925
6039
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
4926
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
6040
|
+
/** @name FrameSystemExtensionsCheckGenesis (778) */
|
4927
6041
|
type FrameSystemExtensionsCheckGenesis = Null;
|
4928
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
6042
|
+
/** @name FrameSystemExtensionsCheckNonce (781) */
|
4929
6043
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
|
4930
6044
|
}
|
4931
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
6045
|
+
/** @name FrameSystemExtensionsCheckWeight (782) */
|
4932
6046
|
type FrameSystemExtensionsCheckWeight = Null;
|
4933
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
6047
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (783) */
|
4934
6048
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
|
4935
6049
|
}
|
4936
|
-
/** @name
|
6050
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (784) */
|
6051
|
+
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
6052
|
+
readonly mode: FrameMetadataHashExtensionMode;
|
6053
|
+
}
|
6054
|
+
/** @name FrameMetadataHashExtensionMode (785) */
|
6055
|
+
interface FrameMetadataHashExtensionMode extends Enum {
|
6056
|
+
readonly isDisabled: boolean;
|
6057
|
+
readonly isEnabled: boolean;
|
6058
|
+
readonly type: 'Disabled' | 'Enabled';
|
6059
|
+
}
|
6060
|
+
/** @name TangleTestnetRuntimeRuntime (787) */
|
4937
6061
|
type TangleTestnetRuntimeRuntime = Null;
|
4938
6062
|
}
|