@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
@@ -202,7 +202,145 @@ declare module '@polkadot/types/lookup' {
|
|
202
202
|
readonly type: 'Sudid' | 'KeyChanged' | 'KeyRemoved' | 'SudoAsDone';
|
203
203
|
}
|
204
204
|
|
205
|
-
/** @name
|
205
|
+
/** @name PalletAssetsEvent (35) */
|
206
|
+
interface PalletAssetsEvent extends Enum {
|
207
|
+
readonly isCreated: boolean;
|
208
|
+
readonly asCreated: {
|
209
|
+
readonly assetId: u128;
|
210
|
+
readonly creator: AccountId32;
|
211
|
+
readonly owner: AccountId32;
|
212
|
+
} & Struct;
|
213
|
+
readonly isIssued: boolean;
|
214
|
+
readonly asIssued: {
|
215
|
+
readonly assetId: u128;
|
216
|
+
readonly owner: AccountId32;
|
217
|
+
readonly amount: u128;
|
218
|
+
} & Struct;
|
219
|
+
readonly isTransferred: boolean;
|
220
|
+
readonly asTransferred: {
|
221
|
+
readonly assetId: u128;
|
222
|
+
readonly from: AccountId32;
|
223
|
+
readonly to: AccountId32;
|
224
|
+
readonly amount: u128;
|
225
|
+
} & Struct;
|
226
|
+
readonly isBurned: boolean;
|
227
|
+
readonly asBurned: {
|
228
|
+
readonly assetId: u128;
|
229
|
+
readonly owner: AccountId32;
|
230
|
+
readonly balance: u128;
|
231
|
+
} & Struct;
|
232
|
+
readonly isTeamChanged: boolean;
|
233
|
+
readonly asTeamChanged: {
|
234
|
+
readonly assetId: u128;
|
235
|
+
readonly issuer: AccountId32;
|
236
|
+
readonly admin: AccountId32;
|
237
|
+
readonly freezer: AccountId32;
|
238
|
+
} & Struct;
|
239
|
+
readonly isOwnerChanged: boolean;
|
240
|
+
readonly asOwnerChanged: {
|
241
|
+
readonly assetId: u128;
|
242
|
+
readonly owner: AccountId32;
|
243
|
+
} & Struct;
|
244
|
+
readonly isFrozen: boolean;
|
245
|
+
readonly asFrozen: {
|
246
|
+
readonly assetId: u128;
|
247
|
+
readonly who: AccountId32;
|
248
|
+
} & Struct;
|
249
|
+
readonly isThawed: boolean;
|
250
|
+
readonly asThawed: {
|
251
|
+
readonly assetId: u128;
|
252
|
+
readonly who: AccountId32;
|
253
|
+
} & Struct;
|
254
|
+
readonly isAssetFrozen: boolean;
|
255
|
+
readonly asAssetFrozen: {
|
256
|
+
readonly assetId: u128;
|
257
|
+
} & Struct;
|
258
|
+
readonly isAssetThawed: boolean;
|
259
|
+
readonly asAssetThawed: {
|
260
|
+
readonly assetId: u128;
|
261
|
+
} & Struct;
|
262
|
+
readonly isAccountsDestroyed: boolean;
|
263
|
+
readonly asAccountsDestroyed: {
|
264
|
+
readonly assetId: u128;
|
265
|
+
readonly accountsDestroyed: u32;
|
266
|
+
readonly accountsRemaining: u32;
|
267
|
+
} & Struct;
|
268
|
+
readonly isApprovalsDestroyed: boolean;
|
269
|
+
readonly asApprovalsDestroyed: {
|
270
|
+
readonly assetId: u128;
|
271
|
+
readonly approvalsDestroyed: u32;
|
272
|
+
readonly approvalsRemaining: u32;
|
273
|
+
} & Struct;
|
274
|
+
readonly isDestructionStarted: boolean;
|
275
|
+
readonly asDestructionStarted: {
|
276
|
+
readonly assetId: u128;
|
277
|
+
} & Struct;
|
278
|
+
readonly isDestroyed: boolean;
|
279
|
+
readonly asDestroyed: {
|
280
|
+
readonly assetId: u128;
|
281
|
+
} & Struct;
|
282
|
+
readonly isForceCreated: boolean;
|
283
|
+
readonly asForceCreated: {
|
284
|
+
readonly assetId: u128;
|
285
|
+
readonly owner: AccountId32;
|
286
|
+
} & Struct;
|
287
|
+
readonly isMetadataSet: boolean;
|
288
|
+
readonly asMetadataSet: {
|
289
|
+
readonly assetId: u128;
|
290
|
+
readonly name: Bytes;
|
291
|
+
readonly symbol: Bytes;
|
292
|
+
readonly decimals: u8;
|
293
|
+
readonly isFrozen: bool;
|
294
|
+
} & Struct;
|
295
|
+
readonly isMetadataCleared: boolean;
|
296
|
+
readonly asMetadataCleared: {
|
297
|
+
readonly assetId: u128;
|
298
|
+
} & Struct;
|
299
|
+
readonly isApprovedTransfer: boolean;
|
300
|
+
readonly asApprovedTransfer: {
|
301
|
+
readonly assetId: u128;
|
302
|
+
readonly source: AccountId32;
|
303
|
+
readonly delegate: AccountId32;
|
304
|
+
readonly amount: u128;
|
305
|
+
} & Struct;
|
306
|
+
readonly isApprovalCancelled: boolean;
|
307
|
+
readonly asApprovalCancelled: {
|
308
|
+
readonly assetId: u128;
|
309
|
+
readonly owner: AccountId32;
|
310
|
+
readonly delegate: AccountId32;
|
311
|
+
} & Struct;
|
312
|
+
readonly isTransferredApproved: boolean;
|
313
|
+
readonly asTransferredApproved: {
|
314
|
+
readonly assetId: u128;
|
315
|
+
readonly owner: AccountId32;
|
316
|
+
readonly delegate: AccountId32;
|
317
|
+
readonly destination: AccountId32;
|
318
|
+
readonly amount: u128;
|
319
|
+
} & Struct;
|
320
|
+
readonly isAssetStatusChanged: boolean;
|
321
|
+
readonly asAssetStatusChanged: {
|
322
|
+
readonly assetId: u128;
|
323
|
+
} & Struct;
|
324
|
+
readonly isAssetMinBalanceChanged: boolean;
|
325
|
+
readonly asAssetMinBalanceChanged: {
|
326
|
+
readonly assetId: u128;
|
327
|
+
readonly newMinBalance: u128;
|
328
|
+
} & Struct;
|
329
|
+
readonly isTouched: boolean;
|
330
|
+
readonly asTouched: {
|
331
|
+
readonly assetId: u128;
|
332
|
+
readonly who: AccountId32;
|
333
|
+
readonly depositor: AccountId32;
|
334
|
+
} & Struct;
|
335
|
+
readonly isBlocked: boolean;
|
336
|
+
readonly asBlocked: {
|
337
|
+
readonly assetId: u128;
|
338
|
+
readonly who: AccountId32;
|
339
|
+
} & Struct;
|
340
|
+
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';
|
341
|
+
}
|
342
|
+
|
343
|
+
/** @name PalletBalancesEvent (36) */
|
206
344
|
interface PalletBalancesEvent extends Enum {
|
207
345
|
readonly isEndowed: boolean;
|
208
346
|
readonly asEndowed: {
|
@@ -317,14 +455,14 @@ declare module '@polkadot/types/lookup' {
|
|
317
455
|
readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed' | 'Minted' | 'Burned' | 'Suspended' | 'Restored' | 'Upgraded' | 'Issued' | 'Rescinded' | 'Locked' | 'Unlocked' | 'Frozen' | 'Thawed' | 'TotalIssuanceForced';
|
318
456
|
}
|
319
457
|
|
320
|
-
/** @name FrameSupportTokensMiscBalanceStatus (
|
458
|
+
/** @name FrameSupportTokensMiscBalanceStatus (37) */
|
321
459
|
interface FrameSupportTokensMiscBalanceStatus extends Enum {
|
322
460
|
readonly isFree: boolean;
|
323
461
|
readonly isReserved: boolean;
|
324
462
|
readonly type: 'Free' | 'Reserved';
|
325
463
|
}
|
326
464
|
|
327
|
-
/** @name PalletTransactionPaymentEvent (
|
465
|
+
/** @name PalletTransactionPaymentEvent (38) */
|
328
466
|
interface PalletTransactionPaymentEvent extends Enum {
|
329
467
|
readonly isTransactionFeePaid: boolean;
|
330
468
|
readonly asTransactionFeePaid: {
|
@@ -335,7 +473,7 @@ declare module '@polkadot/types/lookup' {
|
|
335
473
|
readonly type: 'TransactionFeePaid';
|
336
474
|
}
|
337
475
|
|
338
|
-
/** @name PalletGrandpaEvent (
|
476
|
+
/** @name PalletGrandpaEvent (39) */
|
339
477
|
interface PalletGrandpaEvent extends Enum {
|
340
478
|
readonly isNewAuthorities: boolean;
|
341
479
|
readonly asNewAuthorities: {
|
@@ -346,13 +484,13 @@ declare module '@polkadot/types/lookup' {
|
|
346
484
|
readonly type: 'NewAuthorities' | 'Paused' | 'Resumed';
|
347
485
|
}
|
348
486
|
|
349
|
-
/** @name SpConsensusGrandpaAppPublic (
|
487
|
+
/** @name SpConsensusGrandpaAppPublic (42) */
|
350
488
|
interface SpConsensusGrandpaAppPublic extends SpCoreEd25519Public {}
|
351
489
|
|
352
|
-
/** @name SpCoreEd25519Public (
|
490
|
+
/** @name SpCoreEd25519Public (43) */
|
353
491
|
interface SpCoreEd25519Public extends U8aFixed {}
|
354
492
|
|
355
|
-
/** @name PalletIndicesEvent (
|
493
|
+
/** @name PalletIndicesEvent (44) */
|
356
494
|
interface PalletIndicesEvent extends Enum {
|
357
495
|
readonly isIndexAssigned: boolean;
|
358
496
|
readonly asIndexAssigned: {
|
@@ -371,7 +509,7 @@ declare module '@polkadot/types/lookup' {
|
|
371
509
|
readonly type: 'IndexAssigned' | 'IndexFreed' | 'IndexFrozen';
|
372
510
|
}
|
373
511
|
|
374
|
-
/** @name PalletDemocracyEvent (
|
512
|
+
/** @name PalletDemocracyEvent (45) */
|
375
513
|
interface PalletDemocracyEvent extends Enum {
|
376
514
|
readonly isProposed: boolean;
|
377
515
|
readonly asProposed: {
|
@@ -454,7 +592,7 @@ declare module '@polkadot/types/lookup' {
|
|
454
592
|
readonly type: 'Proposed' | 'Tabled' | 'ExternalTabled' | 'Started' | 'Passed' | 'NotPassed' | 'Cancelled' | 'Delegated' | 'Undelegated' | 'Vetoed' | 'Blacklisted' | 'Voted' | 'Seconded' | 'ProposalCanceled' | 'MetadataSet' | 'MetadataCleared' | 'MetadataTransferred';
|
455
593
|
}
|
456
594
|
|
457
|
-
/** @name PalletDemocracyVoteThreshold (
|
595
|
+
/** @name PalletDemocracyVoteThreshold (46) */
|
458
596
|
interface PalletDemocracyVoteThreshold extends Enum {
|
459
597
|
readonly isSuperMajorityApprove: boolean;
|
460
598
|
readonly isSuperMajorityAgainst: boolean;
|
@@ -462,7 +600,7 @@ declare module '@polkadot/types/lookup' {
|
|
462
600
|
readonly type: 'SuperMajorityApprove' | 'SuperMajorityAgainst' | 'SimpleMajority';
|
463
601
|
}
|
464
602
|
|
465
|
-
/** @name PalletDemocracyVoteAccountVote (
|
603
|
+
/** @name PalletDemocracyVoteAccountVote (47) */
|
466
604
|
interface PalletDemocracyVoteAccountVote extends Enum {
|
467
605
|
readonly isStandard: boolean;
|
468
606
|
readonly asStandard: {
|
@@ -477,7 +615,7 @@ declare module '@polkadot/types/lookup' {
|
|
477
615
|
readonly type: 'Standard' | 'Split';
|
478
616
|
}
|
479
617
|
|
480
|
-
/** @name PalletDemocracyMetadataOwner (
|
618
|
+
/** @name PalletDemocracyMetadataOwner (49) */
|
481
619
|
interface PalletDemocracyMetadataOwner extends Enum {
|
482
620
|
readonly isExternal: boolean;
|
483
621
|
readonly isProposal: boolean;
|
@@ -487,7 +625,7 @@ declare module '@polkadot/types/lookup' {
|
|
487
625
|
readonly type: 'External' | 'Proposal' | 'Referendum';
|
488
626
|
}
|
489
627
|
|
490
|
-
/** @name PalletCollectiveEvent (
|
628
|
+
/** @name PalletCollectiveEvent (50) */
|
491
629
|
interface PalletCollectiveEvent extends Enum {
|
492
630
|
readonly isProposed: boolean;
|
493
631
|
readonly asProposed: {
|
@@ -531,7 +669,7 @@ declare module '@polkadot/types/lookup' {
|
|
531
669
|
readonly type: 'Proposed' | 'Voted' | 'Approved' | 'Disapproved' | 'Executed' | 'MemberExecuted' | 'Closed';
|
532
670
|
}
|
533
671
|
|
534
|
-
/** @name PalletVestingEvent (
|
672
|
+
/** @name PalletVestingEvent (51) */
|
535
673
|
interface PalletVestingEvent extends Enum {
|
536
674
|
readonly isVestingUpdated: boolean;
|
537
675
|
readonly asVestingUpdated: {
|
@@ -545,7 +683,7 @@ declare module '@polkadot/types/lookup' {
|
|
545
683
|
readonly type: 'VestingUpdated' | 'VestingCompleted';
|
546
684
|
}
|
547
685
|
|
548
|
-
/** @name PalletElectionsPhragmenEvent (
|
686
|
+
/** @name PalletElectionsPhragmenEvent (52) */
|
549
687
|
interface PalletElectionsPhragmenEvent extends Enum {
|
550
688
|
readonly isNewTerm: boolean;
|
551
689
|
readonly asNewTerm: {
|
@@ -574,7 +712,7 @@ declare module '@polkadot/types/lookup' {
|
|
574
712
|
readonly type: 'NewTerm' | 'EmptyTerm' | 'ElectionError' | 'MemberKicked' | 'Renounced' | 'CandidateSlashed' | 'SeatHolderSlashed';
|
575
713
|
}
|
576
714
|
|
577
|
-
/** @name PalletElectionProviderMultiPhaseEvent (
|
715
|
+
/** @name PalletElectionProviderMultiPhaseEvent (55) */
|
578
716
|
interface PalletElectionProviderMultiPhaseEvent extends Enum {
|
579
717
|
readonly isSolutionStored: boolean;
|
580
718
|
readonly asSolutionStored: {
|
@@ -607,7 +745,7 @@ declare module '@polkadot/types/lookup' {
|
|
607
745
|
readonly type: 'SolutionStored' | 'ElectionFinalized' | 'ElectionFailed' | 'Rewarded' | 'Slashed' | 'PhaseTransitioned';
|
608
746
|
}
|
609
747
|
|
610
|
-
/** @name PalletElectionProviderMultiPhaseElectionCompute (
|
748
|
+
/** @name PalletElectionProviderMultiPhaseElectionCompute (56) */
|
611
749
|
interface PalletElectionProviderMultiPhaseElectionCompute extends Enum {
|
612
750
|
readonly isOnChain: boolean;
|
613
751
|
readonly isSigned: boolean;
|
@@ -617,14 +755,14 @@ declare module '@polkadot/types/lookup' {
|
|
617
755
|
readonly type: 'OnChain' | 'Signed' | 'Unsigned' | 'Fallback' | 'Emergency';
|
618
756
|
}
|
619
757
|
|
620
|
-
/** @name SpNposElectionsElectionScore (
|
758
|
+
/** @name SpNposElectionsElectionScore (57) */
|
621
759
|
interface SpNposElectionsElectionScore extends Struct {
|
622
760
|
readonly minimalStake: u128;
|
623
761
|
readonly sumStake: u128;
|
624
762
|
readonly sumStakeSquared: u128;
|
625
763
|
}
|
626
764
|
|
627
|
-
/** @name PalletElectionProviderMultiPhasePhase (
|
765
|
+
/** @name PalletElectionProviderMultiPhasePhase (58) */
|
628
766
|
interface PalletElectionProviderMultiPhasePhase extends Enum {
|
629
767
|
readonly isOff: boolean;
|
630
768
|
readonly isSigned: boolean;
|
@@ -634,7 +772,7 @@ declare module '@polkadot/types/lookup' {
|
|
634
772
|
readonly type: 'Off' | 'Signed' | 'Unsigned' | 'Emergency';
|
635
773
|
}
|
636
774
|
|
637
|
-
/** @name PalletStakingPalletEvent (
|
775
|
+
/** @name PalletStakingPalletEvent (60) */
|
638
776
|
interface PalletStakingPalletEvent extends Enum {
|
639
777
|
readonly isEraPaid: boolean;
|
640
778
|
readonly asEraPaid: {
|
@@ -714,7 +852,7 @@ declare module '@polkadot/types/lookup' {
|
|
714
852
|
readonly type: 'EraPaid' | 'Rewarded' | 'Slashed' | 'SlashReported' | 'OldSlashingReportDiscarded' | 'StakersElected' | 'Bonded' | 'Unbonded' | 'Withdrawn' | 'Kicked' | 'StakingElectionFailed' | 'Chilled' | 'PayoutStarted' | 'ValidatorPrefsSet' | 'SnapshotVotersSizeExceeded' | 'SnapshotTargetsSizeExceeded' | 'ForceEra';
|
715
853
|
}
|
716
854
|
|
717
|
-
/** @name PalletStakingRewardDestination (
|
855
|
+
/** @name PalletStakingRewardDestination (61) */
|
718
856
|
interface PalletStakingRewardDestination extends Enum {
|
719
857
|
readonly isStaked: boolean;
|
720
858
|
readonly isStash: boolean;
|
@@ -725,13 +863,13 @@ declare module '@polkadot/types/lookup' {
|
|
725
863
|
readonly type: 'Staked' | 'Stash' | 'Controller' | 'Account' | 'None';
|
726
864
|
}
|
727
865
|
|
728
|
-
/** @name PalletStakingValidatorPrefs (
|
866
|
+
/** @name PalletStakingValidatorPrefs (63) */
|
729
867
|
interface PalletStakingValidatorPrefs extends Struct {
|
730
868
|
readonly commission: Compact<Perbill>;
|
731
869
|
readonly blocked: bool;
|
732
870
|
}
|
733
871
|
|
734
|
-
/** @name PalletStakingForcing (
|
872
|
+
/** @name PalletStakingForcing (65) */
|
735
873
|
interface PalletStakingForcing extends Enum {
|
736
874
|
readonly isNotForcing: boolean;
|
737
875
|
readonly isForceNew: boolean;
|
@@ -740,7 +878,7 @@ declare module '@polkadot/types/lookup' {
|
|
740
878
|
readonly type: 'NotForcing' | 'ForceNew' | 'ForceNone' | 'ForceAlways';
|
741
879
|
}
|
742
880
|
|
743
|
-
/** @name PalletSessionEvent (
|
881
|
+
/** @name PalletSessionEvent (66) */
|
744
882
|
interface PalletSessionEvent extends Enum {
|
745
883
|
readonly isNewSession: boolean;
|
746
884
|
readonly asNewSession: {
|
@@ -749,7 +887,7 @@ declare module '@polkadot/types/lookup' {
|
|
749
887
|
readonly type: 'NewSession';
|
750
888
|
}
|
751
889
|
|
752
|
-
/** @name PalletTreasuryEvent (
|
890
|
+
/** @name PalletTreasuryEvent (67) */
|
753
891
|
interface PalletTreasuryEvent extends Enum {
|
754
892
|
readonly isProposed: boolean;
|
755
893
|
readonly asProposed: {
|
@@ -823,7 +961,7 @@ declare module '@polkadot/types/lookup' {
|
|
823
961
|
readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved' | 'UpdatedInactive' | 'AssetSpendApproved' | 'AssetSpendVoided' | 'Paid' | 'PaymentFailed' | 'SpendProcessed';
|
824
962
|
}
|
825
963
|
|
826
|
-
/** @name PalletBountiesEvent (
|
964
|
+
/** @name PalletBountiesEvent (68) */
|
827
965
|
interface PalletBountiesEvent extends Enum {
|
828
966
|
readonly isBountyProposed: boolean;
|
829
967
|
readonly asBountyProposed: {
|
@@ -878,7 +1016,7 @@ declare module '@polkadot/types/lookup' {
|
|
878
1016
|
readonly type: 'BountyProposed' | 'BountyRejected' | 'BountyBecameActive' | 'BountyAwarded' | 'BountyClaimed' | 'BountyCanceled' | 'BountyExtended' | 'BountyApproved' | 'CuratorProposed' | 'CuratorUnassigned' | 'CuratorAccepted';
|
879
1017
|
}
|
880
1018
|
|
881
|
-
/** @name PalletChildBountiesEvent (
|
1019
|
+
/** @name PalletChildBountiesEvent (69) */
|
882
1020
|
interface PalletChildBountiesEvent extends Enum {
|
883
1021
|
readonly isAdded: boolean;
|
884
1022
|
readonly asAdded: {
|
@@ -906,7 +1044,7 @@ declare module '@polkadot/types/lookup' {
|
|
906
1044
|
readonly type: 'Added' | 'Awarded' | 'Claimed' | 'Canceled';
|
907
1045
|
}
|
908
1046
|
|
909
|
-
/** @name PalletBagsListEvent (
|
1047
|
+
/** @name PalletBagsListEvent (70) */
|
910
1048
|
interface PalletBagsListEvent extends Enum {
|
911
1049
|
readonly isRebagged: boolean;
|
912
1050
|
readonly asRebagged: {
|
@@ -922,7 +1060,7 @@ declare module '@polkadot/types/lookup' {
|
|
922
1060
|
readonly type: 'Rebagged' | 'ScoreUpdated';
|
923
1061
|
}
|
924
1062
|
|
925
|
-
/** @name PalletNominationPoolsEvent (
|
1063
|
+
/** @name PalletNominationPoolsEvent (71) */
|
926
1064
|
interface PalletNominationPoolsEvent extends Enum {
|
927
1065
|
readonly isCreated: boolean;
|
928
1066
|
readonly asCreated: {
|
@@ -1026,7 +1164,7 @@ declare module '@polkadot/types/lookup' {
|
|
1026
1164
|
readonly type: 'Created' | 'Bonded' | 'PaidOut' | 'Unbonded' | 'Withdrawn' | 'Destroyed' | 'StateChanged' | 'MemberRemoved' | 'RolesUpdated' | 'PoolSlashed' | 'UnbondingPoolSlashed' | 'PoolCommissionUpdated' | 'PoolMaxCommissionUpdated' | 'PoolCommissionChangeRateUpdated' | 'PoolCommissionClaimPermissionUpdated' | 'PoolCommissionClaimed' | 'MinBalanceDeficitAdjusted' | 'MinBalanceExcessAdjusted';
|
1027
1165
|
}
|
1028
1166
|
|
1029
|
-
/** @name PalletNominationPoolsPoolState (
|
1167
|
+
/** @name PalletNominationPoolsPoolState (72) */
|
1030
1168
|
interface PalletNominationPoolsPoolState extends Enum {
|
1031
1169
|
readonly isOpen: boolean;
|
1032
1170
|
readonly isBlocked: boolean;
|
@@ -1034,13 +1172,13 @@ declare module '@polkadot/types/lookup' {
|
|
1034
1172
|
readonly type: 'Open' | 'Blocked' | 'Destroying';
|
1035
1173
|
}
|
1036
1174
|
|
1037
|
-
/** @name PalletNominationPoolsCommissionChangeRate (
|
1175
|
+
/** @name PalletNominationPoolsCommissionChangeRate (75) */
|
1038
1176
|
interface PalletNominationPoolsCommissionChangeRate extends Struct {
|
1039
1177
|
readonly maxIncrease: Perbill;
|
1040
1178
|
readonly minDelay: u64;
|
1041
1179
|
}
|
1042
1180
|
|
1043
|
-
/** @name PalletNominationPoolsCommissionClaimPermission (
|
1181
|
+
/** @name PalletNominationPoolsCommissionClaimPermission (77) */
|
1044
1182
|
interface PalletNominationPoolsCommissionClaimPermission extends Enum {
|
1045
1183
|
readonly isPermissionless: boolean;
|
1046
1184
|
readonly isAccount: boolean;
|
@@ -1048,7 +1186,7 @@ declare module '@polkadot/types/lookup' {
|
|
1048
1186
|
readonly type: 'Permissionless' | 'Account';
|
1049
1187
|
}
|
1050
1188
|
|
1051
|
-
/** @name PalletSchedulerEvent (
|
1189
|
+
/** @name PalletSchedulerEvent (78) */
|
1052
1190
|
interface PalletSchedulerEvent extends Enum {
|
1053
1191
|
readonly isScheduled: boolean;
|
1054
1192
|
readonly asScheduled: {
|
@@ -1084,7 +1222,7 @@ declare module '@polkadot/types/lookup' {
|
|
1084
1222
|
readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallUnavailable' | 'PeriodicFailed' | 'PermanentlyOverweight';
|
1085
1223
|
}
|
1086
1224
|
|
1087
|
-
/** @name PalletPreimageEvent (
|
1225
|
+
/** @name PalletPreimageEvent (81) */
|
1088
1226
|
interface PalletPreimageEvent extends Enum {
|
1089
1227
|
readonly isNoted: boolean;
|
1090
1228
|
readonly asNoted: {
|
@@ -1101,7 +1239,7 @@ declare module '@polkadot/types/lookup' {
|
|
1101
1239
|
readonly type: 'Noted' | 'Requested' | 'Cleared';
|
1102
1240
|
}
|
1103
1241
|
|
1104
|
-
/** @name PalletOffencesEvent (
|
1242
|
+
/** @name PalletOffencesEvent (82) */
|
1105
1243
|
interface PalletOffencesEvent extends Enum {
|
1106
1244
|
readonly isOffence: boolean;
|
1107
1245
|
readonly asOffence: {
|
@@ -1111,7 +1249,7 @@ declare module '@polkadot/types/lookup' {
|
|
1111
1249
|
readonly type: 'Offence';
|
1112
1250
|
}
|
1113
1251
|
|
1114
|
-
/** @name PalletTxPauseEvent (
|
1252
|
+
/** @name PalletTxPauseEvent (84) */
|
1115
1253
|
interface PalletTxPauseEvent extends Enum {
|
1116
1254
|
readonly isCallPaused: boolean;
|
1117
1255
|
readonly asCallPaused: {
|
@@ -1124,7 +1262,7 @@ declare module '@polkadot/types/lookup' {
|
|
1124
1262
|
readonly type: 'CallPaused' | 'CallUnpaused';
|
1125
1263
|
}
|
1126
1264
|
|
1127
|
-
/** @name PalletImOnlineEvent (
|
1265
|
+
/** @name PalletImOnlineEvent (87) */
|
1128
1266
|
interface PalletImOnlineEvent extends Enum {
|
1129
1267
|
readonly isHeartbeatReceived: boolean;
|
1130
1268
|
readonly asHeartbeatReceived: {
|
@@ -1138,26 +1276,26 @@ declare module '@polkadot/types/lookup' {
|
|
1138
1276
|
readonly type: 'HeartbeatReceived' | 'AllGood' | 'SomeOffline';
|
1139
1277
|
}
|
1140
1278
|
|
1141
|
-
/** @name PalletImOnlineSr25519AppSr25519Public (
|
1279
|
+
/** @name PalletImOnlineSr25519AppSr25519Public (88) */
|
1142
1280
|
interface PalletImOnlineSr25519AppSr25519Public extends SpCoreSr25519Public {}
|
1143
1281
|
|
1144
|
-
/** @name SpCoreSr25519Public (
|
1282
|
+
/** @name SpCoreSr25519Public (89) */
|
1145
1283
|
interface SpCoreSr25519Public extends U8aFixed {}
|
1146
1284
|
|
1147
|
-
/** @name SpStakingExposure (
|
1285
|
+
/** @name SpStakingExposure (92) */
|
1148
1286
|
interface SpStakingExposure extends Struct {
|
1149
1287
|
readonly total: Compact<u128>;
|
1150
1288
|
readonly own: Compact<u128>;
|
1151
1289
|
readonly others: Vec<SpStakingIndividualExposure>;
|
1152
1290
|
}
|
1153
1291
|
|
1154
|
-
/** @name SpStakingIndividualExposure (
|
1292
|
+
/** @name SpStakingIndividualExposure (95) */
|
1155
1293
|
interface SpStakingIndividualExposure extends Struct {
|
1156
1294
|
readonly who: AccountId32;
|
1157
1295
|
readonly value: Compact<u128>;
|
1158
1296
|
}
|
1159
1297
|
|
1160
|
-
/** @name PalletIdentityEvent (
|
1298
|
+
/** @name PalletIdentityEvent (96) */
|
1161
1299
|
interface PalletIdentityEvent extends Enum {
|
1162
1300
|
readonly isIdentitySet: boolean;
|
1163
1301
|
readonly asIdentitySet: {
|
@@ -1246,7 +1384,7 @@ declare module '@polkadot/types/lookup' {
|
|
1246
1384
|
readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked' | 'AuthorityAdded' | 'AuthorityRemoved' | 'UsernameSet' | 'UsernameQueued' | 'PreapprovalExpired' | 'PrimaryUsernameSet' | 'DanglingUsernameRemoved';
|
1247
1385
|
}
|
1248
1386
|
|
1249
|
-
/** @name PalletUtilityEvent (
|
1387
|
+
/** @name PalletUtilityEvent (98) */
|
1250
1388
|
interface PalletUtilityEvent extends Enum {
|
1251
1389
|
readonly isBatchInterrupted: boolean;
|
1252
1390
|
readonly asBatchInterrupted: {
|
@@ -1267,7 +1405,7 @@ declare module '@polkadot/types/lookup' {
|
|
1267
1405
|
readonly type: 'BatchInterrupted' | 'BatchCompleted' | 'BatchCompletedWithErrors' | 'ItemCompleted' | 'ItemFailed' | 'DispatchedAs';
|
1268
1406
|
}
|
1269
1407
|
|
1270
|
-
/** @name PalletMultisigEvent (
|
1408
|
+
/** @name PalletMultisigEvent (99) */
|
1271
1409
|
interface PalletMultisigEvent extends Enum {
|
1272
1410
|
readonly isNewMultisig: boolean;
|
1273
1411
|
readonly asNewMultisig: {
|
@@ -1300,13 +1438,13 @@ declare module '@polkadot/types/lookup' {
|
|
1300
1438
|
readonly type: 'NewMultisig' | 'MultisigApproval' | 'MultisigExecuted' | 'MultisigCancelled';
|
1301
1439
|
}
|
1302
1440
|
|
1303
|
-
/** @name PalletMultisigTimepoint (
|
1441
|
+
/** @name PalletMultisigTimepoint (100) */
|
1304
1442
|
interface PalletMultisigTimepoint extends Struct {
|
1305
1443
|
readonly height: u64;
|
1306
1444
|
readonly index: u32;
|
1307
1445
|
}
|
1308
1446
|
|
1309
|
-
/** @name PalletEthereumEvent (
|
1447
|
+
/** @name PalletEthereumEvent (101) */
|
1310
1448
|
interface PalletEthereumEvent extends Enum {
|
1311
1449
|
readonly isExecuted: boolean;
|
1312
1450
|
readonly asExecuted: {
|
@@ -1319,7 +1457,7 @@ declare module '@polkadot/types/lookup' {
|
|
1319
1457
|
readonly type: 'Executed';
|
1320
1458
|
}
|
1321
1459
|
|
1322
|
-
/** @name EvmCoreErrorExitReason (
|
1460
|
+
/** @name EvmCoreErrorExitReason (104) */
|
1323
1461
|
interface EvmCoreErrorExitReason extends Enum {
|
1324
1462
|
readonly isSucceed: boolean;
|
1325
1463
|
readonly asSucceed: EvmCoreErrorExitSucceed;
|
@@ -1332,7 +1470,7 @@ declare module '@polkadot/types/lookup' {
|
|
1332
1470
|
readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
|
1333
1471
|
}
|
1334
1472
|
|
1335
|
-
/** @name EvmCoreErrorExitSucceed (
|
1473
|
+
/** @name EvmCoreErrorExitSucceed (105) */
|
1336
1474
|
interface EvmCoreErrorExitSucceed extends Enum {
|
1337
1475
|
readonly isStopped: boolean;
|
1338
1476
|
readonly isReturned: boolean;
|
@@ -1340,7 +1478,7 @@ declare module '@polkadot/types/lookup' {
|
|
1340
1478
|
readonly type: 'Stopped' | 'Returned' | 'Suicided';
|
1341
1479
|
}
|
1342
1480
|
|
1343
|
-
/** @name EvmCoreErrorExitError (
|
1481
|
+
/** @name EvmCoreErrorExitError (106) */
|
1344
1482
|
interface EvmCoreErrorExitError extends Enum {
|
1345
1483
|
readonly isStackUnderflow: boolean;
|
1346
1484
|
readonly isStackOverflow: boolean;
|
@@ -1363,13 +1501,13 @@ declare module '@polkadot/types/lookup' {
|
|
1363
1501
|
readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'MaxNonce' | 'InvalidCode';
|
1364
1502
|
}
|
1365
1503
|
|
1366
|
-
/** @name EvmCoreErrorExitRevert (
|
1504
|
+
/** @name EvmCoreErrorExitRevert (110) */
|
1367
1505
|
interface EvmCoreErrorExitRevert extends Enum {
|
1368
1506
|
readonly isReverted: boolean;
|
1369
1507
|
readonly type: 'Reverted';
|
1370
1508
|
}
|
1371
1509
|
|
1372
|
-
/** @name EvmCoreErrorExitFatal (
|
1510
|
+
/** @name EvmCoreErrorExitFatal (111) */
|
1373
1511
|
interface EvmCoreErrorExitFatal extends Enum {
|
1374
1512
|
readonly isNotSupported: boolean;
|
1375
1513
|
readonly isUnhandledInterrupt: boolean;
|
@@ -1380,7 +1518,7 @@ declare module '@polkadot/types/lookup' {
|
|
1380
1518
|
readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
|
1381
1519
|
}
|
1382
1520
|
|
1383
|
-
/** @name PalletEvmEvent (
|
1521
|
+
/** @name PalletEvmEvent (112) */
|
1384
1522
|
interface PalletEvmEvent extends Enum {
|
1385
1523
|
readonly isLog: boolean;
|
1386
1524
|
readonly asLog: {
|
@@ -1405,14 +1543,14 @@ declare module '@polkadot/types/lookup' {
|
|
1405
1543
|
readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';
|
1406
1544
|
}
|
1407
1545
|
|
1408
|
-
/** @name EthereumLog (
|
1546
|
+
/** @name EthereumLog (113) */
|
1409
1547
|
interface EthereumLog extends Struct {
|
1410
1548
|
readonly address: H160;
|
1411
1549
|
readonly topics: Vec<H256>;
|
1412
1550
|
readonly data: Bytes;
|
1413
1551
|
}
|
1414
1552
|
|
1415
|
-
/** @name PalletBaseFeeEvent (
|
1553
|
+
/** @name PalletBaseFeeEvent (115) */
|
1416
1554
|
interface PalletBaseFeeEvent extends Enum {
|
1417
1555
|
readonly isNewBaseFeePerGas: boolean;
|
1418
1556
|
readonly asNewBaseFeePerGas: {
|
@@ -1426,7 +1564,7 @@ declare module '@polkadot/types/lookup' {
|
|
1426
1564
|
readonly type: 'NewBaseFeePerGas' | 'BaseFeeOverflow' | 'NewElasticity';
|
1427
1565
|
}
|
1428
1566
|
|
1429
|
-
/** @name PalletAirdropClaimsEvent (
|
1567
|
+
/** @name PalletAirdropClaimsEvent (119) */
|
1430
1568
|
interface PalletAirdropClaimsEvent extends Enum {
|
1431
1569
|
readonly isClaimed: boolean;
|
1432
1570
|
readonly asClaimed: {
|
@@ -1437,7 +1575,7 @@ declare module '@polkadot/types/lookup' {
|
|
1437
1575
|
readonly type: 'Claimed';
|
1438
1576
|
}
|
1439
1577
|
|
1440
|
-
/** @name PalletAirdropClaimsUtilsMultiAddress (
|
1578
|
+
/** @name PalletAirdropClaimsUtilsMultiAddress (120) */
|
1441
1579
|
interface PalletAirdropClaimsUtilsMultiAddress extends Enum {
|
1442
1580
|
readonly isEvm: boolean;
|
1443
1581
|
readonly asEvm: PalletAirdropClaimsUtilsEthereumAddress;
|
@@ -1446,10 +1584,10 @@ declare module '@polkadot/types/lookup' {
|
|
1446
1584
|
readonly type: 'Evm' | 'Native';
|
1447
1585
|
}
|
1448
1586
|
|
1449
|
-
/** @name PalletAirdropClaimsUtilsEthereumAddress (
|
1587
|
+
/** @name PalletAirdropClaimsUtilsEthereumAddress (121) */
|
1450
1588
|
interface PalletAirdropClaimsUtilsEthereumAddress extends U8aFixed {}
|
1451
1589
|
|
1452
|
-
/** @name PalletRolesEvent (
|
1590
|
+
/** @name PalletRolesEvent (122) */
|
1453
1591
|
interface PalletRolesEvent extends Enum {
|
1454
1592
|
readonly isRoleAssigned: boolean;
|
1455
1593
|
readonly asRoleAssigned: {
|
@@ -1507,7 +1645,7 @@ declare module '@polkadot/types/lookup' {
|
|
1507
1645
|
readonly type: 'RoleAssigned' | 'RoleRemoved' | 'Slashed' | 'ProfileCreated' | 'ProfileUpdated' | 'ProfileDeleted' | 'PendingJobs' | 'RolesRewardSet' | 'PayoutStarted' | 'Rewarded' | 'MinRestakingBondUpdated';
|
1508
1646
|
}
|
1509
1647
|
|
1510
|
-
/** @name TanglePrimitivesRolesRoleType (
|
1648
|
+
/** @name TanglePrimitivesRolesRoleType (123) */
|
1511
1649
|
interface TanglePrimitivesRolesRoleType extends Enum {
|
1512
1650
|
readonly isTss: boolean;
|
1513
1651
|
readonly asTss: TanglePrimitivesRolesTssThresholdSignatureRoleType;
|
@@ -1517,7 +1655,7 @@ declare module '@polkadot/types/lookup' {
|
|
1517
1655
|
readonly type: 'Tss' | 'ZkSaaS' | 'LightClientRelaying';
|
1518
1656
|
}
|
1519
1657
|
|
1520
|
-
/** @name TanglePrimitivesRolesTssThresholdSignatureRoleType (
|
1658
|
+
/** @name TanglePrimitivesRolesTssThresholdSignatureRoleType (124) */
|
1521
1659
|
interface TanglePrimitivesRolesTssThresholdSignatureRoleType extends Enum {
|
1522
1660
|
readonly isDfnsCGGMP21Secp256k1: boolean;
|
1523
1661
|
readonly isDfnsCGGMP21Secp256r1: boolean;
|
@@ -1530,17 +1668,18 @@ declare module '@polkadot/types/lookup' {
|
|
1530
1668
|
readonly isZcashFrostEd25519: boolean;
|
1531
1669
|
readonly isZcashFrostEd448: boolean;
|
1532
1670
|
readonly isGennaroDKGBls381: boolean;
|
1533
|
-
readonly
|
1671
|
+
readonly isWstsV2: boolean;
|
1672
|
+
readonly type: 'DfnsCGGMP21Secp256k1' | 'DfnsCGGMP21Secp256r1' | 'DfnsCGGMP21Stark' | 'SilentShardDKLS23Secp256k1' | 'ZcashFrostP256' | 'ZcashFrostP384' | 'ZcashFrostSecp256k1' | 'ZcashFrostRistretto255' | 'ZcashFrostEd25519' | 'ZcashFrostEd448' | 'GennaroDKGBls381' | 'WstsV2';
|
1534
1673
|
}
|
1535
1674
|
|
1536
|
-
/** @name TanglePrimitivesRolesZksaasZeroKnowledgeRoleType (
|
1675
|
+
/** @name TanglePrimitivesRolesZksaasZeroKnowledgeRoleType (125) */
|
1537
1676
|
interface TanglePrimitivesRolesZksaasZeroKnowledgeRoleType extends Enum {
|
1538
1677
|
readonly isZkSaaSGroth16: boolean;
|
1539
1678
|
readonly isZkSaaSMarlin: boolean;
|
1540
1679
|
readonly type: 'ZkSaaSGroth16' | 'ZkSaaSMarlin';
|
1541
1680
|
}
|
1542
1681
|
|
1543
|
-
/** @name PalletJobsModuleEvent (
|
1682
|
+
/** @name PalletJobsModuleEvent (129) */
|
1544
1683
|
interface PalletJobsModuleEvent extends Enum {
|
1545
1684
|
readonly isJobSubmitted: boolean;
|
1546
1685
|
readonly asJobSubmitted: {
|
@@ -1584,7 +1723,7 @@ declare module '@polkadot/types/lookup' {
|
|
1584
1723
|
readonly type: 'JobSubmitted' | 'JobResultSubmitted' | 'ValidatorRewarded' | 'JobRefunded' | 'JobParticipantsUpdated' | 'JobReSubmitted' | 'JobResultExtended';
|
1585
1724
|
}
|
1586
1725
|
|
1587
|
-
/** @name TanglePrimitivesJobsJobSubmission (
|
1726
|
+
/** @name TanglePrimitivesJobsJobSubmission (130) */
|
1588
1727
|
interface TanglePrimitivesJobsJobSubmission extends Struct {
|
1589
1728
|
readonly expiry: u64;
|
1590
1729
|
readonly ttl: u64;
|
@@ -1592,16 +1731,16 @@ declare module '@polkadot/types/lookup' {
|
|
1592
1731
|
readonly fallback: TanglePrimitivesJobsFallbackOptions;
|
1593
1732
|
}
|
1594
1733
|
|
1595
|
-
/** @name TangleTestnetRuntimeMaxParticipants (
|
1734
|
+
/** @name TangleTestnetRuntimeMaxParticipants (131) */
|
1596
1735
|
type TangleTestnetRuntimeMaxParticipants = Null;
|
1597
1736
|
|
1598
|
-
/** @name TangleTestnetRuntimeMaxSubmissionLen (
|
1737
|
+
/** @name TangleTestnetRuntimeMaxSubmissionLen (132) */
|
1599
1738
|
type TangleTestnetRuntimeMaxSubmissionLen = Null;
|
1600
1739
|
|
1601
|
-
/** @name TangleTestnetRuntimeMaxAdditionalParamsLen (
|
1740
|
+
/** @name TangleTestnetRuntimeMaxAdditionalParamsLen (133) */
|
1602
1741
|
type TangleTestnetRuntimeMaxAdditionalParamsLen = Null;
|
1603
1742
|
|
1604
|
-
/** @name TanglePrimitivesJobsJobType (
|
1743
|
+
/** @name TanglePrimitivesJobsJobType (134) */
|
1605
1744
|
interface TanglePrimitivesJobsJobType extends Enum {
|
1606
1745
|
readonly isDkgtssPhaseOne: boolean;
|
1607
1746
|
readonly asDkgtssPhaseOne: TanglePrimitivesJobsTssDkgtssPhaseOneJobType;
|
@@ -1618,7 +1757,7 @@ declare module '@polkadot/types/lookup' {
|
|
1618
1757
|
readonly type: 'DkgtssPhaseOne' | 'DkgtssPhaseTwo' | 'DkgtssPhaseThree' | 'DkgtssPhaseFour' | 'ZkSaaSPhaseOne' | 'ZkSaaSPhaseTwo';
|
1619
1758
|
}
|
1620
1759
|
|
1621
|
-
/** @name TanglePrimitivesJobsTssDkgtssPhaseOneJobType (
|
1760
|
+
/** @name TanglePrimitivesJobsTssDkgtssPhaseOneJobType (135) */
|
1622
1761
|
interface TanglePrimitivesJobsTssDkgtssPhaseOneJobType extends Struct {
|
1623
1762
|
readonly participants: Vec<AccountId32>;
|
1624
1763
|
readonly threshold: u8;
|
@@ -1627,7 +1766,7 @@ declare module '@polkadot/types/lookup' {
|
|
1627
1766
|
readonly hdWallet: bool;
|
1628
1767
|
}
|
1629
1768
|
|
1630
|
-
/** @name TanglePrimitivesJobsTssDkgtssPhaseTwoJobType (
|
1769
|
+
/** @name TanglePrimitivesJobsTssDkgtssPhaseTwoJobType (138) */
|
1631
1770
|
interface TanglePrimitivesJobsTssDkgtssPhaseTwoJobType extends Struct {
|
1632
1771
|
readonly phaseOneId: u64;
|
1633
1772
|
readonly submission: Bytes;
|
@@ -1635,20 +1774,20 @@ declare module '@polkadot/types/lookup' {
|
|
1635
1774
|
readonly roleType: TanglePrimitivesRolesTssThresholdSignatureRoleType;
|
1636
1775
|
}
|
1637
1776
|
|
1638
|
-
/** @name TanglePrimitivesJobsTssDkgtssPhaseThreeJobType (
|
1777
|
+
/** @name TanglePrimitivesJobsTssDkgtssPhaseThreeJobType (142) */
|
1639
1778
|
interface TanglePrimitivesJobsTssDkgtssPhaseThreeJobType extends Struct {
|
1640
1779
|
readonly phaseOneId: u64;
|
1641
1780
|
readonly roleType: TanglePrimitivesRolesTssThresholdSignatureRoleType;
|
1642
1781
|
}
|
1643
1782
|
|
1644
|
-
/** @name TanglePrimitivesJobsTssDkgtssPhaseFourJobType (
|
1783
|
+
/** @name TanglePrimitivesJobsTssDkgtssPhaseFourJobType (143) */
|
1645
1784
|
interface TanglePrimitivesJobsTssDkgtssPhaseFourJobType extends Struct {
|
1646
1785
|
readonly phaseOneId: u64;
|
1647
1786
|
readonly newPhaseOneId: u64;
|
1648
1787
|
readonly roleType: TanglePrimitivesRolesTssThresholdSignatureRoleType;
|
1649
1788
|
}
|
1650
1789
|
|
1651
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSPhaseOneJobType (
|
1790
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSPhaseOneJobType (144) */
|
1652
1791
|
interface TanglePrimitivesJobsZksaasZkSaaSPhaseOneJobType extends Struct {
|
1653
1792
|
readonly participants: Vec<AccountId32>;
|
1654
1793
|
readonly permittedCaller: Option<AccountId32>;
|
@@ -1656,14 +1795,14 @@ declare module '@polkadot/types/lookup' {
|
|
1656
1795
|
readonly roleType: TanglePrimitivesRolesZksaasZeroKnowledgeRoleType;
|
1657
1796
|
}
|
1658
1797
|
|
1659
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSSystem (
|
1798
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSSystem (145) */
|
1660
1799
|
interface TanglePrimitivesJobsZksaasZkSaaSSystem extends Enum {
|
1661
1800
|
readonly isGroth16: boolean;
|
1662
1801
|
readonly asGroth16: TanglePrimitivesJobsZksaasGroth16System;
|
1663
1802
|
readonly type: 'Groth16';
|
1664
1803
|
}
|
1665
1804
|
|
1666
|
-
/** @name TanglePrimitivesJobsZksaasGroth16System (
|
1805
|
+
/** @name TanglePrimitivesJobsZksaasGroth16System (146) */
|
1667
1806
|
interface TanglePrimitivesJobsZksaasGroth16System extends Struct {
|
1668
1807
|
readonly circuit: TanglePrimitivesJobsZksaasHyperData;
|
1669
1808
|
readonly numInputs: u64;
|
@@ -1673,7 +1812,7 @@ declare module '@polkadot/types/lookup' {
|
|
1673
1812
|
readonly wasm: TanglePrimitivesJobsZksaasHyperData;
|
1674
1813
|
}
|
1675
1814
|
|
1676
|
-
/** @name TanglePrimitivesJobsZksaasHyperData (
|
1815
|
+
/** @name TanglePrimitivesJobsZksaasHyperData (147) */
|
1677
1816
|
interface TanglePrimitivesJobsZksaasHyperData extends Enum {
|
1678
1817
|
readonly isRaw: boolean;
|
1679
1818
|
readonly asRaw: Bytes;
|
@@ -1684,21 +1823,21 @@ declare module '@polkadot/types/lookup' {
|
|
1684
1823
|
readonly type: 'Raw' | 'Ipfs' | 'Http';
|
1685
1824
|
}
|
1686
1825
|
|
1687
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSPhaseTwoJobType (
|
1826
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSPhaseTwoJobType (148) */
|
1688
1827
|
interface TanglePrimitivesJobsZksaasZkSaaSPhaseTwoJobType extends Struct {
|
1689
1828
|
readonly phaseOneId: u64;
|
1690
1829
|
readonly request: TanglePrimitivesJobsZksaasZkSaaSPhaseTwoRequest;
|
1691
1830
|
readonly roleType: TanglePrimitivesRolesZksaasZeroKnowledgeRoleType;
|
1692
1831
|
}
|
1693
1832
|
|
1694
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSPhaseTwoRequest (
|
1833
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSPhaseTwoRequest (149) */
|
1695
1834
|
interface TanglePrimitivesJobsZksaasZkSaaSPhaseTwoRequest extends Enum {
|
1696
1835
|
readonly isGroth16: boolean;
|
1697
1836
|
readonly asGroth16: TanglePrimitivesJobsZksaasGroth16ProveRequest;
|
1698
1837
|
readonly type: 'Groth16';
|
1699
1838
|
}
|
1700
1839
|
|
1701
|
-
/** @name TanglePrimitivesJobsZksaasGroth16ProveRequest (
|
1840
|
+
/** @name TanglePrimitivesJobsZksaasGroth16ProveRequest (150) */
|
1702
1841
|
interface TanglePrimitivesJobsZksaasGroth16ProveRequest extends Struct {
|
1703
1842
|
readonly publicInput: Bytes;
|
1704
1843
|
readonly aShares: Vec<TanglePrimitivesJobsZksaasHyperData>;
|
@@ -1706,14 +1845,14 @@ declare module '@polkadot/types/lookup' {
|
|
1706
1845
|
readonly qapShares: Vec<TanglePrimitivesJobsZksaasQapShare>;
|
1707
1846
|
}
|
1708
1847
|
|
1709
|
-
/** @name TanglePrimitivesJobsZksaasQapShare (
|
1848
|
+
/** @name TanglePrimitivesJobsZksaasQapShare (154) */
|
1710
1849
|
interface TanglePrimitivesJobsZksaasQapShare extends Struct {
|
1711
1850
|
readonly a: TanglePrimitivesJobsZksaasHyperData;
|
1712
1851
|
readonly b: TanglePrimitivesJobsZksaasHyperData;
|
1713
1852
|
readonly c: TanglePrimitivesJobsZksaasHyperData;
|
1714
1853
|
}
|
1715
1854
|
|
1716
|
-
/** @name TanglePrimitivesJobsFallbackOptions (
|
1855
|
+
/** @name TanglePrimitivesJobsFallbackOptions (156) */
|
1717
1856
|
interface TanglePrimitivesJobsFallbackOptions extends Enum {
|
1718
1857
|
readonly isDestroy: boolean;
|
1719
1858
|
readonly isRegenerateWithThreshold: boolean;
|
@@ -1721,7 +1860,7 @@ declare module '@polkadot/types/lookup' {
|
|
1721
1860
|
readonly type: 'Destroy' | 'RegenerateWithThreshold';
|
1722
1861
|
}
|
1723
1862
|
|
1724
|
-
/** @name TanglePrimitivesJobsJobInfo (
|
1863
|
+
/** @name TanglePrimitivesJobsJobInfo (157) */
|
1725
1864
|
interface TanglePrimitivesJobsJobInfo extends Struct {
|
1726
1865
|
readonly owner: AccountId32;
|
1727
1866
|
readonly expiry: u64;
|
@@ -1731,7 +1870,7 @@ declare module '@polkadot/types/lookup' {
|
|
1731
1870
|
readonly fallback: TanglePrimitivesJobsFallbackOptions;
|
1732
1871
|
}
|
1733
1872
|
|
1734
|
-
/** @name PalletDkgEvent (
|
1873
|
+
/** @name PalletDkgEvent (158) */
|
1735
1874
|
interface PalletDkgEvent extends Enum {
|
1736
1875
|
readonly isFeeUpdated: boolean;
|
1737
1876
|
readonly asFeeUpdated: PalletDkgFeeInfo;
|
@@ -1744,7 +1883,7 @@ declare module '@polkadot/types/lookup' {
|
|
1744
1883
|
readonly type: 'FeeUpdated' | 'KeyRotated';
|
1745
1884
|
}
|
1746
1885
|
|
1747
|
-
/** @name PalletDkgFeeInfo (
|
1886
|
+
/** @name PalletDkgFeeInfo (159) */
|
1748
1887
|
interface PalletDkgFeeInfo extends Struct {
|
1749
1888
|
readonly baseFee: u128;
|
1750
1889
|
readonly dkgValidatorFee: u128;
|
@@ -1754,14 +1893,14 @@ declare module '@polkadot/types/lookup' {
|
|
1754
1893
|
readonly storageFeePerBlock: u128;
|
1755
1894
|
}
|
1756
1895
|
|
1757
|
-
/** @name PalletZksaasEvent (
|
1896
|
+
/** @name PalletZksaasEvent (160) */
|
1758
1897
|
interface PalletZksaasEvent extends Enum {
|
1759
1898
|
readonly isFeeUpdated: boolean;
|
1760
1899
|
readonly asFeeUpdated: PalletZksaasFeeInfo;
|
1761
1900
|
readonly type: 'FeeUpdated';
|
1762
1901
|
}
|
1763
1902
|
|
1764
|
-
/** @name PalletZksaasFeeInfo (
|
1903
|
+
/** @name PalletZksaasFeeInfo (161) */
|
1765
1904
|
interface PalletZksaasFeeInfo extends Struct {
|
1766
1905
|
readonly baseFee: u128;
|
1767
1906
|
readonly circuitFee: u128;
|
@@ -1769,7 +1908,7 @@ declare module '@polkadot/types/lookup' {
|
|
1769
1908
|
readonly storageFeePerByte: u128;
|
1770
1909
|
}
|
1771
1910
|
|
1772
|
-
/** @name PalletProxyEvent (
|
1911
|
+
/** @name PalletProxyEvent (162) */
|
1773
1912
|
interface PalletProxyEvent extends Enum {
|
1774
1913
|
readonly isProxyExecuted: boolean;
|
1775
1914
|
readonly asProxyExecuted: {
|
@@ -1805,7 +1944,7 @@ declare module '@polkadot/types/lookup' {
|
|
1805
1944
|
readonly type: 'ProxyExecuted' | 'PureCreated' | 'Announced' | 'ProxyAdded' | 'ProxyRemoved';
|
1806
1945
|
}
|
1807
1946
|
|
1808
|
-
/** @name TangleTestnetRuntimeProxyType (
|
1947
|
+
/** @name TangleTestnetRuntimeProxyType (163) */
|
1809
1948
|
interface TangleTestnetRuntimeProxyType extends Enum {
|
1810
1949
|
readonly isAny: boolean;
|
1811
1950
|
readonly isNonTransfer: boolean;
|
@@ -1814,7 +1953,377 @@ declare module '@polkadot/types/lookup' {
|
|
1814
1953
|
readonly type: 'Any' | 'NonTransfer' | 'Governance' | 'Staking';
|
1815
1954
|
}
|
1816
1955
|
|
1817
|
-
/** @name
|
1956
|
+
/** @name PalletMultiAssetDelegationEvent (165) */
|
1957
|
+
interface PalletMultiAssetDelegationEvent extends Enum {
|
1958
|
+
readonly isOperatorJoined: boolean;
|
1959
|
+
readonly asOperatorJoined: {
|
1960
|
+
readonly who: AccountId32;
|
1961
|
+
} & Struct;
|
1962
|
+
readonly isOperatorLeavingScheduled: boolean;
|
1963
|
+
readonly asOperatorLeavingScheduled: {
|
1964
|
+
readonly who: AccountId32;
|
1965
|
+
} & Struct;
|
1966
|
+
readonly isOperatorLeaveCancelled: boolean;
|
1967
|
+
readonly asOperatorLeaveCancelled: {
|
1968
|
+
readonly who: AccountId32;
|
1969
|
+
} & Struct;
|
1970
|
+
readonly isOperatorLeaveExecuted: boolean;
|
1971
|
+
readonly asOperatorLeaveExecuted: {
|
1972
|
+
readonly who: AccountId32;
|
1973
|
+
} & Struct;
|
1974
|
+
readonly isOperatorBondMore: boolean;
|
1975
|
+
readonly asOperatorBondMore: {
|
1976
|
+
readonly who: AccountId32;
|
1977
|
+
readonly additionalBond: u128;
|
1978
|
+
} & Struct;
|
1979
|
+
readonly isOperatorBondLessScheduled: boolean;
|
1980
|
+
readonly asOperatorBondLessScheduled: {
|
1981
|
+
readonly who: AccountId32;
|
1982
|
+
readonly bondLessAmount: u128;
|
1983
|
+
} & Struct;
|
1984
|
+
readonly isOperatorBondLessExecuted: boolean;
|
1985
|
+
readonly asOperatorBondLessExecuted: {
|
1986
|
+
readonly who: AccountId32;
|
1987
|
+
} & Struct;
|
1988
|
+
readonly isOperatorBondLessCancelled: boolean;
|
1989
|
+
readonly asOperatorBondLessCancelled: {
|
1990
|
+
readonly who: AccountId32;
|
1991
|
+
} & Struct;
|
1992
|
+
readonly isOperatorWentOffline: boolean;
|
1993
|
+
readonly asOperatorWentOffline: {
|
1994
|
+
readonly who: AccountId32;
|
1995
|
+
} & Struct;
|
1996
|
+
readonly isOperatorWentOnline: boolean;
|
1997
|
+
readonly asOperatorWentOnline: {
|
1998
|
+
readonly who: AccountId32;
|
1999
|
+
} & Struct;
|
2000
|
+
readonly isDeposited: boolean;
|
2001
|
+
readonly asDeposited: {
|
2002
|
+
readonly who: AccountId32;
|
2003
|
+
readonly amount: u128;
|
2004
|
+
readonly assetId: Option<u128>;
|
2005
|
+
} & Struct;
|
2006
|
+
readonly isScheduledUnstake: boolean;
|
2007
|
+
readonly asScheduledUnstake: {
|
2008
|
+
readonly who: AccountId32;
|
2009
|
+
readonly amount: u128;
|
2010
|
+
readonly assetId: Option<u128>;
|
2011
|
+
} & Struct;
|
2012
|
+
readonly isExecutedUnstake: boolean;
|
2013
|
+
readonly asExecutedUnstake: {
|
2014
|
+
readonly who: AccountId32;
|
2015
|
+
} & Struct;
|
2016
|
+
readonly isCancelledUnstake: boolean;
|
2017
|
+
readonly asCancelledUnstake: {
|
2018
|
+
readonly who: AccountId32;
|
2019
|
+
} & Struct;
|
2020
|
+
readonly isDelegated: boolean;
|
2021
|
+
readonly asDelegated: {
|
2022
|
+
readonly who: AccountId32;
|
2023
|
+
readonly operator: AccountId32;
|
2024
|
+
readonly amount: u128;
|
2025
|
+
readonly assetId: u128;
|
2026
|
+
} & Struct;
|
2027
|
+
readonly isScheduledDelegatorBondLess: boolean;
|
2028
|
+
readonly asScheduledDelegatorBondLess: {
|
2029
|
+
readonly who: AccountId32;
|
2030
|
+
readonly operator: AccountId32;
|
2031
|
+
readonly amount: u128;
|
2032
|
+
readonly assetId: u128;
|
2033
|
+
} & Struct;
|
2034
|
+
readonly isExecutedDelegatorBondLess: boolean;
|
2035
|
+
readonly asExecutedDelegatorBondLess: {
|
2036
|
+
readonly who: AccountId32;
|
2037
|
+
} & Struct;
|
2038
|
+
readonly isCancelledDelegatorBondLess: boolean;
|
2039
|
+
readonly asCancelledDelegatorBondLess: {
|
2040
|
+
readonly who: AccountId32;
|
2041
|
+
} & Struct;
|
2042
|
+
readonly isWhitelistedAssetsSet: boolean;
|
2043
|
+
readonly asWhitelistedAssetsSet: {
|
2044
|
+
readonly assets: Vec<u128>;
|
2045
|
+
} & Struct;
|
2046
|
+
readonly isIncentiveAPYAndCapSet: boolean;
|
2047
|
+
readonly asIncentiveAPYAndCapSet: {
|
2048
|
+
readonly assetId: u128;
|
2049
|
+
readonly apy: u128;
|
2050
|
+
readonly cap: u128;
|
2051
|
+
} & Struct;
|
2052
|
+
readonly isBlueprintWhitelisted: boolean;
|
2053
|
+
readonly asBlueprintWhitelisted: {
|
2054
|
+
readonly blueprintId: u32;
|
2055
|
+
} & Struct;
|
2056
|
+
readonly type: 'OperatorJoined' | 'OperatorLeavingScheduled' | 'OperatorLeaveCancelled' | 'OperatorLeaveExecuted' | 'OperatorBondMore' | 'OperatorBondLessScheduled' | 'OperatorBondLessExecuted' | 'OperatorBondLessCancelled' | 'OperatorWentOffline' | 'OperatorWentOnline' | 'Deposited' | 'ScheduledUnstake' | 'ExecutedUnstake' | 'CancelledUnstake' | 'Delegated' | 'ScheduledDelegatorBondLess' | 'ExecutedDelegatorBondLess' | 'CancelledDelegatorBondLess' | 'WhitelistedAssetsSet' | 'IncentiveAPYAndCapSet' | 'BlueprintWhitelisted';
|
2057
|
+
}
|
2058
|
+
|
2059
|
+
/** @name SygmaAccessSegregatorEvent (168) */
|
2060
|
+
interface SygmaAccessSegregatorEvent extends Enum {
|
2061
|
+
readonly isAccessGranted: boolean;
|
2062
|
+
readonly asAccessGranted: {
|
2063
|
+
readonly palletIndex: u8;
|
2064
|
+
readonly extrinsicName: Bytes;
|
2065
|
+
readonly who: AccountId32;
|
2066
|
+
} & Struct;
|
2067
|
+
readonly type: 'AccessGranted';
|
2068
|
+
}
|
2069
|
+
|
2070
|
+
/** @name SygmaBasicFeehandlerEvent (169) */
|
2071
|
+
interface SygmaBasicFeehandlerEvent extends Enum {
|
2072
|
+
readonly isFeeSet: boolean;
|
2073
|
+
readonly asFeeSet: {
|
2074
|
+
readonly domain: u8;
|
2075
|
+
readonly asset: StagingXcmV4AssetAssetId;
|
2076
|
+
readonly amount: u128;
|
2077
|
+
} & Struct;
|
2078
|
+
readonly type: 'FeeSet';
|
2079
|
+
}
|
2080
|
+
|
2081
|
+
/** @name StagingXcmV4AssetAssetId (170) */
|
2082
|
+
interface StagingXcmV4AssetAssetId extends StagingXcmV4Location {}
|
2083
|
+
|
2084
|
+
/** @name StagingXcmV4Location (171) */
|
2085
|
+
interface StagingXcmV4Location extends Struct {
|
2086
|
+
readonly parents: u8;
|
2087
|
+
readonly interior: StagingXcmV4Junctions;
|
2088
|
+
}
|
2089
|
+
|
2090
|
+
/** @name StagingXcmV4Junctions (172) */
|
2091
|
+
interface StagingXcmV4Junctions extends Enum {
|
2092
|
+
readonly isHere: boolean;
|
2093
|
+
readonly isX1: boolean;
|
2094
|
+
readonly asX1: StagingXcmV4Junction;
|
2095
|
+
readonly isX2: boolean;
|
2096
|
+
readonly asX2: StagingXcmV4Junction;
|
2097
|
+
readonly isX3: boolean;
|
2098
|
+
readonly asX3: StagingXcmV4Junction;
|
2099
|
+
readonly isX4: boolean;
|
2100
|
+
readonly asX4: StagingXcmV4Junction;
|
2101
|
+
readonly isX5: boolean;
|
2102
|
+
readonly asX5: StagingXcmV4Junction;
|
2103
|
+
readonly isX6: boolean;
|
2104
|
+
readonly asX6: StagingXcmV4Junction;
|
2105
|
+
readonly isX7: boolean;
|
2106
|
+
readonly asX7: StagingXcmV4Junction;
|
2107
|
+
readonly isX8: boolean;
|
2108
|
+
readonly asX8: StagingXcmV4Junction;
|
2109
|
+
readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
|
2110
|
+
}
|
2111
|
+
|
2112
|
+
/** @name StagingXcmV4Junction (174) */
|
2113
|
+
interface StagingXcmV4Junction extends Enum {
|
2114
|
+
readonly isParachain: boolean;
|
2115
|
+
readonly asParachain: Compact<u32>;
|
2116
|
+
readonly isAccountId32: boolean;
|
2117
|
+
readonly asAccountId32: {
|
2118
|
+
readonly network: Option<StagingXcmV4JunctionNetworkId>;
|
2119
|
+
readonly id: U8aFixed;
|
2120
|
+
} & Struct;
|
2121
|
+
readonly isAccountIndex64: boolean;
|
2122
|
+
readonly asAccountIndex64: {
|
2123
|
+
readonly network: Option<StagingXcmV4JunctionNetworkId>;
|
2124
|
+
readonly index: Compact<u64>;
|
2125
|
+
} & Struct;
|
2126
|
+
readonly isAccountKey20: boolean;
|
2127
|
+
readonly asAccountKey20: {
|
2128
|
+
readonly network: Option<StagingXcmV4JunctionNetworkId>;
|
2129
|
+
readonly key: U8aFixed;
|
2130
|
+
} & Struct;
|
2131
|
+
readonly isPalletInstance: boolean;
|
2132
|
+
readonly asPalletInstance: u8;
|
2133
|
+
readonly isGeneralIndex: boolean;
|
2134
|
+
readonly asGeneralIndex: Compact<u128>;
|
2135
|
+
readonly isGeneralKey: boolean;
|
2136
|
+
readonly asGeneralKey: {
|
2137
|
+
readonly length: u8;
|
2138
|
+
readonly data: U8aFixed;
|
2139
|
+
} & Struct;
|
2140
|
+
readonly isOnlyChild: boolean;
|
2141
|
+
readonly isPlurality: boolean;
|
2142
|
+
readonly asPlurality: {
|
2143
|
+
readonly id: XcmV3JunctionBodyId;
|
2144
|
+
readonly part: XcmV3JunctionBodyPart;
|
2145
|
+
} & Struct;
|
2146
|
+
readonly isGlobalConsensus: boolean;
|
2147
|
+
readonly asGlobalConsensus: StagingXcmV4JunctionNetworkId;
|
2148
|
+
readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality' | 'GlobalConsensus';
|
2149
|
+
}
|
2150
|
+
|
2151
|
+
/** @name StagingXcmV4JunctionNetworkId (177) */
|
2152
|
+
interface StagingXcmV4JunctionNetworkId extends Enum {
|
2153
|
+
readonly isByGenesis: boolean;
|
2154
|
+
readonly asByGenesis: U8aFixed;
|
2155
|
+
readonly isByFork: boolean;
|
2156
|
+
readonly asByFork: {
|
2157
|
+
readonly blockNumber: u64;
|
2158
|
+
readonly blockHash: U8aFixed;
|
2159
|
+
} & Struct;
|
2160
|
+
readonly isPolkadot: boolean;
|
2161
|
+
readonly isKusama: boolean;
|
2162
|
+
readonly isWestend: boolean;
|
2163
|
+
readonly isRococo: boolean;
|
2164
|
+
readonly isWococo: boolean;
|
2165
|
+
readonly isEthereum: boolean;
|
2166
|
+
readonly asEthereum: {
|
2167
|
+
readonly chainId: Compact<u64>;
|
2168
|
+
} & Struct;
|
2169
|
+
readonly isBitcoinCore: boolean;
|
2170
|
+
readonly isBitcoinCash: boolean;
|
2171
|
+
readonly isPolkadotBulletin: boolean;
|
2172
|
+
readonly type: 'ByGenesis' | 'ByFork' | 'Polkadot' | 'Kusama' | 'Westend' | 'Rococo' | 'Wococo' | 'Ethereum' | 'BitcoinCore' | 'BitcoinCash' | 'PolkadotBulletin';
|
2173
|
+
}
|
2174
|
+
|
2175
|
+
/** @name XcmV3JunctionBodyId (178) */
|
2176
|
+
interface XcmV3JunctionBodyId extends Enum {
|
2177
|
+
readonly isUnit: boolean;
|
2178
|
+
readonly isMoniker: boolean;
|
2179
|
+
readonly asMoniker: U8aFixed;
|
2180
|
+
readonly isIndex: boolean;
|
2181
|
+
readonly asIndex: Compact<u32>;
|
2182
|
+
readonly isExecutive: boolean;
|
2183
|
+
readonly isTechnical: boolean;
|
2184
|
+
readonly isLegislative: boolean;
|
2185
|
+
readonly isJudicial: boolean;
|
2186
|
+
readonly isDefense: boolean;
|
2187
|
+
readonly isAdministration: boolean;
|
2188
|
+
readonly isTreasury: boolean;
|
2189
|
+
readonly type: 'Unit' | 'Moniker' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';
|
2190
|
+
}
|
2191
|
+
|
2192
|
+
/** @name XcmV3JunctionBodyPart (179) */
|
2193
|
+
interface XcmV3JunctionBodyPart extends Enum {
|
2194
|
+
readonly isVoice: boolean;
|
2195
|
+
readonly isMembers: boolean;
|
2196
|
+
readonly asMembers: {
|
2197
|
+
readonly count: Compact<u32>;
|
2198
|
+
} & Struct;
|
2199
|
+
readonly isFraction: boolean;
|
2200
|
+
readonly asFraction: {
|
2201
|
+
readonly nom: Compact<u32>;
|
2202
|
+
readonly denom: Compact<u32>;
|
2203
|
+
} & Struct;
|
2204
|
+
readonly isAtLeastProportion: boolean;
|
2205
|
+
readonly asAtLeastProportion: {
|
2206
|
+
readonly nom: Compact<u32>;
|
2207
|
+
readonly denom: Compact<u32>;
|
2208
|
+
} & Struct;
|
2209
|
+
readonly isMoreThanProportion: boolean;
|
2210
|
+
readonly asMoreThanProportion: {
|
2211
|
+
readonly nom: Compact<u32>;
|
2212
|
+
readonly denom: Compact<u32>;
|
2213
|
+
} & Struct;
|
2214
|
+
readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
|
2215
|
+
}
|
2216
|
+
|
2217
|
+
/** @name SygmaFeeHandlerRouterEvent (187) */
|
2218
|
+
interface SygmaFeeHandlerRouterEvent extends Enum {
|
2219
|
+
readonly isFeeHandlerSet: boolean;
|
2220
|
+
readonly asFeeHandlerSet: {
|
2221
|
+
readonly domain: u8;
|
2222
|
+
readonly asset: StagingXcmV4AssetAssetId;
|
2223
|
+
readonly handlerType: SygmaFeeHandlerRouterFeeHandlerType;
|
2224
|
+
} & Struct;
|
2225
|
+
readonly type: 'FeeHandlerSet';
|
2226
|
+
}
|
2227
|
+
|
2228
|
+
/** @name SygmaFeeHandlerRouterFeeHandlerType (188) */
|
2229
|
+
interface SygmaFeeHandlerRouterFeeHandlerType extends Enum {
|
2230
|
+
readonly isBasicFeeHandler: boolean;
|
2231
|
+
readonly isPercentageFeeHandler: boolean;
|
2232
|
+
readonly isDynamicFeeHandler: boolean;
|
2233
|
+
readonly type: 'BasicFeeHandler' | 'PercentageFeeHandler' | 'DynamicFeeHandler';
|
2234
|
+
}
|
2235
|
+
|
2236
|
+
/** @name SygmaPercentageFeehandlerEvent (189) */
|
2237
|
+
interface SygmaPercentageFeehandlerEvent extends Enum {
|
2238
|
+
readonly isFeeRateSet: boolean;
|
2239
|
+
readonly asFeeRateSet: {
|
2240
|
+
readonly domain: u8;
|
2241
|
+
readonly asset: StagingXcmV4AssetAssetId;
|
2242
|
+
readonly rateBasisPoint: u32;
|
2243
|
+
readonly feeLowerBound: u128;
|
2244
|
+
readonly feeUpperBound: u128;
|
2245
|
+
} & Struct;
|
2246
|
+
readonly type: 'FeeRateSet';
|
2247
|
+
}
|
2248
|
+
|
2249
|
+
/** @name SygmaBridgeEvent (190) */
|
2250
|
+
interface SygmaBridgeEvent extends Enum {
|
2251
|
+
readonly isDeposit: boolean;
|
2252
|
+
readonly asDeposit: {
|
2253
|
+
readonly destDomainId: u8;
|
2254
|
+
readonly resourceId: U8aFixed;
|
2255
|
+
readonly depositNonce: u64;
|
2256
|
+
readonly sender: AccountId32;
|
2257
|
+
readonly transferType: SygmaTraitsTransferType;
|
2258
|
+
readonly depositData: Bytes;
|
2259
|
+
readonly handlerResponse: Bytes;
|
2260
|
+
} & Struct;
|
2261
|
+
readonly isProposalExecution: boolean;
|
2262
|
+
readonly asProposalExecution: {
|
2263
|
+
readonly originDomainId: u8;
|
2264
|
+
readonly depositNonce: u64;
|
2265
|
+
readonly dataHash: U8aFixed;
|
2266
|
+
} & Struct;
|
2267
|
+
readonly isFailedHandlerExecution: boolean;
|
2268
|
+
readonly asFailedHandlerExecution: {
|
2269
|
+
readonly error: Bytes;
|
2270
|
+
readonly originDomainId: u8;
|
2271
|
+
readonly depositNonce: u64;
|
2272
|
+
} & Struct;
|
2273
|
+
readonly isRetry: boolean;
|
2274
|
+
readonly asRetry: {
|
2275
|
+
readonly depositOnBlockHeight: u128;
|
2276
|
+
readonly destDomainId: u8;
|
2277
|
+
readonly sender: AccountId32;
|
2278
|
+
} & Struct;
|
2279
|
+
readonly isBridgePaused: boolean;
|
2280
|
+
readonly asBridgePaused: {
|
2281
|
+
readonly destDomainId: u8;
|
2282
|
+
} & Struct;
|
2283
|
+
readonly isBridgeUnpaused: boolean;
|
2284
|
+
readonly asBridgeUnpaused: {
|
2285
|
+
readonly destDomainId: u8;
|
2286
|
+
} & Struct;
|
2287
|
+
readonly isRegisterDestDomain: boolean;
|
2288
|
+
readonly asRegisterDestDomain: {
|
2289
|
+
readonly sender: AccountId32;
|
2290
|
+
readonly domainId: u8;
|
2291
|
+
readonly chainId: U256;
|
2292
|
+
} & Struct;
|
2293
|
+
readonly isUnregisterDestDomain: boolean;
|
2294
|
+
readonly asUnregisterDestDomain: {
|
2295
|
+
readonly sender: AccountId32;
|
2296
|
+
readonly domainId: u8;
|
2297
|
+
readonly chainId: U256;
|
2298
|
+
} & Struct;
|
2299
|
+
readonly isFeeCollected: boolean;
|
2300
|
+
readonly asFeeCollected: {
|
2301
|
+
readonly feePayer: AccountId32;
|
2302
|
+
readonly destDomainId: u8;
|
2303
|
+
readonly resourceId: U8aFixed;
|
2304
|
+
readonly feeAmount: u128;
|
2305
|
+
readonly feeAssetId: StagingXcmV4AssetAssetId;
|
2306
|
+
} & Struct;
|
2307
|
+
readonly isAllBridgePaused: boolean;
|
2308
|
+
readonly asAllBridgePaused: {
|
2309
|
+
readonly sender: AccountId32;
|
2310
|
+
} & Struct;
|
2311
|
+
readonly isAllBridgeUnpaused: boolean;
|
2312
|
+
readonly asAllBridgeUnpaused: {
|
2313
|
+
readonly sender: AccountId32;
|
2314
|
+
} & Struct;
|
2315
|
+
readonly type: 'Deposit' | 'ProposalExecution' | 'FailedHandlerExecution' | 'Retry' | 'BridgePaused' | 'BridgeUnpaused' | 'RegisterDestDomain' | 'UnregisterDestDomain' | 'FeeCollected' | 'AllBridgePaused' | 'AllBridgeUnpaused';
|
2316
|
+
}
|
2317
|
+
|
2318
|
+
/** @name SygmaTraitsTransferType (191) */
|
2319
|
+
interface SygmaTraitsTransferType extends Enum {
|
2320
|
+
readonly isFungibleTransfer: boolean;
|
2321
|
+
readonly isNonFungibleTransfer: boolean;
|
2322
|
+
readonly isGenericTransfer: boolean;
|
2323
|
+
readonly type: 'FungibleTransfer' | 'NonFungibleTransfer' | 'GenericTransfer';
|
2324
|
+
}
|
2325
|
+
|
2326
|
+
/** @name FrameSystemPhase (192) */
|
1818
2327
|
interface FrameSystemPhase extends Enum {
|
1819
2328
|
readonly isApplyExtrinsic: boolean;
|
1820
2329
|
readonly asApplyExtrinsic: u32;
|
@@ -1823,19 +2332,19 @@ declare module '@polkadot/types/lookup' {
|
|
1823
2332
|
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
|
1824
2333
|
}
|
1825
2334
|
|
1826
|
-
/** @name FrameSystemLastRuntimeUpgradeInfo (
|
2335
|
+
/** @name FrameSystemLastRuntimeUpgradeInfo (194) */
|
1827
2336
|
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
|
1828
2337
|
readonly specVersion: Compact<u32>;
|
1829
2338
|
readonly specName: Text;
|
1830
2339
|
}
|
1831
2340
|
|
1832
|
-
/** @name FrameSystemCodeUpgradeAuthorization (
|
2341
|
+
/** @name FrameSystemCodeUpgradeAuthorization (195) */
|
1833
2342
|
interface FrameSystemCodeUpgradeAuthorization extends Struct {
|
1834
2343
|
readonly codeHash: H256;
|
1835
2344
|
readonly checkVersion: bool;
|
1836
2345
|
}
|
1837
2346
|
|
1838
|
-
/** @name FrameSystemCall (
|
2347
|
+
/** @name FrameSystemCall (196) */
|
1839
2348
|
interface FrameSystemCall extends Enum {
|
1840
2349
|
readonly isRemark: boolean;
|
1841
2350
|
readonly asRemark: {
|
@@ -1885,21 +2394,21 @@ declare module '@polkadot/types/lookup' {
|
|
1885
2394
|
readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent' | 'AuthorizeUpgrade' | 'AuthorizeUpgradeWithoutChecks' | 'ApplyAuthorizedUpgrade';
|
1886
2395
|
}
|
1887
2396
|
|
1888
|
-
/** @name FrameSystemLimitsBlockWeights (
|
2397
|
+
/** @name FrameSystemLimitsBlockWeights (200) */
|
1889
2398
|
interface FrameSystemLimitsBlockWeights extends Struct {
|
1890
2399
|
readonly baseBlock: SpWeightsWeightV2Weight;
|
1891
2400
|
readonly maxBlock: SpWeightsWeightV2Weight;
|
1892
2401
|
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
|
1893
2402
|
}
|
1894
2403
|
|
1895
|
-
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (
|
2404
|
+
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (201) */
|
1896
2405
|
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
|
1897
2406
|
readonly normal: FrameSystemLimitsWeightsPerClass;
|
1898
2407
|
readonly operational: FrameSystemLimitsWeightsPerClass;
|
1899
2408
|
readonly mandatory: FrameSystemLimitsWeightsPerClass;
|
1900
2409
|
}
|
1901
2410
|
|
1902
|
-
/** @name FrameSystemLimitsWeightsPerClass (
|
2411
|
+
/** @name FrameSystemLimitsWeightsPerClass (202) */
|
1903
2412
|
interface FrameSystemLimitsWeightsPerClass extends Struct {
|
1904
2413
|
readonly baseExtrinsic: SpWeightsWeightV2Weight;
|
1905
2414
|
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
|
@@ -1907,25 +2416,25 @@ declare module '@polkadot/types/lookup' {
|
|
1907
2416
|
readonly reserved: Option<SpWeightsWeightV2Weight>;
|
1908
2417
|
}
|
1909
2418
|
|
1910
|
-
/** @name FrameSystemLimitsBlockLength (
|
2419
|
+
/** @name FrameSystemLimitsBlockLength (204) */
|
1911
2420
|
interface FrameSystemLimitsBlockLength extends Struct {
|
1912
2421
|
readonly max: FrameSupportDispatchPerDispatchClassU32;
|
1913
2422
|
}
|
1914
2423
|
|
1915
|
-
/** @name FrameSupportDispatchPerDispatchClassU32 (
|
2424
|
+
/** @name FrameSupportDispatchPerDispatchClassU32 (205) */
|
1916
2425
|
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
|
1917
2426
|
readonly normal: u32;
|
1918
2427
|
readonly operational: u32;
|
1919
2428
|
readonly mandatory: u32;
|
1920
2429
|
}
|
1921
2430
|
|
1922
|
-
/** @name SpWeightsRuntimeDbWeight (
|
2431
|
+
/** @name SpWeightsRuntimeDbWeight (206) */
|
1923
2432
|
interface SpWeightsRuntimeDbWeight extends Struct {
|
1924
2433
|
readonly read: u64;
|
1925
2434
|
readonly write: u64;
|
1926
2435
|
}
|
1927
2436
|
|
1928
|
-
/** @name SpVersionRuntimeVersion (
|
2437
|
+
/** @name SpVersionRuntimeVersion (207) */
|
1929
2438
|
interface SpVersionRuntimeVersion extends Struct {
|
1930
2439
|
readonly specName: Text;
|
1931
2440
|
readonly implName: Text;
|
@@ -1937,7 +2446,7 @@ declare module '@polkadot/types/lookup' {
|
|
1937
2446
|
readonly stateVersion: u8;
|
1938
2447
|
}
|
1939
2448
|
|
1940
|
-
/** @name FrameSystemError (
|
2449
|
+
/** @name FrameSystemError (212) */
|
1941
2450
|
interface FrameSystemError extends Enum {
|
1942
2451
|
readonly isInvalidSpecName: boolean;
|
1943
2452
|
readonly isSpecVersionNeedsToIncrease: boolean;
|
@@ -1950,7 +2459,7 @@ declare module '@polkadot/types/lookup' {
|
|
1950
2459
|
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered' | 'NothingAuthorized' | 'Unauthorized';
|
1951
2460
|
}
|
1952
2461
|
|
1953
|
-
/** @name PalletTimestampCall (
|
2462
|
+
/** @name PalletTimestampCall (213) */
|
1954
2463
|
interface PalletTimestampCall extends Enum {
|
1955
2464
|
readonly isSet: boolean;
|
1956
2465
|
readonly asSet: {
|
@@ -1959,7 +2468,7 @@ declare module '@polkadot/types/lookup' {
|
|
1959
2468
|
readonly type: 'Set';
|
1960
2469
|
}
|
1961
2470
|
|
1962
|
-
/** @name PalletSudoCall (
|
2471
|
+
/** @name PalletSudoCall (214) */
|
1963
2472
|
interface PalletSudoCall extends Enum {
|
1964
2473
|
readonly isSudo: boolean;
|
1965
2474
|
readonly asSudo: {
|
@@ -1983,7 +2492,189 @@ declare module '@polkadot/types/lookup' {
|
|
1983
2492
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
1984
2493
|
}
|
1985
2494
|
|
1986
|
-
/** @name
|
2495
|
+
/** @name PalletAssetsCall (216) */
|
2496
|
+
interface PalletAssetsCall extends Enum {
|
2497
|
+
readonly isCreate: boolean;
|
2498
|
+
readonly asCreate: {
|
2499
|
+
readonly id: Compact<u128>;
|
2500
|
+
readonly admin: MultiAddress;
|
2501
|
+
readonly minBalance: u128;
|
2502
|
+
} & Struct;
|
2503
|
+
readonly isForceCreate: boolean;
|
2504
|
+
readonly asForceCreate: {
|
2505
|
+
readonly id: Compact<u128>;
|
2506
|
+
readonly owner: MultiAddress;
|
2507
|
+
readonly isSufficient: bool;
|
2508
|
+
readonly minBalance: Compact<u128>;
|
2509
|
+
} & Struct;
|
2510
|
+
readonly isStartDestroy: boolean;
|
2511
|
+
readonly asStartDestroy: {
|
2512
|
+
readonly id: Compact<u128>;
|
2513
|
+
} & Struct;
|
2514
|
+
readonly isDestroyAccounts: boolean;
|
2515
|
+
readonly asDestroyAccounts: {
|
2516
|
+
readonly id: Compact<u128>;
|
2517
|
+
} & Struct;
|
2518
|
+
readonly isDestroyApprovals: boolean;
|
2519
|
+
readonly asDestroyApprovals: {
|
2520
|
+
readonly id: Compact<u128>;
|
2521
|
+
} & Struct;
|
2522
|
+
readonly isFinishDestroy: boolean;
|
2523
|
+
readonly asFinishDestroy: {
|
2524
|
+
readonly id: Compact<u128>;
|
2525
|
+
} & Struct;
|
2526
|
+
readonly isMint: boolean;
|
2527
|
+
readonly asMint: {
|
2528
|
+
readonly id: Compact<u128>;
|
2529
|
+
readonly beneficiary: MultiAddress;
|
2530
|
+
readonly amount: Compact<u128>;
|
2531
|
+
} & Struct;
|
2532
|
+
readonly isBurn: boolean;
|
2533
|
+
readonly asBurn: {
|
2534
|
+
readonly id: Compact<u128>;
|
2535
|
+
readonly who: MultiAddress;
|
2536
|
+
readonly amount: Compact<u128>;
|
2537
|
+
} & Struct;
|
2538
|
+
readonly isTransfer: boolean;
|
2539
|
+
readonly asTransfer: {
|
2540
|
+
readonly id: Compact<u128>;
|
2541
|
+
readonly target: MultiAddress;
|
2542
|
+
readonly amount: Compact<u128>;
|
2543
|
+
} & Struct;
|
2544
|
+
readonly isTransferKeepAlive: boolean;
|
2545
|
+
readonly asTransferKeepAlive: {
|
2546
|
+
readonly id: Compact<u128>;
|
2547
|
+
readonly target: MultiAddress;
|
2548
|
+
readonly amount: Compact<u128>;
|
2549
|
+
} & Struct;
|
2550
|
+
readonly isForceTransfer: boolean;
|
2551
|
+
readonly asForceTransfer: {
|
2552
|
+
readonly id: Compact<u128>;
|
2553
|
+
readonly source: MultiAddress;
|
2554
|
+
readonly dest: MultiAddress;
|
2555
|
+
readonly amount: Compact<u128>;
|
2556
|
+
} & Struct;
|
2557
|
+
readonly isFreeze: boolean;
|
2558
|
+
readonly asFreeze: {
|
2559
|
+
readonly id: Compact<u128>;
|
2560
|
+
readonly who: MultiAddress;
|
2561
|
+
} & Struct;
|
2562
|
+
readonly isThaw: boolean;
|
2563
|
+
readonly asThaw: {
|
2564
|
+
readonly id: Compact<u128>;
|
2565
|
+
readonly who: MultiAddress;
|
2566
|
+
} & Struct;
|
2567
|
+
readonly isFreezeAsset: boolean;
|
2568
|
+
readonly asFreezeAsset: {
|
2569
|
+
readonly id: Compact<u128>;
|
2570
|
+
} & Struct;
|
2571
|
+
readonly isThawAsset: boolean;
|
2572
|
+
readonly asThawAsset: {
|
2573
|
+
readonly id: Compact<u128>;
|
2574
|
+
} & Struct;
|
2575
|
+
readonly isTransferOwnership: boolean;
|
2576
|
+
readonly asTransferOwnership: {
|
2577
|
+
readonly id: Compact<u128>;
|
2578
|
+
readonly owner: MultiAddress;
|
2579
|
+
} & Struct;
|
2580
|
+
readonly isSetTeam: boolean;
|
2581
|
+
readonly asSetTeam: {
|
2582
|
+
readonly id: Compact<u128>;
|
2583
|
+
readonly issuer: MultiAddress;
|
2584
|
+
readonly admin: MultiAddress;
|
2585
|
+
readonly freezer: MultiAddress;
|
2586
|
+
} & Struct;
|
2587
|
+
readonly isSetMetadata: boolean;
|
2588
|
+
readonly asSetMetadata: {
|
2589
|
+
readonly id: Compact<u128>;
|
2590
|
+
readonly name: Bytes;
|
2591
|
+
readonly symbol: Bytes;
|
2592
|
+
readonly decimals: u8;
|
2593
|
+
} & Struct;
|
2594
|
+
readonly isClearMetadata: boolean;
|
2595
|
+
readonly asClearMetadata: {
|
2596
|
+
readonly id: Compact<u128>;
|
2597
|
+
} & Struct;
|
2598
|
+
readonly isForceSetMetadata: boolean;
|
2599
|
+
readonly asForceSetMetadata: {
|
2600
|
+
readonly id: Compact<u128>;
|
2601
|
+
readonly name: Bytes;
|
2602
|
+
readonly symbol: Bytes;
|
2603
|
+
readonly decimals: u8;
|
2604
|
+
readonly isFrozen: bool;
|
2605
|
+
} & Struct;
|
2606
|
+
readonly isForceClearMetadata: boolean;
|
2607
|
+
readonly asForceClearMetadata: {
|
2608
|
+
readonly id: Compact<u128>;
|
2609
|
+
} & Struct;
|
2610
|
+
readonly isForceAssetStatus: boolean;
|
2611
|
+
readonly asForceAssetStatus: {
|
2612
|
+
readonly id: Compact<u128>;
|
2613
|
+
readonly owner: MultiAddress;
|
2614
|
+
readonly issuer: MultiAddress;
|
2615
|
+
readonly admin: MultiAddress;
|
2616
|
+
readonly freezer: MultiAddress;
|
2617
|
+
readonly minBalance: Compact<u128>;
|
2618
|
+
readonly isSufficient: bool;
|
2619
|
+
readonly isFrozen: bool;
|
2620
|
+
} & Struct;
|
2621
|
+
readonly isApproveTransfer: boolean;
|
2622
|
+
readonly asApproveTransfer: {
|
2623
|
+
readonly id: Compact<u128>;
|
2624
|
+
readonly delegate: MultiAddress;
|
2625
|
+
readonly amount: Compact<u128>;
|
2626
|
+
} & Struct;
|
2627
|
+
readonly isCancelApproval: boolean;
|
2628
|
+
readonly asCancelApproval: {
|
2629
|
+
readonly id: Compact<u128>;
|
2630
|
+
readonly delegate: MultiAddress;
|
2631
|
+
} & Struct;
|
2632
|
+
readonly isForceCancelApproval: boolean;
|
2633
|
+
readonly asForceCancelApproval: {
|
2634
|
+
readonly id: Compact<u128>;
|
2635
|
+
readonly owner: MultiAddress;
|
2636
|
+
readonly delegate: MultiAddress;
|
2637
|
+
} & Struct;
|
2638
|
+
readonly isTransferApproved: boolean;
|
2639
|
+
readonly asTransferApproved: {
|
2640
|
+
readonly id: Compact<u128>;
|
2641
|
+
readonly owner: MultiAddress;
|
2642
|
+
readonly destination: MultiAddress;
|
2643
|
+
readonly amount: Compact<u128>;
|
2644
|
+
} & Struct;
|
2645
|
+
readonly isTouch: boolean;
|
2646
|
+
readonly asTouch: {
|
2647
|
+
readonly id: Compact<u128>;
|
2648
|
+
} & Struct;
|
2649
|
+
readonly isRefund: boolean;
|
2650
|
+
readonly asRefund: {
|
2651
|
+
readonly id: Compact<u128>;
|
2652
|
+
readonly allowBurn: bool;
|
2653
|
+
} & Struct;
|
2654
|
+
readonly isSetMinBalance: boolean;
|
2655
|
+
readonly asSetMinBalance: {
|
2656
|
+
readonly id: Compact<u128>;
|
2657
|
+
readonly minBalance: u128;
|
2658
|
+
} & Struct;
|
2659
|
+
readonly isTouchOther: boolean;
|
2660
|
+
readonly asTouchOther: {
|
2661
|
+
readonly id: Compact<u128>;
|
2662
|
+
readonly who: MultiAddress;
|
2663
|
+
} & Struct;
|
2664
|
+
readonly isRefundOther: boolean;
|
2665
|
+
readonly asRefundOther: {
|
2666
|
+
readonly id: Compact<u128>;
|
2667
|
+
readonly who: MultiAddress;
|
2668
|
+
} & Struct;
|
2669
|
+
readonly isBlock: boolean;
|
2670
|
+
readonly asBlock: {
|
2671
|
+
readonly id: Compact<u128>;
|
2672
|
+
readonly who: MultiAddress;
|
2673
|
+
} & Struct;
|
2674
|
+
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';
|
2675
|
+
}
|
2676
|
+
|
2677
|
+
/** @name PalletBalancesCall (218) */
|
1987
2678
|
interface PalletBalancesCall extends Enum {
|
1988
2679
|
readonly isTransferAllowDeath: boolean;
|
1989
2680
|
readonly asTransferAllowDeath: {
|
@@ -2028,14 +2719,14 @@ declare module '@polkadot/types/lookup' {
|
|
2028
2719
|
readonly type: 'TransferAllowDeath' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'ForceSetBalance' | 'ForceAdjustTotalIssuance';
|
2029
2720
|
}
|
2030
2721
|
|
2031
|
-
/** @name PalletBalancesAdjustmentDirection (
|
2722
|
+
/** @name PalletBalancesAdjustmentDirection (219) */
|
2032
2723
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
2033
2724
|
readonly isIncrease: boolean;
|
2034
2725
|
readonly isDecrease: boolean;
|
2035
2726
|
readonly type: 'Increase' | 'Decrease';
|
2036
2727
|
}
|
2037
2728
|
|
2038
|
-
/** @name PalletBabeCall (
|
2729
|
+
/** @name PalletBabeCall (220) */
|
2039
2730
|
interface PalletBabeCall extends Enum {
|
2040
2731
|
readonly isReportEquivocation: boolean;
|
2041
2732
|
readonly asReportEquivocation: {
|
@@ -2054,7 +2745,7 @@ declare module '@polkadot/types/lookup' {
|
|
2054
2745
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'PlanConfigChange';
|
2055
2746
|
}
|
2056
2747
|
|
2057
|
-
/** @name SpConsensusSlotsEquivocationProof (
|
2748
|
+
/** @name SpConsensusSlotsEquivocationProof (221) */
|
2058
2749
|
interface SpConsensusSlotsEquivocationProof extends Struct {
|
2059
2750
|
readonly offender: SpConsensusBabeAppPublic;
|
2060
2751
|
readonly slot: u64;
|
@@ -2062,7 +2753,7 @@ declare module '@polkadot/types/lookup' {
|
|
2062
2753
|
readonly secondHeader: SpRuntimeHeader;
|
2063
2754
|
}
|
2064
2755
|
|
2065
|
-
/** @name SpRuntimeHeader (
|
2756
|
+
/** @name SpRuntimeHeader (222) */
|
2066
2757
|
interface SpRuntimeHeader extends Struct {
|
2067
2758
|
readonly parentHash: H256;
|
2068
2759
|
readonly number: Compact<u64>;
|
@@ -2071,17 +2762,17 @@ declare module '@polkadot/types/lookup' {
|
|
2071
2762
|
readonly digest: SpRuntimeDigest;
|
2072
2763
|
}
|
2073
2764
|
|
2074
|
-
/** @name SpConsensusBabeAppPublic (
|
2765
|
+
/** @name SpConsensusBabeAppPublic (223) */
|
2075
2766
|
interface SpConsensusBabeAppPublic extends SpCoreSr25519Public {}
|
2076
2767
|
|
2077
|
-
/** @name SpSessionMembershipProof (
|
2768
|
+
/** @name SpSessionMembershipProof (225) */
|
2078
2769
|
interface SpSessionMembershipProof extends Struct {
|
2079
2770
|
readonly session: u32;
|
2080
2771
|
readonly trieNodes: Vec<Bytes>;
|
2081
2772
|
readonly validatorCount: u32;
|
2082
2773
|
}
|
2083
2774
|
|
2084
|
-
/** @name SpConsensusBabeDigestsNextConfigDescriptor (
|
2775
|
+
/** @name SpConsensusBabeDigestsNextConfigDescriptor (226) */
|
2085
2776
|
interface SpConsensusBabeDigestsNextConfigDescriptor extends Enum {
|
2086
2777
|
readonly isV1: boolean;
|
2087
2778
|
readonly asV1: {
|
@@ -2091,7 +2782,7 @@ declare module '@polkadot/types/lookup' {
|
|
2091
2782
|
readonly type: 'V1';
|
2092
2783
|
}
|
2093
2784
|
|
2094
|
-
/** @name SpConsensusBabeAllowedSlots (
|
2785
|
+
/** @name SpConsensusBabeAllowedSlots (228) */
|
2095
2786
|
interface SpConsensusBabeAllowedSlots extends Enum {
|
2096
2787
|
readonly isPrimarySlots: boolean;
|
2097
2788
|
readonly isPrimaryAndSecondaryPlainSlots: boolean;
|
@@ -2099,7 +2790,7 @@ declare module '@polkadot/types/lookup' {
|
|
2099
2790
|
readonly type: 'PrimarySlots' | 'PrimaryAndSecondaryPlainSlots' | 'PrimaryAndSecondaryVRFSlots';
|
2100
2791
|
}
|
2101
2792
|
|
2102
|
-
/** @name PalletGrandpaCall (
|
2793
|
+
/** @name PalletGrandpaCall (229) */
|
2103
2794
|
interface PalletGrandpaCall extends Enum {
|
2104
2795
|
readonly isReportEquivocation: boolean;
|
2105
2796
|
readonly asReportEquivocation: {
|
@@ -2119,13 +2810,13 @@ declare module '@polkadot/types/lookup' {
|
|
2119
2810
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
2120
2811
|
}
|
2121
2812
|
|
2122
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
2813
|
+
/** @name SpConsensusGrandpaEquivocationProof (230) */
|
2123
2814
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
2124
2815
|
readonly setId: u64;
|
2125
2816
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
2126
2817
|
}
|
2127
2818
|
|
2128
|
-
/** @name SpConsensusGrandpaEquivocation (
|
2819
|
+
/** @name SpConsensusGrandpaEquivocation (231) */
|
2129
2820
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
2130
2821
|
readonly isPrevote: boolean;
|
2131
2822
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
@@ -2134,7 +2825,7 @@ declare module '@polkadot/types/lookup' {
|
|
2134
2825
|
readonly type: 'Prevote' | 'Precommit';
|
2135
2826
|
}
|
2136
2827
|
|
2137
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
2828
|
+
/** @name FinalityGrandpaEquivocationPrevote (232) */
|
2138
2829
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
2139
2830
|
readonly roundNumber: u64;
|
2140
2831
|
readonly identity: SpConsensusGrandpaAppPublic;
|
@@ -2142,19 +2833,19 @@ declare module '@polkadot/types/lookup' {
|
|
2142
2833
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
2143
2834
|
}
|
2144
2835
|
|
2145
|
-
/** @name FinalityGrandpaPrevote (
|
2836
|
+
/** @name FinalityGrandpaPrevote (233) */
|
2146
2837
|
interface FinalityGrandpaPrevote extends Struct {
|
2147
2838
|
readonly targetHash: H256;
|
2148
2839
|
readonly targetNumber: u64;
|
2149
2840
|
}
|
2150
2841
|
|
2151
|
-
/** @name SpConsensusGrandpaAppSignature (
|
2842
|
+
/** @name SpConsensusGrandpaAppSignature (234) */
|
2152
2843
|
interface SpConsensusGrandpaAppSignature extends SpCoreEd25519Signature {}
|
2153
2844
|
|
2154
|
-
/** @name SpCoreEd25519Signature (
|
2845
|
+
/** @name SpCoreEd25519Signature (235) */
|
2155
2846
|
interface SpCoreEd25519Signature extends U8aFixed {}
|
2156
2847
|
|
2157
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
2848
|
+
/** @name FinalityGrandpaEquivocationPrecommit (238) */
|
2158
2849
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
2159
2850
|
readonly roundNumber: u64;
|
2160
2851
|
readonly identity: SpConsensusGrandpaAppPublic;
|
@@ -2162,16 +2853,16 @@ declare module '@polkadot/types/lookup' {
|
|
2162
2853
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
2163
2854
|
}
|
2164
2855
|
|
2165
|
-
/** @name FinalityGrandpaPrecommit (
|
2856
|
+
/** @name FinalityGrandpaPrecommit (239) */
|
2166
2857
|
interface FinalityGrandpaPrecommit extends Struct {
|
2167
2858
|
readonly targetHash: H256;
|
2168
2859
|
readonly targetNumber: u64;
|
2169
2860
|
}
|
2170
2861
|
|
2171
|
-
/** @name SpCoreVoid (
|
2862
|
+
/** @name SpCoreVoid (241) */
|
2172
2863
|
type SpCoreVoid = Null;
|
2173
2864
|
|
2174
|
-
/** @name PalletIndicesCall (
|
2865
|
+
/** @name PalletIndicesCall (242) */
|
2175
2866
|
interface PalletIndicesCall extends Enum {
|
2176
2867
|
readonly isClaim: boolean;
|
2177
2868
|
readonly asClaim: {
|
@@ -2199,7 +2890,7 @@ declare module '@polkadot/types/lookup' {
|
|
2199
2890
|
readonly type: 'Claim' | 'Transfer' | 'Free' | 'ForceTransfer' | 'Freeze';
|
2200
2891
|
}
|
2201
2892
|
|
2202
|
-
/** @name PalletDemocracyCall (
|
2893
|
+
/** @name PalletDemocracyCall (243) */
|
2203
2894
|
interface PalletDemocracyCall extends Enum {
|
2204
2895
|
readonly isPropose: boolean;
|
2205
2896
|
readonly asPropose: {
|
@@ -2283,7 +2974,7 @@ declare module '@polkadot/types/lookup' {
|
|
2283
2974
|
readonly type: 'Propose' | 'Second' | 'Vote' | 'EmergencyCancel' | 'ExternalPropose' | 'ExternalProposeMajority' | 'ExternalProposeDefault' | 'FastTrack' | 'VetoExternal' | 'CancelReferendum' | 'Delegate' | 'Undelegate' | 'ClearPublicProposals' | 'Unlock' | 'RemoveVote' | 'RemoveOtherVote' | 'Blacklist' | 'CancelProposal' | 'SetMetadata';
|
2284
2975
|
}
|
2285
2976
|
|
2286
|
-
/** @name FrameSupportPreimagesBounded (
|
2977
|
+
/** @name FrameSupportPreimagesBounded (244) */
|
2287
2978
|
interface FrameSupportPreimagesBounded extends Enum {
|
2288
2979
|
readonly isLegacy: boolean;
|
2289
2980
|
readonly asLegacy: {
|
@@ -2299,10 +2990,10 @@ declare module '@polkadot/types/lookup' {
|
|
2299
2990
|
readonly type: 'Legacy' | 'Inline' | 'Lookup';
|
2300
2991
|
}
|
2301
2992
|
|
2302
|
-
/** @name SpRuntimeBlakeTwo256 (
|
2993
|
+
/** @name SpRuntimeBlakeTwo256 (245) */
|
2303
2994
|
type SpRuntimeBlakeTwo256 = Null;
|
2304
2995
|
|
2305
|
-
/** @name PalletDemocracyConviction (
|
2996
|
+
/** @name PalletDemocracyConviction (247) */
|
2306
2997
|
interface PalletDemocracyConviction extends Enum {
|
2307
2998
|
readonly isNone: boolean;
|
2308
2999
|
readonly isLocked1x: boolean;
|
@@ -2314,7 +3005,7 @@ declare module '@polkadot/types/lookup' {
|
|
2314
3005
|
readonly type: 'None' | 'Locked1x' | 'Locked2x' | 'Locked3x' | 'Locked4x' | 'Locked5x' | 'Locked6x';
|
2315
3006
|
}
|
2316
3007
|
|
2317
|
-
/** @name PalletCollectiveCall (
|
3008
|
+
/** @name PalletCollectiveCall (250) */
|
2318
3009
|
interface PalletCollectiveCall extends Enum {
|
2319
3010
|
readonly isSetMembers: boolean;
|
2320
3011
|
readonly asSetMembers: {
|
@@ -2353,7 +3044,7 @@ declare module '@polkadot/types/lookup' {
|
|
2353
3044
|
readonly type: 'SetMembers' | 'Execute' | 'Propose' | 'Vote' | 'DisapproveProposal' | 'Close';
|
2354
3045
|
}
|
2355
3046
|
|
2356
|
-
/** @name PalletVestingCall (
|
3047
|
+
/** @name PalletVestingCall (251) */
|
2357
3048
|
interface PalletVestingCall extends Enum {
|
2358
3049
|
readonly isVest: boolean;
|
2359
3050
|
readonly isVestOther: boolean;
|
@@ -2384,14 +3075,14 @@ declare module '@polkadot/types/lookup' {
|
|
2384
3075
|
readonly type: 'Vest' | 'VestOther' | 'VestedTransfer' | 'ForceVestedTransfer' | 'MergeSchedules' | 'ForceRemoveVestingSchedule';
|
2385
3076
|
}
|
2386
3077
|
|
2387
|
-
/** @name PalletVestingVestingInfo (
|
3078
|
+
/** @name PalletVestingVestingInfo (252) */
|
2388
3079
|
interface PalletVestingVestingInfo extends Struct {
|
2389
3080
|
readonly locked: u128;
|
2390
3081
|
readonly perBlock: u128;
|
2391
3082
|
readonly startingBlock: u64;
|
2392
3083
|
}
|
2393
3084
|
|
2394
|
-
/** @name PalletElectionsPhragmenCall (
|
3085
|
+
/** @name PalletElectionsPhragmenCall (253) */
|
2395
3086
|
interface PalletElectionsPhragmenCall extends Enum {
|
2396
3087
|
readonly isVote: boolean;
|
2397
3088
|
readonly asVote: {
|
@@ -2421,7 +3112,7 @@ declare module '@polkadot/types/lookup' {
|
|
2421
3112
|
readonly type: 'Vote' | 'RemoveVoter' | 'SubmitCandidacy' | 'RenounceCandidacy' | 'RemoveMember' | 'CleanDefunctVoters';
|
2422
3113
|
}
|
2423
3114
|
|
2424
|
-
/** @name PalletElectionsPhragmenRenouncing (
|
3115
|
+
/** @name PalletElectionsPhragmenRenouncing (254) */
|
2425
3116
|
interface PalletElectionsPhragmenRenouncing extends Enum {
|
2426
3117
|
readonly isMember: boolean;
|
2427
3118
|
readonly isRunnerUp: boolean;
|
@@ -2430,7 +3121,7 @@ declare module '@polkadot/types/lookup' {
|
|
2430
3121
|
readonly type: 'Member' | 'RunnerUp' | 'Candidate';
|
2431
3122
|
}
|
2432
3123
|
|
2433
|
-
/** @name PalletElectionProviderMultiPhaseCall (
|
3124
|
+
/** @name PalletElectionProviderMultiPhaseCall (255) */
|
2434
3125
|
interface PalletElectionProviderMultiPhaseCall extends Enum {
|
2435
3126
|
readonly isSubmitUnsigned: boolean;
|
2436
3127
|
readonly asSubmitUnsigned: {
|
@@ -2457,14 +3148,14 @@ declare module '@polkadot/types/lookup' {
|
|
2457
3148
|
readonly type: 'SubmitUnsigned' | 'SetMinimumUntrustedScore' | 'SetEmergencyElectionResult' | 'Submit' | 'GovernanceFallback';
|
2458
3149
|
}
|
2459
3150
|
|
2460
|
-
/** @name PalletElectionProviderMultiPhaseRawSolution (
|
3151
|
+
/** @name PalletElectionProviderMultiPhaseRawSolution (256) */
|
2461
3152
|
interface PalletElectionProviderMultiPhaseRawSolution extends Struct {
|
2462
3153
|
readonly solution: TangleTestnetRuntimeNposSolution16;
|
2463
3154
|
readonly score: SpNposElectionsElectionScore;
|
2464
3155
|
readonly round: u32;
|
2465
3156
|
}
|
2466
3157
|
|
2467
|
-
/** @name TangleTestnetRuntimeNposSolution16 (
|
3158
|
+
/** @name TangleTestnetRuntimeNposSolution16 (257) */
|
2468
3159
|
interface TangleTestnetRuntimeNposSolution16 extends Struct {
|
2469
3160
|
readonly votes1: Vec<ITuple<[Compact<u32>, Compact<u16>]>>;
|
2470
3161
|
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<PerU16>]>, Compact<u16>]>>;
|
@@ -2484,19 +3175,19 @@ declare module '@polkadot/types/lookup' {
|
|
2484
3175
|
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
2485
3176
|
}
|
2486
3177
|
|
2487
|
-
/** @name PalletElectionProviderMultiPhaseSolutionOrSnapshotSize (
|
3178
|
+
/** @name PalletElectionProviderMultiPhaseSolutionOrSnapshotSize (308) */
|
2488
3179
|
interface PalletElectionProviderMultiPhaseSolutionOrSnapshotSize extends Struct {
|
2489
3180
|
readonly voters: Compact<u32>;
|
2490
3181
|
readonly targets: Compact<u32>;
|
2491
3182
|
}
|
2492
3183
|
|
2493
|
-
/** @name SpNposElectionsSupport (
|
3184
|
+
/** @name SpNposElectionsSupport (312) */
|
2494
3185
|
interface SpNposElectionsSupport extends Struct {
|
2495
3186
|
readonly total: u128;
|
2496
3187
|
readonly voters: Vec<ITuple<[AccountId32, u128]>>;
|
2497
3188
|
}
|
2498
3189
|
|
2499
|
-
/** @name PalletStakingPalletCall (
|
3190
|
+
/** @name PalletStakingPalletCall (313) */
|
2500
3191
|
interface PalletStakingPalletCall extends Enum {
|
2501
3192
|
readonly isBond: boolean;
|
2502
3193
|
readonly asBond: {
|
@@ -2614,7 +3305,7 @@ declare module '@polkadot/types/lookup' {
|
|
2614
3305
|
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';
|
2615
3306
|
}
|
2616
3307
|
|
2617
|
-
/** @name PalletStakingPalletConfigOpU128 (
|
3308
|
+
/** @name PalletStakingPalletConfigOpU128 (317) */
|
2618
3309
|
interface PalletStakingPalletConfigOpU128 extends Enum {
|
2619
3310
|
readonly isNoop: boolean;
|
2620
3311
|
readonly isSet: boolean;
|
@@ -2623,7 +3314,7 @@ declare module '@polkadot/types/lookup' {
|
|
2623
3314
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2624
3315
|
}
|
2625
3316
|
|
2626
|
-
/** @name PalletStakingPalletConfigOpU32 (
|
3317
|
+
/** @name PalletStakingPalletConfigOpU32 (318) */
|
2627
3318
|
interface PalletStakingPalletConfigOpU32 extends Enum {
|
2628
3319
|
readonly isNoop: boolean;
|
2629
3320
|
readonly isSet: boolean;
|
@@ -2632,7 +3323,7 @@ declare module '@polkadot/types/lookup' {
|
|
2632
3323
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2633
3324
|
}
|
2634
3325
|
|
2635
|
-
/** @name PalletStakingPalletConfigOpPercent (
|
3326
|
+
/** @name PalletStakingPalletConfigOpPercent (319) */
|
2636
3327
|
interface PalletStakingPalletConfigOpPercent extends Enum {
|
2637
3328
|
readonly isNoop: boolean;
|
2638
3329
|
readonly isSet: boolean;
|
@@ -2641,7 +3332,7 @@ declare module '@polkadot/types/lookup' {
|
|
2641
3332
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2642
3333
|
}
|
2643
3334
|
|
2644
|
-
/** @name PalletStakingPalletConfigOpPerbill (
|
3335
|
+
/** @name PalletStakingPalletConfigOpPerbill (320) */
|
2645
3336
|
interface PalletStakingPalletConfigOpPerbill extends Enum {
|
2646
3337
|
readonly isNoop: boolean;
|
2647
3338
|
readonly isSet: boolean;
|
@@ -2650,7 +3341,7 @@ declare module '@polkadot/types/lookup' {
|
|
2650
3341
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2651
3342
|
}
|
2652
3343
|
|
2653
|
-
/** @name PalletSessionCall (
|
3344
|
+
/** @name PalletSessionCall (322) */
|
2654
3345
|
interface PalletSessionCall extends Enum {
|
2655
3346
|
readonly isSetKeys: boolean;
|
2656
3347
|
readonly asSetKeys: {
|
@@ -2661,7 +3352,7 @@ declare module '@polkadot/types/lookup' {
|
|
2661
3352
|
readonly type: 'SetKeys' | 'PurgeKeys';
|
2662
3353
|
}
|
2663
3354
|
|
2664
|
-
/** @name TangleTestnetRuntimeOpaqueSessionKeys (
|
3355
|
+
/** @name TangleTestnetRuntimeOpaqueSessionKeys (323) */
|
2665
3356
|
interface TangleTestnetRuntimeOpaqueSessionKeys extends Struct {
|
2666
3357
|
readonly babe: SpConsensusBabeAppPublic;
|
2667
3358
|
readonly grandpa: SpConsensusGrandpaAppPublic;
|
@@ -2669,13 +3360,13 @@ declare module '@polkadot/types/lookup' {
|
|
2669
3360
|
readonly role: TangleCryptoPrimitivesCryptoPublic;
|
2670
3361
|
}
|
2671
3362
|
|
2672
|
-
/** @name TangleCryptoPrimitivesCryptoPublic (
|
3363
|
+
/** @name TangleCryptoPrimitivesCryptoPublic (324) */
|
2673
3364
|
interface TangleCryptoPrimitivesCryptoPublic extends SpCoreEcdsaPublic {}
|
2674
3365
|
|
2675
|
-
/** @name SpCoreEcdsaPublic (
|
3366
|
+
/** @name SpCoreEcdsaPublic (325) */
|
2676
3367
|
interface SpCoreEcdsaPublic extends U8aFixed {}
|
2677
3368
|
|
2678
|
-
/** @name PalletTreasuryCall (
|
3369
|
+
/** @name PalletTreasuryCall (327) */
|
2679
3370
|
interface PalletTreasuryCall extends Enum {
|
2680
3371
|
readonly isProposeSpend: boolean;
|
2681
3372
|
readonly asProposeSpend: {
|
@@ -2721,7 +3412,7 @@ declare module '@polkadot/types/lookup' {
|
|
2721
3412
|
readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'SpendLocal' | 'RemoveApproval' | 'Spend' | 'Payout' | 'CheckStatus' | 'VoidSpend';
|
2722
3413
|
}
|
2723
3414
|
|
2724
|
-
/** @name PalletBountiesCall (
|
3415
|
+
/** @name PalletBountiesCall (329) */
|
2725
3416
|
interface PalletBountiesCall extends Enum {
|
2726
3417
|
readonly isProposeBounty: boolean;
|
2727
3418
|
readonly asProposeBounty: {
|
@@ -2767,7 +3458,7 @@ declare module '@polkadot/types/lookup' {
|
|
2767
3458
|
readonly type: 'ProposeBounty' | 'ApproveBounty' | 'ProposeCurator' | 'UnassignCurator' | 'AcceptCurator' | 'AwardBounty' | 'ClaimBounty' | 'CloseBounty' | 'ExtendBountyExpiry';
|
2768
3459
|
}
|
2769
3460
|
|
2770
|
-
/** @name PalletChildBountiesCall (
|
3461
|
+
/** @name PalletChildBountiesCall (330) */
|
2771
3462
|
interface PalletChildBountiesCall extends Enum {
|
2772
3463
|
readonly isAddChildBounty: boolean;
|
2773
3464
|
readonly asAddChildBounty: {
|
@@ -2811,7 +3502,7 @@ declare module '@polkadot/types/lookup' {
|
|
2811
3502
|
readonly type: 'AddChildBounty' | 'ProposeCurator' | 'AcceptCurator' | 'UnassignCurator' | 'AwardChildBounty' | 'ClaimChildBounty' | 'CloseChildBounty';
|
2812
3503
|
}
|
2813
3504
|
|
2814
|
-
/** @name PalletBagsListCall (
|
3505
|
+
/** @name PalletBagsListCall (331) */
|
2815
3506
|
interface PalletBagsListCall extends Enum {
|
2816
3507
|
readonly isRebag: boolean;
|
2817
3508
|
readonly asRebag: {
|
@@ -2829,7 +3520,7 @@ declare module '@polkadot/types/lookup' {
|
|
2829
3520
|
readonly type: 'Rebag' | 'PutInFrontOf' | 'PutInFrontOfOther';
|
2830
3521
|
}
|
2831
3522
|
|
2832
|
-
/** @name PalletNominationPoolsCall (
|
3523
|
+
/** @name PalletNominationPoolsCall (332) */
|
2833
3524
|
interface PalletNominationPoolsCall extends Enum {
|
2834
3525
|
readonly isJoin: boolean;
|
2835
3526
|
readonly asJoin: {
|
@@ -2950,7 +3641,7 @@ declare module '@polkadot/types/lookup' {
|
|
2950
3641
|
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';
|
2951
3642
|
}
|
2952
3643
|
|
2953
|
-
/** @name PalletNominationPoolsBondExtra (
|
3644
|
+
/** @name PalletNominationPoolsBondExtra (333) */
|
2954
3645
|
interface PalletNominationPoolsBondExtra extends Enum {
|
2955
3646
|
readonly isFreeBalance: boolean;
|
2956
3647
|
readonly asFreeBalance: u128;
|
@@ -2958,7 +3649,7 @@ declare module '@polkadot/types/lookup' {
|
|
2958
3649
|
readonly type: 'FreeBalance' | 'Rewards';
|
2959
3650
|
}
|
2960
3651
|
|
2961
|
-
/** @name PalletNominationPoolsConfigOpU128 (
|
3652
|
+
/** @name PalletNominationPoolsConfigOpU128 (334) */
|
2962
3653
|
interface PalletNominationPoolsConfigOpU128 extends Enum {
|
2963
3654
|
readonly isNoop: boolean;
|
2964
3655
|
readonly isSet: boolean;
|
@@ -2967,7 +3658,7 @@ declare module '@polkadot/types/lookup' {
|
|
2967
3658
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2968
3659
|
}
|
2969
3660
|
|
2970
|
-
/** @name PalletNominationPoolsConfigOpU32 (
|
3661
|
+
/** @name PalletNominationPoolsConfigOpU32 (335) */
|
2971
3662
|
interface PalletNominationPoolsConfigOpU32 extends Enum {
|
2972
3663
|
readonly isNoop: boolean;
|
2973
3664
|
readonly isSet: boolean;
|
@@ -2976,7 +3667,7 @@ declare module '@polkadot/types/lookup' {
|
|
2976
3667
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2977
3668
|
}
|
2978
3669
|
|
2979
|
-
/** @name PalletNominationPoolsConfigOpPerbill (
|
3670
|
+
/** @name PalletNominationPoolsConfigOpPerbill (336) */
|
2980
3671
|
interface PalletNominationPoolsConfigOpPerbill extends Enum {
|
2981
3672
|
readonly isNoop: boolean;
|
2982
3673
|
readonly isSet: boolean;
|
@@ -2985,7 +3676,7 @@ declare module '@polkadot/types/lookup' {
|
|
2985
3676
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2986
3677
|
}
|
2987
3678
|
|
2988
|
-
/** @name PalletNominationPoolsConfigOpAccountId32 (
|
3679
|
+
/** @name PalletNominationPoolsConfigOpAccountId32 (337) */
|
2989
3680
|
interface PalletNominationPoolsConfigOpAccountId32 extends Enum {
|
2990
3681
|
readonly isNoop: boolean;
|
2991
3682
|
readonly isSet: boolean;
|
@@ -2994,7 +3685,7 @@ declare module '@polkadot/types/lookup' {
|
|
2994
3685
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2995
3686
|
}
|
2996
3687
|
|
2997
|
-
/** @name PalletNominationPoolsClaimPermission (
|
3688
|
+
/** @name PalletNominationPoolsClaimPermission (338) */
|
2998
3689
|
interface PalletNominationPoolsClaimPermission extends Enum {
|
2999
3690
|
readonly isPermissioned: boolean;
|
3000
3691
|
readonly isPermissionlessCompound: boolean;
|
@@ -3003,7 +3694,7 @@ declare module '@polkadot/types/lookup' {
|
|
3003
3694
|
readonly type: 'Permissioned' | 'PermissionlessCompound' | 'PermissionlessWithdraw' | 'PermissionlessAll';
|
3004
3695
|
}
|
3005
3696
|
|
3006
|
-
/** @name PalletSchedulerCall (
|
3697
|
+
/** @name PalletSchedulerCall (339) */
|
3007
3698
|
interface PalletSchedulerCall extends Enum {
|
3008
3699
|
readonly isSchedule: boolean;
|
3009
3700
|
readonly asSchedule: {
|
@@ -3047,7 +3738,7 @@ declare module '@polkadot/types/lookup' {
|
|
3047
3738
|
readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter';
|
3048
3739
|
}
|
3049
3740
|
|
3050
|
-
/** @name PalletPreimageCall (
|
3741
|
+
/** @name PalletPreimageCall (341) */
|
3051
3742
|
interface PalletPreimageCall extends Enum {
|
3052
3743
|
readonly isNotePreimage: boolean;
|
3053
3744
|
readonly asNotePreimage: {
|
@@ -3072,7 +3763,7 @@ declare module '@polkadot/types/lookup' {
|
|
3072
3763
|
readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage' | 'EnsureUpdated';
|
3073
3764
|
}
|
3074
3765
|
|
3075
|
-
/** @name PalletTxPauseCall (
|
3766
|
+
/** @name PalletTxPauseCall (342) */
|
3076
3767
|
interface PalletTxPauseCall extends Enum {
|
3077
3768
|
readonly isPause: boolean;
|
3078
3769
|
readonly asPause: {
|
@@ -3085,7 +3776,7 @@ declare module '@polkadot/types/lookup' {
|
|
3085
3776
|
readonly type: 'Pause' | 'Unpause';
|
3086
3777
|
}
|
3087
3778
|
|
3088
|
-
/** @name PalletImOnlineCall (
|
3779
|
+
/** @name PalletImOnlineCall (343) */
|
3089
3780
|
interface PalletImOnlineCall extends Enum {
|
3090
3781
|
readonly isHeartbeat: boolean;
|
3091
3782
|
readonly asHeartbeat: {
|
@@ -3095,7 +3786,7 @@ declare module '@polkadot/types/lookup' {
|
|
3095
3786
|
readonly type: 'Heartbeat';
|
3096
3787
|
}
|
3097
3788
|
|
3098
|
-
/** @name PalletImOnlineHeartbeat (
|
3789
|
+
/** @name PalletImOnlineHeartbeat (344) */
|
3099
3790
|
interface PalletImOnlineHeartbeat extends Struct {
|
3100
3791
|
readonly blockNumber: u64;
|
3101
3792
|
readonly sessionIndex: u32;
|
@@ -3103,13 +3794,13 @@ declare module '@polkadot/types/lookup' {
|
|
3103
3794
|
readonly validatorsLen: u32;
|
3104
3795
|
}
|
3105
3796
|
|
3106
|
-
/** @name PalletImOnlineSr25519AppSr25519Signature (
|
3797
|
+
/** @name PalletImOnlineSr25519AppSr25519Signature (345) */
|
3107
3798
|
interface PalletImOnlineSr25519AppSr25519Signature extends SpCoreSr25519Signature {}
|
3108
3799
|
|
3109
|
-
/** @name SpCoreSr25519Signature (
|
3800
|
+
/** @name SpCoreSr25519Signature (346) */
|
3110
3801
|
interface SpCoreSr25519Signature extends U8aFixed {}
|
3111
3802
|
|
3112
|
-
/** @name PalletIdentityCall (
|
3803
|
+
/** @name PalletIdentityCall (347) */
|
3113
3804
|
interface PalletIdentityCall extends Enum {
|
3114
3805
|
readonly isAddRegistrar: boolean;
|
3115
3806
|
readonly asAddRegistrar: {
|
@@ -3209,7 +3900,7 @@ declare module '@polkadot/types/lookup' {
|
|
3209
3900
|
readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'AddUsernameAuthority' | 'RemoveUsernameAuthority' | 'SetUsernameFor' | 'AcceptUsername' | 'RemoveExpiredApproval' | 'SetPrimaryUsername' | 'RemoveDanglingUsername';
|
3210
3901
|
}
|
3211
3902
|
|
3212
|
-
/** @name PalletIdentityLegacyIdentityInfo (
|
3903
|
+
/** @name PalletIdentityLegacyIdentityInfo (348) */
|
3213
3904
|
interface PalletIdentityLegacyIdentityInfo extends Struct {
|
3214
3905
|
readonly additional: Vec<ITuple<[Data, Data]>>;
|
3215
3906
|
readonly display: Data;
|
@@ -3222,7 +3913,7 @@ declare module '@polkadot/types/lookup' {
|
|
3222
3913
|
readonly twitter: Data;
|
3223
3914
|
}
|
3224
3915
|
|
3225
|
-
/** @name PalletIdentityJudgement (
|
3916
|
+
/** @name PalletIdentityJudgement (384) */
|
3226
3917
|
interface PalletIdentityJudgement extends Enum {
|
3227
3918
|
readonly isUnknown: boolean;
|
3228
3919
|
readonly isFeePaid: boolean;
|
@@ -3235,7 +3926,7 @@ declare module '@polkadot/types/lookup' {
|
|
3235
3926
|
readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';
|
3236
3927
|
}
|
3237
3928
|
|
3238
|
-
/** @name SpRuntimeMultiSignature (
|
3929
|
+
/** @name SpRuntimeMultiSignature (386) */
|
3239
3930
|
interface SpRuntimeMultiSignature extends Enum {
|
3240
3931
|
readonly isEd25519: boolean;
|
3241
3932
|
readonly asEd25519: SpCoreEd25519Signature;
|
@@ -3246,10 +3937,10 @@ declare module '@polkadot/types/lookup' {
|
|
3246
3937
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
|
3247
3938
|
}
|
3248
3939
|
|
3249
|
-
/** @name SpCoreEcdsaSignature (
|
3940
|
+
/** @name SpCoreEcdsaSignature (387) */
|
3250
3941
|
interface SpCoreEcdsaSignature extends U8aFixed {}
|
3251
3942
|
|
3252
|
-
/** @name PalletUtilityCall (
|
3943
|
+
/** @name PalletUtilityCall (389) */
|
3253
3944
|
interface PalletUtilityCall extends Enum {
|
3254
3945
|
readonly isBatch: boolean;
|
3255
3946
|
readonly asBatch: {
|
@@ -3281,7 +3972,7 @@ declare module '@polkadot/types/lookup' {
|
|
3281
3972
|
readonly type: 'Batch' | 'AsDerivative' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight';
|
3282
3973
|
}
|
3283
3974
|
|
3284
|
-
/** @name TangleTestnetRuntimeOriginCaller (
|
3975
|
+
/** @name TangleTestnetRuntimeOriginCaller (391) */
|
3285
3976
|
interface TangleTestnetRuntimeOriginCaller extends Enum {
|
3286
3977
|
readonly isSystem: boolean;
|
3287
3978
|
readonly asSystem: FrameSupportDispatchRawOrigin;
|
@@ -3293,7 +3984,7 @@ declare module '@polkadot/types/lookup' {
|
|
3293
3984
|
readonly type: 'System' | 'Void' | 'Council' | 'Ethereum';
|
3294
3985
|
}
|
3295
3986
|
|
3296
|
-
/** @name FrameSupportDispatchRawOrigin (
|
3987
|
+
/** @name FrameSupportDispatchRawOrigin (392) */
|
3297
3988
|
interface FrameSupportDispatchRawOrigin extends Enum {
|
3298
3989
|
readonly isRoot: boolean;
|
3299
3990
|
readonly isSigned: boolean;
|
@@ -3302,7 +3993,7 @@ declare module '@polkadot/types/lookup' {
|
|
3302
3993
|
readonly type: 'Root' | 'Signed' | 'None';
|
3303
3994
|
}
|
3304
3995
|
|
3305
|
-
/** @name PalletCollectiveRawOrigin (
|
3996
|
+
/** @name PalletCollectiveRawOrigin (393) */
|
3306
3997
|
interface PalletCollectiveRawOrigin extends Enum {
|
3307
3998
|
readonly isMembers: boolean;
|
3308
3999
|
readonly asMembers: ITuple<[u32, u32]>;
|
@@ -3312,14 +4003,14 @@ declare module '@polkadot/types/lookup' {
|
|
3312
4003
|
readonly type: 'Members' | 'Member' | 'Phantom';
|
3313
4004
|
}
|
3314
4005
|
|
3315
|
-
/** @name PalletEthereumRawOrigin (
|
4006
|
+
/** @name PalletEthereumRawOrigin (394) */
|
3316
4007
|
interface PalletEthereumRawOrigin extends Enum {
|
3317
4008
|
readonly isEthereumTransaction: boolean;
|
3318
4009
|
readonly asEthereumTransaction: H160;
|
3319
4010
|
readonly type: 'EthereumTransaction';
|
3320
4011
|
}
|
3321
4012
|
|
3322
|
-
/** @name PalletMultisigCall (
|
4013
|
+
/** @name PalletMultisigCall (395) */
|
3323
4014
|
interface PalletMultisigCall extends Enum {
|
3324
4015
|
readonly isAsMultiThreshold1: boolean;
|
3325
4016
|
readonly asAsMultiThreshold1: {
|
@@ -3352,7 +4043,7 @@ declare module '@polkadot/types/lookup' {
|
|
3352
4043
|
readonly type: 'AsMultiThreshold1' | 'AsMulti' | 'ApproveAsMulti' | 'CancelAsMulti';
|
3353
4044
|
}
|
3354
4045
|
|
3355
|
-
/** @name PalletEthereumCall (
|
4046
|
+
/** @name PalletEthereumCall (397) */
|
3356
4047
|
interface PalletEthereumCall extends Enum {
|
3357
4048
|
readonly isTransact: boolean;
|
3358
4049
|
readonly asTransact: {
|
@@ -3361,7 +4052,7 @@ declare module '@polkadot/types/lookup' {
|
|
3361
4052
|
readonly type: 'Transact';
|
3362
4053
|
}
|
3363
4054
|
|
3364
|
-
/** @name EthereumTransactionTransactionV2 (
|
4055
|
+
/** @name EthereumTransactionTransactionV2 (398) */
|
3365
4056
|
interface EthereumTransactionTransactionV2 extends Enum {
|
3366
4057
|
readonly isLegacy: boolean;
|
3367
4058
|
readonly asLegacy: EthereumTransactionLegacyTransaction;
|
@@ -3372,7 +4063,7 @@ declare module '@polkadot/types/lookup' {
|
|
3372
4063
|
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
|
3373
4064
|
}
|
3374
4065
|
|
3375
|
-
/** @name EthereumTransactionLegacyTransaction (
|
4066
|
+
/** @name EthereumTransactionLegacyTransaction (399) */
|
3376
4067
|
interface EthereumTransactionLegacyTransaction extends Struct {
|
3377
4068
|
readonly nonce: U256;
|
3378
4069
|
readonly gasPrice: U256;
|
@@ -3383,7 +4074,7 @@ declare module '@polkadot/types/lookup' {
|
|
3383
4074
|
readonly signature: EthereumTransactionTransactionSignature;
|
3384
4075
|
}
|
3385
4076
|
|
3386
|
-
/** @name EthereumTransactionTransactionAction (
|
4077
|
+
/** @name EthereumTransactionTransactionAction (400) */
|
3387
4078
|
interface EthereumTransactionTransactionAction extends Enum {
|
3388
4079
|
readonly isCall: boolean;
|
3389
4080
|
readonly asCall: H160;
|
@@ -3391,14 +4082,14 @@ declare module '@polkadot/types/lookup' {
|
|
3391
4082
|
readonly type: 'Call' | 'Create';
|
3392
4083
|
}
|
3393
4084
|
|
3394
|
-
/** @name EthereumTransactionTransactionSignature (
|
4085
|
+
/** @name EthereumTransactionTransactionSignature (401) */
|
3395
4086
|
interface EthereumTransactionTransactionSignature extends Struct {
|
3396
4087
|
readonly v: u64;
|
3397
4088
|
readonly r: H256;
|
3398
4089
|
readonly s: H256;
|
3399
4090
|
}
|
3400
4091
|
|
3401
|
-
/** @name EthereumTransactionEip2930Transaction (
|
4092
|
+
/** @name EthereumTransactionEip2930Transaction (403) */
|
3402
4093
|
interface EthereumTransactionEip2930Transaction extends Struct {
|
3403
4094
|
readonly chainId: u64;
|
3404
4095
|
readonly nonce: U256;
|
@@ -3413,13 +4104,13 @@ declare module '@polkadot/types/lookup' {
|
|
3413
4104
|
readonly s: H256;
|
3414
4105
|
}
|
3415
4106
|
|
3416
|
-
/** @name EthereumTransactionAccessListItem (
|
4107
|
+
/** @name EthereumTransactionAccessListItem (405) */
|
3417
4108
|
interface EthereumTransactionAccessListItem extends Struct {
|
3418
4109
|
readonly address: H160;
|
3419
4110
|
readonly storageKeys: Vec<H256>;
|
3420
4111
|
}
|
3421
4112
|
|
3422
|
-
/** @name EthereumTransactionEip1559Transaction (
|
4113
|
+
/** @name EthereumTransactionEip1559Transaction (406) */
|
3423
4114
|
interface EthereumTransactionEip1559Transaction extends Struct {
|
3424
4115
|
readonly chainId: u64;
|
3425
4116
|
readonly nonce: U256;
|
@@ -3435,7 +4126,7 @@ declare module '@polkadot/types/lookup' {
|
|
3435
4126
|
readonly s: H256;
|
3436
4127
|
}
|
3437
4128
|
|
3438
|
-
/** @name PalletEvmCall (
|
4129
|
+
/** @name PalletEvmCall (407) */
|
3439
4130
|
interface PalletEvmCall extends Enum {
|
3440
4131
|
readonly isWithdraw: boolean;
|
3441
4132
|
readonly asWithdraw: {
|
@@ -3480,7 +4171,7 @@ declare module '@polkadot/types/lookup' {
|
|
3480
4171
|
readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
|
3481
4172
|
}
|
3482
4173
|
|
3483
|
-
/** @name PalletDynamicFeeCall (
|
4174
|
+
/** @name PalletDynamicFeeCall (411) */
|
3484
4175
|
interface PalletDynamicFeeCall extends Enum {
|
3485
4176
|
readonly isNoteMinGasPriceTarget: boolean;
|
3486
4177
|
readonly asNoteMinGasPriceTarget: {
|
@@ -3489,7 +4180,7 @@ declare module '@polkadot/types/lookup' {
|
|
3489
4180
|
readonly type: 'NoteMinGasPriceTarget';
|
3490
4181
|
}
|
3491
4182
|
|
3492
|
-
/** @name PalletBaseFeeCall (
|
4183
|
+
/** @name PalletBaseFeeCall (412) */
|
3493
4184
|
interface PalletBaseFeeCall extends Enum {
|
3494
4185
|
readonly isSetBaseFeePerGas: boolean;
|
3495
4186
|
readonly asSetBaseFeePerGas: {
|
@@ -3502,7 +4193,7 @@ declare module '@polkadot/types/lookup' {
|
|
3502
4193
|
readonly type: 'SetBaseFeePerGas' | 'SetElasticity';
|
3503
4194
|
}
|
3504
4195
|
|
3505
|
-
/** @name PalletHotfixSufficientsCall (
|
4196
|
+
/** @name PalletHotfixSufficientsCall (413) */
|
3506
4197
|
interface PalletHotfixSufficientsCall extends Enum {
|
3507
4198
|
readonly isHotfixIncAccountSufficients: boolean;
|
3508
4199
|
readonly asHotfixIncAccountSufficients: {
|
@@ -3511,7 +4202,7 @@ declare module '@polkadot/types/lookup' {
|
|
3511
4202
|
readonly type: 'HotfixIncAccountSufficients';
|
3512
4203
|
}
|
3513
4204
|
|
3514
|
-
/** @name PalletAirdropClaimsCall (
|
4205
|
+
/** @name PalletAirdropClaimsCall (415) */
|
3515
4206
|
interface PalletAirdropClaimsCall extends Enum {
|
3516
4207
|
readonly isClaim: boolean;
|
3517
4208
|
readonly asClaim: {
|
@@ -3543,10 +4234,14 @@ declare module '@polkadot/types/lookup' {
|
|
3543
4234
|
readonly expiryBlock: u64;
|
3544
4235
|
readonly dest: PalletAirdropClaimsUtilsMultiAddress;
|
3545
4236
|
} & Struct;
|
3546
|
-
readonly
|
4237
|
+
readonly isClaimSigned: boolean;
|
4238
|
+
readonly asClaimSigned: {
|
4239
|
+
readonly dest: Option<PalletAirdropClaimsUtilsMultiAddress>;
|
4240
|
+
} & Struct;
|
4241
|
+
readonly type: 'Claim' | 'MintClaim' | 'ClaimAttest' | 'MoveClaim' | 'ForceSetExpiryConfig' | 'ClaimSigned';
|
3547
4242
|
}
|
3548
4243
|
|
3549
|
-
/** @name PalletAirdropClaimsUtilsMultiAddressSignature (
|
4244
|
+
/** @name PalletAirdropClaimsUtilsMultiAddressSignature (417) */
|
3550
4245
|
interface PalletAirdropClaimsUtilsMultiAddressSignature extends Enum {
|
3551
4246
|
readonly isEvm: boolean;
|
3552
4247
|
readonly asEvm: PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature;
|
@@ -3555,20 +4250,20 @@ declare module '@polkadot/types/lookup' {
|
|
3555
4250
|
readonly type: 'Evm' | 'Native';
|
3556
4251
|
}
|
3557
4252
|
|
3558
|
-
/** @name PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature (
|
4253
|
+
/** @name PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature (418) */
|
3559
4254
|
interface PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature extends U8aFixed {}
|
3560
4255
|
|
3561
|
-
/** @name PalletAirdropClaimsUtilsSr25519Signature (
|
4256
|
+
/** @name PalletAirdropClaimsUtilsSr25519Signature (419) */
|
3562
4257
|
interface PalletAirdropClaimsUtilsSr25519Signature extends SpCoreSr25519Signature {}
|
3563
4258
|
|
3564
|
-
/** @name PalletAirdropClaimsStatementKind (
|
4259
|
+
/** @name PalletAirdropClaimsStatementKind (425) */
|
3565
4260
|
interface PalletAirdropClaimsStatementKind extends Enum {
|
3566
4261
|
readonly isRegular: boolean;
|
3567
4262
|
readonly isSafe: boolean;
|
3568
4263
|
readonly type: 'Regular' | 'Safe';
|
3569
4264
|
}
|
3570
4265
|
|
3571
|
-
/** @name PalletRolesCall (
|
4266
|
+
/** @name PalletRolesCall (426) */
|
3572
4267
|
interface PalletRolesCall extends Enum {
|
3573
4268
|
readonly isCreateProfile: boolean;
|
3574
4269
|
readonly asCreateProfile: {
|
@@ -3598,7 +4293,7 @@ declare module '@polkadot/types/lookup' {
|
|
3598
4293
|
readonly type: 'CreateProfile' | 'UpdateProfile' | 'DeleteProfile' | 'Chill' | 'UnbondFunds' | 'WithdrawUnbonded' | 'PayoutStakers' | 'SetMinRestakingBond';
|
3599
4294
|
}
|
3600
4295
|
|
3601
|
-
/** @name PalletRolesProfile (
|
4296
|
+
/** @name PalletRolesProfile (427) */
|
3602
4297
|
interface PalletRolesProfile extends Enum {
|
3603
4298
|
readonly isIndependent: boolean;
|
3604
4299
|
readonly asIndependent: PalletRolesProfileIndependentRestakeProfile;
|
@@ -3607,24 +4302,24 @@ declare module '@polkadot/types/lookup' {
|
|
3607
4302
|
readonly type: 'Independent' | 'Shared';
|
3608
4303
|
}
|
3609
4304
|
|
3610
|
-
/** @name PalletRolesProfileIndependentRestakeProfile (
|
4305
|
+
/** @name PalletRolesProfileIndependentRestakeProfile (428) */
|
3611
4306
|
interface PalletRolesProfileIndependentRestakeProfile extends Struct {
|
3612
4307
|
readonly records: Vec<PalletRolesProfileRecord>;
|
3613
4308
|
}
|
3614
4309
|
|
3615
|
-
/** @name PalletRolesProfileRecord (
|
4310
|
+
/** @name PalletRolesProfileRecord (430) */
|
3616
4311
|
interface PalletRolesProfileRecord extends Struct {
|
3617
4312
|
readonly role: TanglePrimitivesRolesRoleType;
|
3618
4313
|
readonly amount: Option<u128>;
|
3619
4314
|
}
|
3620
4315
|
|
3621
|
-
/** @name PalletRolesProfileSharedRestakeProfile (
|
4316
|
+
/** @name PalletRolesProfileSharedRestakeProfile (432) */
|
3622
4317
|
interface PalletRolesProfileSharedRestakeProfile extends Struct {
|
3623
4318
|
readonly records: Vec<PalletRolesProfileRecord>;
|
3624
4319
|
readonly amount: u128;
|
3625
4320
|
}
|
3626
4321
|
|
3627
|
-
/** @name PalletJobsModuleCall (
|
4322
|
+
/** @name PalletJobsModuleCall (433) */
|
3628
4323
|
interface PalletJobsModuleCall extends Enum {
|
3629
4324
|
readonly isSubmitJob: boolean;
|
3630
4325
|
readonly asSubmitJob: {
|
@@ -3668,7 +4363,7 @@ declare module '@polkadot/types/lookup' {
|
|
3668
4363
|
readonly type: 'SubmitJob' | 'SubmitJobResult' | 'WithdrawRewards' | 'ReportInactiveValidator' | 'SetPermittedCaller' | 'SetTimeFee' | 'SubmitMisbehavior' | 'ExtendJobResultTtl';
|
3669
4364
|
}
|
3670
4365
|
|
3671
|
-
/** @name TanglePrimitivesJobsJobResult (
|
4366
|
+
/** @name TanglePrimitivesJobsJobResult (434) */
|
3672
4367
|
interface TanglePrimitivesJobsJobResult extends Enum {
|
3673
4368
|
readonly isDkgPhaseOne: boolean;
|
3674
4369
|
readonly asDkgPhaseOne: TanglePrimitivesJobsTssDkgtssKeySubmissionResult;
|
@@ -3685,19 +4380,19 @@ declare module '@polkadot/types/lookup' {
|
|
3685
4380
|
readonly type: 'DkgPhaseOne' | 'DkgPhaseTwo' | 'DkgPhaseThree' | 'DkgPhaseFour' | 'ZkSaaSPhaseOne' | 'ZkSaaSPhaseTwo';
|
3686
4381
|
}
|
3687
4382
|
|
3688
|
-
/** @name TangleTestnetRuntimeMaxKeyLen (
|
4383
|
+
/** @name TangleTestnetRuntimeMaxKeyLen (435) */
|
3689
4384
|
type TangleTestnetRuntimeMaxKeyLen = Null;
|
3690
4385
|
|
3691
|
-
/** @name TangleTestnetRuntimeMaxSignatureLen (
|
4386
|
+
/** @name TangleTestnetRuntimeMaxSignatureLen (436) */
|
3692
4387
|
type TangleTestnetRuntimeMaxSignatureLen = Null;
|
3693
4388
|
|
3694
|
-
/** @name TangleTestnetRuntimeMaxDataLen (
|
4389
|
+
/** @name TangleTestnetRuntimeMaxDataLen (437) */
|
3695
4390
|
type TangleTestnetRuntimeMaxDataLen = Null;
|
3696
4391
|
|
3697
|
-
/** @name TangleTestnetRuntimeMaxProofLen (
|
4392
|
+
/** @name TangleTestnetRuntimeMaxProofLen (438) */
|
3698
4393
|
type TangleTestnetRuntimeMaxProofLen = Null;
|
3699
4394
|
|
3700
|
-
/** @name TanglePrimitivesJobsTssDkgtssKeySubmissionResult (
|
4395
|
+
/** @name TanglePrimitivesJobsTssDkgtssKeySubmissionResult (439) */
|
3701
4396
|
interface TanglePrimitivesJobsTssDkgtssKeySubmissionResult extends Struct {
|
3702
4397
|
readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
|
3703
4398
|
readonly key: Bytes;
|
@@ -3707,7 +4402,7 @@ declare module '@polkadot/types/lookup' {
|
|
3707
4402
|
readonly threshold: u8;
|
3708
4403
|
}
|
3709
4404
|
|
3710
|
-
/** @name TanglePrimitivesJobsTssDigitalSignatureScheme (
|
4405
|
+
/** @name TanglePrimitivesJobsTssDigitalSignatureScheme (440) */
|
3711
4406
|
interface TanglePrimitivesJobsTssDigitalSignatureScheme extends Enum {
|
3712
4407
|
readonly isEcdsaSecp256k1: boolean;
|
3713
4408
|
readonly isEcdsaSecp256r1: boolean;
|
@@ -3717,14 +4412,14 @@ declare module '@polkadot/types/lookup' {
|
|
3717
4412
|
readonly isSchnorrSecp256k1: boolean;
|
3718
4413
|
readonly isSchnorrSr25519: boolean;
|
3719
4414
|
readonly isSchnorrRistretto255: boolean;
|
3720
|
-
readonly isSchnorrRedJubJub: boolean;
|
3721
4415
|
readonly isSchnorrEd25519: boolean;
|
3722
4416
|
readonly isSchnorrEd448: boolean;
|
4417
|
+
readonly isSchnorrTaproot: boolean;
|
3723
4418
|
readonly isBls381: boolean;
|
3724
|
-
readonly type: 'EcdsaSecp256k1' | 'EcdsaSecp256r1' | 'EcdsaStark' | 'SchnorrP256' | 'SchnorrP384' | 'SchnorrSecp256k1' | 'SchnorrSr25519' | 'SchnorrRistretto255' | '
|
4419
|
+
readonly type: 'EcdsaSecp256k1' | 'EcdsaSecp256r1' | 'EcdsaStark' | 'SchnorrP256' | 'SchnorrP384' | 'SchnorrSecp256k1' | 'SchnorrSr25519' | 'SchnorrRistretto255' | 'SchnorrEd25519' | 'SchnorrEd448' | 'SchnorrTaproot' | 'Bls381';
|
3725
4420
|
}
|
3726
4421
|
|
3727
|
-
/** @name TanglePrimitivesJobsTssDkgtssSignatureResult (
|
4422
|
+
/** @name TanglePrimitivesJobsTssDkgtssSignatureResult (447) */
|
3728
4423
|
interface TanglePrimitivesJobsTssDkgtssSignatureResult extends Struct {
|
3729
4424
|
readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
|
3730
4425
|
readonly data: Bytes;
|
@@ -3734,12 +4429,12 @@ declare module '@polkadot/types/lookup' {
|
|
3734
4429
|
readonly chainCode: Option<U8aFixed>;
|
3735
4430
|
}
|
3736
4431
|
|
3737
|
-
/** @name TanglePrimitivesJobsTssDkgtssKeyRefreshResult (
|
4432
|
+
/** @name TanglePrimitivesJobsTssDkgtssKeyRefreshResult (449) */
|
3738
4433
|
interface TanglePrimitivesJobsTssDkgtssKeyRefreshResult extends Struct {
|
3739
4434
|
readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
|
3740
4435
|
}
|
3741
4436
|
|
3742
|
-
/** @name TanglePrimitivesJobsTssDkgtssKeyRotationResult (
|
4437
|
+
/** @name TanglePrimitivesJobsTssDkgtssKeyRotationResult (450) */
|
3743
4438
|
interface TanglePrimitivesJobsTssDkgtssKeyRotationResult extends Struct {
|
3744
4439
|
readonly phaseOneId: u64;
|
3745
4440
|
readonly newPhaseOneId: u64;
|
@@ -3751,13 +4446,13 @@ declare module '@polkadot/types/lookup' {
|
|
3751
4446
|
readonly chainCode: Option<U8aFixed>;
|
3752
4447
|
}
|
3753
4448
|
|
3754
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSCircuitResult (
|
4449
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSCircuitResult (451) */
|
3755
4450
|
interface TanglePrimitivesJobsZksaasZkSaaSCircuitResult extends Struct {
|
3756
4451
|
readonly jobId: u64;
|
3757
4452
|
readonly participants: Vec<SpCoreEcdsaPublic>;
|
3758
4453
|
}
|
3759
4454
|
|
3760
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSProofResult (
|
4455
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSProofResult (454) */
|
3761
4456
|
interface TanglePrimitivesJobsZksaasZkSaaSProofResult extends Enum {
|
3762
4457
|
readonly isArkworks: boolean;
|
3763
4458
|
readonly asArkworks: TanglePrimitivesJobsZksaasArkworksProofResult;
|
@@ -3766,17 +4461,17 @@ declare module '@polkadot/types/lookup' {
|
|
3766
4461
|
readonly type: 'Arkworks' | 'Circom';
|
3767
4462
|
}
|
3768
4463
|
|
3769
|
-
/** @name TanglePrimitivesJobsZksaasArkworksProofResult (
|
4464
|
+
/** @name TanglePrimitivesJobsZksaasArkworksProofResult (455) */
|
3770
4465
|
interface TanglePrimitivesJobsZksaasArkworksProofResult extends Struct {
|
3771
4466
|
readonly proof: Bytes;
|
3772
4467
|
}
|
3773
4468
|
|
3774
|
-
/** @name TanglePrimitivesJobsZksaasCircomProofResult (
|
4469
|
+
/** @name TanglePrimitivesJobsZksaasCircomProofResult (457) */
|
3775
4470
|
interface TanglePrimitivesJobsZksaasCircomProofResult extends Struct {
|
3776
4471
|
readonly proof: Bytes;
|
3777
4472
|
}
|
3778
4473
|
|
3779
|
-
/** @name TanglePrimitivesJobsValidatorOffenceType (
|
4474
|
+
/** @name TanglePrimitivesJobsValidatorOffenceType (458) */
|
3780
4475
|
interface TanglePrimitivesJobsValidatorOffenceType extends Enum {
|
3781
4476
|
readonly isInactivity: boolean;
|
3782
4477
|
readonly isInvalidSignatureSubmitted: boolean;
|
@@ -3785,7 +4480,7 @@ declare module '@polkadot/types/lookup' {
|
|
3785
4480
|
readonly type: 'Inactivity' | 'InvalidSignatureSubmitted' | 'RejectedValidAction' | 'ApprovedInvalidAction';
|
3786
4481
|
}
|
3787
4482
|
|
3788
|
-
/** @name TanglePrimitivesMisbehaviorMisbehaviorSubmission (
|
4483
|
+
/** @name TanglePrimitivesMisbehaviorMisbehaviorSubmission (459) */
|
3789
4484
|
interface TanglePrimitivesMisbehaviorMisbehaviorSubmission extends Struct {
|
3790
4485
|
readonly roleType: TanglePrimitivesRolesRoleType;
|
3791
4486
|
readonly offender: U8aFixed;
|
@@ -3793,7 +4488,7 @@ declare module '@polkadot/types/lookup' {
|
|
3793
4488
|
readonly justification: TanglePrimitivesMisbehaviorMisbehaviorJustification;
|
3794
4489
|
}
|
3795
4490
|
|
3796
|
-
/** @name TanglePrimitivesMisbehaviorMisbehaviorJustification (
|
4491
|
+
/** @name TanglePrimitivesMisbehaviorMisbehaviorJustification (460) */
|
3797
4492
|
interface TanglePrimitivesMisbehaviorMisbehaviorJustification extends Enum {
|
3798
4493
|
readonly isDkgtss: boolean;
|
3799
4494
|
readonly asDkgtss: TanglePrimitivesMisbehaviorDkgtssJustification;
|
@@ -3801,7 +4496,7 @@ declare module '@polkadot/types/lookup' {
|
|
3801
4496
|
readonly type: 'Dkgtss' | 'ZkSaaS';
|
3802
4497
|
}
|
3803
4498
|
|
3804
|
-
/** @name TanglePrimitivesMisbehaviorDkgtssJustification (
|
4499
|
+
/** @name TanglePrimitivesMisbehaviorDkgtssJustification (461) */
|
3805
4500
|
interface TanglePrimitivesMisbehaviorDkgtssJustification extends Enum {
|
3806
4501
|
readonly isDfnsCGGMP21: boolean;
|
3807
4502
|
readonly asDfnsCGGMP21: TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification;
|
@@ -3810,7 +4505,7 @@ declare module '@polkadot/types/lookup' {
|
|
3810
4505
|
readonly type: 'DfnsCGGMP21' | 'ZCashFrost';
|
3811
4506
|
}
|
3812
4507
|
|
3813
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification (
|
4508
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification (462) */
|
3814
4509
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification extends Enum {
|
3815
4510
|
readonly isKeygen: boolean;
|
3816
4511
|
readonly asKeygen: {
|
@@ -3833,7 +4528,7 @@ declare module '@polkadot/types/lookup' {
|
|
3833
4528
|
readonly type: 'Keygen' | 'KeyRefresh' | 'Signing';
|
3834
4529
|
}
|
3835
4530
|
|
3836
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted (
|
4531
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted (464) */
|
3837
4532
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted extends Enum {
|
3838
4533
|
readonly isInvalidDecommitment: boolean;
|
3839
4534
|
readonly asInvalidDecommitment: {
|
@@ -3857,14 +4552,14 @@ declare module '@polkadot/types/lookup' {
|
|
3857
4552
|
readonly type: 'InvalidDecommitment' | 'InvalidSchnorrProof' | 'FeldmanVerificationFailed' | 'InvalidDataSize';
|
3858
4553
|
}
|
3859
4554
|
|
3860
|
-
/** @name TanglePrimitivesMisbehaviorSignedRoundMessage (
|
4555
|
+
/** @name TanglePrimitivesMisbehaviorSignedRoundMessage (465) */
|
3861
4556
|
interface TanglePrimitivesMisbehaviorSignedRoundMessage extends Struct {
|
3862
4557
|
readonly sender: u16;
|
3863
4558
|
readonly message: Bytes;
|
3864
4559
|
readonly signature: Bytes;
|
3865
4560
|
}
|
3866
4561
|
|
3867
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted (
|
4562
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted (467) */
|
3868
4563
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted extends Enum {
|
3869
4564
|
readonly isInvalidDecommitment: boolean;
|
3870
4565
|
readonly asInvalidDecommitment: {
|
@@ -3890,7 +4585,7 @@ declare module '@polkadot/types/lookup' {
|
|
3890
4585
|
readonly type: 'InvalidDecommitment' | 'InvalidSchnorrProof' | 'InvalidModProof' | 'InvalidFacProof' | 'InvalidRingPedersenParameters' | 'InvalidX' | 'InvalidXShare' | 'InvalidDataSize' | 'PaillierDec';
|
3891
4586
|
}
|
3892
4587
|
|
3893
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason (
|
4588
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason (468) */
|
3894
4589
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason extends Enum {
|
3895
4590
|
readonly isEqualityCheck: boolean;
|
3896
4591
|
readonly asEqualityCheck: u8;
|
@@ -3909,7 +4604,7 @@ declare module '@polkadot/types/lookup' {
|
|
3909
4604
|
readonly type: 'EqualityCheck' | 'RangeCheck' | 'Encryption' | 'PaillierEnc' | 'PaillierOp' | 'ModPow' | 'ModulusIsPrime' | 'ModulusIsEven' | 'IncorrectNthRoot' | 'IncorrectFourthRoot';
|
3910
4605
|
}
|
3911
4606
|
|
3912
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted (
|
4607
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted (469) */
|
3913
4608
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted extends Enum {
|
3914
4609
|
readonly isEncProofOfK: boolean;
|
3915
4610
|
readonly isInvalidPsi: boolean;
|
@@ -3918,7 +4613,7 @@ declare module '@polkadot/types/lookup' {
|
|
3918
4613
|
readonly type: 'EncProofOfK' | 'InvalidPsi' | 'InvalidPsiPrimePrime' | 'MismatchedDelta';
|
3919
4614
|
}
|
3920
4615
|
|
3921
|
-
/** @name TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification (
|
4616
|
+
/** @name TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification (470) */
|
3922
4617
|
interface TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification extends Enum {
|
3923
4618
|
readonly isKeygen: boolean;
|
3924
4619
|
readonly asKeygen: {
|
@@ -3935,7 +4630,7 @@ declare module '@polkadot/types/lookup' {
|
|
3935
4630
|
readonly type: 'Keygen' | 'Signing';
|
3936
4631
|
}
|
3937
4632
|
|
3938
|
-
/** @name TanglePrimitivesMisbehaviorZcashFrostKeygenAborted (
|
4633
|
+
/** @name TanglePrimitivesMisbehaviorZcashFrostKeygenAborted (471) */
|
3939
4634
|
interface TanglePrimitivesMisbehaviorZcashFrostKeygenAborted extends Enum {
|
3940
4635
|
readonly isInvalidProofOfKnowledge: boolean;
|
3941
4636
|
readonly asInvalidProofOfKnowledge: {
|
@@ -3949,7 +4644,7 @@ declare module '@polkadot/types/lookup' {
|
|
3949
4644
|
readonly type: 'InvalidProofOfKnowledge' | 'InvalidSecretShare';
|
3950
4645
|
}
|
3951
4646
|
|
3952
|
-
/** @name TanglePrimitivesMisbehaviorZcashFrostSigningAborted (
|
4647
|
+
/** @name TanglePrimitivesMisbehaviorZcashFrostSigningAborted (472) */
|
3953
4648
|
interface TanglePrimitivesMisbehaviorZcashFrostSigningAborted extends Enum {
|
3954
4649
|
readonly isInvalidSignatureShare: boolean;
|
3955
4650
|
readonly asInvalidSignatureShare: {
|
@@ -3959,10 +4654,10 @@ declare module '@polkadot/types/lookup' {
|
|
3959
4654
|
readonly type: 'InvalidSignatureShare';
|
3960
4655
|
}
|
3961
4656
|
|
3962
|
-
/** @name TanglePrimitivesMisbehaviorZkSaaSJustification (
|
4657
|
+
/** @name TanglePrimitivesMisbehaviorZkSaaSJustification (473) */
|
3963
4658
|
type TanglePrimitivesMisbehaviorZkSaaSJustification = Null;
|
3964
4659
|
|
3965
|
-
/** @name PalletDkgCall (
|
4660
|
+
/** @name PalletDkgCall (474) */
|
3966
4661
|
interface PalletDkgCall extends Enum {
|
3967
4662
|
readonly isSetFee: boolean;
|
3968
4663
|
readonly asSetFee: {
|
@@ -3971,7 +4666,7 @@ declare module '@polkadot/types/lookup' {
|
|
3971
4666
|
readonly type: 'SetFee';
|
3972
4667
|
}
|
3973
4668
|
|
3974
|
-
/** @name PalletZksaasCall (
|
4669
|
+
/** @name PalletZksaasCall (475) */
|
3975
4670
|
interface PalletZksaasCall extends Enum {
|
3976
4671
|
readonly isSetFee: boolean;
|
3977
4672
|
readonly asSetFee: {
|
@@ -3980,7 +4675,7 @@ declare module '@polkadot/types/lookup' {
|
|
3980
4675
|
readonly type: 'SetFee';
|
3981
4676
|
}
|
3982
4677
|
|
3983
|
-
/** @name PalletProxyCall (
|
4678
|
+
/** @name PalletProxyCall (476) */
|
3984
4679
|
interface PalletProxyCall extends Enum {
|
3985
4680
|
readonly isProxy: boolean;
|
3986
4681
|
readonly asProxy: {
|
@@ -4040,20 +4735,308 @@ declare module '@polkadot/types/lookup' {
|
|
4040
4735
|
readonly type: 'Proxy' | 'AddProxy' | 'RemoveProxy' | 'RemoveProxies' | 'CreatePure' | 'KillPure' | 'Announce' | 'RemoveAnnouncement' | 'RejectAnnouncement' | 'ProxyAnnounced';
|
4041
4736
|
}
|
4042
4737
|
|
4043
|
-
/** @name
|
4738
|
+
/** @name PalletMultiAssetDelegationCall (478) */
|
4739
|
+
interface PalletMultiAssetDelegationCall extends Enum {
|
4740
|
+
readonly isJoinOperators: boolean;
|
4741
|
+
readonly asJoinOperators: {
|
4742
|
+
readonly bondAmount: u128;
|
4743
|
+
} & Struct;
|
4744
|
+
readonly isScheduleLeaveOperators: boolean;
|
4745
|
+
readonly isCancelLeaveOperators: boolean;
|
4746
|
+
readonly isExecuteLeaveOperators: boolean;
|
4747
|
+
readonly isOperatorBondMore: boolean;
|
4748
|
+
readonly asOperatorBondMore: {
|
4749
|
+
readonly additionalBond: u128;
|
4750
|
+
} & Struct;
|
4751
|
+
readonly isScheduleOperatorBondLess: boolean;
|
4752
|
+
readonly asScheduleOperatorBondLess: {
|
4753
|
+
readonly bondLessAmount: u128;
|
4754
|
+
} & Struct;
|
4755
|
+
readonly isExecuteOperatorBondLess: boolean;
|
4756
|
+
readonly isCancelOperatorBondLess: boolean;
|
4757
|
+
readonly isGoOffline: boolean;
|
4758
|
+
readonly isGoOnline: boolean;
|
4759
|
+
readonly isDeposit: boolean;
|
4760
|
+
readonly asDeposit: {
|
4761
|
+
readonly assetId: Option<u128>;
|
4762
|
+
readonly amount: u128;
|
4763
|
+
} & Struct;
|
4764
|
+
readonly isScheduleUnstake: boolean;
|
4765
|
+
readonly asScheduleUnstake: {
|
4766
|
+
readonly assetId: Option<u128>;
|
4767
|
+
readonly amount: u128;
|
4768
|
+
} & Struct;
|
4769
|
+
readonly isExecuteUnstake: boolean;
|
4770
|
+
readonly isCancelUnstake: boolean;
|
4771
|
+
readonly isDelegate: boolean;
|
4772
|
+
readonly asDelegate: {
|
4773
|
+
readonly operator: AccountId32;
|
4774
|
+
readonly assetId: u128;
|
4775
|
+
readonly amount: u128;
|
4776
|
+
} & Struct;
|
4777
|
+
readonly isScheduleDelegatorBondLess: boolean;
|
4778
|
+
readonly asScheduleDelegatorBondLess: {
|
4779
|
+
readonly operator: AccountId32;
|
4780
|
+
readonly assetId: u128;
|
4781
|
+
readonly amount: u128;
|
4782
|
+
} & Struct;
|
4783
|
+
readonly isExecuteDelegatorBondLess: boolean;
|
4784
|
+
readonly isCancelDelegatorBondLess: boolean;
|
4785
|
+
readonly isSetWhitelistedAssets: boolean;
|
4786
|
+
readonly asSetWhitelistedAssets: {
|
4787
|
+
readonly assets: Vec<u128>;
|
4788
|
+
} & Struct;
|
4789
|
+
readonly isSetIncentiveApyAndCap: boolean;
|
4790
|
+
readonly asSetIncentiveApyAndCap: {
|
4791
|
+
readonly assetId: u128;
|
4792
|
+
readonly apy: u128;
|
4793
|
+
readonly cap: u128;
|
4794
|
+
} & Struct;
|
4795
|
+
readonly isWhitelistBlueprintForRewards: boolean;
|
4796
|
+
readonly asWhitelistBlueprintForRewards: {
|
4797
|
+
readonly blueprintId: u32;
|
4798
|
+
} & Struct;
|
4799
|
+
readonly type: 'JoinOperators' | 'ScheduleLeaveOperators' | 'CancelLeaveOperators' | 'ExecuteLeaveOperators' | 'OperatorBondMore' | 'ScheduleOperatorBondLess' | 'ExecuteOperatorBondLess' | 'CancelOperatorBondLess' | 'GoOffline' | 'GoOnline' | 'Deposit' | 'ScheduleUnstake' | 'ExecuteUnstake' | 'CancelUnstake' | 'Delegate' | 'ScheduleDelegatorBondLess' | 'ExecuteDelegatorBondLess' | 'CancelDelegatorBondLess' | 'SetWhitelistedAssets' | 'SetIncentiveApyAndCap' | 'WhitelistBlueprintForRewards';
|
4800
|
+
}
|
4801
|
+
|
4802
|
+
/** @name SygmaAccessSegregatorCall (479) */
|
4803
|
+
interface SygmaAccessSegregatorCall extends Enum {
|
4804
|
+
readonly isGrantAccess: boolean;
|
4805
|
+
readonly asGrantAccess: {
|
4806
|
+
readonly palletIndex: u8;
|
4807
|
+
readonly extrinsicName: Bytes;
|
4808
|
+
readonly who: AccountId32;
|
4809
|
+
} & Struct;
|
4810
|
+
readonly type: 'GrantAccess';
|
4811
|
+
}
|
4812
|
+
|
4813
|
+
/** @name SygmaBasicFeehandlerCall (480) */
|
4814
|
+
interface SygmaBasicFeehandlerCall extends Enum {
|
4815
|
+
readonly isSetFee: boolean;
|
4816
|
+
readonly asSetFee: {
|
4817
|
+
readonly domain: u8;
|
4818
|
+
readonly asset: StagingXcmV4AssetAssetId;
|
4819
|
+
readonly amount: u128;
|
4820
|
+
} & Struct;
|
4821
|
+
readonly type: 'SetFee';
|
4822
|
+
}
|
4823
|
+
|
4824
|
+
/** @name SygmaFeeHandlerRouterCall (481) */
|
4825
|
+
interface SygmaFeeHandlerRouterCall extends Enum {
|
4826
|
+
readonly isSetFeeHandler: boolean;
|
4827
|
+
readonly asSetFeeHandler: {
|
4828
|
+
readonly domain: u8;
|
4829
|
+
readonly asset: StagingXcmV4AssetAssetId;
|
4830
|
+
readonly handlerType: SygmaFeeHandlerRouterFeeHandlerType;
|
4831
|
+
} & Struct;
|
4832
|
+
readonly type: 'SetFeeHandler';
|
4833
|
+
}
|
4834
|
+
|
4835
|
+
/** @name SygmaPercentageFeehandlerCall (482) */
|
4836
|
+
interface SygmaPercentageFeehandlerCall extends Enum {
|
4837
|
+
readonly isSetFeeRate: boolean;
|
4838
|
+
readonly asSetFeeRate: {
|
4839
|
+
readonly domain: u8;
|
4840
|
+
readonly asset: StagingXcmV4AssetAssetId;
|
4841
|
+
readonly feeRateBasisPoint: u32;
|
4842
|
+
readonly feeLowerBound: u128;
|
4843
|
+
readonly feeUpperBound: u128;
|
4844
|
+
} & Struct;
|
4845
|
+
readonly type: 'SetFeeRate';
|
4846
|
+
}
|
4847
|
+
|
4848
|
+
/** @name SygmaBridgeCall (483) */
|
4849
|
+
interface SygmaBridgeCall extends Enum {
|
4850
|
+
readonly isPauseBridge: boolean;
|
4851
|
+
readonly asPauseBridge: {
|
4852
|
+
readonly destDomainId: u8;
|
4853
|
+
} & Struct;
|
4854
|
+
readonly isUnpauseBridge: boolean;
|
4855
|
+
readonly asUnpauseBridge: {
|
4856
|
+
readonly destDomainId: u8;
|
4857
|
+
} & Struct;
|
4858
|
+
readonly isSetMpcAddress: boolean;
|
4859
|
+
readonly asSetMpcAddress: {
|
4860
|
+
readonly addr: SygmaTraitsMpcAddress;
|
4861
|
+
} & Struct;
|
4862
|
+
readonly isRegisterDomain: boolean;
|
4863
|
+
readonly asRegisterDomain: {
|
4864
|
+
readonly destDomainId: u8;
|
4865
|
+
readonly destChainId: U256;
|
4866
|
+
} & Struct;
|
4867
|
+
readonly isUnregisterDomain: boolean;
|
4868
|
+
readonly asUnregisterDomain: {
|
4869
|
+
readonly destDomainId: u8;
|
4870
|
+
readonly destChainId: U256;
|
4871
|
+
} & Struct;
|
4872
|
+
readonly isDeposit: boolean;
|
4873
|
+
readonly asDeposit: {
|
4874
|
+
readonly asset: StagingXcmV4Asset;
|
4875
|
+
readonly dest: StagingXcmV4Location;
|
4876
|
+
} & Struct;
|
4877
|
+
readonly isRetry: boolean;
|
4878
|
+
readonly asRetry: {
|
4879
|
+
readonly depositOnBlockHeight: u128;
|
4880
|
+
readonly destDomainId: u8;
|
4881
|
+
} & Struct;
|
4882
|
+
readonly isExecuteProposal: boolean;
|
4883
|
+
readonly asExecuteProposal: {
|
4884
|
+
readonly proposals: Vec<SygmaBridgeProposal>;
|
4885
|
+
readonly signature: Bytes;
|
4886
|
+
} & Struct;
|
4887
|
+
readonly isPauseAllBridges: boolean;
|
4888
|
+
readonly isUnpauseAllBridges: boolean;
|
4889
|
+
readonly type: 'PauseBridge' | 'UnpauseBridge' | 'SetMpcAddress' | 'RegisterDomain' | 'UnregisterDomain' | 'Deposit' | 'Retry' | 'ExecuteProposal' | 'PauseAllBridges' | 'UnpauseAllBridges';
|
4890
|
+
}
|
4891
|
+
|
4892
|
+
/** @name SygmaTraitsMpcAddress (484) */
|
4893
|
+
interface SygmaTraitsMpcAddress extends U8aFixed {}
|
4894
|
+
|
4895
|
+
/** @name StagingXcmV4Asset (485) */
|
4896
|
+
interface StagingXcmV4Asset extends Struct {
|
4897
|
+
readonly id: StagingXcmV4AssetAssetId;
|
4898
|
+
readonly fun: StagingXcmV4AssetFungibility;
|
4899
|
+
}
|
4900
|
+
|
4901
|
+
/** @name StagingXcmV4AssetFungibility (486) */
|
4902
|
+
interface StagingXcmV4AssetFungibility extends Enum {
|
4903
|
+
readonly isFungible: boolean;
|
4904
|
+
readonly asFungible: Compact<u128>;
|
4905
|
+
readonly isNonFungible: boolean;
|
4906
|
+
readonly asNonFungible: StagingXcmV4AssetAssetInstance;
|
4907
|
+
readonly type: 'Fungible' | 'NonFungible';
|
4908
|
+
}
|
4909
|
+
|
4910
|
+
/** @name StagingXcmV4AssetAssetInstance (487) */
|
4911
|
+
interface StagingXcmV4AssetAssetInstance extends Enum {
|
4912
|
+
readonly isUndefined: boolean;
|
4913
|
+
readonly isIndex: boolean;
|
4914
|
+
readonly asIndex: Compact<u128>;
|
4915
|
+
readonly isArray4: boolean;
|
4916
|
+
readonly asArray4: U8aFixed;
|
4917
|
+
readonly isArray8: boolean;
|
4918
|
+
readonly asArray8: U8aFixed;
|
4919
|
+
readonly isArray16: boolean;
|
4920
|
+
readonly asArray16: U8aFixed;
|
4921
|
+
readonly isArray32: boolean;
|
4922
|
+
readonly asArray32: U8aFixed;
|
4923
|
+
readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32';
|
4924
|
+
}
|
4925
|
+
|
4926
|
+
/** @name SygmaBridgeProposal (489) */
|
4927
|
+
interface SygmaBridgeProposal extends Struct {
|
4928
|
+
readonly originDomainId: u8;
|
4929
|
+
readonly depositNonce: u64;
|
4930
|
+
readonly resourceId: U8aFixed;
|
4931
|
+
readonly data: Bytes;
|
4932
|
+
}
|
4933
|
+
|
4934
|
+
/** @name PalletSudoError (490) */
|
4044
4935
|
interface PalletSudoError extends Enum {
|
4045
4936
|
readonly isRequireSudo: boolean;
|
4046
4937
|
readonly type: 'RequireSudo';
|
4047
4938
|
}
|
4048
4939
|
|
4049
|
-
/** @name
|
4940
|
+
/** @name PalletAssetsAssetDetails (492) */
|
4941
|
+
interface PalletAssetsAssetDetails extends Struct {
|
4942
|
+
readonly owner: AccountId32;
|
4943
|
+
readonly issuer: AccountId32;
|
4944
|
+
readonly admin: AccountId32;
|
4945
|
+
readonly freezer: AccountId32;
|
4946
|
+
readonly supply: u128;
|
4947
|
+
readonly deposit: u128;
|
4948
|
+
readonly minBalance: u128;
|
4949
|
+
readonly isSufficient: bool;
|
4950
|
+
readonly accounts: u32;
|
4951
|
+
readonly sufficients: u32;
|
4952
|
+
readonly approvals: u32;
|
4953
|
+
readonly status: PalletAssetsAssetStatus;
|
4954
|
+
}
|
4955
|
+
|
4956
|
+
/** @name PalletAssetsAssetStatus (493) */
|
4957
|
+
interface PalletAssetsAssetStatus extends Enum {
|
4958
|
+
readonly isLive: boolean;
|
4959
|
+
readonly isFrozen: boolean;
|
4960
|
+
readonly isDestroying: boolean;
|
4961
|
+
readonly type: 'Live' | 'Frozen' | 'Destroying';
|
4962
|
+
}
|
4963
|
+
|
4964
|
+
/** @name PalletAssetsAssetAccount (495) */
|
4965
|
+
interface PalletAssetsAssetAccount extends Struct {
|
4966
|
+
readonly balance: u128;
|
4967
|
+
readonly status: PalletAssetsAccountStatus;
|
4968
|
+
readonly reason: PalletAssetsExistenceReason;
|
4969
|
+
readonly extra: Null;
|
4970
|
+
}
|
4971
|
+
|
4972
|
+
/** @name PalletAssetsAccountStatus (496) */
|
4973
|
+
interface PalletAssetsAccountStatus extends Enum {
|
4974
|
+
readonly isLiquid: boolean;
|
4975
|
+
readonly isFrozen: boolean;
|
4976
|
+
readonly isBlocked: boolean;
|
4977
|
+
readonly type: 'Liquid' | 'Frozen' | 'Blocked';
|
4978
|
+
}
|
4979
|
+
|
4980
|
+
/** @name PalletAssetsExistenceReason (497) */
|
4981
|
+
interface PalletAssetsExistenceReason extends Enum {
|
4982
|
+
readonly isConsumer: boolean;
|
4983
|
+
readonly isSufficient: boolean;
|
4984
|
+
readonly isDepositHeld: boolean;
|
4985
|
+
readonly asDepositHeld: u128;
|
4986
|
+
readonly isDepositRefunded: boolean;
|
4987
|
+
readonly isDepositFrom: boolean;
|
4988
|
+
readonly asDepositFrom: ITuple<[AccountId32, u128]>;
|
4989
|
+
readonly type: 'Consumer' | 'Sufficient' | 'DepositHeld' | 'DepositRefunded' | 'DepositFrom';
|
4990
|
+
}
|
4991
|
+
|
4992
|
+
/** @name PalletAssetsApproval (499) */
|
4993
|
+
interface PalletAssetsApproval extends Struct {
|
4994
|
+
readonly amount: u128;
|
4995
|
+
readonly deposit: u128;
|
4996
|
+
}
|
4997
|
+
|
4998
|
+
/** @name PalletAssetsAssetMetadata (500) */
|
4999
|
+
interface PalletAssetsAssetMetadata extends Struct {
|
5000
|
+
readonly deposit: u128;
|
5001
|
+
readonly name: Bytes;
|
5002
|
+
readonly symbol: Bytes;
|
5003
|
+
readonly decimals: u8;
|
5004
|
+
readonly isFrozen: bool;
|
5005
|
+
}
|
5006
|
+
|
5007
|
+
/** @name PalletAssetsError (502) */
|
5008
|
+
interface PalletAssetsError extends Enum {
|
5009
|
+
readonly isBalanceLow: boolean;
|
5010
|
+
readonly isNoAccount: boolean;
|
5011
|
+
readonly isNoPermission: boolean;
|
5012
|
+
readonly isUnknown: boolean;
|
5013
|
+
readonly isFrozen: boolean;
|
5014
|
+
readonly isInUse: boolean;
|
5015
|
+
readonly isBadWitness: boolean;
|
5016
|
+
readonly isMinBalanceZero: boolean;
|
5017
|
+
readonly isUnavailableConsumer: boolean;
|
5018
|
+
readonly isBadMetadata: boolean;
|
5019
|
+
readonly isUnapproved: boolean;
|
5020
|
+
readonly isWouldDie: boolean;
|
5021
|
+
readonly isAlreadyExists: boolean;
|
5022
|
+
readonly isNoDeposit: boolean;
|
5023
|
+
readonly isWouldBurn: boolean;
|
5024
|
+
readonly isLiveAsset: boolean;
|
5025
|
+
readonly isAssetNotLive: boolean;
|
5026
|
+
readonly isIncorrectStatus: boolean;
|
5027
|
+
readonly isNotFrozen: boolean;
|
5028
|
+
readonly isCallbackFailed: boolean;
|
5029
|
+
readonly type: 'BalanceLow' | 'NoAccount' | 'NoPermission' | 'Unknown' | 'Frozen' | 'InUse' | 'BadWitness' | 'MinBalanceZero' | 'UnavailableConsumer' | 'BadMetadata' | 'Unapproved' | 'WouldDie' | 'AlreadyExists' | 'NoDeposit' | 'WouldBurn' | 'LiveAsset' | 'AssetNotLive' | 'IncorrectStatus' | 'NotFrozen' | 'CallbackFailed';
|
5030
|
+
}
|
5031
|
+
|
5032
|
+
/** @name PalletBalancesBalanceLock (504) */
|
4050
5033
|
interface PalletBalancesBalanceLock extends Struct {
|
4051
5034
|
readonly id: U8aFixed;
|
4052
5035
|
readonly amount: u128;
|
4053
5036
|
readonly reasons: PalletBalancesReasons;
|
4054
5037
|
}
|
4055
5038
|
|
4056
|
-
/** @name PalletBalancesReasons (
|
5039
|
+
/** @name PalletBalancesReasons (505) */
|
4057
5040
|
interface PalletBalancesReasons extends Enum {
|
4058
5041
|
readonly isFee: boolean;
|
4059
5042
|
readonly isMisc: boolean;
|
@@ -4061,51 +5044,51 @@ declare module '@polkadot/types/lookup' {
|
|
4061
5044
|
readonly type: 'Fee' | 'Misc' | 'All';
|
4062
5045
|
}
|
4063
5046
|
|
4064
|
-
/** @name PalletBalancesReserveData (
|
5047
|
+
/** @name PalletBalancesReserveData (508) */
|
4065
5048
|
interface PalletBalancesReserveData extends Struct {
|
4066
5049
|
readonly id: U8aFixed;
|
4067
5050
|
readonly amount: u128;
|
4068
5051
|
}
|
4069
5052
|
|
4070
|
-
/** @name PalletBalancesIdAmountRuntimeHoldReason (
|
5053
|
+
/** @name PalletBalancesIdAmountRuntimeHoldReason (511) */
|
4071
5054
|
interface PalletBalancesIdAmountRuntimeHoldReason extends Struct {
|
4072
5055
|
readonly id: TangleTestnetRuntimeRuntimeHoldReason;
|
4073
5056
|
readonly amount: u128;
|
4074
5057
|
}
|
4075
5058
|
|
4076
|
-
/** @name TangleTestnetRuntimeRuntimeHoldReason (
|
5059
|
+
/** @name TangleTestnetRuntimeRuntimeHoldReason (512) */
|
4077
5060
|
interface TangleTestnetRuntimeRuntimeHoldReason extends Enum {
|
4078
5061
|
readonly isPreimage: boolean;
|
4079
5062
|
readonly asPreimage: PalletPreimageHoldReason;
|
4080
5063
|
readonly type: 'Preimage';
|
4081
5064
|
}
|
4082
5065
|
|
4083
|
-
/** @name PalletPreimageHoldReason (
|
5066
|
+
/** @name PalletPreimageHoldReason (513) */
|
4084
5067
|
interface PalletPreimageHoldReason extends Enum {
|
4085
5068
|
readonly isPreimage: boolean;
|
4086
5069
|
readonly type: 'Preimage';
|
4087
5070
|
}
|
4088
5071
|
|
4089
|
-
/** @name PalletBalancesIdAmountRuntimeFreezeReason (
|
5072
|
+
/** @name PalletBalancesIdAmountRuntimeFreezeReason (516) */
|
4090
5073
|
interface PalletBalancesIdAmountRuntimeFreezeReason extends Struct {
|
4091
5074
|
readonly id: TangleTestnetRuntimeRuntimeFreezeReason;
|
4092
5075
|
readonly amount: u128;
|
4093
5076
|
}
|
4094
5077
|
|
4095
|
-
/** @name TangleTestnetRuntimeRuntimeFreezeReason (
|
5078
|
+
/** @name TangleTestnetRuntimeRuntimeFreezeReason (517) */
|
4096
5079
|
interface TangleTestnetRuntimeRuntimeFreezeReason extends Enum {
|
4097
5080
|
readonly isNominationPools: boolean;
|
4098
5081
|
readonly asNominationPools: PalletNominationPoolsFreezeReason;
|
4099
5082
|
readonly type: 'NominationPools';
|
4100
5083
|
}
|
4101
5084
|
|
4102
|
-
/** @name PalletNominationPoolsFreezeReason (
|
5085
|
+
/** @name PalletNominationPoolsFreezeReason (518) */
|
4103
5086
|
interface PalletNominationPoolsFreezeReason extends Enum {
|
4104
5087
|
readonly isPoolMinBalance: boolean;
|
4105
5088
|
readonly type: 'PoolMinBalance';
|
4106
5089
|
}
|
4107
5090
|
|
4108
|
-
/** @name PalletBalancesError (
|
5091
|
+
/** @name PalletBalancesError (520) */
|
4109
5092
|
interface PalletBalancesError extends Enum {
|
4110
5093
|
readonly isVestingBalance: boolean;
|
4111
5094
|
readonly isLiquidityRestrictions: boolean;
|
@@ -4122,14 +5105,14 @@ declare module '@polkadot/types/lookup' {
|
|
4122
5105
|
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
|
4123
5106
|
}
|
4124
5107
|
|
4125
|
-
/** @name PalletTransactionPaymentReleases (
|
5108
|
+
/** @name PalletTransactionPaymentReleases (522) */
|
4126
5109
|
interface PalletTransactionPaymentReleases extends Enum {
|
4127
5110
|
readonly isV1Ancient: boolean;
|
4128
5111
|
readonly isV2: boolean;
|
4129
5112
|
readonly type: 'V1Ancient' | 'V2';
|
4130
5113
|
}
|
4131
5114
|
|
4132
|
-
/** @name SpConsensusBabeDigestsPreDigest (
|
5115
|
+
/** @name SpConsensusBabeDigestsPreDigest (529) */
|
4133
5116
|
interface SpConsensusBabeDigestsPreDigest extends Enum {
|
4134
5117
|
readonly isPrimary: boolean;
|
4135
5118
|
readonly asPrimary: SpConsensusBabeDigestsPrimaryPreDigest;
|
@@ -4140,39 +5123,39 @@ declare module '@polkadot/types/lookup' {
|
|
4140
5123
|
readonly type: 'Primary' | 'SecondaryPlain' | 'SecondaryVRF';
|
4141
5124
|
}
|
4142
5125
|
|
4143
|
-
/** @name SpConsensusBabeDigestsPrimaryPreDigest (
|
5126
|
+
/** @name SpConsensusBabeDigestsPrimaryPreDigest (530) */
|
4144
5127
|
interface SpConsensusBabeDigestsPrimaryPreDigest extends Struct {
|
4145
5128
|
readonly authorityIndex: u32;
|
4146
5129
|
readonly slot: u64;
|
4147
5130
|
readonly vrfSignature: SpCoreSr25519VrfVrfSignature;
|
4148
5131
|
}
|
4149
5132
|
|
4150
|
-
/** @name SpCoreSr25519VrfVrfSignature (
|
5133
|
+
/** @name SpCoreSr25519VrfVrfSignature (531) */
|
4151
5134
|
interface SpCoreSr25519VrfVrfSignature extends Struct {
|
4152
5135
|
readonly preOutput: U8aFixed;
|
4153
5136
|
readonly proof: U8aFixed;
|
4154
5137
|
}
|
4155
5138
|
|
4156
|
-
/** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (
|
5139
|
+
/** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (532) */
|
4157
5140
|
interface SpConsensusBabeDigestsSecondaryPlainPreDigest extends Struct {
|
4158
5141
|
readonly authorityIndex: u32;
|
4159
5142
|
readonly slot: u64;
|
4160
5143
|
}
|
4161
5144
|
|
4162
|
-
/** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (
|
5145
|
+
/** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (533) */
|
4163
5146
|
interface SpConsensusBabeDigestsSecondaryVRFPreDigest extends Struct {
|
4164
5147
|
readonly authorityIndex: u32;
|
4165
5148
|
readonly slot: u64;
|
4166
5149
|
readonly vrfSignature: SpCoreSr25519VrfVrfSignature;
|
4167
5150
|
}
|
4168
5151
|
|
4169
|
-
/** @name SpConsensusBabeBabeEpochConfiguration (
|
5152
|
+
/** @name SpConsensusBabeBabeEpochConfiguration (534) */
|
4170
5153
|
interface SpConsensusBabeBabeEpochConfiguration extends Struct {
|
4171
5154
|
readonly c: ITuple<[u64, u64]>;
|
4172
5155
|
readonly allowedSlots: SpConsensusBabeAllowedSlots;
|
4173
5156
|
}
|
4174
5157
|
|
4175
|
-
/** @name PalletBabeError (
|
5158
|
+
/** @name PalletBabeError (536) */
|
4176
5159
|
interface PalletBabeError extends Enum {
|
4177
5160
|
readonly isInvalidEquivocationProof: boolean;
|
4178
5161
|
readonly isInvalidKeyOwnershipProof: boolean;
|
@@ -4181,7 +5164,7 @@ declare module '@polkadot/types/lookup' {
|
|
4181
5164
|
readonly type: 'InvalidEquivocationProof' | 'InvalidKeyOwnershipProof' | 'DuplicateOffenceReport' | 'InvalidConfiguration';
|
4182
5165
|
}
|
4183
5166
|
|
4184
|
-
/** @name PalletGrandpaStoredState (
|
5167
|
+
/** @name PalletGrandpaStoredState (537) */
|
4185
5168
|
interface PalletGrandpaStoredState extends Enum {
|
4186
5169
|
readonly isLive: boolean;
|
4187
5170
|
readonly isPendingPause: boolean;
|
@@ -4198,7 +5181,7 @@ declare module '@polkadot/types/lookup' {
|
|
4198
5181
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
4199
5182
|
}
|
4200
5183
|
|
4201
|
-
/** @name PalletGrandpaStoredPendingChange (
|
5184
|
+
/** @name PalletGrandpaStoredPendingChange (538) */
|
4202
5185
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
4203
5186
|
readonly scheduledAt: u64;
|
4204
5187
|
readonly delay: u64;
|
@@ -4206,7 +5189,7 @@ declare module '@polkadot/types/lookup' {
|
|
4206
5189
|
readonly forced: Option<u64>;
|
4207
5190
|
}
|
4208
5191
|
|
4209
|
-
/** @name PalletGrandpaError (
|
5192
|
+
/** @name PalletGrandpaError (540) */
|
4210
5193
|
interface PalletGrandpaError extends Enum {
|
4211
5194
|
readonly isPauseFailed: boolean;
|
4212
5195
|
readonly isResumeFailed: boolean;
|
@@ -4218,7 +5201,7 @@ declare module '@polkadot/types/lookup' {
|
|
4218
5201
|
readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
|
4219
5202
|
}
|
4220
5203
|
|
4221
|
-
/** @name PalletIndicesError (
|
5204
|
+
/** @name PalletIndicesError (542) */
|
4222
5205
|
interface PalletIndicesError extends Enum {
|
4223
5206
|
readonly isNotAssigned: boolean;
|
4224
5207
|
readonly isNotOwner: boolean;
|
@@ -4228,7 +5211,7 @@ declare module '@polkadot/types/lookup' {
|
|
4228
5211
|
readonly type: 'NotAssigned' | 'NotOwner' | 'InUse' | 'NotTransfer' | 'Permanent';
|
4229
5212
|
}
|
4230
5213
|
|
4231
|
-
/** @name PalletDemocracyReferendumInfo (
|
5214
|
+
/** @name PalletDemocracyReferendumInfo (547) */
|
4232
5215
|
interface PalletDemocracyReferendumInfo extends Enum {
|
4233
5216
|
readonly isOngoing: boolean;
|
4234
5217
|
readonly asOngoing: PalletDemocracyReferendumStatus;
|
@@ -4240,7 +5223,7 @@ declare module '@polkadot/types/lookup' {
|
|
4240
5223
|
readonly type: 'Ongoing' | 'Finished';
|
4241
5224
|
}
|
4242
5225
|
|
4243
|
-
/** @name PalletDemocracyReferendumStatus (
|
5226
|
+
/** @name PalletDemocracyReferendumStatus (548) */
|
4244
5227
|
interface PalletDemocracyReferendumStatus extends Struct {
|
4245
5228
|
readonly end: u64;
|
4246
5229
|
readonly proposal: FrameSupportPreimagesBounded;
|
@@ -4249,14 +5232,14 @@ declare module '@polkadot/types/lookup' {
|
|
4249
5232
|
readonly tally: PalletDemocracyTally;
|
4250
5233
|
}
|
4251
5234
|
|
4252
|
-
/** @name PalletDemocracyTally (
|
5235
|
+
/** @name PalletDemocracyTally (549) */
|
4253
5236
|
interface PalletDemocracyTally extends Struct {
|
4254
5237
|
readonly ayes: u128;
|
4255
5238
|
readonly nays: u128;
|
4256
5239
|
readonly turnout: u128;
|
4257
5240
|
}
|
4258
5241
|
|
4259
|
-
/** @name PalletDemocracyVoteVoting (
|
5242
|
+
/** @name PalletDemocracyVoteVoting (550) */
|
4260
5243
|
interface PalletDemocracyVoteVoting extends Enum {
|
4261
5244
|
readonly isDirect: boolean;
|
4262
5245
|
readonly asDirect: {
|
@@ -4275,16 +5258,16 @@ declare module '@polkadot/types/lookup' {
|
|
4275
5258
|
readonly type: 'Direct' | 'Delegating';
|
4276
5259
|
}
|
4277
5260
|
|
4278
|
-
/** @name PalletDemocracyDelegations (
|
5261
|
+
/** @name PalletDemocracyDelegations (554) */
|
4279
5262
|
interface PalletDemocracyDelegations extends Struct {
|
4280
5263
|
readonly votes: u128;
|
4281
5264
|
readonly capital: u128;
|
4282
5265
|
}
|
4283
5266
|
|
4284
|
-
/** @name PalletDemocracyVotePriorLock (
|
5267
|
+
/** @name PalletDemocracyVotePriorLock (555) */
|
4285
5268
|
interface PalletDemocracyVotePriorLock extends ITuple<[u64, u128]> {}
|
4286
5269
|
|
4287
|
-
/** @name PalletDemocracyError (
|
5270
|
+
/** @name PalletDemocracyError (558) */
|
4288
5271
|
interface PalletDemocracyError extends Enum {
|
4289
5272
|
readonly isValueLow: boolean;
|
4290
5273
|
readonly isProposalMissing: boolean;
|
@@ -4313,7 +5296,7 @@ declare module '@polkadot/types/lookup' {
|
|
4313
5296
|
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';
|
4314
5297
|
}
|
4315
5298
|
|
4316
|
-
/** @name PalletCollectiveVotes (
|
5299
|
+
/** @name PalletCollectiveVotes (560) */
|
4317
5300
|
interface PalletCollectiveVotes extends Struct {
|
4318
5301
|
readonly index: u32;
|
4319
5302
|
readonly threshold: u32;
|
@@ -4322,7 +5305,7 @@ declare module '@polkadot/types/lookup' {
|
|
4322
5305
|
readonly end: u64;
|
4323
5306
|
}
|
4324
5307
|
|
4325
|
-
/** @name PalletCollectiveError (
|
5308
|
+
/** @name PalletCollectiveError (561) */
|
4326
5309
|
interface PalletCollectiveError extends Enum {
|
4327
5310
|
readonly isNotMember: boolean;
|
4328
5311
|
readonly isDuplicateProposal: boolean;
|
@@ -4338,14 +5321,14 @@ declare module '@polkadot/types/lookup' {
|
|
4338
5321
|
readonly type: 'NotMember' | 'DuplicateProposal' | 'ProposalMissing' | 'WrongIndex' | 'DuplicateVote' | 'AlreadyInitialized' | 'TooEarly' | 'TooManyProposals' | 'WrongProposalWeight' | 'WrongProposalLength' | 'PrimeAccountNotMember';
|
4339
5322
|
}
|
4340
5323
|
|
4341
|
-
/** @name PalletVestingReleases (
|
5324
|
+
/** @name PalletVestingReleases (564) */
|
4342
5325
|
interface PalletVestingReleases extends Enum {
|
4343
5326
|
readonly isV0: boolean;
|
4344
5327
|
readonly isV1: boolean;
|
4345
5328
|
readonly type: 'V0' | 'V1';
|
4346
5329
|
}
|
4347
5330
|
|
4348
|
-
/** @name PalletVestingError (
|
5331
|
+
/** @name PalletVestingError (565) */
|
4349
5332
|
interface PalletVestingError extends Enum {
|
4350
5333
|
readonly isNotVesting: boolean;
|
4351
5334
|
readonly isAtMaxVestingSchedules: boolean;
|
@@ -4355,21 +5338,21 @@ declare module '@polkadot/types/lookup' {
|
|
4355
5338
|
readonly type: 'NotVesting' | 'AtMaxVestingSchedules' | 'AmountLow' | 'ScheduleIndexOutOfBounds' | 'InvalidScheduleParams';
|
4356
5339
|
}
|
4357
5340
|
|
4358
|
-
/** @name PalletElectionsPhragmenSeatHolder (
|
5341
|
+
/** @name PalletElectionsPhragmenSeatHolder (567) */
|
4359
5342
|
interface PalletElectionsPhragmenSeatHolder extends Struct {
|
4360
5343
|
readonly who: AccountId32;
|
4361
5344
|
readonly stake: u128;
|
4362
5345
|
readonly deposit: u128;
|
4363
5346
|
}
|
4364
5347
|
|
4365
|
-
/** @name PalletElectionsPhragmenVoter (
|
5348
|
+
/** @name PalletElectionsPhragmenVoter (568) */
|
4366
5349
|
interface PalletElectionsPhragmenVoter extends Struct {
|
4367
5350
|
readonly votes: Vec<AccountId32>;
|
4368
5351
|
readonly stake: u128;
|
4369
5352
|
readonly deposit: u128;
|
4370
5353
|
}
|
4371
5354
|
|
4372
|
-
/** @name PalletElectionsPhragmenError (
|
5355
|
+
/** @name PalletElectionsPhragmenError (569) */
|
4373
5356
|
interface PalletElectionsPhragmenError extends Enum {
|
4374
5357
|
readonly isUnableToVote: boolean;
|
4375
5358
|
readonly isNoVotes: boolean;
|
@@ -4391,20 +5374,20 @@ declare module '@polkadot/types/lookup' {
|
|
4391
5374
|
readonly type: 'UnableToVote' | 'NoVotes' | 'TooManyVotes' | 'MaximumVotesExceeded' | 'LowBalance' | 'UnableToPayBond' | 'MustBeVoter' | 'DuplicatedCandidate' | 'TooManyCandidates' | 'MemberSubmit' | 'RunnerUpSubmit' | 'InsufficientCandidateFunds' | 'NotMember' | 'InvalidWitnessData' | 'InvalidVoteCount' | 'InvalidRenouncing' | 'InvalidReplacement';
|
4392
5375
|
}
|
4393
5376
|
|
4394
|
-
/** @name PalletElectionProviderMultiPhaseReadySolution (
|
5377
|
+
/** @name PalletElectionProviderMultiPhaseReadySolution (570) */
|
4395
5378
|
interface PalletElectionProviderMultiPhaseReadySolution extends Struct {
|
4396
5379
|
readonly supports: Vec<ITuple<[AccountId32, SpNposElectionsSupport]>>;
|
4397
5380
|
readonly score: SpNposElectionsElectionScore;
|
4398
5381
|
readonly compute: PalletElectionProviderMultiPhaseElectionCompute;
|
4399
5382
|
}
|
4400
5383
|
|
4401
|
-
/** @name PalletElectionProviderMultiPhaseRoundSnapshot (
|
5384
|
+
/** @name PalletElectionProviderMultiPhaseRoundSnapshot (572) */
|
4402
5385
|
interface PalletElectionProviderMultiPhaseRoundSnapshot extends Struct {
|
4403
5386
|
readonly voters: Vec<ITuple<[AccountId32, u64, Vec<AccountId32>]>>;
|
4404
5387
|
readonly targets: Vec<AccountId32>;
|
4405
5388
|
}
|
4406
5389
|
|
4407
|
-
/** @name PalletElectionProviderMultiPhaseSignedSignedSubmission (
|
5390
|
+
/** @name PalletElectionProviderMultiPhaseSignedSignedSubmission (579) */
|
4408
5391
|
interface PalletElectionProviderMultiPhaseSignedSignedSubmission extends Struct {
|
4409
5392
|
readonly who: AccountId32;
|
4410
5393
|
readonly deposit: u128;
|
@@ -4412,7 +5395,7 @@ declare module '@polkadot/types/lookup' {
|
|
4412
5395
|
readonly callFee: u128;
|
4413
5396
|
}
|
4414
5397
|
|
4415
|
-
/** @name PalletElectionProviderMultiPhaseError (
|
5398
|
+
/** @name PalletElectionProviderMultiPhaseError (580) */
|
4416
5399
|
interface PalletElectionProviderMultiPhaseError extends Enum {
|
4417
5400
|
readonly isPreDispatchEarlySubmission: boolean;
|
4418
5401
|
readonly isPreDispatchWrongWinnerCount: boolean;
|
@@ -4432,7 +5415,7 @@ declare module '@polkadot/types/lookup' {
|
|
4432
5415
|
readonly type: 'PreDispatchEarlySubmission' | 'PreDispatchWrongWinnerCount' | 'PreDispatchWeakSubmission' | 'SignedQueueFull' | 'SignedCannotPayDeposit' | 'SignedInvalidWitness' | 'SignedTooMuchWeight' | 'OcwCallWrongEra' | 'MissingSnapshotMetadata' | 'InvalidSubmissionIndex' | 'CallNotAllowed' | 'FallbackFailed' | 'BoundNotMet' | 'TooManyWinners' | 'PreDispatchDifferentRound';
|
4433
5416
|
}
|
4434
5417
|
|
4435
|
-
/** @name PalletStakingStakingLedger (
|
5418
|
+
/** @name PalletStakingStakingLedger (581) */
|
4436
5419
|
interface PalletStakingStakingLedger extends Struct {
|
4437
5420
|
readonly stash: AccountId32;
|
4438
5421
|
readonly total: Compact<u128>;
|
@@ -4441,26 +5424,26 @@ declare module '@polkadot/types/lookup' {
|
|
4441
5424
|
readonly legacyClaimedRewards: Vec<u32>;
|
4442
5425
|
}
|
4443
5426
|
|
4444
|
-
/** @name PalletStakingUnlockChunk (
|
5427
|
+
/** @name PalletStakingUnlockChunk (583) */
|
4445
5428
|
interface PalletStakingUnlockChunk extends Struct {
|
4446
5429
|
readonly value: Compact<u128>;
|
4447
5430
|
readonly era: Compact<u32>;
|
4448
5431
|
}
|
4449
5432
|
|
4450
|
-
/** @name PalletStakingNominations (
|
5433
|
+
/** @name PalletStakingNominations (586) */
|
4451
5434
|
interface PalletStakingNominations extends Struct {
|
4452
5435
|
readonly targets: Vec<AccountId32>;
|
4453
5436
|
readonly submittedIn: u32;
|
4454
5437
|
readonly suppressed: bool;
|
4455
5438
|
}
|
4456
5439
|
|
4457
|
-
/** @name PalletStakingActiveEraInfo (
|
5440
|
+
/** @name PalletStakingActiveEraInfo (587) */
|
4458
5441
|
interface PalletStakingActiveEraInfo extends Struct {
|
4459
5442
|
readonly index: u32;
|
4460
5443
|
readonly start: Option<u64>;
|
4461
5444
|
}
|
4462
5445
|
|
4463
|
-
/** @name SpStakingPagedExposureMetadata (
|
5446
|
+
/** @name SpStakingPagedExposureMetadata (589) */
|
4464
5447
|
interface SpStakingPagedExposureMetadata extends Struct {
|
4465
5448
|
readonly total: Compact<u128>;
|
4466
5449
|
readonly own: Compact<u128>;
|
@@ -4468,19 +5451,19 @@ declare module '@polkadot/types/lookup' {
|
|
4468
5451
|
readonly pageCount: u32;
|
4469
5452
|
}
|
4470
5453
|
|
4471
|
-
/** @name SpStakingExposurePage (
|
5454
|
+
/** @name SpStakingExposurePage (591) */
|
4472
5455
|
interface SpStakingExposurePage extends Struct {
|
4473
5456
|
readonly pageTotal: Compact<u128>;
|
4474
5457
|
readonly others: Vec<SpStakingIndividualExposure>;
|
4475
5458
|
}
|
4476
5459
|
|
4477
|
-
/** @name PalletStakingEraRewardPoints (
|
5460
|
+
/** @name PalletStakingEraRewardPoints (592) */
|
4478
5461
|
interface PalletStakingEraRewardPoints extends Struct {
|
4479
5462
|
readonly total: u32;
|
4480
5463
|
readonly individual: BTreeMap<AccountId32, u32>;
|
4481
5464
|
}
|
4482
5465
|
|
4483
|
-
/** @name PalletStakingUnappliedSlash (
|
5466
|
+
/** @name PalletStakingUnappliedSlash (597) */
|
4484
5467
|
interface PalletStakingUnappliedSlash extends Struct {
|
4485
5468
|
readonly validator: AccountId32;
|
4486
5469
|
readonly own: u128;
|
@@ -4489,7 +5472,7 @@ declare module '@polkadot/types/lookup' {
|
|
4489
5472
|
readonly payout: u128;
|
4490
5473
|
}
|
4491
5474
|
|
4492
|
-
/** @name PalletStakingSlashingSlashingSpans (
|
5475
|
+
/** @name PalletStakingSlashingSlashingSpans (601) */
|
4493
5476
|
interface PalletStakingSlashingSlashingSpans extends Struct {
|
4494
5477
|
readonly spanIndex: u32;
|
4495
5478
|
readonly lastStart: u32;
|
@@ -4497,13 +5480,13 @@ declare module '@polkadot/types/lookup' {
|
|
4497
5480
|
readonly prior: Vec<u32>;
|
4498
5481
|
}
|
4499
5482
|
|
4500
|
-
/** @name PalletStakingSlashingSpanRecord (
|
5483
|
+
/** @name PalletStakingSlashingSpanRecord (602) */
|
4501
5484
|
interface PalletStakingSlashingSpanRecord extends Struct {
|
4502
5485
|
readonly slashed: u128;
|
4503
5486
|
readonly paidOut: u128;
|
4504
5487
|
}
|
4505
5488
|
|
4506
|
-
/** @name PalletStakingPalletError (
|
5489
|
+
/** @name PalletStakingPalletError (605) */
|
4507
5490
|
interface PalletStakingPalletError extends Enum {
|
4508
5491
|
readonly isNotController: boolean;
|
4509
5492
|
readonly isNotStash: boolean;
|
@@ -4536,10 +5519,10 @@ declare module '@polkadot/types/lookup' {
|
|
4536
5519
|
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';
|
4537
5520
|
}
|
4538
5521
|
|
4539
|
-
/** @name SpCoreCryptoKeyTypeId (
|
5522
|
+
/** @name SpCoreCryptoKeyTypeId (609) */
|
4540
5523
|
interface SpCoreCryptoKeyTypeId extends U8aFixed {}
|
4541
5524
|
|
4542
|
-
/** @name PalletSessionError (
|
5525
|
+
/** @name PalletSessionError (610) */
|
4543
5526
|
interface PalletSessionError extends Enum {
|
4544
5527
|
readonly isInvalidProof: boolean;
|
4545
5528
|
readonly isNoAssociatedValidatorId: boolean;
|
@@ -4549,7 +5532,7 @@ declare module '@polkadot/types/lookup' {
|
|
4549
5532
|
readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
|
4550
5533
|
}
|
4551
5534
|
|
4552
|
-
/** @name PalletTreasuryProposal (
|
5535
|
+
/** @name PalletTreasuryProposal (612) */
|
4553
5536
|
interface PalletTreasuryProposal extends Struct {
|
4554
5537
|
readonly proposer: AccountId32;
|
4555
5538
|
readonly value: u128;
|
@@ -4557,7 +5540,7 @@ declare module '@polkadot/types/lookup' {
|
|
4557
5540
|
readonly bond: u128;
|
4558
5541
|
}
|
4559
5542
|
|
4560
|
-
/** @name PalletTreasurySpendStatus (
|
5543
|
+
/** @name PalletTreasurySpendStatus (614) */
|
4561
5544
|
interface PalletTreasurySpendStatus extends Struct {
|
4562
5545
|
readonly assetKind: Null;
|
4563
5546
|
readonly amount: u128;
|
@@ -4567,7 +5550,7 @@ declare module '@polkadot/types/lookup' {
|
|
4567
5550
|
readonly status: PalletTreasuryPaymentState;
|
4568
5551
|
}
|
4569
5552
|
|
4570
|
-
/** @name PalletTreasuryPaymentState (
|
5553
|
+
/** @name PalletTreasuryPaymentState (615) */
|
4571
5554
|
interface PalletTreasuryPaymentState extends Enum {
|
4572
5555
|
readonly isPending: boolean;
|
4573
5556
|
readonly isAttempted: boolean;
|
@@ -4578,10 +5561,10 @@ declare module '@polkadot/types/lookup' {
|
|
4578
5561
|
readonly type: 'Pending' | 'Attempted' | 'Failed';
|
4579
5562
|
}
|
4580
5563
|
|
4581
|
-
/** @name FrameSupportPalletId (
|
5564
|
+
/** @name FrameSupportPalletId (616) */
|
4582
5565
|
interface FrameSupportPalletId extends U8aFixed {}
|
4583
5566
|
|
4584
|
-
/** @name PalletTreasuryError (
|
5567
|
+
/** @name PalletTreasuryError (617) */
|
4585
5568
|
interface PalletTreasuryError extends Enum {
|
4586
5569
|
readonly isInsufficientProposersBalance: boolean;
|
4587
5570
|
readonly isInvalidIndex: boolean;
|
@@ -4598,7 +5581,7 @@ declare module '@polkadot/types/lookup' {
|
|
4598
5581
|
readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved' | 'FailedToConvertBalance' | 'SpendExpired' | 'EarlyPayout' | 'AlreadyAttempted' | 'PayoutError' | 'NotAttempted' | 'Inconclusive';
|
4599
5582
|
}
|
4600
5583
|
|
4601
|
-
/** @name PalletBountiesBounty (
|
5584
|
+
/** @name PalletBountiesBounty (618) */
|
4602
5585
|
interface PalletBountiesBounty extends Struct {
|
4603
5586
|
readonly proposer: AccountId32;
|
4604
5587
|
readonly value: u128;
|
@@ -4608,7 +5591,7 @@ declare module '@polkadot/types/lookup' {
|
|
4608
5591
|
readonly status: PalletBountiesBountyStatus;
|
4609
5592
|
}
|
4610
5593
|
|
4611
|
-
/** @name PalletBountiesBountyStatus (
|
5594
|
+
/** @name PalletBountiesBountyStatus (619) */
|
4612
5595
|
interface PalletBountiesBountyStatus extends Enum {
|
4613
5596
|
readonly isProposed: boolean;
|
4614
5597
|
readonly isApproved: boolean;
|
@@ -4631,7 +5614,7 @@ declare module '@polkadot/types/lookup' {
|
|
4631
5614
|
readonly type: 'Proposed' | 'Approved' | 'Funded' | 'CuratorProposed' | 'Active' | 'PendingPayout';
|
4632
5615
|
}
|
4633
5616
|
|
4634
|
-
/** @name PalletBountiesError (
|
5617
|
+
/** @name PalletBountiesError (621) */
|
4635
5618
|
interface PalletBountiesError extends Enum {
|
4636
5619
|
readonly isInsufficientProposersBalance: boolean;
|
4637
5620
|
readonly isInvalidIndex: boolean;
|
@@ -4647,7 +5630,7 @@ declare module '@polkadot/types/lookup' {
|
|
4647
5630
|
readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'ReasonTooBig' | 'UnexpectedStatus' | 'RequireCurator' | 'InvalidValue' | 'InvalidFee' | 'PendingPayout' | 'Premature' | 'HasActiveChildBounty' | 'TooManyQueued';
|
4648
5631
|
}
|
4649
5632
|
|
4650
|
-
/** @name PalletChildBountiesChildBounty (
|
5633
|
+
/** @name PalletChildBountiesChildBounty (622) */
|
4651
5634
|
interface PalletChildBountiesChildBounty extends Struct {
|
4652
5635
|
readonly parentBounty: u32;
|
4653
5636
|
readonly value: u128;
|
@@ -4656,7 +5639,7 @@ declare module '@polkadot/types/lookup' {
|
|
4656
5639
|
readonly status: PalletChildBountiesChildBountyStatus;
|
4657
5640
|
}
|
4658
5641
|
|
4659
|
-
/** @name PalletChildBountiesChildBountyStatus (
|
5642
|
+
/** @name PalletChildBountiesChildBountyStatus (623) */
|
4660
5643
|
interface PalletChildBountiesChildBountyStatus extends Enum {
|
4661
5644
|
readonly isAdded: boolean;
|
4662
5645
|
readonly isCuratorProposed: boolean;
|
@@ -4676,7 +5659,7 @@ declare module '@polkadot/types/lookup' {
|
|
4676
5659
|
readonly type: 'Added' | 'CuratorProposed' | 'Active' | 'PendingPayout';
|
4677
5660
|
}
|
4678
5661
|
|
4679
|
-
/** @name PalletChildBountiesError (
|
5662
|
+
/** @name PalletChildBountiesError (624) */
|
4680
5663
|
interface PalletChildBountiesError extends Enum {
|
4681
5664
|
readonly isParentBountyNotActive: boolean;
|
4682
5665
|
readonly isInsufficientBountyBalance: boolean;
|
@@ -4684,7 +5667,7 @@ declare module '@polkadot/types/lookup' {
|
|
4684
5667
|
readonly type: 'ParentBountyNotActive' | 'InsufficientBountyBalance' | 'TooManyChildBounties';
|
4685
5668
|
}
|
4686
5669
|
|
4687
|
-
/** @name PalletBagsListListNode (
|
5670
|
+
/** @name PalletBagsListListNode (625) */
|
4688
5671
|
interface PalletBagsListListNode extends Struct {
|
4689
5672
|
readonly id: AccountId32;
|
4690
5673
|
readonly prev: Option<AccountId32>;
|
@@ -4693,20 +5676,20 @@ declare module '@polkadot/types/lookup' {
|
|
4693
5676
|
readonly score: u64;
|
4694
5677
|
}
|
4695
5678
|
|
4696
|
-
/** @name PalletBagsListListBag (
|
5679
|
+
/** @name PalletBagsListListBag (626) */
|
4697
5680
|
interface PalletBagsListListBag extends Struct {
|
4698
5681
|
readonly head: Option<AccountId32>;
|
4699
5682
|
readonly tail: Option<AccountId32>;
|
4700
5683
|
}
|
4701
5684
|
|
4702
|
-
/** @name PalletBagsListError (
|
5685
|
+
/** @name PalletBagsListError (628) */
|
4703
5686
|
interface PalletBagsListError extends Enum {
|
4704
5687
|
readonly isList: boolean;
|
4705
5688
|
readonly asList: PalletBagsListListListError;
|
4706
5689
|
readonly type: 'List';
|
4707
5690
|
}
|
4708
5691
|
|
4709
|
-
/** @name PalletBagsListListListError (
|
5692
|
+
/** @name PalletBagsListListListError (629) */
|
4710
5693
|
interface PalletBagsListListListError extends Enum {
|
4711
5694
|
readonly isDuplicate: boolean;
|
4712
5695
|
readonly isNotHeavier: boolean;
|
@@ -4715,7 +5698,7 @@ declare module '@polkadot/types/lookup' {
|
|
4715
5698
|
readonly type: 'Duplicate' | 'NotHeavier' | 'NotInSameBag' | 'NodeNotFound';
|
4716
5699
|
}
|
4717
5700
|
|
4718
|
-
/** @name PalletNominationPoolsPoolMember (
|
5701
|
+
/** @name PalletNominationPoolsPoolMember (630) */
|
4719
5702
|
interface PalletNominationPoolsPoolMember extends Struct {
|
4720
5703
|
readonly poolId: u32;
|
4721
5704
|
readonly points: u128;
|
@@ -4723,7 +5706,7 @@ declare module '@polkadot/types/lookup' {
|
|
4723
5706
|
readonly unbondingEras: BTreeMap<u32, u128>;
|
4724
5707
|
}
|
4725
5708
|
|
4726
|
-
/** @name PalletNominationPoolsBondedPoolInner (
|
5709
|
+
/** @name PalletNominationPoolsBondedPoolInner (635) */
|
4727
5710
|
interface PalletNominationPoolsBondedPoolInner extends Struct {
|
4728
5711
|
readonly commission: PalletNominationPoolsCommission;
|
4729
5712
|
readonly memberCounter: u32;
|
@@ -4732,7 +5715,7 @@ declare module '@polkadot/types/lookup' {
|
|
4732
5715
|
readonly state: PalletNominationPoolsPoolState;
|
4733
5716
|
}
|
4734
5717
|
|
4735
|
-
/** @name PalletNominationPoolsCommission (
|
5718
|
+
/** @name PalletNominationPoolsCommission (636) */
|
4736
5719
|
interface PalletNominationPoolsCommission extends Struct {
|
4737
5720
|
readonly current: Option<ITuple<[Perbill, AccountId32]>>;
|
4738
5721
|
readonly max: Option<Perbill>;
|
@@ -4741,7 +5724,7 @@ declare module '@polkadot/types/lookup' {
|
|
4741
5724
|
readonly claimPermission: Option<PalletNominationPoolsCommissionClaimPermission>;
|
4742
5725
|
}
|
4743
5726
|
|
4744
|
-
/** @name PalletNominationPoolsPoolRoles (
|
5727
|
+
/** @name PalletNominationPoolsPoolRoles (639) */
|
4745
5728
|
interface PalletNominationPoolsPoolRoles extends Struct {
|
4746
5729
|
readonly depositor: AccountId32;
|
4747
5730
|
readonly root: Option<AccountId32>;
|
@@ -4749,7 +5732,7 @@ declare module '@polkadot/types/lookup' {
|
|
4749
5732
|
readonly bouncer: Option<AccountId32>;
|
4750
5733
|
}
|
4751
5734
|
|
4752
|
-
/** @name PalletNominationPoolsRewardPool (
|
5735
|
+
/** @name PalletNominationPoolsRewardPool (640) */
|
4753
5736
|
interface PalletNominationPoolsRewardPool extends Struct {
|
4754
5737
|
readonly lastRecordedRewardCounter: u128;
|
4755
5738
|
readonly lastRecordedTotalPayouts: u128;
|
@@ -4758,19 +5741,19 @@ declare module '@polkadot/types/lookup' {
|
|
4758
5741
|
readonly totalCommissionClaimed: u128;
|
4759
5742
|
}
|
4760
5743
|
|
4761
|
-
/** @name PalletNominationPoolsSubPools (
|
5744
|
+
/** @name PalletNominationPoolsSubPools (641) */
|
4762
5745
|
interface PalletNominationPoolsSubPools extends Struct {
|
4763
5746
|
readonly noEra: PalletNominationPoolsUnbondPool;
|
4764
5747
|
readonly withEra: BTreeMap<u32, PalletNominationPoolsUnbondPool>;
|
4765
5748
|
}
|
4766
5749
|
|
4767
|
-
/** @name PalletNominationPoolsUnbondPool (
|
5750
|
+
/** @name PalletNominationPoolsUnbondPool (642) */
|
4768
5751
|
interface PalletNominationPoolsUnbondPool extends Struct {
|
4769
5752
|
readonly points: u128;
|
4770
5753
|
readonly balance: u128;
|
4771
5754
|
}
|
4772
5755
|
|
4773
|
-
/** @name PalletNominationPoolsError (
|
5756
|
+
/** @name PalletNominationPoolsError (647) */
|
4774
5757
|
interface PalletNominationPoolsError extends Enum {
|
4775
5758
|
readonly isPoolNotFound: boolean;
|
4776
5759
|
readonly isPoolMemberNotFound: boolean;
|
@@ -4808,7 +5791,7 @@ declare module '@polkadot/types/lookup' {
|
|
4808
5791
|
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';
|
4809
5792
|
}
|
4810
5793
|
|
4811
|
-
/** @name PalletNominationPoolsDefensiveError (
|
5794
|
+
/** @name PalletNominationPoolsDefensiveError (648) */
|
4812
5795
|
interface PalletNominationPoolsDefensiveError extends Enum {
|
4813
5796
|
readonly isNotEnoughSpaceInUnbondPool: boolean;
|
4814
5797
|
readonly isPoolNotFound: boolean;
|
@@ -4818,7 +5801,7 @@ declare module '@polkadot/types/lookup' {
|
|
4818
5801
|
readonly type: 'NotEnoughSpaceInUnbondPool' | 'PoolNotFound' | 'RewardPoolNotFound' | 'SubPoolsNotFound' | 'BondedStashKilledPrematurely';
|
4819
5802
|
}
|
4820
5803
|
|
4821
|
-
/** @name PalletSchedulerScheduled (
|
5804
|
+
/** @name PalletSchedulerScheduled (651) */
|
4822
5805
|
interface PalletSchedulerScheduled extends Struct {
|
4823
5806
|
readonly maybeId: Option<U8aFixed>;
|
4824
5807
|
readonly priority: u8;
|
@@ -4827,7 +5810,7 @@ declare module '@polkadot/types/lookup' {
|
|
4827
5810
|
readonly origin: TangleTestnetRuntimeOriginCaller;
|
4828
5811
|
}
|
4829
5812
|
|
4830
|
-
/** @name PalletSchedulerError (
|
5813
|
+
/** @name PalletSchedulerError (653) */
|
4831
5814
|
interface PalletSchedulerError extends Enum {
|
4832
5815
|
readonly isFailedToSchedule: boolean;
|
4833
5816
|
readonly isNotFound: boolean;
|
@@ -4837,7 +5820,7 @@ declare module '@polkadot/types/lookup' {
|
|
4837
5820
|
readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange' | 'Named';
|
4838
5821
|
}
|
4839
5822
|
|
4840
|
-
/** @name PalletPreimageOldRequestStatus (
|
5823
|
+
/** @name PalletPreimageOldRequestStatus (654) */
|
4841
5824
|
interface PalletPreimageOldRequestStatus extends Enum {
|
4842
5825
|
readonly isUnrequested: boolean;
|
4843
5826
|
readonly asUnrequested: {
|
@@ -4853,7 +5836,7 @@ declare module '@polkadot/types/lookup' {
|
|
4853
5836
|
readonly type: 'Unrequested' | 'Requested';
|
4854
5837
|
}
|
4855
5838
|
|
4856
|
-
/** @name PalletPreimageRequestStatus (
|
5839
|
+
/** @name PalletPreimageRequestStatus (656) */
|
4857
5840
|
interface PalletPreimageRequestStatus extends Enum {
|
4858
5841
|
readonly isUnrequested: boolean;
|
4859
5842
|
readonly asUnrequested: {
|
@@ -4869,7 +5852,7 @@ declare module '@polkadot/types/lookup' {
|
|
4869
5852
|
readonly type: 'Unrequested' | 'Requested';
|
4870
5853
|
}
|
4871
5854
|
|
4872
|
-
/** @name PalletPreimageError (
|
5855
|
+
/** @name PalletPreimageError (660) */
|
4873
5856
|
interface PalletPreimageError extends Enum {
|
4874
5857
|
readonly isTooBig: boolean;
|
4875
5858
|
readonly isAlreadyNoted: boolean;
|
@@ -4882,13 +5865,13 @@ declare module '@polkadot/types/lookup' {
|
|
4882
5865
|
readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested' | 'TooMany' | 'TooFew';
|
4883
5866
|
}
|
4884
5867
|
|
4885
|
-
/** @name SpStakingOffenceOffenceDetails (
|
5868
|
+
/** @name SpStakingOffenceOffenceDetails (661) */
|
4886
5869
|
interface SpStakingOffenceOffenceDetails extends Struct {
|
4887
5870
|
readonly offender: ITuple<[AccountId32, SpStakingExposure]>;
|
4888
5871
|
readonly reporters: Vec<AccountId32>;
|
4889
5872
|
}
|
4890
5873
|
|
4891
|
-
/** @name PalletTxPauseError (
|
5874
|
+
/** @name PalletTxPauseError (663) */
|
4892
5875
|
interface PalletTxPauseError extends Enum {
|
4893
5876
|
readonly isIsPaused: boolean;
|
4894
5877
|
readonly isIsUnpaused: boolean;
|
@@ -4897,34 +5880,34 @@ declare module '@polkadot/types/lookup' {
|
|
4897
5880
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
4898
5881
|
}
|
4899
5882
|
|
4900
|
-
/** @name PalletImOnlineError (
|
5883
|
+
/** @name PalletImOnlineError (666) */
|
4901
5884
|
interface PalletImOnlineError extends Enum {
|
4902
5885
|
readonly isInvalidKey: boolean;
|
4903
5886
|
readonly isDuplicatedHeartbeat: boolean;
|
4904
5887
|
readonly type: 'InvalidKey' | 'DuplicatedHeartbeat';
|
4905
5888
|
}
|
4906
5889
|
|
4907
|
-
/** @name PalletIdentityRegistration (
|
5890
|
+
/** @name PalletIdentityRegistration (668) */
|
4908
5891
|
interface PalletIdentityRegistration extends Struct {
|
4909
5892
|
readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;
|
4910
5893
|
readonly deposit: u128;
|
4911
5894
|
readonly info: PalletIdentityLegacyIdentityInfo;
|
4912
5895
|
}
|
4913
5896
|
|
4914
|
-
/** @name PalletIdentityRegistrarInfo (
|
5897
|
+
/** @name PalletIdentityRegistrarInfo (677) */
|
4915
5898
|
interface PalletIdentityRegistrarInfo extends Struct {
|
4916
5899
|
readonly account: AccountId32;
|
4917
5900
|
readonly fee: u128;
|
4918
5901
|
readonly fields: u64;
|
4919
5902
|
}
|
4920
5903
|
|
4921
|
-
/** @name PalletIdentityAuthorityProperties (
|
5904
|
+
/** @name PalletIdentityAuthorityProperties (679) */
|
4922
5905
|
interface PalletIdentityAuthorityProperties extends Struct {
|
4923
5906
|
readonly suffix: Bytes;
|
4924
5907
|
readonly allocation: u32;
|
4925
5908
|
}
|
4926
5909
|
|
4927
|
-
/** @name PalletIdentityError (
|
5910
|
+
/** @name PalletIdentityError (682) */
|
4928
5911
|
interface PalletIdentityError extends Enum {
|
4929
5912
|
readonly isTooManySubAccounts: boolean;
|
4930
5913
|
readonly isNotFound: boolean;
|
@@ -4955,13 +5938,13 @@ declare module '@polkadot/types/lookup' {
|
|
4955
5938
|
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';
|
4956
5939
|
}
|
4957
5940
|
|
4958
|
-
/** @name PalletUtilityError (
|
5941
|
+
/** @name PalletUtilityError (683) */
|
4959
5942
|
interface PalletUtilityError extends Enum {
|
4960
5943
|
readonly isTooManyCalls: boolean;
|
4961
5944
|
readonly type: 'TooManyCalls';
|
4962
5945
|
}
|
4963
5946
|
|
4964
|
-
/** @name PalletMultisigMultisig (
|
5947
|
+
/** @name PalletMultisigMultisig (685) */
|
4965
5948
|
interface PalletMultisigMultisig extends Struct {
|
4966
5949
|
readonly when: PalletMultisigTimepoint;
|
4967
5950
|
readonly deposit: u128;
|
@@ -4969,7 +5952,7 @@ declare module '@polkadot/types/lookup' {
|
|
4969
5952
|
readonly approvals: Vec<AccountId32>;
|
4970
5953
|
}
|
4971
5954
|
|
4972
|
-
/** @name PalletMultisigError (
|
5955
|
+
/** @name PalletMultisigError (686) */
|
4973
5956
|
interface PalletMultisigError extends Enum {
|
4974
5957
|
readonly isMinimumThreshold: boolean;
|
4975
5958
|
readonly isAlreadyApproved: boolean;
|
@@ -4988,7 +5971,7 @@ declare module '@polkadot/types/lookup' {
|
|
4988
5971
|
readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
|
4989
5972
|
}
|
4990
5973
|
|
4991
|
-
/** @name FpRpcTransactionStatus (
|
5974
|
+
/** @name FpRpcTransactionStatus (689) */
|
4992
5975
|
interface FpRpcTransactionStatus extends Struct {
|
4993
5976
|
readonly transactionHash: H256;
|
4994
5977
|
readonly transactionIndex: u32;
|
@@ -4999,10 +5982,10 @@ declare module '@polkadot/types/lookup' {
|
|
4999
5982
|
readonly logsBloom: EthbloomBloom;
|
5000
5983
|
}
|
5001
5984
|
|
5002
|
-
/** @name EthbloomBloom (
|
5985
|
+
/** @name EthbloomBloom (692) */
|
5003
5986
|
interface EthbloomBloom extends U8aFixed {}
|
5004
5987
|
|
5005
|
-
/** @name EthereumReceiptReceiptV3 (
|
5988
|
+
/** @name EthereumReceiptReceiptV3 (694) */
|
5006
5989
|
interface EthereumReceiptReceiptV3 extends Enum {
|
5007
5990
|
readonly isLegacy: boolean;
|
5008
5991
|
readonly asLegacy: EthereumReceiptEip658ReceiptData;
|
@@ -5013,7 +5996,7 @@ declare module '@polkadot/types/lookup' {
|
|
5013
5996
|
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
|
5014
5997
|
}
|
5015
5998
|
|
5016
|
-
/** @name EthereumReceiptEip658ReceiptData (
|
5999
|
+
/** @name EthereumReceiptEip658ReceiptData (695) */
|
5017
6000
|
interface EthereumReceiptEip658ReceiptData extends Struct {
|
5018
6001
|
readonly statusCode: u8;
|
5019
6002
|
readonly usedGas: U256;
|
@@ -5021,14 +6004,14 @@ declare module '@polkadot/types/lookup' {
|
|
5021
6004
|
readonly logs: Vec<EthereumLog>;
|
5022
6005
|
}
|
5023
6006
|
|
5024
|
-
/** @name EthereumBlock (
|
6007
|
+
/** @name EthereumBlock (696) */
|
5025
6008
|
interface EthereumBlock extends Struct {
|
5026
6009
|
readonly header: EthereumHeader;
|
5027
6010
|
readonly transactions: Vec<EthereumTransactionTransactionV2>;
|
5028
6011
|
readonly ommers: Vec<EthereumHeader>;
|
5029
6012
|
}
|
5030
6013
|
|
5031
|
-
/** @name EthereumHeader (
|
6014
|
+
/** @name EthereumHeader (697) */
|
5032
6015
|
interface EthereumHeader extends Struct {
|
5033
6016
|
readonly parentHash: H256;
|
5034
6017
|
readonly ommersHash: H256;
|
@@ -5047,23 +6030,23 @@ declare module '@polkadot/types/lookup' {
|
|
5047
6030
|
readonly nonce: EthereumTypesHashH64;
|
5048
6031
|
}
|
5049
6032
|
|
5050
|
-
/** @name EthereumTypesHashH64 (
|
6033
|
+
/** @name EthereumTypesHashH64 (698) */
|
5051
6034
|
interface EthereumTypesHashH64 extends U8aFixed {}
|
5052
6035
|
|
5053
|
-
/** @name PalletEthereumError (
|
6036
|
+
/** @name PalletEthereumError (703) */
|
5054
6037
|
interface PalletEthereumError extends Enum {
|
5055
6038
|
readonly isInvalidSignature: boolean;
|
5056
6039
|
readonly isPreLogExists: boolean;
|
5057
6040
|
readonly type: 'InvalidSignature' | 'PreLogExists';
|
5058
6041
|
}
|
5059
6042
|
|
5060
|
-
/** @name PalletEvmCodeMetadata (
|
6043
|
+
/** @name PalletEvmCodeMetadata (704) */
|
5061
6044
|
interface PalletEvmCodeMetadata extends Struct {
|
5062
6045
|
readonly size_: u64;
|
5063
6046
|
readonly hash_: H256;
|
5064
6047
|
}
|
5065
6048
|
|
5066
|
-
/** @name PalletEvmError (
|
6049
|
+
/** @name PalletEvmError (706) */
|
5067
6050
|
interface PalletEvmError extends Enum {
|
5068
6051
|
readonly isBalanceLow: boolean;
|
5069
6052
|
readonly isFeeOverflow: boolean;
|
@@ -5081,13 +6064,13 @@ declare module '@polkadot/types/lookup' {
|
|
5081
6064
|
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'InvalidChainId' | 'InvalidSignature' | 'Reentrancy' | 'TransactionMustComeFromEOA' | 'Undefined';
|
5082
6065
|
}
|
5083
6066
|
|
5084
|
-
/** @name PalletHotfixSufficientsError (
|
6067
|
+
/** @name PalletHotfixSufficientsError (707) */
|
5085
6068
|
interface PalletHotfixSufficientsError extends Enum {
|
5086
6069
|
readonly isMaxAddressCountExceeded: boolean;
|
5087
6070
|
readonly type: 'MaxAddressCountExceeded';
|
5088
6071
|
}
|
5089
6072
|
|
5090
|
-
/** @name PalletAirdropClaimsError (
|
6073
|
+
/** @name PalletAirdropClaimsError (709) */
|
5091
6074
|
interface PalletAirdropClaimsError extends Enum {
|
5092
6075
|
readonly isInvalidEthereumSignature: boolean;
|
5093
6076
|
readonly isInvalidNativeSignature: boolean;
|
@@ -5100,7 +6083,7 @@ declare module '@polkadot/types/lookup' {
|
|
5100
6083
|
readonly type: 'InvalidEthereumSignature' | 'InvalidNativeSignature' | 'InvalidNativeAccount' | 'SignerHasNoClaim' | 'SenderHasNoClaim' | 'PotUnderflow' | 'InvalidStatement' | 'VestedBalanceExists';
|
5101
6084
|
}
|
5102
6085
|
|
5103
|
-
/** @name PalletRolesRestakingLedger (
|
6086
|
+
/** @name PalletRolesRestakingLedger (710) */
|
5104
6087
|
interface PalletRolesRestakingLedger extends Struct {
|
5105
6088
|
readonly stash: AccountId32;
|
5106
6089
|
readonly total: Compact<u128>;
|
@@ -5112,13 +6095,13 @@ declare module '@polkadot/types/lookup' {
|
|
5112
6095
|
readonly maxActiveServices: u32;
|
5113
6096
|
}
|
5114
6097
|
|
5115
|
-
/** @name PalletRolesUnlockChunk (
|
6098
|
+
/** @name PalletRolesUnlockChunk (716) */
|
5116
6099
|
interface PalletRolesUnlockChunk extends Struct {
|
5117
6100
|
readonly value: Compact<u128>;
|
5118
6101
|
readonly era: Compact<u32>;
|
5119
6102
|
}
|
5120
6103
|
|
5121
|
-
/** @name PalletRolesError (
|
6104
|
+
/** @name PalletRolesError (720) */
|
5122
6105
|
interface PalletRolesError extends Enum {
|
5123
6106
|
readonly isNotValidator: boolean;
|
5124
6107
|
readonly isHasRoleAssigned: boolean;
|
@@ -5142,7 +6125,7 @@ declare module '@polkadot/types/lookup' {
|
|
5142
6125
|
readonly type: 'NotValidator' | 'HasRoleAssigned' | 'RoleNotAssigned' | 'MaxRoles' | 'RoleCannotBeRemoved' | 'RestakingAmountCannotBeUpdated' | 'ExceedsMaxRestakeValue' | 'InsufficientRestakingBond' | 'ProfileUpdateFailed' | 'ProfileAlreadyExists' | 'NoProfileFound' | 'ProfileDeleteRequestFailed' | 'SessionKeysNotProvided' | 'KeySizeExceeded' | 'CannotGetCurrentEra' | 'InvalidEraToReward' | 'BoundNotMet' | 'AlreadyClaimed' | 'NoMoreChunks';
|
5143
6126
|
}
|
5144
6127
|
|
5145
|
-
/** @name TanglePrimitivesJobsPhaseResult (
|
6128
|
+
/** @name TanglePrimitivesJobsPhaseResult (721) */
|
5146
6129
|
interface TanglePrimitivesJobsPhaseResult extends Struct {
|
5147
6130
|
readonly owner: AccountId32;
|
5148
6131
|
readonly result: TanglePrimitivesJobsJobResult;
|
@@ -5151,7 +6134,7 @@ declare module '@polkadot/types/lookup' {
|
|
5151
6134
|
readonly jobType: TanglePrimitivesJobsJobType;
|
5152
6135
|
}
|
5153
6136
|
|
5154
|
-
/** @name PalletJobsModuleError (
|
6137
|
+
/** @name PalletJobsModuleError (723) */
|
5155
6138
|
interface PalletJobsModuleError extends Enum {
|
5156
6139
|
readonly isInvalidJobPhase: boolean;
|
5157
6140
|
readonly isInvalidValidator: boolean;
|
@@ -5174,7 +6157,7 @@ declare module '@polkadot/types/lookup' {
|
|
5174
6157
|
readonly type: 'InvalidJobPhase' | 'InvalidValidator' | 'InvalidJobParams' | 'PreviousResultNotFound' | 'ResultExpired' | 'JobAlreadyExpired' | 'JobNotFound' | 'PhaseOneResultNotFound' | 'NoRewards' | 'NotEnoughValidators' | 'EmptyResult' | 'EmptyJob' | 'ValidatorRoleKeyNotFound' | 'ResultNotExpectedType' | 'NoPermission' | 'TooManyParticipants' | 'ExceedsMaxKeySize' | 'TooManyJobsForValidator';
|
5175
6158
|
}
|
5176
6159
|
|
5177
|
-
/** @name PalletDkgError (
|
6160
|
+
/** @name PalletDkgError (724) */
|
5178
6161
|
interface PalletDkgError extends Enum {
|
5179
6162
|
readonly isCannotRetreiveSigner: boolean;
|
5180
6163
|
readonly isNotEnoughSigners: boolean;
|
@@ -5227,7 +6210,7 @@ declare module '@polkadot/types/lookup' {
|
|
5227
6210
|
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';
|
5228
6211
|
}
|
5229
6212
|
|
5230
|
-
/** @name PalletZksaasError (
|
6213
|
+
/** @name PalletZksaasError (725) */
|
5231
6214
|
interface PalletZksaasError extends Enum {
|
5232
6215
|
readonly isInvalidJobType: boolean;
|
5233
6216
|
readonly isInvalidProof: boolean;
|
@@ -5235,21 +6218,21 @@ declare module '@polkadot/types/lookup' {
|
|
5235
6218
|
readonly type: 'InvalidJobType' | 'InvalidProof' | 'MalformedProof';
|
5236
6219
|
}
|
5237
6220
|
|
5238
|
-
/** @name PalletProxyProxyDefinition (
|
6221
|
+
/** @name PalletProxyProxyDefinition (728) */
|
5239
6222
|
interface PalletProxyProxyDefinition extends Struct {
|
5240
6223
|
readonly delegate: AccountId32;
|
5241
6224
|
readonly proxyType: TangleTestnetRuntimeProxyType;
|
5242
6225
|
readonly delay: u64;
|
5243
6226
|
}
|
5244
6227
|
|
5245
|
-
/** @name PalletProxyAnnouncement (
|
6228
|
+
/** @name PalletProxyAnnouncement (732) */
|
5246
6229
|
interface PalletProxyAnnouncement extends Struct {
|
5247
6230
|
readonly real: AccountId32;
|
5248
6231
|
readonly callHash: H256;
|
5249
6232
|
readonly height: u64;
|
5250
6233
|
}
|
5251
6234
|
|
5252
|
-
/** @name PalletProxyError (
|
6235
|
+
/** @name PalletProxyError (734) */
|
5253
6236
|
interface PalletProxyError extends Enum {
|
5254
6237
|
readonly isTooMany: boolean;
|
5255
6238
|
readonly isNotFound: boolean;
|
@@ -5262,28 +6245,223 @@ declare module '@polkadot/types/lookup' {
|
|
5262
6245
|
readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
|
5263
6246
|
}
|
5264
6247
|
|
5265
|
-
/** @name
|
6248
|
+
/** @name PalletMultiAssetDelegationOperatorOperatorMetadata (735) */
|
6249
|
+
interface PalletMultiAssetDelegationOperatorOperatorMetadata extends Struct {
|
6250
|
+
readonly bond: u128;
|
6251
|
+
readonly delegationCount: u32;
|
6252
|
+
readonly request: Option<PalletMultiAssetDelegationOperatorOperatorBondLessRequest>;
|
6253
|
+
readonly delegations: Vec<PalletMultiAssetDelegationOperatorDelegatorBond>;
|
6254
|
+
readonly status: PalletMultiAssetDelegationOperatorOperatorStatus;
|
6255
|
+
}
|
6256
|
+
|
6257
|
+
/** @name PalletMultiAssetDelegationOperatorOperatorBondLessRequest (737) */
|
6258
|
+
interface PalletMultiAssetDelegationOperatorOperatorBondLessRequest extends Struct {
|
6259
|
+
readonly amount: u128;
|
6260
|
+
readonly requestTime: u32;
|
6261
|
+
}
|
6262
|
+
|
6263
|
+
/** @name PalletMultiAssetDelegationOperatorDelegatorBond (739) */
|
6264
|
+
interface PalletMultiAssetDelegationOperatorDelegatorBond extends Struct {
|
6265
|
+
readonly delegator: AccountId32;
|
6266
|
+
readonly amount: u128;
|
6267
|
+
readonly assetId: u128;
|
6268
|
+
}
|
6269
|
+
|
6270
|
+
/** @name PalletMultiAssetDelegationOperatorOperatorStatus (740) */
|
6271
|
+
interface PalletMultiAssetDelegationOperatorOperatorStatus extends Enum {
|
6272
|
+
readonly isActive: boolean;
|
6273
|
+
readonly isInactive: boolean;
|
6274
|
+
readonly isLeaving: boolean;
|
6275
|
+
readonly asLeaving: u32;
|
6276
|
+
readonly type: 'Active' | 'Inactive' | 'Leaving';
|
6277
|
+
}
|
6278
|
+
|
6279
|
+
/** @name PalletMultiAssetDelegationOperatorOperatorSnapshot (741) */
|
6280
|
+
interface PalletMultiAssetDelegationOperatorOperatorSnapshot extends Struct {
|
6281
|
+
readonly bond: u128;
|
6282
|
+
readonly delegations: Vec<PalletMultiAssetDelegationOperatorDelegatorBond>;
|
6283
|
+
}
|
6284
|
+
|
6285
|
+
/** @name PalletMultiAssetDelegationDelegatorDelegatorMetadata (742) */
|
6286
|
+
interface PalletMultiAssetDelegationDelegatorDelegatorMetadata extends Struct {
|
6287
|
+
readonly deposits: BTreeMap<u128, u128>;
|
6288
|
+
readonly unstakeRequest: Option<PalletMultiAssetDelegationDelegatorUnstakeRequest>;
|
6289
|
+
readonly delegations: Vec<PalletMultiAssetDelegationDelegatorBondInfoDelegator>;
|
6290
|
+
readonly delegatorBondLessRequest: Option<PalletMultiAssetDelegationDelegatorBondLessRequest>;
|
6291
|
+
readonly status: PalletMultiAssetDelegationDelegatorDelegatorStatus;
|
6292
|
+
}
|
6293
|
+
|
6294
|
+
/** @name PalletMultiAssetDelegationDelegatorUnstakeRequest (747) */
|
6295
|
+
interface PalletMultiAssetDelegationDelegatorUnstakeRequest extends Struct {
|
6296
|
+
readonly assetId: u128;
|
6297
|
+
readonly amount: u128;
|
6298
|
+
readonly requestedRound: u32;
|
6299
|
+
}
|
6300
|
+
|
6301
|
+
/** @name PalletMultiAssetDelegationDelegatorBondInfoDelegator (749) */
|
6302
|
+
interface PalletMultiAssetDelegationDelegatorBondInfoDelegator extends Struct {
|
6303
|
+
readonly operator: AccountId32;
|
6304
|
+
readonly amount: u128;
|
6305
|
+
readonly assetId: u128;
|
6306
|
+
}
|
6307
|
+
|
6308
|
+
/** @name PalletMultiAssetDelegationDelegatorBondLessRequest (751) */
|
6309
|
+
interface PalletMultiAssetDelegationDelegatorBondLessRequest extends Struct {
|
6310
|
+
readonly assetId: u128;
|
6311
|
+
readonly amount: u128;
|
6312
|
+
readonly requestedRound: u32;
|
6313
|
+
}
|
6314
|
+
|
6315
|
+
/** @name PalletMultiAssetDelegationDelegatorDelegatorStatus (752) */
|
6316
|
+
interface PalletMultiAssetDelegationDelegatorDelegatorStatus extends Enum {
|
6317
|
+
readonly isActive: boolean;
|
6318
|
+
readonly isLeavingScheduled: boolean;
|
6319
|
+
readonly asLeavingScheduled: u32;
|
6320
|
+
readonly type: 'Active' | 'LeavingScheduled';
|
6321
|
+
}
|
6322
|
+
|
6323
|
+
/** @name PalletMultiAssetDelegationRewardsRewardConfig (753) */
|
6324
|
+
interface PalletMultiAssetDelegationRewardsRewardConfig extends Struct {
|
6325
|
+
readonly configs: BTreeMap<u128, PalletMultiAssetDelegationRewardsRewardConfigForAsset>;
|
6326
|
+
readonly whitelistedBlueprintIds: Vec<u32>;
|
6327
|
+
}
|
6328
|
+
|
6329
|
+
/** @name PalletMultiAssetDelegationRewardsRewardConfigForAsset (755) */
|
6330
|
+
interface PalletMultiAssetDelegationRewardsRewardConfigForAsset extends Struct {
|
6331
|
+
readonly apy: u128;
|
6332
|
+
readonly cap: u128;
|
6333
|
+
}
|
6334
|
+
|
6335
|
+
/** @name PalletMultiAssetDelegationError (758) */
|
6336
|
+
interface PalletMultiAssetDelegationError extends Enum {
|
6337
|
+
readonly isAlreadyOperator: boolean;
|
6338
|
+
readonly isBondTooLow: boolean;
|
6339
|
+
readonly isNotAnOperator: boolean;
|
6340
|
+
readonly isCannotExit: boolean;
|
6341
|
+
readonly isAlreadyLeaving: boolean;
|
6342
|
+
readonly isNotLeavingOperator: boolean;
|
6343
|
+
readonly isNotLeavingRound: boolean;
|
6344
|
+
readonly isNoScheduledBondLess: boolean;
|
6345
|
+
readonly isBondLessRequestNotSatisfied: boolean;
|
6346
|
+
readonly isNotActiveOperator: boolean;
|
6347
|
+
readonly isNotOfflineOperator: boolean;
|
6348
|
+
readonly isAlreadyDelegator: boolean;
|
6349
|
+
readonly isNotDelegator: boolean;
|
6350
|
+
readonly isWithdrawRequestAlreadyExists: boolean;
|
6351
|
+
readonly isInsufficientBalance: boolean;
|
6352
|
+
readonly isNoWithdrawRequest: boolean;
|
6353
|
+
readonly isUnstakeNotReady: boolean;
|
6354
|
+
readonly isNoBondLessRequest: boolean;
|
6355
|
+
readonly isBondLessNotReady: boolean;
|
6356
|
+
readonly isBondLessRequestAlreadyExists: boolean;
|
6357
|
+
readonly isActiveServicesUsingAsset: boolean;
|
6358
|
+
readonly isNoActiveDelegation: boolean;
|
6359
|
+
readonly isAssetNotWhitelisted: boolean;
|
6360
|
+
readonly isNotAuthorized: boolean;
|
6361
|
+
readonly isAssetNotFound: boolean;
|
6362
|
+
readonly isBlueprintAlreadyWhitelisted: boolean;
|
6363
|
+
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';
|
6364
|
+
}
|
6365
|
+
|
6366
|
+
/** @name SygmaAccessSegregatorError (760) */
|
6367
|
+
interface SygmaAccessSegregatorError extends Enum {
|
6368
|
+
readonly isUnimplemented: boolean;
|
6369
|
+
readonly isGrantAccessFailed: boolean;
|
6370
|
+
readonly type: 'Unimplemented' | 'GrantAccessFailed';
|
6371
|
+
}
|
6372
|
+
|
6373
|
+
/** @name SygmaBasicFeehandlerError (762) */
|
6374
|
+
interface SygmaBasicFeehandlerError extends Enum {
|
6375
|
+
readonly isUnimplemented: boolean;
|
6376
|
+
readonly isAccessDenied: boolean;
|
6377
|
+
readonly type: 'Unimplemented' | 'AccessDenied';
|
6378
|
+
}
|
6379
|
+
|
6380
|
+
/** @name SygmaFeeHandlerRouterError (763) */
|
6381
|
+
interface SygmaFeeHandlerRouterError extends Enum {
|
6382
|
+
readonly isAccessDenied: boolean;
|
6383
|
+
readonly isUnimplemented: boolean;
|
6384
|
+
readonly type: 'AccessDenied' | 'Unimplemented';
|
6385
|
+
}
|
6386
|
+
|
6387
|
+
/** @name SygmaPercentageFeehandlerError (765) */
|
6388
|
+
interface SygmaPercentageFeehandlerError extends Enum {
|
6389
|
+
readonly isUnimplemented: boolean;
|
6390
|
+
readonly isAccessDenied: boolean;
|
6391
|
+
readonly isFeeRateOutOfRange: boolean;
|
6392
|
+
readonly isInvalidFeeBound: boolean;
|
6393
|
+
readonly type: 'Unimplemented' | 'AccessDenied' | 'FeeRateOutOfRange' | 'InvalidFeeBound';
|
6394
|
+
}
|
6395
|
+
|
6396
|
+
/** @name SygmaBridgeError (772) */
|
6397
|
+
interface SygmaBridgeError extends Enum {
|
6398
|
+
readonly isAccessDenied: boolean;
|
6399
|
+
readonly isBadMpcSignature: boolean;
|
6400
|
+
readonly isInsufficientBalance: boolean;
|
6401
|
+
readonly isTransactFailedDeposit: boolean;
|
6402
|
+
readonly isTransactFailedWithdraw: boolean;
|
6403
|
+
readonly isTransactFailedFeeDeposit: boolean;
|
6404
|
+
readonly isTransactFailedHoldInReserved: boolean;
|
6405
|
+
readonly isTransactFailedReleaseFromReserved: boolean;
|
6406
|
+
readonly isFeeTooExpensive: boolean;
|
6407
|
+
readonly isMissingMpcAddress: boolean;
|
6408
|
+
readonly isMpcAddrNotUpdatable: boolean;
|
6409
|
+
readonly isBridgePaused: boolean;
|
6410
|
+
readonly isBridgeUnpaused: boolean;
|
6411
|
+
readonly isMissingFeeConfig: boolean;
|
6412
|
+
readonly isAssetNotBound: boolean;
|
6413
|
+
readonly isProposalAlreadyComplete: boolean;
|
6414
|
+
readonly isEmptyProposalList: boolean;
|
6415
|
+
readonly isTransactorFailed: boolean;
|
6416
|
+
readonly isInvalidDepositDataInvalidLength: boolean;
|
6417
|
+
readonly isInvalidDepositDataInvalidAmount: boolean;
|
6418
|
+
readonly isInvalidDepositDataInvalidRecipientLength: boolean;
|
6419
|
+
readonly isInvalidDepositDataRecipientLengthNotMatch: boolean;
|
6420
|
+
readonly isInvalidDepositDataInvalidRecipient: boolean;
|
6421
|
+
readonly isDestDomainNotSupported: boolean;
|
6422
|
+
readonly isDestChainIDNotMatch: boolean;
|
6423
|
+
readonly isExtractDestDataFailed: boolean;
|
6424
|
+
readonly isDecimalConversionFail: boolean;
|
6425
|
+
readonly isDepositNonceOverflow: boolean;
|
6426
|
+
readonly isNoLiquidityHolderAccountBound: boolean;
|
6427
|
+
readonly isUnimplemented: boolean;
|
6428
|
+
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';
|
6429
|
+
}
|
6430
|
+
|
6431
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (775) */
|
5266
6432
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
5267
6433
|
|
5268
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
6434
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (776) */
|
5269
6435
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
5270
6436
|
|
5271
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
6437
|
+
/** @name FrameSystemExtensionsCheckTxVersion (777) */
|
5272
6438
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
5273
6439
|
|
5274
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
6440
|
+
/** @name FrameSystemExtensionsCheckGenesis (778) */
|
5275
6441
|
type FrameSystemExtensionsCheckGenesis = Null;
|
5276
6442
|
|
5277
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
6443
|
+
/** @name FrameSystemExtensionsCheckNonce (781) */
|
5278
6444
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
5279
6445
|
|
5280
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
6446
|
+
/** @name FrameSystemExtensionsCheckWeight (782) */
|
5281
6447
|
type FrameSystemExtensionsCheckWeight = Null;
|
5282
6448
|
|
5283
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
6449
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (783) */
|
5284
6450
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
5285
6451
|
|
5286
|
-
/** @name
|
6452
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (784) */
|
6453
|
+
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
6454
|
+
readonly mode: FrameMetadataHashExtensionMode;
|
6455
|
+
}
|
6456
|
+
|
6457
|
+
/** @name FrameMetadataHashExtensionMode (785) */
|
6458
|
+
interface FrameMetadataHashExtensionMode extends Enum {
|
6459
|
+
readonly isDisabled: boolean;
|
6460
|
+
readonly isEnabled: boolean;
|
6461
|
+
readonly type: 'Disabled' | 'Enabled';
|
6462
|
+
}
|
6463
|
+
|
6464
|
+
/** @name TangleTestnetRuntimeRuntime (787) */
|
5287
6465
|
type TangleTestnetRuntimeRuntime = Null;
|
5288
6466
|
|
5289
6467
|
} // declare module
|