@webb-tools/tangle-substrate-types 0.5.4 → 0.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/interfaces/augment-api-consts.d.ts +147 -4
- package/build/interfaces/augment-api-errors.d.ts +403 -0
- package/build/interfaces/augment-api-events.d.ts +543 -2
- package/build/interfaces/augment-api-query.d.ts +159 -2
- package/build/interfaces/augment-api-tx.d.ts +745 -1
- package/build/interfaces/augment-types.d.ts +21 -2
- package/build/interfaces/lookup.d.ts +1470 -356
- package/build/interfaces/lookup.js +1464 -350
- package/build/interfaces/registry.d.ts +61 -1
- package/build/interfaces/types-lookup.d.ts +1592 -348
- package/build/metadata/static-latest.d.ts +1 -1
- package/build/metadata/static-latest.js +1 -1
- package/build/package.json +1 -1
- package/package.json +4 -4
- package/playground.ts +86 -0
- package/src/interfaces/augment-api-consts.ts +147 -11
- package/src/interfaces/augment-api-errors.ts +403 -0
- package/src/interfaces/augment-api-events.ts +321 -30
- package/src/interfaces/augment-api-query.ts +150 -87
- package/src/interfaces/augment-api-tx.ts +361 -54
- package/src/interfaces/augment-types.ts +21 -2
- package/src/interfaces/lookup.ts +1465 -351
- package/src/interfaces/registry.ts +61 -1
- package/src/interfaces/types-lookup.ts +1650 -348
- package/src/metadata/metadata.json +1 -1
- package/src/metadata/static-latest.ts +1 -1
- package/ts-types/playground.d.ts +1 -0
- package/ts-types/src/interfaces/augment-api-consts.d.ts +147 -4
- package/ts-types/src/interfaces/augment-api-errors.d.ts +403 -0
- package/ts-types/src/interfaces/augment-api-events.d.ts +543 -2
- package/ts-types/src/interfaces/augment-api-query.d.ts +159 -2
- package/ts-types/src/interfaces/augment-api-tx.d.ts +745 -1
- package/ts-types/src/interfaces/augment-types.d.ts +21 -2
- package/ts-types/src/interfaces/lookup.d.ts +1470 -356
- package/ts-types/src/interfaces/registry.d.ts +61 -1
- package/ts-types/src/interfaces/types-lookup.d.ts +1592 -348
- package/ts-types/src/metadata/static-latest.d.ts +1 -1
- package/ts-types/tsconfig.tsbuildinfo +1 -1
|
@@ -183,7 +183,123 @@ declare const _default: {
|
|
|
183
183
|
};
|
|
184
184
|
};
|
|
185
185
|
/**
|
|
186
|
-
* Lookup35:
|
|
186
|
+
* Lookup35: pallet_assets::pallet::Event<T, I>
|
|
187
|
+
**/
|
|
188
|
+
PalletAssetsEvent: {
|
|
189
|
+
_enum: {
|
|
190
|
+
Created: {
|
|
191
|
+
assetId: string;
|
|
192
|
+
creator: string;
|
|
193
|
+
owner: string;
|
|
194
|
+
};
|
|
195
|
+
Issued: {
|
|
196
|
+
assetId: string;
|
|
197
|
+
owner: string;
|
|
198
|
+
amount: string;
|
|
199
|
+
};
|
|
200
|
+
Transferred: {
|
|
201
|
+
assetId: string;
|
|
202
|
+
from: string;
|
|
203
|
+
to: string;
|
|
204
|
+
amount: string;
|
|
205
|
+
};
|
|
206
|
+
Burned: {
|
|
207
|
+
assetId: string;
|
|
208
|
+
owner: string;
|
|
209
|
+
balance: string;
|
|
210
|
+
};
|
|
211
|
+
TeamChanged: {
|
|
212
|
+
assetId: string;
|
|
213
|
+
issuer: string;
|
|
214
|
+
admin: string;
|
|
215
|
+
freezer: string;
|
|
216
|
+
};
|
|
217
|
+
OwnerChanged: {
|
|
218
|
+
assetId: string;
|
|
219
|
+
owner: string;
|
|
220
|
+
};
|
|
221
|
+
Frozen: {
|
|
222
|
+
assetId: string;
|
|
223
|
+
who: string;
|
|
224
|
+
};
|
|
225
|
+
Thawed: {
|
|
226
|
+
assetId: string;
|
|
227
|
+
who: string;
|
|
228
|
+
};
|
|
229
|
+
AssetFrozen: {
|
|
230
|
+
assetId: string;
|
|
231
|
+
};
|
|
232
|
+
AssetThawed: {
|
|
233
|
+
assetId: string;
|
|
234
|
+
};
|
|
235
|
+
AccountsDestroyed: {
|
|
236
|
+
assetId: string;
|
|
237
|
+
accountsDestroyed: string;
|
|
238
|
+
accountsRemaining: string;
|
|
239
|
+
};
|
|
240
|
+
ApprovalsDestroyed: {
|
|
241
|
+
assetId: string;
|
|
242
|
+
approvalsDestroyed: string;
|
|
243
|
+
approvalsRemaining: string;
|
|
244
|
+
};
|
|
245
|
+
DestructionStarted: {
|
|
246
|
+
assetId: string;
|
|
247
|
+
};
|
|
248
|
+
Destroyed: {
|
|
249
|
+
assetId: string;
|
|
250
|
+
};
|
|
251
|
+
ForceCreated: {
|
|
252
|
+
assetId: string;
|
|
253
|
+
owner: string;
|
|
254
|
+
};
|
|
255
|
+
MetadataSet: {
|
|
256
|
+
assetId: string;
|
|
257
|
+
name: string;
|
|
258
|
+
symbol: string;
|
|
259
|
+
decimals: string;
|
|
260
|
+
isFrozen: string;
|
|
261
|
+
};
|
|
262
|
+
MetadataCleared: {
|
|
263
|
+
assetId: string;
|
|
264
|
+
};
|
|
265
|
+
ApprovedTransfer: {
|
|
266
|
+
assetId: string;
|
|
267
|
+
source: string;
|
|
268
|
+
delegate: string;
|
|
269
|
+
amount: string;
|
|
270
|
+
};
|
|
271
|
+
ApprovalCancelled: {
|
|
272
|
+
assetId: string;
|
|
273
|
+
owner: string;
|
|
274
|
+
delegate: string;
|
|
275
|
+
};
|
|
276
|
+
TransferredApproved: {
|
|
277
|
+
assetId: string;
|
|
278
|
+
owner: string;
|
|
279
|
+
delegate: string;
|
|
280
|
+
destination: string;
|
|
281
|
+
amount: string;
|
|
282
|
+
};
|
|
283
|
+
AssetStatusChanged: {
|
|
284
|
+
assetId: string;
|
|
285
|
+
};
|
|
286
|
+
AssetMinBalanceChanged: {
|
|
287
|
+
assetId: string;
|
|
288
|
+
newMinBalance: string;
|
|
289
|
+
};
|
|
290
|
+
Touched: {
|
|
291
|
+
assetId: string;
|
|
292
|
+
who: string;
|
|
293
|
+
depositor: string;
|
|
294
|
+
};
|
|
295
|
+
Blocked: {
|
|
296
|
+
assetId: string;
|
|
297
|
+
who: string;
|
|
298
|
+
};
|
|
299
|
+
};
|
|
300
|
+
};
|
|
301
|
+
/**
|
|
302
|
+
* Lookup36: pallet_balances::pallet::Event<T, I>
|
|
187
303
|
**/
|
|
188
304
|
PalletBalancesEvent: {
|
|
189
305
|
_enum: {
|
|
@@ -281,13 +397,13 @@ declare const _default: {
|
|
|
281
397
|
};
|
|
282
398
|
};
|
|
283
399
|
/**
|
|
284
|
-
*
|
|
400
|
+
* Lookup37: frame_support::traits::tokens::misc::BalanceStatus
|
|
285
401
|
**/
|
|
286
402
|
FrameSupportTokensMiscBalanceStatus: {
|
|
287
403
|
_enum: string[];
|
|
288
404
|
};
|
|
289
405
|
/**
|
|
290
|
-
*
|
|
406
|
+
* Lookup38: pallet_transaction_payment::pallet::Event<T>
|
|
291
407
|
**/
|
|
292
408
|
PalletTransactionPaymentEvent: {
|
|
293
409
|
_enum: {
|
|
@@ -299,7 +415,7 @@ declare const _default: {
|
|
|
299
415
|
};
|
|
300
416
|
};
|
|
301
417
|
/**
|
|
302
|
-
*
|
|
418
|
+
* Lookup39: pallet_grandpa::pallet::Event
|
|
303
419
|
**/
|
|
304
420
|
PalletGrandpaEvent: {
|
|
305
421
|
_enum: {
|
|
@@ -311,15 +427,15 @@ declare const _default: {
|
|
|
311
427
|
};
|
|
312
428
|
};
|
|
313
429
|
/**
|
|
314
|
-
*
|
|
430
|
+
* Lookup42: sp_consensus_grandpa::app::Public
|
|
315
431
|
**/
|
|
316
432
|
SpConsensusGrandpaAppPublic: string;
|
|
317
433
|
/**
|
|
318
|
-
*
|
|
434
|
+
* Lookup43: sp_core::ed25519::Public
|
|
319
435
|
**/
|
|
320
436
|
SpCoreEd25519Public: string;
|
|
321
437
|
/**
|
|
322
|
-
*
|
|
438
|
+
* Lookup44: pallet_indices::pallet::Event<T>
|
|
323
439
|
**/
|
|
324
440
|
PalletIndicesEvent: {
|
|
325
441
|
_enum: {
|
|
@@ -337,7 +453,7 @@ declare const _default: {
|
|
|
337
453
|
};
|
|
338
454
|
};
|
|
339
455
|
/**
|
|
340
|
-
*
|
|
456
|
+
* Lookup45: pallet_democracy::pallet::Event<T>
|
|
341
457
|
**/
|
|
342
458
|
PalletDemocracyEvent: {
|
|
343
459
|
_enum: {
|
|
@@ -415,13 +531,13 @@ declare const _default: {
|
|
|
415
531
|
};
|
|
416
532
|
};
|
|
417
533
|
/**
|
|
418
|
-
*
|
|
534
|
+
* Lookup46: pallet_democracy::vote_threshold::VoteThreshold
|
|
419
535
|
**/
|
|
420
536
|
PalletDemocracyVoteThreshold: {
|
|
421
537
|
_enum: string[];
|
|
422
538
|
};
|
|
423
539
|
/**
|
|
424
|
-
*
|
|
540
|
+
* Lookup47: pallet_democracy::vote::AccountVote<Balance>
|
|
425
541
|
**/
|
|
426
542
|
PalletDemocracyVoteAccountVote: {
|
|
427
543
|
_enum: {
|
|
@@ -436,7 +552,7 @@ declare const _default: {
|
|
|
436
552
|
};
|
|
437
553
|
};
|
|
438
554
|
/**
|
|
439
|
-
*
|
|
555
|
+
* Lookup49: pallet_democracy::types::MetadataOwner
|
|
440
556
|
**/
|
|
441
557
|
PalletDemocracyMetadataOwner: {
|
|
442
558
|
_enum: {
|
|
@@ -446,7 +562,7 @@ declare const _default: {
|
|
|
446
562
|
};
|
|
447
563
|
};
|
|
448
564
|
/**
|
|
449
|
-
*
|
|
565
|
+
* Lookup50: pallet_collective::pallet::Event<T, I>
|
|
450
566
|
**/
|
|
451
567
|
PalletCollectiveEvent: {
|
|
452
568
|
_enum: {
|
|
@@ -485,7 +601,7 @@ declare const _default: {
|
|
|
485
601
|
};
|
|
486
602
|
};
|
|
487
603
|
/**
|
|
488
|
-
*
|
|
604
|
+
* Lookup51: pallet_vesting::pallet::Event<T>
|
|
489
605
|
**/
|
|
490
606
|
PalletVestingEvent: {
|
|
491
607
|
_enum: {
|
|
@@ -499,7 +615,7 @@ declare const _default: {
|
|
|
499
615
|
};
|
|
500
616
|
};
|
|
501
617
|
/**
|
|
502
|
-
*
|
|
618
|
+
* Lookup52: pallet_elections_phragmen::pallet::Event<T>
|
|
503
619
|
**/
|
|
504
620
|
PalletElectionsPhragmenEvent: {
|
|
505
621
|
_enum: {
|
|
@@ -525,7 +641,7 @@ declare const _default: {
|
|
|
525
641
|
};
|
|
526
642
|
};
|
|
527
643
|
/**
|
|
528
|
-
*
|
|
644
|
+
* Lookup55: pallet_election_provider_multi_phase::pallet::Event<T>
|
|
529
645
|
**/
|
|
530
646
|
PalletElectionProviderMultiPhaseEvent: {
|
|
531
647
|
_enum: {
|
|
@@ -555,13 +671,13 @@ declare const _default: {
|
|
|
555
671
|
};
|
|
556
672
|
};
|
|
557
673
|
/**
|
|
558
|
-
*
|
|
674
|
+
* Lookup56: pallet_election_provider_multi_phase::ElectionCompute
|
|
559
675
|
**/
|
|
560
676
|
PalletElectionProviderMultiPhaseElectionCompute: {
|
|
561
677
|
_enum: string[];
|
|
562
678
|
};
|
|
563
679
|
/**
|
|
564
|
-
*
|
|
680
|
+
* Lookup57: sp_npos_elections::ElectionScore
|
|
565
681
|
**/
|
|
566
682
|
SpNposElectionsElectionScore: {
|
|
567
683
|
minimalStake: string;
|
|
@@ -569,7 +685,7 @@ declare const _default: {
|
|
|
569
685
|
sumStakeSquared: string;
|
|
570
686
|
};
|
|
571
687
|
/**
|
|
572
|
-
*
|
|
688
|
+
* Lookup58: pallet_election_provider_multi_phase::Phase<Bn>
|
|
573
689
|
**/
|
|
574
690
|
PalletElectionProviderMultiPhasePhase: {
|
|
575
691
|
_enum: {
|
|
@@ -580,7 +696,7 @@ declare const _default: {
|
|
|
580
696
|
};
|
|
581
697
|
};
|
|
582
698
|
/**
|
|
583
|
-
*
|
|
699
|
+
* Lookup60: pallet_staking::pallet::pallet::Event<T>
|
|
584
700
|
**/
|
|
585
701
|
PalletStakingPalletEvent: {
|
|
586
702
|
_enum: {
|
|
@@ -653,7 +769,7 @@ declare const _default: {
|
|
|
653
769
|
};
|
|
654
770
|
};
|
|
655
771
|
/**
|
|
656
|
-
*
|
|
772
|
+
* Lookup61: pallet_staking::RewardDestination<sp_core::crypto::AccountId32>
|
|
657
773
|
**/
|
|
658
774
|
PalletStakingRewardDestination: {
|
|
659
775
|
_enum: {
|
|
@@ -665,20 +781,20 @@ declare const _default: {
|
|
|
665
781
|
};
|
|
666
782
|
};
|
|
667
783
|
/**
|
|
668
|
-
*
|
|
784
|
+
* Lookup63: pallet_staking::ValidatorPrefs
|
|
669
785
|
**/
|
|
670
786
|
PalletStakingValidatorPrefs: {
|
|
671
787
|
commission: string;
|
|
672
788
|
blocked: string;
|
|
673
789
|
};
|
|
674
790
|
/**
|
|
675
|
-
*
|
|
791
|
+
* Lookup65: pallet_staking::Forcing
|
|
676
792
|
**/
|
|
677
793
|
PalletStakingForcing: {
|
|
678
794
|
_enum: string[];
|
|
679
795
|
};
|
|
680
796
|
/**
|
|
681
|
-
*
|
|
797
|
+
* Lookup66: pallet_session::pallet::Event
|
|
682
798
|
**/
|
|
683
799
|
PalletSessionEvent: {
|
|
684
800
|
_enum: {
|
|
@@ -688,7 +804,7 @@ declare const _default: {
|
|
|
688
804
|
};
|
|
689
805
|
};
|
|
690
806
|
/**
|
|
691
|
-
*
|
|
807
|
+
* Lookup67: pallet_treasury::pallet::Event<T, I>
|
|
692
808
|
**/
|
|
693
809
|
PalletTreasuryEvent: {
|
|
694
810
|
_enum: {
|
|
@@ -750,7 +866,7 @@ declare const _default: {
|
|
|
750
866
|
};
|
|
751
867
|
};
|
|
752
868
|
/**
|
|
753
|
-
*
|
|
869
|
+
* Lookup68: pallet_bounties::pallet::Event<T, I>
|
|
754
870
|
**/
|
|
755
871
|
PalletBountiesEvent: {
|
|
756
872
|
_enum: {
|
|
@@ -796,7 +912,7 @@ declare const _default: {
|
|
|
796
912
|
};
|
|
797
913
|
};
|
|
798
914
|
/**
|
|
799
|
-
*
|
|
915
|
+
* Lookup69: pallet_child_bounties::pallet::Event<T>
|
|
800
916
|
**/
|
|
801
917
|
PalletChildBountiesEvent: {
|
|
802
918
|
_enum: {
|
|
@@ -822,7 +938,7 @@ declare const _default: {
|
|
|
822
938
|
};
|
|
823
939
|
};
|
|
824
940
|
/**
|
|
825
|
-
*
|
|
941
|
+
* Lookup70: pallet_bags_list::pallet::Event<T, I>
|
|
826
942
|
**/
|
|
827
943
|
PalletBagsListEvent: {
|
|
828
944
|
_enum: {
|
|
@@ -838,7 +954,7 @@ declare const _default: {
|
|
|
838
954
|
};
|
|
839
955
|
};
|
|
840
956
|
/**
|
|
841
|
-
*
|
|
957
|
+
* Lookup71: pallet_nomination_pools::pallet::Event<T>
|
|
842
958
|
**/
|
|
843
959
|
PalletNominationPoolsEvent: {
|
|
844
960
|
_enum: {
|
|
@@ -926,20 +1042,20 @@ declare const _default: {
|
|
|
926
1042
|
};
|
|
927
1043
|
};
|
|
928
1044
|
/**
|
|
929
|
-
*
|
|
1045
|
+
* Lookup72: pallet_nomination_pools::PoolState
|
|
930
1046
|
**/
|
|
931
1047
|
PalletNominationPoolsPoolState: {
|
|
932
1048
|
_enum: string[];
|
|
933
1049
|
};
|
|
934
1050
|
/**
|
|
935
|
-
*
|
|
1051
|
+
* Lookup75: pallet_nomination_pools::CommissionChangeRate<BlockNumber>
|
|
936
1052
|
**/
|
|
937
1053
|
PalletNominationPoolsCommissionChangeRate: {
|
|
938
1054
|
maxIncrease: string;
|
|
939
1055
|
minDelay: string;
|
|
940
1056
|
};
|
|
941
1057
|
/**
|
|
942
|
-
*
|
|
1058
|
+
* Lookup77: pallet_nomination_pools::CommissionClaimPermission<sp_core::crypto::AccountId32>
|
|
943
1059
|
**/
|
|
944
1060
|
PalletNominationPoolsCommissionClaimPermission: {
|
|
945
1061
|
_enum: {
|
|
@@ -948,7 +1064,7 @@ declare const _default: {
|
|
|
948
1064
|
};
|
|
949
1065
|
};
|
|
950
1066
|
/**
|
|
951
|
-
*
|
|
1067
|
+
* Lookup78: pallet_scheduler::pallet::Event<T>
|
|
952
1068
|
**/
|
|
953
1069
|
PalletSchedulerEvent: {
|
|
954
1070
|
_enum: {
|
|
@@ -980,7 +1096,7 @@ declare const _default: {
|
|
|
980
1096
|
};
|
|
981
1097
|
};
|
|
982
1098
|
/**
|
|
983
|
-
*
|
|
1099
|
+
* Lookup81: pallet_preimage::pallet::Event<T>
|
|
984
1100
|
**/
|
|
985
1101
|
PalletPreimageEvent: {
|
|
986
1102
|
_enum: {
|
|
@@ -1005,7 +1121,7 @@ declare const _default: {
|
|
|
1005
1121
|
};
|
|
1006
1122
|
};
|
|
1007
1123
|
/**
|
|
1008
|
-
*
|
|
1124
|
+
* Lookup82: pallet_offences::pallet::Event
|
|
1009
1125
|
**/
|
|
1010
1126
|
PalletOffencesEvent: {
|
|
1011
1127
|
_enum: {
|
|
@@ -1016,7 +1132,7 @@ declare const _default: {
|
|
|
1016
1132
|
};
|
|
1017
1133
|
};
|
|
1018
1134
|
/**
|
|
1019
|
-
*
|
|
1135
|
+
* Lookup84: pallet_tx_pause::pallet::Event<T>
|
|
1020
1136
|
**/
|
|
1021
1137
|
PalletTxPauseEvent: {
|
|
1022
1138
|
_enum: {
|
|
@@ -1029,7 +1145,7 @@ declare const _default: {
|
|
|
1029
1145
|
};
|
|
1030
1146
|
};
|
|
1031
1147
|
/**
|
|
1032
|
-
*
|
|
1148
|
+
* Lookup87: pallet_im_online::pallet::Event<T>
|
|
1033
1149
|
**/
|
|
1034
1150
|
PalletImOnlineEvent: {
|
|
1035
1151
|
_enum: {
|
|
@@ -1043,15 +1159,15 @@ declare const _default: {
|
|
|
1043
1159
|
};
|
|
1044
1160
|
};
|
|
1045
1161
|
/**
|
|
1046
|
-
*
|
|
1162
|
+
* Lookup88: pallet_im_online::sr25519::app_sr25519::Public
|
|
1047
1163
|
**/
|
|
1048
1164
|
PalletImOnlineSr25519AppSr25519Public: string;
|
|
1049
1165
|
/**
|
|
1050
|
-
*
|
|
1166
|
+
* Lookup89: sp_core::sr25519::Public
|
|
1051
1167
|
**/
|
|
1052
1168
|
SpCoreSr25519Public: string;
|
|
1053
1169
|
/**
|
|
1054
|
-
*
|
|
1170
|
+
* Lookup92: sp_staking::Exposure<sp_core::crypto::AccountId32, Balance>
|
|
1055
1171
|
**/
|
|
1056
1172
|
SpStakingExposure: {
|
|
1057
1173
|
total: string;
|
|
@@ -1059,14 +1175,14 @@ declare const _default: {
|
|
|
1059
1175
|
others: string;
|
|
1060
1176
|
};
|
|
1061
1177
|
/**
|
|
1062
|
-
*
|
|
1178
|
+
* Lookup95: sp_staking::IndividualExposure<sp_core::crypto::AccountId32, Balance>
|
|
1063
1179
|
**/
|
|
1064
1180
|
SpStakingIndividualExposure: {
|
|
1065
1181
|
who: string;
|
|
1066
1182
|
value: string;
|
|
1067
1183
|
};
|
|
1068
1184
|
/**
|
|
1069
|
-
*
|
|
1185
|
+
* Lookup96: pallet_identity::pallet::Event<T>
|
|
1070
1186
|
**/
|
|
1071
1187
|
PalletIdentityEvent: {
|
|
1072
1188
|
_enum: {
|
|
@@ -1140,7 +1256,7 @@ declare const _default: {
|
|
|
1140
1256
|
};
|
|
1141
1257
|
};
|
|
1142
1258
|
/**
|
|
1143
|
-
*
|
|
1259
|
+
* Lookup98: pallet_utility::pallet::Event
|
|
1144
1260
|
**/
|
|
1145
1261
|
PalletUtilityEvent: {
|
|
1146
1262
|
_enum: {
|
|
@@ -1160,7 +1276,7 @@ declare const _default: {
|
|
|
1160
1276
|
};
|
|
1161
1277
|
};
|
|
1162
1278
|
/**
|
|
1163
|
-
*
|
|
1279
|
+
* Lookup99: pallet_multisig::pallet::Event<T>
|
|
1164
1280
|
**/
|
|
1165
1281
|
PalletMultisigEvent: {
|
|
1166
1282
|
_enum: {
|
|
@@ -1191,14 +1307,14 @@ declare const _default: {
|
|
|
1191
1307
|
};
|
|
1192
1308
|
};
|
|
1193
1309
|
/**
|
|
1194
|
-
*
|
|
1310
|
+
* Lookup100: pallet_multisig::Timepoint<BlockNumber>
|
|
1195
1311
|
**/
|
|
1196
1312
|
PalletMultisigTimepoint: {
|
|
1197
1313
|
height: string;
|
|
1198
1314
|
index: string;
|
|
1199
1315
|
};
|
|
1200
1316
|
/**
|
|
1201
|
-
*
|
|
1317
|
+
* Lookup101: pallet_ethereum::pallet::Event
|
|
1202
1318
|
**/
|
|
1203
1319
|
PalletEthereumEvent: {
|
|
1204
1320
|
_enum: {
|
|
@@ -1212,7 +1328,7 @@ declare const _default: {
|
|
|
1212
1328
|
};
|
|
1213
1329
|
};
|
|
1214
1330
|
/**
|
|
1215
|
-
*
|
|
1331
|
+
* Lookup104: evm_core::error::ExitReason
|
|
1216
1332
|
**/
|
|
1217
1333
|
EvmCoreErrorExitReason: {
|
|
1218
1334
|
_enum: {
|
|
@@ -1223,13 +1339,13 @@ declare const _default: {
|
|
|
1223
1339
|
};
|
|
1224
1340
|
};
|
|
1225
1341
|
/**
|
|
1226
|
-
*
|
|
1342
|
+
* Lookup105: evm_core::error::ExitSucceed
|
|
1227
1343
|
**/
|
|
1228
1344
|
EvmCoreErrorExitSucceed: {
|
|
1229
1345
|
_enum: string[];
|
|
1230
1346
|
};
|
|
1231
1347
|
/**
|
|
1232
|
-
*
|
|
1348
|
+
* Lookup106: evm_core::error::ExitError
|
|
1233
1349
|
**/
|
|
1234
1350
|
EvmCoreErrorExitError: {
|
|
1235
1351
|
_enum: {
|
|
@@ -1252,13 +1368,13 @@ declare const _default: {
|
|
|
1252
1368
|
};
|
|
1253
1369
|
};
|
|
1254
1370
|
/**
|
|
1255
|
-
*
|
|
1371
|
+
* Lookup110: evm_core::error::ExitRevert
|
|
1256
1372
|
**/
|
|
1257
1373
|
EvmCoreErrorExitRevert: {
|
|
1258
1374
|
_enum: string[];
|
|
1259
1375
|
};
|
|
1260
1376
|
/**
|
|
1261
|
-
*
|
|
1377
|
+
* Lookup111: evm_core::error::ExitFatal
|
|
1262
1378
|
**/
|
|
1263
1379
|
EvmCoreErrorExitFatal: {
|
|
1264
1380
|
_enum: {
|
|
@@ -1269,7 +1385,7 @@ declare const _default: {
|
|
|
1269
1385
|
};
|
|
1270
1386
|
};
|
|
1271
1387
|
/**
|
|
1272
|
-
*
|
|
1388
|
+
* Lookup112: pallet_evm::pallet::Event<T>
|
|
1273
1389
|
**/
|
|
1274
1390
|
PalletEvmEvent: {
|
|
1275
1391
|
_enum: {
|
|
@@ -1291,7 +1407,7 @@ declare const _default: {
|
|
|
1291
1407
|
};
|
|
1292
1408
|
};
|
|
1293
1409
|
/**
|
|
1294
|
-
*
|
|
1410
|
+
* Lookup113: ethereum::log::Log
|
|
1295
1411
|
**/
|
|
1296
1412
|
EthereumLog: {
|
|
1297
1413
|
address: string;
|
|
@@ -1299,7 +1415,7 @@ declare const _default: {
|
|
|
1299
1415
|
data: string;
|
|
1300
1416
|
};
|
|
1301
1417
|
/**
|
|
1302
|
-
*
|
|
1418
|
+
* Lookup115: pallet_base_fee::pallet::Event
|
|
1303
1419
|
**/
|
|
1304
1420
|
PalletBaseFeeEvent: {
|
|
1305
1421
|
_enum: {
|
|
@@ -1313,7 +1429,7 @@ declare const _default: {
|
|
|
1313
1429
|
};
|
|
1314
1430
|
};
|
|
1315
1431
|
/**
|
|
1316
|
-
*
|
|
1432
|
+
* Lookup119: pallet_airdrop_claims::pallet::Event<T>
|
|
1317
1433
|
**/
|
|
1318
1434
|
PalletAirdropClaimsEvent: {
|
|
1319
1435
|
_enum: {
|
|
@@ -1325,7 +1441,7 @@ declare const _default: {
|
|
|
1325
1441
|
};
|
|
1326
1442
|
};
|
|
1327
1443
|
/**
|
|
1328
|
-
*
|
|
1444
|
+
* Lookup120: pallet_airdrop_claims::utils::MultiAddress
|
|
1329
1445
|
**/
|
|
1330
1446
|
PalletAirdropClaimsUtilsMultiAddress: {
|
|
1331
1447
|
_enum: {
|
|
@@ -1334,11 +1450,11 @@ declare const _default: {
|
|
|
1334
1450
|
};
|
|
1335
1451
|
};
|
|
1336
1452
|
/**
|
|
1337
|
-
*
|
|
1453
|
+
* Lookup121: pallet_airdrop_claims::utils::ethereum_address::EthereumAddress
|
|
1338
1454
|
**/
|
|
1339
1455
|
PalletAirdropClaimsUtilsEthereumAddress: string;
|
|
1340
1456
|
/**
|
|
1341
|
-
*
|
|
1457
|
+
* Lookup122: pallet_roles::pallet::Event<T>
|
|
1342
1458
|
**/
|
|
1343
1459
|
PalletRolesEvent: {
|
|
1344
1460
|
_enum: {
|
|
@@ -1387,7 +1503,7 @@ declare const _default: {
|
|
|
1387
1503
|
};
|
|
1388
1504
|
};
|
|
1389
1505
|
/**
|
|
1390
|
-
*
|
|
1506
|
+
* Lookup123: tangle_primitives::roles::RoleType
|
|
1391
1507
|
**/
|
|
1392
1508
|
TanglePrimitivesRolesRoleType: {
|
|
1393
1509
|
_enum: {
|
|
@@ -1397,19 +1513,19 @@ declare const _default: {
|
|
|
1397
1513
|
};
|
|
1398
1514
|
};
|
|
1399
1515
|
/**
|
|
1400
|
-
*
|
|
1516
|
+
* Lookup124: tangle_primitives::roles::tss::ThresholdSignatureRoleType
|
|
1401
1517
|
**/
|
|
1402
1518
|
TanglePrimitivesRolesTssThresholdSignatureRoleType: {
|
|
1403
1519
|
_enum: string[];
|
|
1404
1520
|
};
|
|
1405
1521
|
/**
|
|
1406
|
-
*
|
|
1522
|
+
* Lookup125: tangle_primitives::roles::zksaas::ZeroKnowledgeRoleType
|
|
1407
1523
|
**/
|
|
1408
1524
|
TanglePrimitivesRolesZksaasZeroKnowledgeRoleType: {
|
|
1409
1525
|
_enum: string[];
|
|
1410
1526
|
};
|
|
1411
1527
|
/**
|
|
1412
|
-
*
|
|
1528
|
+
* Lookup129: pallet_jobs::module::Event<T>
|
|
1413
1529
|
**/
|
|
1414
1530
|
PalletJobsModuleEvent: {
|
|
1415
1531
|
_enum: {
|
|
@@ -1448,7 +1564,7 @@ declare const _default: {
|
|
|
1448
1564
|
};
|
|
1449
1565
|
};
|
|
1450
1566
|
/**
|
|
1451
|
-
*
|
|
1567
|
+
* Lookup130: tangle_primitives::jobs::JobSubmission<sp_core::crypto::AccountId32, BlockNumber, tangle_testnet_runtime::MaxParticipants, tangle_testnet_runtime::MaxSubmissionLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
|
1452
1568
|
**/
|
|
1453
1569
|
TanglePrimitivesJobsJobSubmission: {
|
|
1454
1570
|
expiry: string;
|
|
@@ -1457,19 +1573,19 @@ declare const _default: {
|
|
|
1457
1573
|
fallback: string;
|
|
1458
1574
|
};
|
|
1459
1575
|
/**
|
|
1460
|
-
*
|
|
1576
|
+
* Lookup131: tangle_testnet_runtime::MaxParticipants
|
|
1461
1577
|
**/
|
|
1462
1578
|
TangleTestnetRuntimeMaxParticipants: string;
|
|
1463
1579
|
/**
|
|
1464
|
-
*
|
|
1580
|
+
* Lookup132: tangle_testnet_runtime::MaxSubmissionLen
|
|
1465
1581
|
**/
|
|
1466
1582
|
TangleTestnetRuntimeMaxSubmissionLen: string;
|
|
1467
1583
|
/**
|
|
1468
|
-
*
|
|
1584
|
+
* Lookup133: tangle_testnet_runtime::MaxAdditionalParamsLen
|
|
1469
1585
|
**/
|
|
1470
1586
|
TangleTestnetRuntimeMaxAdditionalParamsLen: string;
|
|
1471
1587
|
/**
|
|
1472
|
-
*
|
|
1588
|
+
* Lookup134: tangle_primitives::jobs::JobType<sp_core::crypto::AccountId32, tangle_testnet_runtime::MaxParticipants, tangle_testnet_runtime::MaxSubmissionLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
|
1473
1589
|
**/
|
|
1474
1590
|
TanglePrimitivesJobsJobType: {
|
|
1475
1591
|
_enum: {
|
|
@@ -1482,16 +1598,17 @@ declare const _default: {
|
|
|
1482
1598
|
};
|
|
1483
1599
|
};
|
|
1484
1600
|
/**
|
|
1485
|
-
*
|
|
1601
|
+
* Lookup135: tangle_primitives::jobs::tss::DKGTSSPhaseOneJobType<sp_core::crypto::AccountId32, tangle_testnet_runtime::MaxParticipants>
|
|
1486
1602
|
**/
|
|
1487
1603
|
TanglePrimitivesJobsTssDkgtssPhaseOneJobType: {
|
|
1488
1604
|
participants: string;
|
|
1489
1605
|
threshold: string;
|
|
1490
1606
|
permittedCaller: string;
|
|
1491
1607
|
roleType: string;
|
|
1608
|
+
hdWallet: string;
|
|
1492
1609
|
};
|
|
1493
1610
|
/**
|
|
1494
|
-
*
|
|
1611
|
+
* Lookup138: tangle_primitives::jobs::tss::DKGTSSPhaseTwoJobType<tangle_testnet_runtime::MaxSubmissionLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
|
1495
1612
|
**/
|
|
1496
1613
|
TanglePrimitivesJobsTssDkgtssPhaseTwoJobType: {
|
|
1497
1614
|
phaseOneId: string;
|
|
@@ -1500,14 +1617,14 @@ declare const _default: {
|
|
|
1500
1617
|
roleType: string;
|
|
1501
1618
|
};
|
|
1502
1619
|
/**
|
|
1503
|
-
*
|
|
1620
|
+
* Lookup142: tangle_primitives::jobs::tss::DKGTSSPhaseThreeJobType
|
|
1504
1621
|
**/
|
|
1505
1622
|
TanglePrimitivesJobsTssDkgtssPhaseThreeJobType: {
|
|
1506
1623
|
phaseOneId: string;
|
|
1507
1624
|
roleType: string;
|
|
1508
1625
|
};
|
|
1509
1626
|
/**
|
|
1510
|
-
*
|
|
1627
|
+
* Lookup143: tangle_primitives::jobs::tss::DKGTSSPhaseFourJobType
|
|
1511
1628
|
**/
|
|
1512
1629
|
TanglePrimitivesJobsTssDkgtssPhaseFourJobType: {
|
|
1513
1630
|
phaseOneId: string;
|
|
@@ -1515,7 +1632,7 @@ declare const _default: {
|
|
|
1515
1632
|
roleType: string;
|
|
1516
1633
|
};
|
|
1517
1634
|
/**
|
|
1518
|
-
*
|
|
1635
|
+
* Lookup144: tangle_primitives::jobs::zksaas::ZkSaaSPhaseOneJobType<sp_core::crypto::AccountId32, tangle_testnet_runtime::MaxParticipants, tangle_testnet_runtime::MaxSubmissionLen>
|
|
1519
1636
|
**/
|
|
1520
1637
|
TanglePrimitivesJobsZksaasZkSaaSPhaseOneJobType: {
|
|
1521
1638
|
participants: string;
|
|
@@ -1524,7 +1641,7 @@ declare const _default: {
|
|
|
1524
1641
|
roleType: string;
|
|
1525
1642
|
};
|
|
1526
1643
|
/**
|
|
1527
|
-
*
|
|
1644
|
+
* Lookup145: tangle_primitives::jobs::zksaas::ZkSaaSSystem<tangle_testnet_runtime::MaxSubmissionLen>
|
|
1528
1645
|
**/
|
|
1529
1646
|
TanglePrimitivesJobsZksaasZkSaaSSystem: {
|
|
1530
1647
|
_enum: {
|
|
@@ -1532,7 +1649,7 @@ declare const _default: {
|
|
|
1532
1649
|
};
|
|
1533
1650
|
};
|
|
1534
1651
|
/**
|
|
1535
|
-
*
|
|
1652
|
+
* Lookup146: tangle_primitives::jobs::zksaas::Groth16System<tangle_testnet_runtime::MaxSubmissionLen>
|
|
1536
1653
|
**/
|
|
1537
1654
|
TanglePrimitivesJobsZksaasGroth16System: {
|
|
1538
1655
|
circuit: string;
|
|
@@ -1543,7 +1660,7 @@ declare const _default: {
|
|
|
1543
1660
|
wasm: string;
|
|
1544
1661
|
};
|
|
1545
1662
|
/**
|
|
1546
|
-
*
|
|
1663
|
+
* Lookup147: tangle_primitives::jobs::zksaas::HyperData<tangle_testnet_runtime::MaxSubmissionLen>
|
|
1547
1664
|
**/
|
|
1548
1665
|
TanglePrimitivesJobsZksaasHyperData: {
|
|
1549
1666
|
_enum: {
|
|
@@ -1553,7 +1670,7 @@ declare const _default: {
|
|
|
1553
1670
|
};
|
|
1554
1671
|
};
|
|
1555
1672
|
/**
|
|
1556
|
-
*
|
|
1673
|
+
* Lookup148: tangle_primitives::jobs::zksaas::ZkSaaSPhaseTwoJobType<tangle_testnet_runtime::MaxSubmissionLen>
|
|
1557
1674
|
**/
|
|
1558
1675
|
TanglePrimitivesJobsZksaasZkSaaSPhaseTwoJobType: {
|
|
1559
1676
|
phaseOneId: string;
|
|
@@ -1561,7 +1678,7 @@ declare const _default: {
|
|
|
1561
1678
|
roleType: string;
|
|
1562
1679
|
};
|
|
1563
1680
|
/**
|
|
1564
|
-
*
|
|
1681
|
+
* Lookup149: tangle_primitives::jobs::zksaas::ZkSaaSPhaseTwoRequest<tangle_testnet_runtime::MaxSubmissionLen>
|
|
1565
1682
|
**/
|
|
1566
1683
|
TanglePrimitivesJobsZksaasZkSaaSPhaseTwoRequest: {
|
|
1567
1684
|
_enum: {
|
|
@@ -1569,7 +1686,7 @@ declare const _default: {
|
|
|
1569
1686
|
};
|
|
1570
1687
|
};
|
|
1571
1688
|
/**
|
|
1572
|
-
*
|
|
1689
|
+
* Lookup150: tangle_primitives::jobs::zksaas::Groth16ProveRequest<tangle_testnet_runtime::MaxSubmissionLen>
|
|
1573
1690
|
**/
|
|
1574
1691
|
TanglePrimitivesJobsZksaasGroth16ProveRequest: {
|
|
1575
1692
|
publicInput: string;
|
|
@@ -1578,7 +1695,7 @@ declare const _default: {
|
|
|
1578
1695
|
qapShares: string;
|
|
1579
1696
|
};
|
|
1580
1697
|
/**
|
|
1581
|
-
*
|
|
1698
|
+
* Lookup154: tangle_primitives::jobs::zksaas::QAPShare<tangle_testnet_runtime::MaxSubmissionLen>
|
|
1582
1699
|
**/
|
|
1583
1700
|
TanglePrimitivesJobsZksaasQapShare: {
|
|
1584
1701
|
a: string;
|
|
@@ -1586,7 +1703,7 @@ declare const _default: {
|
|
|
1586
1703
|
c: string;
|
|
1587
1704
|
};
|
|
1588
1705
|
/**
|
|
1589
|
-
*
|
|
1706
|
+
* Lookup156: tangle_primitives::jobs::FallbackOptions
|
|
1590
1707
|
**/
|
|
1591
1708
|
TanglePrimitivesJobsFallbackOptions: {
|
|
1592
1709
|
_enum: {
|
|
@@ -1595,7 +1712,7 @@ declare const _default: {
|
|
|
1595
1712
|
};
|
|
1596
1713
|
};
|
|
1597
1714
|
/**
|
|
1598
|
-
*
|
|
1715
|
+
* Lookup157: tangle_primitives::jobs::JobInfo<sp_core::crypto::AccountId32, BlockNumber, Balance, tangle_testnet_runtime::MaxParticipants, tangle_testnet_runtime::MaxSubmissionLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
|
1599
1716
|
**/
|
|
1600
1717
|
TanglePrimitivesJobsJobInfo: {
|
|
1601
1718
|
owner: string;
|
|
@@ -1606,7 +1723,7 @@ declare const _default: {
|
|
|
1606
1723
|
fallback: string;
|
|
1607
1724
|
};
|
|
1608
1725
|
/**
|
|
1609
|
-
*
|
|
1726
|
+
* Lookup158: pallet_dkg::pallet::Event<T>
|
|
1610
1727
|
**/
|
|
1611
1728
|
PalletDkgEvent: {
|
|
1612
1729
|
_enum: {
|
|
@@ -1619,7 +1736,7 @@ declare const _default: {
|
|
|
1619
1736
|
};
|
|
1620
1737
|
};
|
|
1621
1738
|
/**
|
|
1622
|
-
*
|
|
1739
|
+
* Lookup159: pallet_dkg::types::FeeInfo<Balance>
|
|
1623
1740
|
**/
|
|
1624
1741
|
PalletDkgFeeInfo: {
|
|
1625
1742
|
baseFee: string;
|
|
@@ -1630,7 +1747,7 @@ declare const _default: {
|
|
|
1630
1747
|
storageFeePerBlock: string;
|
|
1631
1748
|
};
|
|
1632
1749
|
/**
|
|
1633
|
-
*
|
|
1750
|
+
* Lookup160: pallet_zksaas::pallet::Event<T>
|
|
1634
1751
|
**/
|
|
1635
1752
|
PalletZksaasEvent: {
|
|
1636
1753
|
_enum: {
|
|
@@ -1638,7 +1755,7 @@ declare const _default: {
|
|
|
1638
1755
|
};
|
|
1639
1756
|
};
|
|
1640
1757
|
/**
|
|
1641
|
-
*
|
|
1758
|
+
* Lookup161: pallet_zksaas::types::FeeInfo<Balance>
|
|
1642
1759
|
**/
|
|
1643
1760
|
PalletZksaasFeeInfo: {
|
|
1644
1761
|
baseFee: string;
|
|
@@ -1647,7 +1764,374 @@ declare const _default: {
|
|
|
1647
1764
|
storageFeePerByte: string;
|
|
1648
1765
|
};
|
|
1649
1766
|
/**
|
|
1650
|
-
*
|
|
1767
|
+
* Lookup162: pallet_proxy::pallet::Event<T>
|
|
1768
|
+
**/
|
|
1769
|
+
PalletProxyEvent: {
|
|
1770
|
+
_enum: {
|
|
1771
|
+
ProxyExecuted: {
|
|
1772
|
+
result: string;
|
|
1773
|
+
};
|
|
1774
|
+
PureCreated: {
|
|
1775
|
+
pure: string;
|
|
1776
|
+
who: string;
|
|
1777
|
+
proxyType: string;
|
|
1778
|
+
disambiguationIndex: string;
|
|
1779
|
+
};
|
|
1780
|
+
Announced: {
|
|
1781
|
+
real: string;
|
|
1782
|
+
proxy: string;
|
|
1783
|
+
callHash: string;
|
|
1784
|
+
};
|
|
1785
|
+
ProxyAdded: {
|
|
1786
|
+
delegator: string;
|
|
1787
|
+
delegatee: string;
|
|
1788
|
+
proxyType: string;
|
|
1789
|
+
delay: string;
|
|
1790
|
+
};
|
|
1791
|
+
ProxyRemoved: {
|
|
1792
|
+
delegator: string;
|
|
1793
|
+
delegatee: string;
|
|
1794
|
+
proxyType: string;
|
|
1795
|
+
delay: string;
|
|
1796
|
+
};
|
|
1797
|
+
};
|
|
1798
|
+
};
|
|
1799
|
+
/**
|
|
1800
|
+
* Lookup163: tangle_testnet_runtime::ProxyType
|
|
1801
|
+
**/
|
|
1802
|
+
TangleTestnetRuntimeProxyType: {
|
|
1803
|
+
_enum: string[];
|
|
1804
|
+
};
|
|
1805
|
+
/**
|
|
1806
|
+
* Lookup165: pallet_multi_asset_delegation::pallet::Event<T>
|
|
1807
|
+
**/
|
|
1808
|
+
PalletMultiAssetDelegationEvent: {
|
|
1809
|
+
_enum: {
|
|
1810
|
+
OperatorJoined: {
|
|
1811
|
+
who: string;
|
|
1812
|
+
};
|
|
1813
|
+
OperatorLeavingScheduled: {
|
|
1814
|
+
who: string;
|
|
1815
|
+
};
|
|
1816
|
+
OperatorLeaveCancelled: {
|
|
1817
|
+
who: string;
|
|
1818
|
+
};
|
|
1819
|
+
OperatorLeaveExecuted: {
|
|
1820
|
+
who: string;
|
|
1821
|
+
};
|
|
1822
|
+
OperatorBondMore: {
|
|
1823
|
+
who: string;
|
|
1824
|
+
additionalBond: string;
|
|
1825
|
+
};
|
|
1826
|
+
OperatorBondLessScheduled: {
|
|
1827
|
+
who: string;
|
|
1828
|
+
bondLessAmount: string;
|
|
1829
|
+
};
|
|
1830
|
+
OperatorBondLessExecuted: {
|
|
1831
|
+
who: string;
|
|
1832
|
+
};
|
|
1833
|
+
OperatorBondLessCancelled: {
|
|
1834
|
+
who: string;
|
|
1835
|
+
};
|
|
1836
|
+
OperatorWentOffline: {
|
|
1837
|
+
who: string;
|
|
1838
|
+
};
|
|
1839
|
+
OperatorWentOnline: {
|
|
1840
|
+
who: string;
|
|
1841
|
+
};
|
|
1842
|
+
Deposited: {
|
|
1843
|
+
who: string;
|
|
1844
|
+
amount: string;
|
|
1845
|
+
assetId: string;
|
|
1846
|
+
};
|
|
1847
|
+
ScheduledUnstake: {
|
|
1848
|
+
who: string;
|
|
1849
|
+
amount: string;
|
|
1850
|
+
assetId: string;
|
|
1851
|
+
};
|
|
1852
|
+
ExecutedUnstake: {
|
|
1853
|
+
who: string;
|
|
1854
|
+
};
|
|
1855
|
+
CancelledUnstake: {
|
|
1856
|
+
who: string;
|
|
1857
|
+
};
|
|
1858
|
+
Delegated: {
|
|
1859
|
+
who: string;
|
|
1860
|
+
operator: string;
|
|
1861
|
+
amount: string;
|
|
1862
|
+
assetId: string;
|
|
1863
|
+
};
|
|
1864
|
+
ScheduledDelegatorBondLess: {
|
|
1865
|
+
who: string;
|
|
1866
|
+
operator: string;
|
|
1867
|
+
amount: string;
|
|
1868
|
+
assetId: string;
|
|
1869
|
+
};
|
|
1870
|
+
ExecutedDelegatorBondLess: {
|
|
1871
|
+
who: string;
|
|
1872
|
+
};
|
|
1873
|
+
CancelledDelegatorBondLess: {
|
|
1874
|
+
who: string;
|
|
1875
|
+
};
|
|
1876
|
+
WhitelistedAssetsSet: {
|
|
1877
|
+
assets: string;
|
|
1878
|
+
};
|
|
1879
|
+
IncentiveAPYAndCapSet: {
|
|
1880
|
+
assetId: string;
|
|
1881
|
+
apy: string;
|
|
1882
|
+
cap: string;
|
|
1883
|
+
};
|
|
1884
|
+
BlueprintWhitelisted: {
|
|
1885
|
+
blueprintId: string;
|
|
1886
|
+
};
|
|
1887
|
+
};
|
|
1888
|
+
};
|
|
1889
|
+
/**
|
|
1890
|
+
* Lookup168: sygma_access_segregator::pallet::Event<T>
|
|
1891
|
+
**/
|
|
1892
|
+
SygmaAccessSegregatorEvent: {
|
|
1893
|
+
_enum: {
|
|
1894
|
+
AccessGranted: {
|
|
1895
|
+
palletIndex: string;
|
|
1896
|
+
extrinsicName: string;
|
|
1897
|
+
who: string;
|
|
1898
|
+
};
|
|
1899
|
+
};
|
|
1900
|
+
};
|
|
1901
|
+
/**
|
|
1902
|
+
* Lookup169: sygma_basic_feehandler::pallet::Event<T>
|
|
1903
|
+
**/
|
|
1904
|
+
SygmaBasicFeehandlerEvent: {
|
|
1905
|
+
_enum: {
|
|
1906
|
+
FeeSet: {
|
|
1907
|
+
domain: string;
|
|
1908
|
+
asset: string;
|
|
1909
|
+
amount: string;
|
|
1910
|
+
};
|
|
1911
|
+
};
|
|
1912
|
+
};
|
|
1913
|
+
/**
|
|
1914
|
+
* Lookup170: staging_xcm::v4::asset::AssetId
|
|
1915
|
+
**/
|
|
1916
|
+
StagingXcmV4AssetAssetId: string;
|
|
1917
|
+
/**
|
|
1918
|
+
* Lookup171: staging_xcm::v4::location::Location
|
|
1919
|
+
**/
|
|
1920
|
+
StagingXcmV4Location: {
|
|
1921
|
+
parents: string;
|
|
1922
|
+
interior: string;
|
|
1923
|
+
};
|
|
1924
|
+
/**
|
|
1925
|
+
* Lookup172: staging_xcm::v4::junctions::Junctions
|
|
1926
|
+
**/
|
|
1927
|
+
StagingXcmV4Junctions: {
|
|
1928
|
+
_enum: {
|
|
1929
|
+
Here: string;
|
|
1930
|
+
X1: string;
|
|
1931
|
+
X2: string;
|
|
1932
|
+
X3: string;
|
|
1933
|
+
X4: string;
|
|
1934
|
+
X5: string;
|
|
1935
|
+
X6: string;
|
|
1936
|
+
X7: string;
|
|
1937
|
+
X8: string;
|
|
1938
|
+
};
|
|
1939
|
+
};
|
|
1940
|
+
/**
|
|
1941
|
+
* Lookup174: staging_xcm::v4::junction::Junction
|
|
1942
|
+
**/
|
|
1943
|
+
StagingXcmV4Junction: {
|
|
1944
|
+
_enum: {
|
|
1945
|
+
Parachain: string;
|
|
1946
|
+
AccountId32: {
|
|
1947
|
+
network: string;
|
|
1948
|
+
id: string;
|
|
1949
|
+
};
|
|
1950
|
+
AccountIndex64: {
|
|
1951
|
+
network: string;
|
|
1952
|
+
index: string;
|
|
1953
|
+
};
|
|
1954
|
+
AccountKey20: {
|
|
1955
|
+
network: string;
|
|
1956
|
+
key: string;
|
|
1957
|
+
};
|
|
1958
|
+
PalletInstance: string;
|
|
1959
|
+
GeneralIndex: string;
|
|
1960
|
+
GeneralKey: {
|
|
1961
|
+
length: string;
|
|
1962
|
+
data: string;
|
|
1963
|
+
};
|
|
1964
|
+
OnlyChild: string;
|
|
1965
|
+
Plurality: {
|
|
1966
|
+
id: string;
|
|
1967
|
+
part: string;
|
|
1968
|
+
};
|
|
1969
|
+
GlobalConsensus: string;
|
|
1970
|
+
};
|
|
1971
|
+
};
|
|
1972
|
+
/**
|
|
1973
|
+
* Lookup177: staging_xcm::v4::junction::NetworkId
|
|
1974
|
+
**/
|
|
1975
|
+
StagingXcmV4JunctionNetworkId: {
|
|
1976
|
+
_enum: {
|
|
1977
|
+
ByGenesis: string;
|
|
1978
|
+
ByFork: {
|
|
1979
|
+
blockNumber: string;
|
|
1980
|
+
blockHash: string;
|
|
1981
|
+
};
|
|
1982
|
+
Polkadot: string;
|
|
1983
|
+
Kusama: string;
|
|
1984
|
+
Westend: string;
|
|
1985
|
+
Rococo: string;
|
|
1986
|
+
Wococo: string;
|
|
1987
|
+
Ethereum: {
|
|
1988
|
+
chainId: string;
|
|
1989
|
+
};
|
|
1990
|
+
BitcoinCore: string;
|
|
1991
|
+
BitcoinCash: string;
|
|
1992
|
+
PolkadotBulletin: string;
|
|
1993
|
+
};
|
|
1994
|
+
};
|
|
1995
|
+
/**
|
|
1996
|
+
* Lookup178: xcm::v3::junction::BodyId
|
|
1997
|
+
**/
|
|
1998
|
+
XcmV3JunctionBodyId: {
|
|
1999
|
+
_enum: {
|
|
2000
|
+
Unit: string;
|
|
2001
|
+
Moniker: string;
|
|
2002
|
+
Index: string;
|
|
2003
|
+
Executive: string;
|
|
2004
|
+
Technical: string;
|
|
2005
|
+
Legislative: string;
|
|
2006
|
+
Judicial: string;
|
|
2007
|
+
Defense: string;
|
|
2008
|
+
Administration: string;
|
|
2009
|
+
Treasury: string;
|
|
2010
|
+
};
|
|
2011
|
+
};
|
|
2012
|
+
/**
|
|
2013
|
+
* Lookup179: xcm::v3::junction::BodyPart
|
|
2014
|
+
**/
|
|
2015
|
+
XcmV3JunctionBodyPart: {
|
|
2016
|
+
_enum: {
|
|
2017
|
+
Voice: string;
|
|
2018
|
+
Members: {
|
|
2019
|
+
count: string;
|
|
2020
|
+
};
|
|
2021
|
+
Fraction: {
|
|
2022
|
+
nom: string;
|
|
2023
|
+
denom: string;
|
|
2024
|
+
};
|
|
2025
|
+
AtLeastProportion: {
|
|
2026
|
+
nom: string;
|
|
2027
|
+
denom: string;
|
|
2028
|
+
};
|
|
2029
|
+
MoreThanProportion: {
|
|
2030
|
+
nom: string;
|
|
2031
|
+
denom: string;
|
|
2032
|
+
};
|
|
2033
|
+
};
|
|
2034
|
+
};
|
|
2035
|
+
/**
|
|
2036
|
+
* Lookup187: sygma_fee_handler_router::pallet::Event<T>
|
|
2037
|
+
**/
|
|
2038
|
+
SygmaFeeHandlerRouterEvent: {
|
|
2039
|
+
_enum: {
|
|
2040
|
+
FeeHandlerSet: {
|
|
2041
|
+
domain: string;
|
|
2042
|
+
asset: string;
|
|
2043
|
+
handlerType: string;
|
|
2044
|
+
};
|
|
2045
|
+
};
|
|
2046
|
+
};
|
|
2047
|
+
/**
|
|
2048
|
+
* Lookup188: sygma_fee_handler_router::pallet::FeeHandlerType
|
|
2049
|
+
**/
|
|
2050
|
+
SygmaFeeHandlerRouterFeeHandlerType: {
|
|
2051
|
+
_enum: string[];
|
|
2052
|
+
};
|
|
2053
|
+
/**
|
|
2054
|
+
* Lookup189: sygma_percentage_feehandler::pallet::Event<T>
|
|
2055
|
+
**/
|
|
2056
|
+
SygmaPercentageFeehandlerEvent: {
|
|
2057
|
+
_enum: {
|
|
2058
|
+
FeeRateSet: {
|
|
2059
|
+
domain: string;
|
|
2060
|
+
asset: string;
|
|
2061
|
+
rateBasisPoint: string;
|
|
2062
|
+
feeLowerBound: string;
|
|
2063
|
+
feeUpperBound: string;
|
|
2064
|
+
};
|
|
2065
|
+
};
|
|
2066
|
+
};
|
|
2067
|
+
/**
|
|
2068
|
+
* Lookup190: sygma_bridge::pallet::Event<T>
|
|
2069
|
+
**/
|
|
2070
|
+
SygmaBridgeEvent: {
|
|
2071
|
+
_enum: {
|
|
2072
|
+
Deposit: {
|
|
2073
|
+
destDomainId: string;
|
|
2074
|
+
resourceId: string;
|
|
2075
|
+
depositNonce: string;
|
|
2076
|
+
sender: string;
|
|
2077
|
+
transferType: string;
|
|
2078
|
+
depositData: string;
|
|
2079
|
+
handlerResponse: string;
|
|
2080
|
+
};
|
|
2081
|
+
ProposalExecution: {
|
|
2082
|
+
originDomainId: string;
|
|
2083
|
+
depositNonce: string;
|
|
2084
|
+
dataHash: string;
|
|
2085
|
+
};
|
|
2086
|
+
FailedHandlerExecution: {
|
|
2087
|
+
error: string;
|
|
2088
|
+
originDomainId: string;
|
|
2089
|
+
depositNonce: string;
|
|
2090
|
+
};
|
|
2091
|
+
Retry: {
|
|
2092
|
+
depositOnBlockHeight: string;
|
|
2093
|
+
destDomainId: string;
|
|
2094
|
+
sender: string;
|
|
2095
|
+
};
|
|
2096
|
+
BridgePaused: {
|
|
2097
|
+
destDomainId: string;
|
|
2098
|
+
};
|
|
2099
|
+
BridgeUnpaused: {
|
|
2100
|
+
destDomainId: string;
|
|
2101
|
+
};
|
|
2102
|
+
RegisterDestDomain: {
|
|
2103
|
+
sender: string;
|
|
2104
|
+
domainId: string;
|
|
2105
|
+
chainId: string;
|
|
2106
|
+
};
|
|
2107
|
+
UnregisterDestDomain: {
|
|
2108
|
+
sender: string;
|
|
2109
|
+
domainId: string;
|
|
2110
|
+
chainId: string;
|
|
2111
|
+
};
|
|
2112
|
+
FeeCollected: {
|
|
2113
|
+
feePayer: string;
|
|
2114
|
+
destDomainId: string;
|
|
2115
|
+
resourceId: string;
|
|
2116
|
+
feeAmount: string;
|
|
2117
|
+
feeAssetId: string;
|
|
2118
|
+
};
|
|
2119
|
+
AllBridgePaused: {
|
|
2120
|
+
sender: string;
|
|
2121
|
+
};
|
|
2122
|
+
AllBridgeUnpaused: {
|
|
2123
|
+
sender: string;
|
|
2124
|
+
};
|
|
2125
|
+
};
|
|
2126
|
+
};
|
|
2127
|
+
/**
|
|
2128
|
+
* Lookup191: sygma_traits::TransferType
|
|
2129
|
+
**/
|
|
2130
|
+
SygmaTraitsTransferType: {
|
|
2131
|
+
_enum: string[];
|
|
2132
|
+
};
|
|
2133
|
+
/**
|
|
2134
|
+
* Lookup192: frame_system::Phase
|
|
1651
2135
|
**/
|
|
1652
2136
|
FrameSystemPhase: {
|
|
1653
2137
|
_enum: {
|
|
@@ -1657,21 +2141,21 @@ declare const _default: {
|
|
|
1657
2141
|
};
|
|
1658
2142
|
};
|
|
1659
2143
|
/**
|
|
1660
|
-
*
|
|
2144
|
+
* Lookup194: frame_system::LastRuntimeUpgradeInfo
|
|
1661
2145
|
**/
|
|
1662
2146
|
FrameSystemLastRuntimeUpgradeInfo: {
|
|
1663
2147
|
specVersion: string;
|
|
1664
2148
|
specName: string;
|
|
1665
2149
|
};
|
|
1666
2150
|
/**
|
|
1667
|
-
*
|
|
2151
|
+
* Lookup195: frame_system::CodeUpgradeAuthorization<T>
|
|
1668
2152
|
**/
|
|
1669
2153
|
FrameSystemCodeUpgradeAuthorization: {
|
|
1670
2154
|
codeHash: string;
|
|
1671
2155
|
checkVersion: string;
|
|
1672
2156
|
};
|
|
1673
2157
|
/**
|
|
1674
|
-
*
|
|
2158
|
+
* Lookup196: frame_system::pallet::Call<T>
|
|
1675
2159
|
**/
|
|
1676
2160
|
FrameSystemCall: {
|
|
1677
2161
|
_enum: {
|
|
@@ -1716,7 +2200,7 @@ declare const _default: {
|
|
|
1716
2200
|
};
|
|
1717
2201
|
};
|
|
1718
2202
|
/**
|
|
1719
|
-
*
|
|
2203
|
+
* Lookup200: frame_system::limits::BlockWeights
|
|
1720
2204
|
**/
|
|
1721
2205
|
FrameSystemLimitsBlockWeights: {
|
|
1722
2206
|
baseBlock: string;
|
|
@@ -1724,7 +2208,7 @@ declare const _default: {
|
|
|
1724
2208
|
perClass: string;
|
|
1725
2209
|
};
|
|
1726
2210
|
/**
|
|
1727
|
-
*
|
|
2211
|
+
* Lookup201: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
1728
2212
|
**/
|
|
1729
2213
|
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
|
1730
2214
|
normal: string;
|
|
@@ -1732,7 +2216,7 @@ declare const _default: {
|
|
|
1732
2216
|
mandatory: string;
|
|
1733
2217
|
};
|
|
1734
2218
|
/**
|
|
1735
|
-
*
|
|
2219
|
+
* Lookup202: frame_system::limits::WeightsPerClass
|
|
1736
2220
|
**/
|
|
1737
2221
|
FrameSystemLimitsWeightsPerClass: {
|
|
1738
2222
|
baseExtrinsic: string;
|
|
@@ -1741,13 +2225,13 @@ declare const _default: {
|
|
|
1741
2225
|
reserved: string;
|
|
1742
2226
|
};
|
|
1743
2227
|
/**
|
|
1744
|
-
*
|
|
2228
|
+
* Lookup204: frame_system::limits::BlockLength
|
|
1745
2229
|
**/
|
|
1746
2230
|
FrameSystemLimitsBlockLength: {
|
|
1747
2231
|
max: string;
|
|
1748
2232
|
};
|
|
1749
2233
|
/**
|
|
1750
|
-
*
|
|
2234
|
+
* Lookup205: frame_support::dispatch::PerDispatchClass<T>
|
|
1751
2235
|
**/
|
|
1752
2236
|
FrameSupportDispatchPerDispatchClassU32: {
|
|
1753
2237
|
normal: string;
|
|
@@ -1755,14 +2239,14 @@ declare const _default: {
|
|
|
1755
2239
|
mandatory: string;
|
|
1756
2240
|
};
|
|
1757
2241
|
/**
|
|
1758
|
-
*
|
|
2242
|
+
* Lookup206: sp_weights::RuntimeDbWeight
|
|
1759
2243
|
**/
|
|
1760
2244
|
SpWeightsRuntimeDbWeight: {
|
|
1761
2245
|
read: string;
|
|
1762
2246
|
write: string;
|
|
1763
2247
|
};
|
|
1764
2248
|
/**
|
|
1765
|
-
*
|
|
2249
|
+
* Lookup207: sp_version::RuntimeVersion
|
|
1766
2250
|
**/
|
|
1767
2251
|
SpVersionRuntimeVersion: {
|
|
1768
2252
|
specName: string;
|
|
@@ -1775,13 +2259,13 @@ declare const _default: {
|
|
|
1775
2259
|
stateVersion: string;
|
|
1776
2260
|
};
|
|
1777
2261
|
/**
|
|
1778
|
-
*
|
|
2262
|
+
* Lookup212: frame_system::pallet::Error<T>
|
|
1779
2263
|
**/
|
|
1780
2264
|
FrameSystemError: {
|
|
1781
2265
|
_enum: string[];
|
|
1782
2266
|
};
|
|
1783
2267
|
/**
|
|
1784
|
-
*
|
|
2268
|
+
* Lookup213: pallet_timestamp::pallet::Call<T>
|
|
1785
2269
|
**/
|
|
1786
2270
|
PalletTimestampCall: {
|
|
1787
2271
|
_enum: {
|
|
@@ -1791,32 +2275,184 @@ declare const _default: {
|
|
|
1791
2275
|
};
|
|
1792
2276
|
};
|
|
1793
2277
|
/**
|
|
1794
|
-
*
|
|
2278
|
+
* Lookup214: pallet_sudo::pallet::Call<T>
|
|
1795
2279
|
**/
|
|
1796
2280
|
PalletSudoCall: {
|
|
1797
2281
|
_enum: {
|
|
1798
2282
|
sudo: {
|
|
1799
2283
|
call: string;
|
|
1800
2284
|
};
|
|
1801
|
-
sudo_unchecked_weight: {
|
|
1802
|
-
call: string;
|
|
1803
|
-
weight: string;
|
|
2285
|
+
sudo_unchecked_weight: {
|
|
2286
|
+
call: string;
|
|
2287
|
+
weight: string;
|
|
2288
|
+
};
|
|
2289
|
+
set_key: {
|
|
2290
|
+
_alias: {
|
|
2291
|
+
new_: string;
|
|
2292
|
+
};
|
|
2293
|
+
new_: string;
|
|
2294
|
+
};
|
|
2295
|
+
sudo_as: {
|
|
2296
|
+
who: string;
|
|
2297
|
+
call: string;
|
|
2298
|
+
};
|
|
2299
|
+
remove_key: string;
|
|
2300
|
+
};
|
|
2301
|
+
};
|
|
2302
|
+
/**
|
|
2303
|
+
* Lookup216: pallet_assets::pallet::Call<T, I>
|
|
2304
|
+
**/
|
|
2305
|
+
PalletAssetsCall: {
|
|
2306
|
+
_enum: {
|
|
2307
|
+
create: {
|
|
2308
|
+
id: string;
|
|
2309
|
+
admin: string;
|
|
2310
|
+
minBalance: string;
|
|
2311
|
+
};
|
|
2312
|
+
force_create: {
|
|
2313
|
+
id: string;
|
|
2314
|
+
owner: string;
|
|
2315
|
+
isSufficient: string;
|
|
2316
|
+
minBalance: string;
|
|
2317
|
+
};
|
|
2318
|
+
start_destroy: {
|
|
2319
|
+
id: string;
|
|
2320
|
+
};
|
|
2321
|
+
destroy_accounts: {
|
|
2322
|
+
id: string;
|
|
2323
|
+
};
|
|
2324
|
+
destroy_approvals: {
|
|
2325
|
+
id: string;
|
|
2326
|
+
};
|
|
2327
|
+
finish_destroy: {
|
|
2328
|
+
id: string;
|
|
2329
|
+
};
|
|
2330
|
+
mint: {
|
|
2331
|
+
id: string;
|
|
2332
|
+
beneficiary: string;
|
|
2333
|
+
amount: string;
|
|
2334
|
+
};
|
|
2335
|
+
burn: {
|
|
2336
|
+
id: string;
|
|
2337
|
+
who: string;
|
|
2338
|
+
amount: string;
|
|
2339
|
+
};
|
|
2340
|
+
transfer: {
|
|
2341
|
+
id: string;
|
|
2342
|
+
target: string;
|
|
2343
|
+
amount: string;
|
|
2344
|
+
};
|
|
2345
|
+
transfer_keep_alive: {
|
|
2346
|
+
id: string;
|
|
2347
|
+
target: string;
|
|
2348
|
+
amount: string;
|
|
2349
|
+
};
|
|
2350
|
+
force_transfer: {
|
|
2351
|
+
id: string;
|
|
2352
|
+
source: string;
|
|
2353
|
+
dest: string;
|
|
2354
|
+
amount: string;
|
|
2355
|
+
};
|
|
2356
|
+
freeze: {
|
|
2357
|
+
id: string;
|
|
2358
|
+
who: string;
|
|
2359
|
+
};
|
|
2360
|
+
thaw: {
|
|
2361
|
+
id: string;
|
|
2362
|
+
who: string;
|
|
2363
|
+
};
|
|
2364
|
+
freeze_asset: {
|
|
2365
|
+
id: string;
|
|
2366
|
+
};
|
|
2367
|
+
thaw_asset: {
|
|
2368
|
+
id: string;
|
|
2369
|
+
};
|
|
2370
|
+
transfer_ownership: {
|
|
2371
|
+
id: string;
|
|
2372
|
+
owner: string;
|
|
2373
|
+
};
|
|
2374
|
+
set_team: {
|
|
2375
|
+
id: string;
|
|
2376
|
+
issuer: string;
|
|
2377
|
+
admin: string;
|
|
2378
|
+
freezer: string;
|
|
2379
|
+
};
|
|
2380
|
+
set_metadata: {
|
|
2381
|
+
id: string;
|
|
2382
|
+
name: string;
|
|
2383
|
+
symbol: string;
|
|
2384
|
+
decimals: string;
|
|
2385
|
+
};
|
|
2386
|
+
clear_metadata: {
|
|
2387
|
+
id: string;
|
|
2388
|
+
};
|
|
2389
|
+
force_set_metadata: {
|
|
2390
|
+
id: string;
|
|
2391
|
+
name: string;
|
|
2392
|
+
symbol: string;
|
|
2393
|
+
decimals: string;
|
|
2394
|
+
isFrozen: string;
|
|
2395
|
+
};
|
|
2396
|
+
force_clear_metadata: {
|
|
2397
|
+
id: string;
|
|
2398
|
+
};
|
|
2399
|
+
force_asset_status: {
|
|
2400
|
+
id: string;
|
|
2401
|
+
owner: string;
|
|
2402
|
+
issuer: string;
|
|
2403
|
+
admin: string;
|
|
2404
|
+
freezer: string;
|
|
2405
|
+
minBalance: string;
|
|
2406
|
+
isSufficient: string;
|
|
2407
|
+
isFrozen: string;
|
|
2408
|
+
};
|
|
2409
|
+
approve_transfer: {
|
|
2410
|
+
id: string;
|
|
2411
|
+
delegate: string;
|
|
2412
|
+
amount: string;
|
|
2413
|
+
};
|
|
2414
|
+
cancel_approval: {
|
|
2415
|
+
id: string;
|
|
2416
|
+
delegate: string;
|
|
2417
|
+
};
|
|
2418
|
+
force_cancel_approval: {
|
|
2419
|
+
id: string;
|
|
2420
|
+
owner: string;
|
|
2421
|
+
delegate: string;
|
|
2422
|
+
};
|
|
2423
|
+
transfer_approved: {
|
|
2424
|
+
id: string;
|
|
2425
|
+
owner: string;
|
|
2426
|
+
destination: string;
|
|
2427
|
+
amount: string;
|
|
2428
|
+
};
|
|
2429
|
+
touch: {
|
|
2430
|
+
id: string;
|
|
2431
|
+
};
|
|
2432
|
+
refund: {
|
|
2433
|
+
id: string;
|
|
2434
|
+
allowBurn: string;
|
|
2435
|
+
};
|
|
2436
|
+
set_min_balance: {
|
|
2437
|
+
id: string;
|
|
2438
|
+
minBalance: string;
|
|
2439
|
+
};
|
|
2440
|
+
touch_other: {
|
|
2441
|
+
id: string;
|
|
2442
|
+
who: string;
|
|
1804
2443
|
};
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
};
|
|
1809
|
-
new_: string;
|
|
2444
|
+
refund_other: {
|
|
2445
|
+
id: string;
|
|
2446
|
+
who: string;
|
|
1810
2447
|
};
|
|
1811
|
-
|
|
2448
|
+
block: {
|
|
2449
|
+
id: string;
|
|
1812
2450
|
who: string;
|
|
1813
|
-
call: string;
|
|
1814
2451
|
};
|
|
1815
|
-
remove_key: string;
|
|
1816
2452
|
};
|
|
1817
2453
|
};
|
|
1818
2454
|
/**
|
|
1819
|
-
*
|
|
2455
|
+
* Lookup218: pallet_balances::pallet::Call<T, I>
|
|
1820
2456
|
**/
|
|
1821
2457
|
PalletBalancesCall: {
|
|
1822
2458
|
_enum: {
|
|
@@ -1857,13 +2493,13 @@ declare const _default: {
|
|
|
1857
2493
|
};
|
|
1858
2494
|
};
|
|
1859
2495
|
/**
|
|
1860
|
-
*
|
|
2496
|
+
* Lookup219: pallet_balances::types::AdjustmentDirection
|
|
1861
2497
|
**/
|
|
1862
2498
|
PalletBalancesAdjustmentDirection: {
|
|
1863
2499
|
_enum: string[];
|
|
1864
2500
|
};
|
|
1865
2501
|
/**
|
|
1866
|
-
*
|
|
2502
|
+
* Lookup220: pallet_babe::pallet::Call<T>
|
|
1867
2503
|
**/
|
|
1868
2504
|
PalletBabeCall: {
|
|
1869
2505
|
_enum: {
|
|
@@ -1881,7 +2517,7 @@ declare const _default: {
|
|
|
1881
2517
|
};
|
|
1882
2518
|
};
|
|
1883
2519
|
/**
|
|
1884
|
-
*
|
|
2520
|
+
* Lookup221: sp_consensus_slots::EquivocationProof<sp_runtime::generic::header::Header<Number, Hash>, sp_consensus_babe::app::Public>
|
|
1885
2521
|
**/
|
|
1886
2522
|
SpConsensusSlotsEquivocationProof: {
|
|
1887
2523
|
offender: string;
|
|
@@ -1890,7 +2526,7 @@ declare const _default: {
|
|
|
1890
2526
|
secondHeader: string;
|
|
1891
2527
|
};
|
|
1892
2528
|
/**
|
|
1893
|
-
*
|
|
2529
|
+
* Lookup222: sp_runtime::generic::header::Header<Number, Hash>
|
|
1894
2530
|
**/
|
|
1895
2531
|
SpRuntimeHeader: {
|
|
1896
2532
|
parentHash: string;
|
|
@@ -1900,11 +2536,11 @@ declare const _default: {
|
|
|
1900
2536
|
digest: string;
|
|
1901
2537
|
};
|
|
1902
2538
|
/**
|
|
1903
|
-
*
|
|
2539
|
+
* Lookup223: sp_consensus_babe::app::Public
|
|
1904
2540
|
**/
|
|
1905
2541
|
SpConsensusBabeAppPublic: string;
|
|
1906
2542
|
/**
|
|
1907
|
-
*
|
|
2543
|
+
* Lookup225: sp_session::MembershipProof
|
|
1908
2544
|
**/
|
|
1909
2545
|
SpSessionMembershipProof: {
|
|
1910
2546
|
session: string;
|
|
@@ -1912,7 +2548,7 @@ declare const _default: {
|
|
|
1912
2548
|
validatorCount: string;
|
|
1913
2549
|
};
|
|
1914
2550
|
/**
|
|
1915
|
-
*
|
|
2551
|
+
* Lookup226: sp_consensus_babe::digests::NextConfigDescriptor
|
|
1916
2552
|
**/
|
|
1917
2553
|
SpConsensusBabeDigestsNextConfigDescriptor: {
|
|
1918
2554
|
_enum: {
|
|
@@ -1924,13 +2560,13 @@ declare const _default: {
|
|
|
1924
2560
|
};
|
|
1925
2561
|
};
|
|
1926
2562
|
/**
|
|
1927
|
-
*
|
|
2563
|
+
* Lookup228: sp_consensus_babe::AllowedSlots
|
|
1928
2564
|
**/
|
|
1929
2565
|
SpConsensusBabeAllowedSlots: {
|
|
1930
2566
|
_enum: string[];
|
|
1931
2567
|
};
|
|
1932
2568
|
/**
|
|
1933
|
-
*
|
|
2569
|
+
* Lookup229: pallet_grandpa::pallet::Call<T>
|
|
1934
2570
|
**/
|
|
1935
2571
|
PalletGrandpaCall: {
|
|
1936
2572
|
_enum: {
|
|
@@ -1949,14 +2585,14 @@ declare const _default: {
|
|
|
1949
2585
|
};
|
|
1950
2586
|
};
|
|
1951
2587
|
/**
|
|
1952
|
-
*
|
|
2588
|
+
* Lookup230: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
1953
2589
|
**/
|
|
1954
2590
|
SpConsensusGrandpaEquivocationProof: {
|
|
1955
2591
|
setId: string;
|
|
1956
2592
|
equivocation: string;
|
|
1957
2593
|
};
|
|
1958
2594
|
/**
|
|
1959
|
-
*
|
|
2595
|
+
* Lookup231: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
1960
2596
|
**/
|
|
1961
2597
|
SpConsensusGrandpaEquivocation: {
|
|
1962
2598
|
_enum: {
|
|
@@ -1965,7 +2601,7 @@ declare const _default: {
|
|
|
1965
2601
|
};
|
|
1966
2602
|
};
|
|
1967
2603
|
/**
|
|
1968
|
-
*
|
|
2604
|
+
* Lookup232: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
1969
2605
|
**/
|
|
1970
2606
|
FinalityGrandpaEquivocationPrevote: {
|
|
1971
2607
|
roundNumber: string;
|
|
@@ -1974,22 +2610,22 @@ declare const _default: {
|
|
|
1974
2610
|
second: string;
|
|
1975
2611
|
};
|
|
1976
2612
|
/**
|
|
1977
|
-
*
|
|
2613
|
+
* Lookup233: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
1978
2614
|
**/
|
|
1979
2615
|
FinalityGrandpaPrevote: {
|
|
1980
2616
|
targetHash: string;
|
|
1981
2617
|
targetNumber: string;
|
|
1982
2618
|
};
|
|
1983
2619
|
/**
|
|
1984
|
-
*
|
|
2620
|
+
* Lookup234: sp_consensus_grandpa::app::Signature
|
|
1985
2621
|
**/
|
|
1986
2622
|
SpConsensusGrandpaAppSignature: string;
|
|
1987
2623
|
/**
|
|
1988
|
-
*
|
|
2624
|
+
* Lookup235: sp_core::ed25519::Signature
|
|
1989
2625
|
**/
|
|
1990
2626
|
SpCoreEd25519Signature: string;
|
|
1991
2627
|
/**
|
|
1992
|
-
*
|
|
2628
|
+
* Lookup238: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
1993
2629
|
**/
|
|
1994
2630
|
FinalityGrandpaEquivocationPrecommit: {
|
|
1995
2631
|
roundNumber: string;
|
|
@@ -1998,18 +2634,18 @@ declare const _default: {
|
|
|
1998
2634
|
second: string;
|
|
1999
2635
|
};
|
|
2000
2636
|
/**
|
|
2001
|
-
*
|
|
2637
|
+
* Lookup239: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
2002
2638
|
**/
|
|
2003
2639
|
FinalityGrandpaPrecommit: {
|
|
2004
2640
|
targetHash: string;
|
|
2005
2641
|
targetNumber: string;
|
|
2006
2642
|
};
|
|
2007
2643
|
/**
|
|
2008
|
-
*
|
|
2644
|
+
* Lookup241: sp_core::Void
|
|
2009
2645
|
**/
|
|
2010
2646
|
SpCoreVoid: string;
|
|
2011
2647
|
/**
|
|
2012
|
-
*
|
|
2648
|
+
* Lookup242: pallet_indices::pallet::Call<T>
|
|
2013
2649
|
**/
|
|
2014
2650
|
PalletIndicesCall: {
|
|
2015
2651
|
_enum: {
|
|
@@ -2040,7 +2676,7 @@ declare const _default: {
|
|
|
2040
2676
|
};
|
|
2041
2677
|
};
|
|
2042
2678
|
/**
|
|
2043
|
-
*
|
|
2679
|
+
* Lookup243: pallet_democracy::pallet::Call<T>
|
|
2044
2680
|
**/
|
|
2045
2681
|
PalletDemocracyCall: {
|
|
2046
2682
|
_enum: {
|
|
@@ -2109,7 +2745,7 @@ declare const _default: {
|
|
|
2109
2745
|
};
|
|
2110
2746
|
};
|
|
2111
2747
|
/**
|
|
2112
|
-
*
|
|
2748
|
+
* Lookup244: frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>
|
|
2113
2749
|
**/
|
|
2114
2750
|
FrameSupportPreimagesBounded: {
|
|
2115
2751
|
_enum: {
|
|
@@ -2130,17 +2766,17 @@ declare const _default: {
|
|
|
2130
2766
|
};
|
|
2131
2767
|
};
|
|
2132
2768
|
/**
|
|
2133
|
-
*
|
|
2769
|
+
* Lookup245: sp_runtime::traits::BlakeTwo256
|
|
2134
2770
|
**/
|
|
2135
2771
|
SpRuntimeBlakeTwo256: string;
|
|
2136
2772
|
/**
|
|
2137
|
-
*
|
|
2773
|
+
* Lookup247: pallet_democracy::conviction::Conviction
|
|
2138
2774
|
**/
|
|
2139
2775
|
PalletDemocracyConviction: {
|
|
2140
2776
|
_enum: string[];
|
|
2141
2777
|
};
|
|
2142
2778
|
/**
|
|
2143
|
-
*
|
|
2779
|
+
* Lookup250: pallet_collective::pallet::Call<T, I>
|
|
2144
2780
|
**/
|
|
2145
2781
|
PalletCollectiveCall: {
|
|
2146
2782
|
_enum: {
|
|
@@ -2176,7 +2812,7 @@ declare const _default: {
|
|
|
2176
2812
|
};
|
|
2177
2813
|
};
|
|
2178
2814
|
/**
|
|
2179
|
-
*
|
|
2815
|
+
* Lookup251: pallet_vesting::pallet::Call<T>
|
|
2180
2816
|
**/
|
|
2181
2817
|
PalletVestingCall: {
|
|
2182
2818
|
_enum: {
|
|
@@ -2204,7 +2840,7 @@ declare const _default: {
|
|
|
2204
2840
|
};
|
|
2205
2841
|
};
|
|
2206
2842
|
/**
|
|
2207
|
-
*
|
|
2843
|
+
* Lookup252: pallet_vesting::vesting_info::VestingInfo<Balance, BlockNumber>
|
|
2208
2844
|
**/
|
|
2209
2845
|
PalletVestingVestingInfo: {
|
|
2210
2846
|
locked: string;
|
|
@@ -2212,7 +2848,7 @@ declare const _default: {
|
|
|
2212
2848
|
startingBlock: string;
|
|
2213
2849
|
};
|
|
2214
2850
|
/**
|
|
2215
|
-
*
|
|
2851
|
+
* Lookup253: pallet_elections_phragmen::pallet::Call<T>
|
|
2216
2852
|
**/
|
|
2217
2853
|
PalletElectionsPhragmenCall: {
|
|
2218
2854
|
_enum: {
|
|
@@ -2239,7 +2875,7 @@ declare const _default: {
|
|
|
2239
2875
|
};
|
|
2240
2876
|
};
|
|
2241
2877
|
/**
|
|
2242
|
-
*
|
|
2878
|
+
* Lookup254: pallet_elections_phragmen::Renouncing
|
|
2243
2879
|
**/
|
|
2244
2880
|
PalletElectionsPhragmenRenouncing: {
|
|
2245
2881
|
_enum: {
|
|
@@ -2249,7 +2885,7 @@ declare const _default: {
|
|
|
2249
2885
|
};
|
|
2250
2886
|
};
|
|
2251
2887
|
/**
|
|
2252
|
-
*
|
|
2888
|
+
* Lookup255: pallet_election_provider_multi_phase::pallet::Call<T>
|
|
2253
2889
|
**/
|
|
2254
2890
|
PalletElectionProviderMultiPhaseCall: {
|
|
2255
2891
|
_enum: {
|
|
@@ -2273,7 +2909,7 @@ declare const _default: {
|
|
|
2273
2909
|
};
|
|
2274
2910
|
};
|
|
2275
2911
|
/**
|
|
2276
|
-
*
|
|
2912
|
+
* Lookup256: pallet_election_provider_multi_phase::RawSolution<tangle_testnet_runtime::NposSolution16>
|
|
2277
2913
|
**/
|
|
2278
2914
|
PalletElectionProviderMultiPhaseRawSolution: {
|
|
2279
2915
|
solution: string;
|
|
@@ -2281,7 +2917,7 @@ declare const _default: {
|
|
|
2281
2917
|
round: string;
|
|
2282
2918
|
};
|
|
2283
2919
|
/**
|
|
2284
|
-
*
|
|
2920
|
+
* Lookup257: tangle_testnet_runtime::NposSolution16
|
|
2285
2921
|
**/
|
|
2286
2922
|
TangleTestnetRuntimeNposSolution16: {
|
|
2287
2923
|
votes1: string;
|
|
@@ -2302,21 +2938,21 @@ declare const _default: {
|
|
|
2302
2938
|
votes16: string;
|
|
2303
2939
|
};
|
|
2304
2940
|
/**
|
|
2305
|
-
*
|
|
2941
|
+
* Lookup308: pallet_election_provider_multi_phase::SolutionOrSnapshotSize
|
|
2306
2942
|
**/
|
|
2307
2943
|
PalletElectionProviderMultiPhaseSolutionOrSnapshotSize: {
|
|
2308
2944
|
voters: string;
|
|
2309
2945
|
targets: string;
|
|
2310
2946
|
};
|
|
2311
2947
|
/**
|
|
2312
|
-
*
|
|
2948
|
+
* Lookup312: sp_npos_elections::Support<sp_core::crypto::AccountId32>
|
|
2313
2949
|
**/
|
|
2314
2950
|
SpNposElectionsSupport: {
|
|
2315
2951
|
total: string;
|
|
2316
2952
|
voters: string;
|
|
2317
2953
|
};
|
|
2318
2954
|
/**
|
|
2319
|
-
*
|
|
2955
|
+
* Lookup313: pallet_staking::pallet::pallet::Call<T>
|
|
2320
2956
|
**/
|
|
2321
2957
|
PalletStakingPalletCall: {
|
|
2322
2958
|
_enum: {
|
|
@@ -2418,7 +3054,7 @@ declare const _default: {
|
|
|
2418
3054
|
};
|
|
2419
3055
|
};
|
|
2420
3056
|
/**
|
|
2421
|
-
*
|
|
3057
|
+
* Lookup317: pallet_staking::pallet::pallet::ConfigOp<T>
|
|
2422
3058
|
**/
|
|
2423
3059
|
PalletStakingPalletConfigOpU128: {
|
|
2424
3060
|
_enum: {
|
|
@@ -2428,7 +3064,7 @@ declare const _default: {
|
|
|
2428
3064
|
};
|
|
2429
3065
|
};
|
|
2430
3066
|
/**
|
|
2431
|
-
*
|
|
3067
|
+
* Lookup318: pallet_staking::pallet::pallet::ConfigOp<T>
|
|
2432
3068
|
**/
|
|
2433
3069
|
PalletStakingPalletConfigOpU32: {
|
|
2434
3070
|
_enum: {
|
|
@@ -2438,7 +3074,7 @@ declare const _default: {
|
|
|
2438
3074
|
};
|
|
2439
3075
|
};
|
|
2440
3076
|
/**
|
|
2441
|
-
*
|
|
3077
|
+
* Lookup319: pallet_staking::pallet::pallet::ConfigOp<sp_arithmetic::per_things::Percent>
|
|
2442
3078
|
**/
|
|
2443
3079
|
PalletStakingPalletConfigOpPercent: {
|
|
2444
3080
|
_enum: {
|
|
@@ -2448,7 +3084,7 @@ declare const _default: {
|
|
|
2448
3084
|
};
|
|
2449
3085
|
};
|
|
2450
3086
|
/**
|
|
2451
|
-
*
|
|
3087
|
+
* Lookup320: pallet_staking::pallet::pallet::ConfigOp<sp_arithmetic::per_things::Perbill>
|
|
2452
3088
|
**/
|
|
2453
3089
|
PalletStakingPalletConfigOpPerbill: {
|
|
2454
3090
|
_enum: {
|
|
@@ -2458,7 +3094,7 @@ declare const _default: {
|
|
|
2458
3094
|
};
|
|
2459
3095
|
};
|
|
2460
3096
|
/**
|
|
2461
|
-
*
|
|
3097
|
+
* Lookup322: pallet_session::pallet::Call<T>
|
|
2462
3098
|
**/
|
|
2463
3099
|
PalletSessionCall: {
|
|
2464
3100
|
_enum: {
|
|
@@ -2473,7 +3109,7 @@ declare const _default: {
|
|
|
2473
3109
|
};
|
|
2474
3110
|
};
|
|
2475
3111
|
/**
|
|
2476
|
-
*
|
|
3112
|
+
* Lookup323: tangle_testnet_runtime::opaque::SessionKeys
|
|
2477
3113
|
**/
|
|
2478
3114
|
TangleTestnetRuntimeOpaqueSessionKeys: {
|
|
2479
3115
|
babe: string;
|
|
@@ -2482,15 +3118,15 @@ declare const _default: {
|
|
|
2482
3118
|
role: string;
|
|
2483
3119
|
};
|
|
2484
3120
|
/**
|
|
2485
|
-
*
|
|
3121
|
+
* Lookup324: tangle_crypto_primitives::crypto::Public
|
|
2486
3122
|
**/
|
|
2487
3123
|
TangleCryptoPrimitivesCryptoPublic: string;
|
|
2488
3124
|
/**
|
|
2489
|
-
*
|
|
3125
|
+
* Lookup325: sp_core::ecdsa::Public
|
|
2490
3126
|
**/
|
|
2491
3127
|
SpCoreEcdsaPublic: string;
|
|
2492
3128
|
/**
|
|
2493
|
-
*
|
|
3129
|
+
* Lookup327: pallet_treasury::pallet::Call<T, I>
|
|
2494
3130
|
**/
|
|
2495
3131
|
PalletTreasuryCall: {
|
|
2496
3132
|
_enum: {
|
|
@@ -2529,7 +3165,7 @@ declare const _default: {
|
|
|
2529
3165
|
};
|
|
2530
3166
|
};
|
|
2531
3167
|
/**
|
|
2532
|
-
*
|
|
3168
|
+
* Lookup329: pallet_bounties::pallet::Call<T, I>
|
|
2533
3169
|
**/
|
|
2534
3170
|
PalletBountiesCall: {
|
|
2535
3171
|
_enum: {
|
|
@@ -2568,7 +3204,7 @@ declare const _default: {
|
|
|
2568
3204
|
};
|
|
2569
3205
|
};
|
|
2570
3206
|
/**
|
|
2571
|
-
*
|
|
3207
|
+
* Lookup330: pallet_child_bounties::pallet::Call<T>
|
|
2572
3208
|
**/
|
|
2573
3209
|
PalletChildBountiesCall: {
|
|
2574
3210
|
_enum: {
|
|
@@ -2607,7 +3243,7 @@ declare const _default: {
|
|
|
2607
3243
|
};
|
|
2608
3244
|
};
|
|
2609
3245
|
/**
|
|
2610
|
-
*
|
|
3246
|
+
* Lookup331: pallet_bags_list::pallet::Call<T, I>
|
|
2611
3247
|
**/
|
|
2612
3248
|
PalletBagsListCall: {
|
|
2613
3249
|
_enum: {
|
|
@@ -2624,7 +3260,7 @@ declare const _default: {
|
|
|
2624
3260
|
};
|
|
2625
3261
|
};
|
|
2626
3262
|
/**
|
|
2627
|
-
*
|
|
3263
|
+
* Lookup332: pallet_nomination_pools::pallet::Call<T>
|
|
2628
3264
|
**/
|
|
2629
3265
|
PalletNominationPoolsCall: {
|
|
2630
3266
|
_enum: {
|
|
@@ -2725,7 +3361,7 @@ declare const _default: {
|
|
|
2725
3361
|
};
|
|
2726
3362
|
};
|
|
2727
3363
|
/**
|
|
2728
|
-
*
|
|
3364
|
+
* Lookup333: pallet_nomination_pools::BondExtra<Balance>
|
|
2729
3365
|
**/
|
|
2730
3366
|
PalletNominationPoolsBondExtra: {
|
|
2731
3367
|
_enum: {
|
|
@@ -2734,7 +3370,7 @@ declare const _default: {
|
|
|
2734
3370
|
};
|
|
2735
3371
|
};
|
|
2736
3372
|
/**
|
|
2737
|
-
*
|
|
3373
|
+
* Lookup334: pallet_nomination_pools::ConfigOp<T>
|
|
2738
3374
|
**/
|
|
2739
3375
|
PalletNominationPoolsConfigOpU128: {
|
|
2740
3376
|
_enum: {
|
|
@@ -2744,7 +3380,7 @@ declare const _default: {
|
|
|
2744
3380
|
};
|
|
2745
3381
|
};
|
|
2746
3382
|
/**
|
|
2747
|
-
*
|
|
3383
|
+
* Lookup335: pallet_nomination_pools::ConfigOp<T>
|
|
2748
3384
|
**/
|
|
2749
3385
|
PalletNominationPoolsConfigOpU32: {
|
|
2750
3386
|
_enum: {
|
|
@@ -2754,7 +3390,7 @@ declare const _default: {
|
|
|
2754
3390
|
};
|
|
2755
3391
|
};
|
|
2756
3392
|
/**
|
|
2757
|
-
*
|
|
3393
|
+
* Lookup336: pallet_nomination_pools::ConfigOp<sp_arithmetic::per_things::Perbill>
|
|
2758
3394
|
**/
|
|
2759
3395
|
PalletNominationPoolsConfigOpPerbill: {
|
|
2760
3396
|
_enum: {
|
|
@@ -2764,7 +3400,7 @@ declare const _default: {
|
|
|
2764
3400
|
};
|
|
2765
3401
|
};
|
|
2766
3402
|
/**
|
|
2767
|
-
*
|
|
3403
|
+
* Lookup337: pallet_nomination_pools::ConfigOp<sp_core::crypto::AccountId32>
|
|
2768
3404
|
**/
|
|
2769
3405
|
PalletNominationPoolsConfigOpAccountId32: {
|
|
2770
3406
|
_enum: {
|
|
@@ -2774,13 +3410,13 @@ declare const _default: {
|
|
|
2774
3410
|
};
|
|
2775
3411
|
};
|
|
2776
3412
|
/**
|
|
2777
|
-
*
|
|
3413
|
+
* Lookup338: pallet_nomination_pools::ClaimPermission
|
|
2778
3414
|
**/
|
|
2779
3415
|
PalletNominationPoolsClaimPermission: {
|
|
2780
3416
|
_enum: string[];
|
|
2781
3417
|
};
|
|
2782
3418
|
/**
|
|
2783
|
-
*
|
|
3419
|
+
* Lookup339: pallet_scheduler::pallet::Call<T>
|
|
2784
3420
|
**/
|
|
2785
3421
|
PalletSchedulerCall: {
|
|
2786
3422
|
_enum: {
|
|
@@ -2820,7 +3456,7 @@ declare const _default: {
|
|
|
2820
3456
|
};
|
|
2821
3457
|
};
|
|
2822
3458
|
/**
|
|
2823
|
-
*
|
|
3459
|
+
* Lookup341: pallet_preimage::pallet::Call<T>
|
|
2824
3460
|
**/
|
|
2825
3461
|
PalletPreimageCall: {
|
|
2826
3462
|
_enum: {
|
|
@@ -2851,7 +3487,7 @@ declare const _default: {
|
|
|
2851
3487
|
};
|
|
2852
3488
|
};
|
|
2853
3489
|
/**
|
|
2854
|
-
*
|
|
3490
|
+
* Lookup342: pallet_tx_pause::pallet::Call<T>
|
|
2855
3491
|
**/
|
|
2856
3492
|
PalletTxPauseCall: {
|
|
2857
3493
|
_enum: {
|
|
@@ -2864,7 +3500,7 @@ declare const _default: {
|
|
|
2864
3500
|
};
|
|
2865
3501
|
};
|
|
2866
3502
|
/**
|
|
2867
|
-
*
|
|
3503
|
+
* Lookup343: pallet_im_online::pallet::Call<T>
|
|
2868
3504
|
**/
|
|
2869
3505
|
PalletImOnlineCall: {
|
|
2870
3506
|
_enum: {
|
|
@@ -2875,7 +3511,7 @@ declare const _default: {
|
|
|
2875
3511
|
};
|
|
2876
3512
|
};
|
|
2877
3513
|
/**
|
|
2878
|
-
*
|
|
3514
|
+
* Lookup344: pallet_im_online::Heartbeat<BlockNumber>
|
|
2879
3515
|
**/
|
|
2880
3516
|
PalletImOnlineHeartbeat: {
|
|
2881
3517
|
blockNumber: string;
|
|
@@ -2884,15 +3520,15 @@ declare const _default: {
|
|
|
2884
3520
|
validatorsLen: string;
|
|
2885
3521
|
};
|
|
2886
3522
|
/**
|
|
2887
|
-
*
|
|
3523
|
+
* Lookup345: pallet_im_online::sr25519::app_sr25519::Signature
|
|
2888
3524
|
**/
|
|
2889
3525
|
PalletImOnlineSr25519AppSr25519Signature: string;
|
|
2890
3526
|
/**
|
|
2891
|
-
*
|
|
3527
|
+
* Lookup346: sp_core::sr25519::Signature
|
|
2892
3528
|
**/
|
|
2893
3529
|
SpCoreSr25519Signature: string;
|
|
2894
3530
|
/**
|
|
2895
|
-
*
|
|
3531
|
+
* Lookup347: pallet_identity::pallet::Call<T>
|
|
2896
3532
|
**/
|
|
2897
3533
|
PalletIdentityCall: {
|
|
2898
3534
|
_enum: {
|
|
@@ -2977,7 +3613,7 @@ declare const _default: {
|
|
|
2977
3613
|
};
|
|
2978
3614
|
};
|
|
2979
3615
|
/**
|
|
2980
|
-
*
|
|
3616
|
+
* Lookup348: pallet_identity::legacy::IdentityInfo<FieldLimit>
|
|
2981
3617
|
**/
|
|
2982
3618
|
PalletIdentityLegacyIdentityInfo: {
|
|
2983
3619
|
additional: string;
|
|
@@ -2991,7 +3627,7 @@ declare const _default: {
|
|
|
2991
3627
|
twitter: string;
|
|
2992
3628
|
};
|
|
2993
3629
|
/**
|
|
2994
|
-
*
|
|
3630
|
+
* Lookup384: pallet_identity::types::Judgement<Balance>
|
|
2995
3631
|
**/
|
|
2996
3632
|
PalletIdentityJudgement: {
|
|
2997
3633
|
_enum: {
|
|
@@ -3005,7 +3641,7 @@ declare const _default: {
|
|
|
3005
3641
|
};
|
|
3006
3642
|
};
|
|
3007
3643
|
/**
|
|
3008
|
-
*
|
|
3644
|
+
* Lookup386: sp_runtime::MultiSignature
|
|
3009
3645
|
**/
|
|
3010
3646
|
SpRuntimeMultiSignature: {
|
|
3011
3647
|
_enum: {
|
|
@@ -3015,11 +3651,11 @@ declare const _default: {
|
|
|
3015
3651
|
};
|
|
3016
3652
|
};
|
|
3017
3653
|
/**
|
|
3018
|
-
*
|
|
3654
|
+
* Lookup387: sp_core::ecdsa::Signature
|
|
3019
3655
|
**/
|
|
3020
3656
|
SpCoreEcdsaSignature: string;
|
|
3021
3657
|
/**
|
|
3022
|
-
*
|
|
3658
|
+
* Lookup389: pallet_utility::pallet::Call<T>
|
|
3023
3659
|
**/
|
|
3024
3660
|
PalletUtilityCall: {
|
|
3025
3661
|
_enum: {
|
|
@@ -3047,7 +3683,7 @@ declare const _default: {
|
|
|
3047
3683
|
};
|
|
3048
3684
|
};
|
|
3049
3685
|
/**
|
|
3050
|
-
*
|
|
3686
|
+
* Lookup391: tangle_testnet_runtime::OriginCaller
|
|
3051
3687
|
**/
|
|
3052
3688
|
TangleTestnetRuntimeOriginCaller: {
|
|
3053
3689
|
_enum: {
|
|
@@ -3062,8 +3698,8 @@ declare const _default: {
|
|
|
3062
3698
|
__Unused8: string;
|
|
3063
3699
|
__Unused9: string;
|
|
3064
3700
|
__Unused10: string;
|
|
3701
|
+
__Unused11: string;
|
|
3065
3702
|
Council: string;
|
|
3066
|
-
__Unused12: string;
|
|
3067
3703
|
__Unused13: string;
|
|
3068
3704
|
__Unused14: string;
|
|
3069
3705
|
__Unused15: string;
|
|
@@ -3082,11 +3718,12 @@ declare const _default: {
|
|
|
3082
3718
|
__Unused28: string;
|
|
3083
3719
|
__Unused29: string;
|
|
3084
3720
|
__Unused30: string;
|
|
3721
|
+
__Unused31: string;
|
|
3085
3722
|
Ethereum: string;
|
|
3086
3723
|
};
|
|
3087
3724
|
};
|
|
3088
3725
|
/**
|
|
3089
|
-
*
|
|
3726
|
+
* Lookup392: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
|
|
3090
3727
|
**/
|
|
3091
3728
|
FrameSupportDispatchRawOrigin: {
|
|
3092
3729
|
_enum: {
|
|
@@ -3096,7 +3733,7 @@ declare const _default: {
|
|
|
3096
3733
|
};
|
|
3097
3734
|
};
|
|
3098
3735
|
/**
|
|
3099
|
-
*
|
|
3736
|
+
* Lookup393: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
|
|
3100
3737
|
**/
|
|
3101
3738
|
PalletCollectiveRawOrigin: {
|
|
3102
3739
|
_enum: {
|
|
@@ -3106,7 +3743,7 @@ declare const _default: {
|
|
|
3106
3743
|
};
|
|
3107
3744
|
};
|
|
3108
3745
|
/**
|
|
3109
|
-
*
|
|
3746
|
+
* Lookup394: pallet_ethereum::RawOrigin
|
|
3110
3747
|
**/
|
|
3111
3748
|
PalletEthereumRawOrigin: {
|
|
3112
3749
|
_enum: {
|
|
@@ -3114,7 +3751,7 @@ declare const _default: {
|
|
|
3114
3751
|
};
|
|
3115
3752
|
};
|
|
3116
3753
|
/**
|
|
3117
|
-
*
|
|
3754
|
+
* Lookup395: pallet_multisig::pallet::Call<T>
|
|
3118
3755
|
**/
|
|
3119
3756
|
PalletMultisigCall: {
|
|
3120
3757
|
_enum: {
|
|
@@ -3145,7 +3782,7 @@ declare const _default: {
|
|
|
3145
3782
|
};
|
|
3146
3783
|
};
|
|
3147
3784
|
/**
|
|
3148
|
-
*
|
|
3785
|
+
* Lookup397: pallet_ethereum::pallet::Call<T>
|
|
3149
3786
|
**/
|
|
3150
3787
|
PalletEthereumCall: {
|
|
3151
3788
|
_enum: {
|
|
@@ -3155,7 +3792,7 @@ declare const _default: {
|
|
|
3155
3792
|
};
|
|
3156
3793
|
};
|
|
3157
3794
|
/**
|
|
3158
|
-
*
|
|
3795
|
+
* Lookup398: ethereum::transaction::TransactionV2
|
|
3159
3796
|
**/
|
|
3160
3797
|
EthereumTransactionTransactionV2: {
|
|
3161
3798
|
_enum: {
|
|
@@ -3165,7 +3802,7 @@ declare const _default: {
|
|
|
3165
3802
|
};
|
|
3166
3803
|
};
|
|
3167
3804
|
/**
|
|
3168
|
-
*
|
|
3805
|
+
* Lookup399: ethereum::transaction::LegacyTransaction
|
|
3169
3806
|
**/
|
|
3170
3807
|
EthereumTransactionLegacyTransaction: {
|
|
3171
3808
|
nonce: string;
|
|
@@ -3177,7 +3814,7 @@ declare const _default: {
|
|
|
3177
3814
|
signature: string;
|
|
3178
3815
|
};
|
|
3179
3816
|
/**
|
|
3180
|
-
*
|
|
3817
|
+
* Lookup400: ethereum::transaction::TransactionAction
|
|
3181
3818
|
**/
|
|
3182
3819
|
EthereumTransactionTransactionAction: {
|
|
3183
3820
|
_enum: {
|
|
@@ -3186,7 +3823,7 @@ declare const _default: {
|
|
|
3186
3823
|
};
|
|
3187
3824
|
};
|
|
3188
3825
|
/**
|
|
3189
|
-
*
|
|
3826
|
+
* Lookup401: ethereum::transaction::TransactionSignature
|
|
3190
3827
|
**/
|
|
3191
3828
|
EthereumTransactionTransactionSignature: {
|
|
3192
3829
|
v: string;
|
|
@@ -3194,7 +3831,7 @@ declare const _default: {
|
|
|
3194
3831
|
s: string;
|
|
3195
3832
|
};
|
|
3196
3833
|
/**
|
|
3197
|
-
*
|
|
3834
|
+
* Lookup403: ethereum::transaction::EIP2930Transaction
|
|
3198
3835
|
**/
|
|
3199
3836
|
EthereumTransactionEip2930Transaction: {
|
|
3200
3837
|
chainId: string;
|
|
@@ -3210,14 +3847,14 @@ declare const _default: {
|
|
|
3210
3847
|
s: string;
|
|
3211
3848
|
};
|
|
3212
3849
|
/**
|
|
3213
|
-
*
|
|
3850
|
+
* Lookup405: ethereum::transaction::AccessListItem
|
|
3214
3851
|
**/
|
|
3215
3852
|
EthereumTransactionAccessListItem: {
|
|
3216
3853
|
address: string;
|
|
3217
3854
|
storageKeys: string;
|
|
3218
3855
|
};
|
|
3219
3856
|
/**
|
|
3220
|
-
*
|
|
3857
|
+
* Lookup406: ethereum::transaction::EIP1559Transaction
|
|
3221
3858
|
**/
|
|
3222
3859
|
EthereumTransactionEip1559Transaction: {
|
|
3223
3860
|
chainId: string;
|
|
@@ -3234,7 +3871,7 @@ declare const _default: {
|
|
|
3234
3871
|
s: string;
|
|
3235
3872
|
};
|
|
3236
3873
|
/**
|
|
3237
|
-
*
|
|
3874
|
+
* Lookup407: pallet_evm::pallet::Call<T>
|
|
3238
3875
|
**/
|
|
3239
3876
|
PalletEvmCall: {
|
|
3240
3877
|
_enum: {
|
|
@@ -3277,7 +3914,7 @@ declare const _default: {
|
|
|
3277
3914
|
};
|
|
3278
3915
|
};
|
|
3279
3916
|
/**
|
|
3280
|
-
*
|
|
3917
|
+
* Lookup411: pallet_dynamic_fee::pallet::Call<T>
|
|
3281
3918
|
**/
|
|
3282
3919
|
PalletDynamicFeeCall: {
|
|
3283
3920
|
_enum: {
|
|
@@ -3287,7 +3924,7 @@ declare const _default: {
|
|
|
3287
3924
|
};
|
|
3288
3925
|
};
|
|
3289
3926
|
/**
|
|
3290
|
-
*
|
|
3927
|
+
* Lookup412: pallet_base_fee::pallet::Call<T>
|
|
3291
3928
|
**/
|
|
3292
3929
|
PalletBaseFeeCall: {
|
|
3293
3930
|
_enum: {
|
|
@@ -3300,7 +3937,7 @@ declare const _default: {
|
|
|
3300
3937
|
};
|
|
3301
3938
|
};
|
|
3302
3939
|
/**
|
|
3303
|
-
*
|
|
3940
|
+
* Lookup413: pallet_hotfix_sufficients::pallet::Call<T>
|
|
3304
3941
|
**/
|
|
3305
3942
|
PalletHotfixSufficientsCall: {
|
|
3306
3943
|
_enum: {
|
|
@@ -3310,7 +3947,7 @@ declare const _default: {
|
|
|
3310
3947
|
};
|
|
3311
3948
|
};
|
|
3312
3949
|
/**
|
|
3313
|
-
*
|
|
3950
|
+
* Lookup415: pallet_airdrop_claims::pallet::Call<T>
|
|
3314
3951
|
**/
|
|
3315
3952
|
PalletAirdropClaimsCall: {
|
|
3316
3953
|
_enum: {
|
|
@@ -3343,10 +3980,13 @@ declare const _default: {
|
|
|
3343
3980
|
expiryBlock: string;
|
|
3344
3981
|
dest: string;
|
|
3345
3982
|
};
|
|
3983
|
+
claim_signed: {
|
|
3984
|
+
dest: string;
|
|
3985
|
+
};
|
|
3346
3986
|
};
|
|
3347
3987
|
};
|
|
3348
3988
|
/**
|
|
3349
|
-
*
|
|
3989
|
+
* Lookup417: pallet_airdrop_claims::utils::MultiAddressSignature
|
|
3350
3990
|
**/
|
|
3351
3991
|
PalletAirdropClaimsUtilsMultiAddressSignature: {
|
|
3352
3992
|
_enum: {
|
|
@@ -3355,21 +3995,21 @@ declare const _default: {
|
|
|
3355
3995
|
};
|
|
3356
3996
|
};
|
|
3357
3997
|
/**
|
|
3358
|
-
*
|
|
3998
|
+
* Lookup418: pallet_airdrop_claims::utils::ethereum_address::EcdsaSignature
|
|
3359
3999
|
**/
|
|
3360
4000
|
PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature: string;
|
|
3361
4001
|
/**
|
|
3362
|
-
*
|
|
4002
|
+
* Lookup419: pallet_airdrop_claims::utils::Sr25519Signature
|
|
3363
4003
|
**/
|
|
3364
4004
|
PalletAirdropClaimsUtilsSr25519Signature: string;
|
|
3365
4005
|
/**
|
|
3366
|
-
*
|
|
4006
|
+
* Lookup425: pallet_airdrop_claims::StatementKind
|
|
3367
4007
|
**/
|
|
3368
4008
|
PalletAirdropClaimsStatementKind: {
|
|
3369
4009
|
_enum: string[];
|
|
3370
4010
|
};
|
|
3371
4011
|
/**
|
|
3372
|
-
*
|
|
4012
|
+
* Lookup426: pallet_roles::pallet::Call<T>
|
|
3373
4013
|
**/
|
|
3374
4014
|
PalletRolesCall: {
|
|
3375
4015
|
_enum: {
|
|
@@ -3396,7 +4036,7 @@ declare const _default: {
|
|
|
3396
4036
|
};
|
|
3397
4037
|
};
|
|
3398
4038
|
/**
|
|
3399
|
-
*
|
|
4039
|
+
* Lookup427: pallet_roles::profile::Profile<T>
|
|
3400
4040
|
**/
|
|
3401
4041
|
PalletRolesProfile: {
|
|
3402
4042
|
_enum: {
|
|
@@ -3405,27 +4045,27 @@ declare const _default: {
|
|
|
3405
4045
|
};
|
|
3406
4046
|
};
|
|
3407
4047
|
/**
|
|
3408
|
-
*
|
|
4048
|
+
* Lookup428: pallet_roles::profile::IndependentRestakeProfile<T>
|
|
3409
4049
|
**/
|
|
3410
4050
|
PalletRolesProfileIndependentRestakeProfile: {
|
|
3411
4051
|
records: string;
|
|
3412
4052
|
};
|
|
3413
4053
|
/**
|
|
3414
|
-
*
|
|
4054
|
+
* Lookup430: pallet_roles::profile::Record<T>
|
|
3415
4055
|
**/
|
|
3416
4056
|
PalletRolesProfileRecord: {
|
|
3417
4057
|
role: string;
|
|
3418
4058
|
amount: string;
|
|
3419
4059
|
};
|
|
3420
4060
|
/**
|
|
3421
|
-
*
|
|
4061
|
+
* Lookup432: pallet_roles::profile::SharedRestakeProfile<T>
|
|
3422
4062
|
**/
|
|
3423
4063
|
PalletRolesProfileSharedRestakeProfile: {
|
|
3424
4064
|
records: string;
|
|
3425
4065
|
amount: string;
|
|
3426
4066
|
};
|
|
3427
4067
|
/**
|
|
3428
|
-
*
|
|
4068
|
+
* Lookup433: pallet_jobs::module::Call<T>
|
|
3429
4069
|
**/
|
|
3430
4070
|
PalletJobsModuleCall: {
|
|
3431
4071
|
_enum: {
|
|
@@ -3464,7 +4104,7 @@ declare const _default: {
|
|
|
3464
4104
|
};
|
|
3465
4105
|
};
|
|
3466
4106
|
/**
|
|
3467
|
-
*
|
|
4107
|
+
* Lookup434: tangle_primitives::jobs::JobResult<tangle_testnet_runtime::MaxParticipants, tangle_testnet_runtime::MaxKeyLen, tangle_testnet_runtime::MaxSignatureLen, tangle_testnet_runtime::MaxDataLen, tangle_testnet_runtime::MaxProofLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
|
3468
4108
|
**/
|
|
3469
4109
|
TanglePrimitivesJobsJobResult: {
|
|
3470
4110
|
_enum: {
|
|
@@ -3477,55 +4117,57 @@ declare const _default: {
|
|
|
3477
4117
|
};
|
|
3478
4118
|
};
|
|
3479
4119
|
/**
|
|
3480
|
-
*
|
|
4120
|
+
* Lookup435: tangle_testnet_runtime::MaxKeyLen
|
|
3481
4121
|
**/
|
|
3482
4122
|
TangleTestnetRuntimeMaxKeyLen: string;
|
|
3483
4123
|
/**
|
|
3484
|
-
*
|
|
4124
|
+
* Lookup436: tangle_testnet_runtime::MaxSignatureLen
|
|
3485
4125
|
**/
|
|
3486
4126
|
TangleTestnetRuntimeMaxSignatureLen: string;
|
|
3487
4127
|
/**
|
|
3488
|
-
*
|
|
4128
|
+
* Lookup437: tangle_testnet_runtime::MaxDataLen
|
|
3489
4129
|
**/
|
|
3490
4130
|
TangleTestnetRuntimeMaxDataLen: string;
|
|
3491
4131
|
/**
|
|
3492
|
-
*
|
|
4132
|
+
* Lookup438: tangle_testnet_runtime::MaxProofLen
|
|
3493
4133
|
**/
|
|
3494
4134
|
TangleTestnetRuntimeMaxProofLen: string;
|
|
3495
4135
|
/**
|
|
3496
|
-
*
|
|
4136
|
+
* Lookup439: tangle_primitives::jobs::tss::DKGTSSKeySubmissionResult<tangle_testnet_runtime::MaxKeyLen, tangle_testnet_runtime::MaxParticipants, tangle_testnet_runtime::MaxSignatureLen>
|
|
3497
4137
|
**/
|
|
3498
4138
|
TanglePrimitivesJobsTssDkgtssKeySubmissionResult: {
|
|
3499
4139
|
signatureScheme: string;
|
|
3500
4140
|
key: string;
|
|
4141
|
+
chainCode: string;
|
|
3501
4142
|
participants: string;
|
|
3502
4143
|
signatures: string;
|
|
3503
4144
|
threshold: string;
|
|
3504
4145
|
};
|
|
3505
4146
|
/**
|
|
3506
|
-
*
|
|
4147
|
+
* Lookup440: tangle_primitives::jobs::tss::DigitalSignatureScheme
|
|
3507
4148
|
**/
|
|
3508
4149
|
TanglePrimitivesJobsTssDigitalSignatureScheme: {
|
|
3509
4150
|
_enum: string[];
|
|
3510
4151
|
};
|
|
3511
4152
|
/**
|
|
3512
|
-
*
|
|
4153
|
+
* Lookup447: tangle_primitives::jobs::tss::DKGTSSSignatureResult<tangle_testnet_runtime::MaxDataLen, tangle_testnet_runtime::MaxKeyLen, tangle_testnet_runtime::MaxSignatureLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
|
3513
4154
|
**/
|
|
3514
4155
|
TanglePrimitivesJobsTssDkgtssSignatureResult: {
|
|
3515
4156
|
signatureScheme: string;
|
|
3516
|
-
derivationPath: string;
|
|
3517
4157
|
data: string;
|
|
3518
4158
|
signature: string;
|
|
3519
4159
|
verifyingKey: string;
|
|
4160
|
+
derivationPath: string;
|
|
4161
|
+
chainCode: string;
|
|
3520
4162
|
};
|
|
3521
4163
|
/**
|
|
3522
|
-
*
|
|
4164
|
+
* Lookup449: tangle_primitives::jobs::tss::DKGTSSKeyRefreshResult
|
|
3523
4165
|
**/
|
|
3524
4166
|
TanglePrimitivesJobsTssDkgtssKeyRefreshResult: {
|
|
3525
4167
|
signatureScheme: string;
|
|
3526
4168
|
};
|
|
3527
4169
|
/**
|
|
3528
|
-
*
|
|
4170
|
+
* Lookup450: tangle_primitives::jobs::tss::DKGTSSKeyRotationResult<tangle_testnet_runtime::MaxKeyLen, tangle_testnet_runtime::MaxSignatureLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
|
3529
4171
|
**/
|
|
3530
4172
|
TanglePrimitivesJobsTssDkgtssKeyRotationResult: {
|
|
3531
4173
|
phaseOneId: string;
|
|
@@ -3535,16 +4177,17 @@ declare const _default: {
|
|
|
3535
4177
|
signature: string;
|
|
3536
4178
|
signatureScheme: string;
|
|
3537
4179
|
derivationPath: string;
|
|
4180
|
+
chainCode: string;
|
|
3538
4181
|
};
|
|
3539
4182
|
/**
|
|
3540
|
-
*
|
|
4183
|
+
* Lookup451: tangle_primitives::jobs::zksaas::ZkSaaSCircuitResult<tangle_testnet_runtime::MaxParticipants>
|
|
3541
4184
|
**/
|
|
3542
4185
|
TanglePrimitivesJobsZksaasZkSaaSCircuitResult: {
|
|
3543
4186
|
jobId: string;
|
|
3544
4187
|
participants: string;
|
|
3545
4188
|
};
|
|
3546
4189
|
/**
|
|
3547
|
-
*
|
|
4190
|
+
* Lookup454: tangle_primitives::jobs::zksaas::ZkSaaSProofResult<tangle_testnet_runtime::MaxProofLen>
|
|
3548
4191
|
**/
|
|
3549
4192
|
TanglePrimitivesJobsZksaasZkSaaSProofResult: {
|
|
3550
4193
|
_enum: {
|
|
@@ -3553,25 +4196,25 @@ declare const _default: {
|
|
|
3553
4196
|
};
|
|
3554
4197
|
};
|
|
3555
4198
|
/**
|
|
3556
|
-
*
|
|
4199
|
+
* Lookup455: tangle_primitives::jobs::zksaas::ArkworksProofResult<tangle_testnet_runtime::MaxProofLen>
|
|
3557
4200
|
**/
|
|
3558
4201
|
TanglePrimitivesJobsZksaasArkworksProofResult: {
|
|
3559
4202
|
proof: string;
|
|
3560
4203
|
};
|
|
3561
4204
|
/**
|
|
3562
|
-
*
|
|
4205
|
+
* Lookup457: tangle_primitives::jobs::zksaas::CircomProofResult<tangle_testnet_runtime::MaxProofLen>
|
|
3563
4206
|
**/
|
|
3564
4207
|
TanglePrimitivesJobsZksaasCircomProofResult: {
|
|
3565
4208
|
proof: string;
|
|
3566
4209
|
};
|
|
3567
4210
|
/**
|
|
3568
|
-
*
|
|
4211
|
+
* Lookup458: tangle_primitives::jobs::ValidatorOffenceType
|
|
3569
4212
|
**/
|
|
3570
4213
|
TanglePrimitivesJobsValidatorOffenceType: {
|
|
3571
4214
|
_enum: string[];
|
|
3572
4215
|
};
|
|
3573
4216
|
/**
|
|
3574
|
-
*
|
|
4217
|
+
* Lookup459: tangle_primitives::misbehavior::MisbehaviorSubmission
|
|
3575
4218
|
**/
|
|
3576
4219
|
TanglePrimitivesMisbehaviorMisbehaviorSubmission: {
|
|
3577
4220
|
roleType: string;
|
|
@@ -3580,7 +4223,7 @@ declare const _default: {
|
|
|
3580
4223
|
justification: string;
|
|
3581
4224
|
};
|
|
3582
4225
|
/**
|
|
3583
|
-
*
|
|
4226
|
+
* Lookup460: tangle_primitives::misbehavior::MisbehaviorJustification
|
|
3584
4227
|
**/
|
|
3585
4228
|
TanglePrimitivesMisbehaviorMisbehaviorJustification: {
|
|
3586
4229
|
_enum: {
|
|
@@ -3589,7 +4232,7 @@ declare const _default: {
|
|
|
3589
4232
|
};
|
|
3590
4233
|
};
|
|
3591
4234
|
/**
|
|
3592
|
-
*
|
|
4235
|
+
* Lookup461: tangle_primitives::misbehavior::DKGTSSJustification
|
|
3593
4236
|
**/
|
|
3594
4237
|
TanglePrimitivesMisbehaviorDkgtssJustification: {
|
|
3595
4238
|
_enum: {
|
|
@@ -3598,7 +4241,7 @@ declare const _default: {
|
|
|
3598
4241
|
};
|
|
3599
4242
|
};
|
|
3600
4243
|
/**
|
|
3601
|
-
*
|
|
4244
|
+
* Lookup462: tangle_primitives::misbehavior::dfns_cggmp21::DfnsCGGMP21Justification
|
|
3602
4245
|
**/
|
|
3603
4246
|
TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification: {
|
|
3604
4247
|
_enum: {
|
|
@@ -3620,7 +4263,7 @@ declare const _default: {
|
|
|
3620
4263
|
};
|
|
3621
4264
|
};
|
|
3622
4265
|
/**
|
|
3623
|
-
*
|
|
4266
|
+
* Lookup464: tangle_primitives::misbehavior::dfns_cggmp21::KeygenAborted
|
|
3624
4267
|
**/
|
|
3625
4268
|
TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted: {
|
|
3626
4269
|
_enum: {
|
|
@@ -3642,7 +4285,7 @@ declare const _default: {
|
|
|
3642
4285
|
};
|
|
3643
4286
|
};
|
|
3644
4287
|
/**
|
|
3645
|
-
*
|
|
4288
|
+
* Lookup465: tangle_primitives::misbehavior::SignedRoundMessage
|
|
3646
4289
|
**/
|
|
3647
4290
|
TanglePrimitivesMisbehaviorSignedRoundMessage: {
|
|
3648
4291
|
sender: string;
|
|
@@ -3650,7 +4293,7 @@ declare const _default: {
|
|
|
3650
4293
|
signature: string;
|
|
3651
4294
|
};
|
|
3652
4295
|
/**
|
|
3653
|
-
*
|
|
4296
|
+
* Lookup467: tangle_primitives::misbehavior::dfns_cggmp21::KeyRefreshAborted
|
|
3654
4297
|
**/
|
|
3655
4298
|
TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted: {
|
|
3656
4299
|
_enum: {
|
|
@@ -3675,7 +4318,7 @@ declare const _default: {
|
|
|
3675
4318
|
};
|
|
3676
4319
|
};
|
|
3677
4320
|
/**
|
|
3678
|
-
*
|
|
4321
|
+
* Lookup468: tangle_primitives::misbehavior::dfns_cggmp21::InvalidProofReason
|
|
3679
4322
|
**/
|
|
3680
4323
|
TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason: {
|
|
3681
4324
|
_enum: {
|
|
@@ -3692,13 +4335,13 @@ declare const _default: {
|
|
|
3692
4335
|
};
|
|
3693
4336
|
};
|
|
3694
4337
|
/**
|
|
3695
|
-
*
|
|
4338
|
+
* Lookup469: tangle_primitives::misbehavior::dfns_cggmp21::SigningAborted
|
|
3696
4339
|
**/
|
|
3697
4340
|
TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted: {
|
|
3698
4341
|
_enum: string[];
|
|
3699
4342
|
};
|
|
3700
4343
|
/**
|
|
3701
|
-
*
|
|
4344
|
+
* Lookup470: tangle_primitives::misbehavior::zcash_frost::ZCashFrostJustification
|
|
3702
4345
|
**/
|
|
3703
4346
|
TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification: {
|
|
3704
4347
|
_enum: {
|
|
@@ -3715,7 +4358,7 @@ declare const _default: {
|
|
|
3715
4358
|
};
|
|
3716
4359
|
};
|
|
3717
4360
|
/**
|
|
3718
|
-
*
|
|
4361
|
+
* Lookup471: tangle_primitives::misbehavior::zcash_frost::KeygenAborted
|
|
3719
4362
|
**/
|
|
3720
4363
|
TanglePrimitivesMisbehaviorZcashFrostKeygenAborted: {
|
|
3721
4364
|
_enum: {
|
|
@@ -3729,7 +4372,7 @@ declare const _default: {
|
|
|
3729
4372
|
};
|
|
3730
4373
|
};
|
|
3731
4374
|
/**
|
|
3732
|
-
*
|
|
4375
|
+
* Lookup472: tangle_primitives::misbehavior::zcash_frost::SigningAborted
|
|
3733
4376
|
**/
|
|
3734
4377
|
TanglePrimitivesMisbehaviorZcashFrostSigningAborted: {
|
|
3735
4378
|
_enum: {
|
|
@@ -3740,11 +4383,11 @@ declare const _default: {
|
|
|
3740
4383
|
};
|
|
3741
4384
|
};
|
|
3742
4385
|
/**
|
|
3743
|
-
*
|
|
4386
|
+
* Lookup473: tangle_primitives::misbehavior::ZkSaaSJustification
|
|
3744
4387
|
**/
|
|
3745
4388
|
TanglePrimitivesMisbehaviorZkSaaSJustification: string;
|
|
3746
4389
|
/**
|
|
3747
|
-
*
|
|
4390
|
+
* Lookup474: pallet_dkg::pallet::Call<T>
|
|
3748
4391
|
**/
|
|
3749
4392
|
PalletDkgCall: {
|
|
3750
4393
|
_enum: {
|
|
@@ -3754,7 +4397,7 @@ declare const _default: {
|
|
|
3754
4397
|
};
|
|
3755
4398
|
};
|
|
3756
4399
|
/**
|
|
3757
|
-
*
|
|
4400
|
+
* Lookup475: pallet_zksaas::pallet::Call<T>
|
|
3758
4401
|
**/
|
|
3759
4402
|
PalletZksaasCall: {
|
|
3760
4403
|
_enum: {
|
|
@@ -3764,13 +4407,325 @@ declare const _default: {
|
|
|
3764
4407
|
};
|
|
3765
4408
|
};
|
|
3766
4409
|
/**
|
|
3767
|
-
*
|
|
4410
|
+
* Lookup476: pallet_proxy::pallet::Call<T>
|
|
4411
|
+
**/
|
|
4412
|
+
PalletProxyCall: {
|
|
4413
|
+
_enum: {
|
|
4414
|
+
proxy: {
|
|
4415
|
+
real: string;
|
|
4416
|
+
forceProxyType: string;
|
|
4417
|
+
call: string;
|
|
4418
|
+
};
|
|
4419
|
+
add_proxy: {
|
|
4420
|
+
delegate: string;
|
|
4421
|
+
proxyType: string;
|
|
4422
|
+
delay: string;
|
|
4423
|
+
};
|
|
4424
|
+
remove_proxy: {
|
|
4425
|
+
delegate: string;
|
|
4426
|
+
proxyType: string;
|
|
4427
|
+
delay: string;
|
|
4428
|
+
};
|
|
4429
|
+
remove_proxies: string;
|
|
4430
|
+
create_pure: {
|
|
4431
|
+
proxyType: string;
|
|
4432
|
+
delay: string;
|
|
4433
|
+
index: string;
|
|
4434
|
+
};
|
|
4435
|
+
kill_pure: {
|
|
4436
|
+
spawner: string;
|
|
4437
|
+
proxyType: string;
|
|
4438
|
+
index: string;
|
|
4439
|
+
height: string;
|
|
4440
|
+
extIndex: string;
|
|
4441
|
+
};
|
|
4442
|
+
announce: {
|
|
4443
|
+
real: string;
|
|
4444
|
+
callHash: string;
|
|
4445
|
+
};
|
|
4446
|
+
remove_announcement: {
|
|
4447
|
+
real: string;
|
|
4448
|
+
callHash: string;
|
|
4449
|
+
};
|
|
4450
|
+
reject_announcement: {
|
|
4451
|
+
delegate: string;
|
|
4452
|
+
callHash: string;
|
|
4453
|
+
};
|
|
4454
|
+
proxy_announced: {
|
|
4455
|
+
delegate: string;
|
|
4456
|
+
real: string;
|
|
4457
|
+
forceProxyType: string;
|
|
4458
|
+
call: string;
|
|
4459
|
+
};
|
|
4460
|
+
};
|
|
4461
|
+
};
|
|
4462
|
+
/**
|
|
4463
|
+
* Lookup478: pallet_multi_asset_delegation::pallet::Call<T>
|
|
4464
|
+
**/
|
|
4465
|
+
PalletMultiAssetDelegationCall: {
|
|
4466
|
+
_enum: {
|
|
4467
|
+
join_operators: {
|
|
4468
|
+
bondAmount: string;
|
|
4469
|
+
};
|
|
4470
|
+
schedule_leave_operators: string;
|
|
4471
|
+
cancel_leave_operators: string;
|
|
4472
|
+
execute_leave_operators: string;
|
|
4473
|
+
operator_bond_more: {
|
|
4474
|
+
additionalBond: string;
|
|
4475
|
+
};
|
|
4476
|
+
schedule_operator_bond_less: {
|
|
4477
|
+
bondLessAmount: string;
|
|
4478
|
+
};
|
|
4479
|
+
execute_operator_bond_less: string;
|
|
4480
|
+
cancel_operator_bond_less: string;
|
|
4481
|
+
go_offline: string;
|
|
4482
|
+
go_online: string;
|
|
4483
|
+
deposit: {
|
|
4484
|
+
assetId: string;
|
|
4485
|
+
amount: string;
|
|
4486
|
+
};
|
|
4487
|
+
schedule_unstake: {
|
|
4488
|
+
assetId: string;
|
|
4489
|
+
amount: string;
|
|
4490
|
+
};
|
|
4491
|
+
execute_unstake: string;
|
|
4492
|
+
cancel_unstake: string;
|
|
4493
|
+
delegate: {
|
|
4494
|
+
operator: string;
|
|
4495
|
+
assetId: string;
|
|
4496
|
+
amount: string;
|
|
4497
|
+
};
|
|
4498
|
+
schedule_delegator_bond_less: {
|
|
4499
|
+
operator: string;
|
|
4500
|
+
assetId: string;
|
|
4501
|
+
amount: string;
|
|
4502
|
+
};
|
|
4503
|
+
execute_delegator_bond_less: string;
|
|
4504
|
+
cancel_delegator_bond_less: string;
|
|
4505
|
+
set_whitelisted_assets: {
|
|
4506
|
+
assets: string;
|
|
4507
|
+
};
|
|
4508
|
+
set_incentive_apy_and_cap: {
|
|
4509
|
+
assetId: string;
|
|
4510
|
+
apy: string;
|
|
4511
|
+
cap: string;
|
|
4512
|
+
};
|
|
4513
|
+
whitelist_blueprint_for_rewards: {
|
|
4514
|
+
blueprintId: string;
|
|
4515
|
+
};
|
|
4516
|
+
};
|
|
4517
|
+
};
|
|
4518
|
+
/**
|
|
4519
|
+
* Lookup479: sygma_access_segregator::pallet::Call<T>
|
|
4520
|
+
**/
|
|
4521
|
+
SygmaAccessSegregatorCall: {
|
|
4522
|
+
_enum: {
|
|
4523
|
+
grant_access: {
|
|
4524
|
+
palletIndex: string;
|
|
4525
|
+
extrinsicName: string;
|
|
4526
|
+
who: string;
|
|
4527
|
+
};
|
|
4528
|
+
};
|
|
4529
|
+
};
|
|
4530
|
+
/**
|
|
4531
|
+
* Lookup480: sygma_basic_feehandler::pallet::Call<T>
|
|
4532
|
+
**/
|
|
4533
|
+
SygmaBasicFeehandlerCall: {
|
|
4534
|
+
_enum: {
|
|
4535
|
+
set_fee: {
|
|
4536
|
+
domain: string;
|
|
4537
|
+
asset: string;
|
|
4538
|
+
amount: string;
|
|
4539
|
+
};
|
|
4540
|
+
};
|
|
4541
|
+
};
|
|
4542
|
+
/**
|
|
4543
|
+
* Lookup481: sygma_fee_handler_router::pallet::Call<T>
|
|
4544
|
+
**/
|
|
4545
|
+
SygmaFeeHandlerRouterCall: {
|
|
4546
|
+
_enum: {
|
|
4547
|
+
set_fee_handler: {
|
|
4548
|
+
domain: string;
|
|
4549
|
+
asset: string;
|
|
4550
|
+
handlerType: string;
|
|
4551
|
+
};
|
|
4552
|
+
};
|
|
4553
|
+
};
|
|
4554
|
+
/**
|
|
4555
|
+
* Lookup482: sygma_percentage_feehandler::pallet::Call<T>
|
|
4556
|
+
**/
|
|
4557
|
+
SygmaPercentageFeehandlerCall: {
|
|
4558
|
+
_enum: {
|
|
4559
|
+
set_fee_rate: {
|
|
4560
|
+
domain: string;
|
|
4561
|
+
asset: string;
|
|
4562
|
+
feeRateBasisPoint: string;
|
|
4563
|
+
feeLowerBound: string;
|
|
4564
|
+
feeUpperBound: string;
|
|
4565
|
+
};
|
|
4566
|
+
};
|
|
4567
|
+
};
|
|
4568
|
+
/**
|
|
4569
|
+
* Lookup483: sygma_bridge::pallet::Call<T>
|
|
4570
|
+
**/
|
|
4571
|
+
SygmaBridgeCall: {
|
|
4572
|
+
_enum: {
|
|
4573
|
+
pause_bridge: {
|
|
4574
|
+
destDomainId: string;
|
|
4575
|
+
};
|
|
4576
|
+
unpause_bridge: {
|
|
4577
|
+
destDomainId: string;
|
|
4578
|
+
};
|
|
4579
|
+
set_mpc_address: {
|
|
4580
|
+
addr: string;
|
|
4581
|
+
};
|
|
4582
|
+
register_domain: {
|
|
4583
|
+
destDomainId: string;
|
|
4584
|
+
destChainId: string;
|
|
4585
|
+
};
|
|
4586
|
+
unregister_domain: {
|
|
4587
|
+
destDomainId: string;
|
|
4588
|
+
destChainId: string;
|
|
4589
|
+
};
|
|
4590
|
+
deposit: {
|
|
4591
|
+
asset: string;
|
|
4592
|
+
dest: string;
|
|
4593
|
+
};
|
|
4594
|
+
retry: {
|
|
4595
|
+
depositOnBlockHeight: string;
|
|
4596
|
+
destDomainId: string;
|
|
4597
|
+
};
|
|
4598
|
+
execute_proposal: {
|
|
4599
|
+
proposals: string;
|
|
4600
|
+
signature: string;
|
|
4601
|
+
};
|
|
4602
|
+
pause_all_bridges: string;
|
|
4603
|
+
unpause_all_bridges: string;
|
|
4604
|
+
};
|
|
4605
|
+
};
|
|
4606
|
+
/**
|
|
4607
|
+
* Lookup484: sygma_traits::MpcAddress
|
|
4608
|
+
**/
|
|
4609
|
+
SygmaTraitsMpcAddress: string;
|
|
4610
|
+
/**
|
|
4611
|
+
* Lookup485: staging_xcm::v4::asset::Asset
|
|
4612
|
+
**/
|
|
4613
|
+
StagingXcmV4Asset: {
|
|
4614
|
+
id: string;
|
|
4615
|
+
fun: string;
|
|
4616
|
+
};
|
|
4617
|
+
/**
|
|
4618
|
+
* Lookup486: staging_xcm::v4::asset::Fungibility
|
|
4619
|
+
**/
|
|
4620
|
+
StagingXcmV4AssetFungibility: {
|
|
4621
|
+
_enum: {
|
|
4622
|
+
Fungible: string;
|
|
4623
|
+
NonFungible: string;
|
|
4624
|
+
};
|
|
4625
|
+
};
|
|
4626
|
+
/**
|
|
4627
|
+
* Lookup487: staging_xcm::v4::asset::AssetInstance
|
|
4628
|
+
**/
|
|
4629
|
+
StagingXcmV4AssetAssetInstance: {
|
|
4630
|
+
_enum: {
|
|
4631
|
+
Undefined: string;
|
|
4632
|
+
Index: string;
|
|
4633
|
+
Array4: string;
|
|
4634
|
+
Array8: string;
|
|
4635
|
+
Array16: string;
|
|
4636
|
+
Array32: string;
|
|
4637
|
+
};
|
|
4638
|
+
};
|
|
4639
|
+
/**
|
|
4640
|
+
* Lookup489: sygma_bridge::pallet::Proposal
|
|
4641
|
+
**/
|
|
4642
|
+
SygmaBridgeProposal: {
|
|
4643
|
+
originDomainId: string;
|
|
4644
|
+
depositNonce: string;
|
|
4645
|
+
resourceId: string;
|
|
4646
|
+
data: string;
|
|
4647
|
+
};
|
|
4648
|
+
/**
|
|
4649
|
+
* Lookup490: pallet_sudo::pallet::Error<T>
|
|
3768
4650
|
**/
|
|
3769
4651
|
PalletSudoError: {
|
|
3770
4652
|
_enum: string[];
|
|
3771
4653
|
};
|
|
3772
4654
|
/**
|
|
3773
|
-
*
|
|
4655
|
+
* Lookup492: pallet_assets::types::AssetDetails<Balance, sp_core::crypto::AccountId32, DepositBalance>
|
|
4656
|
+
**/
|
|
4657
|
+
PalletAssetsAssetDetails: {
|
|
4658
|
+
owner: string;
|
|
4659
|
+
issuer: string;
|
|
4660
|
+
admin: string;
|
|
4661
|
+
freezer: string;
|
|
4662
|
+
supply: string;
|
|
4663
|
+
deposit: string;
|
|
4664
|
+
minBalance: string;
|
|
4665
|
+
isSufficient: string;
|
|
4666
|
+
accounts: string;
|
|
4667
|
+
sufficients: string;
|
|
4668
|
+
approvals: string;
|
|
4669
|
+
status: string;
|
|
4670
|
+
};
|
|
4671
|
+
/**
|
|
4672
|
+
* Lookup493: pallet_assets::types::AssetStatus
|
|
4673
|
+
**/
|
|
4674
|
+
PalletAssetsAssetStatus: {
|
|
4675
|
+
_enum: string[];
|
|
4676
|
+
};
|
|
4677
|
+
/**
|
|
4678
|
+
* Lookup495: pallet_assets::types::AssetAccount<Balance, DepositBalance, Extra, sp_core::crypto::AccountId32>
|
|
4679
|
+
**/
|
|
4680
|
+
PalletAssetsAssetAccount: {
|
|
4681
|
+
balance: string;
|
|
4682
|
+
status: string;
|
|
4683
|
+
reason: string;
|
|
4684
|
+
extra: string;
|
|
4685
|
+
};
|
|
4686
|
+
/**
|
|
4687
|
+
* Lookup496: pallet_assets::types::AccountStatus
|
|
4688
|
+
**/
|
|
4689
|
+
PalletAssetsAccountStatus: {
|
|
4690
|
+
_enum: string[];
|
|
4691
|
+
};
|
|
4692
|
+
/**
|
|
4693
|
+
* Lookup497: pallet_assets::types::ExistenceReason<Balance, sp_core::crypto::AccountId32>
|
|
4694
|
+
**/
|
|
4695
|
+
PalletAssetsExistenceReason: {
|
|
4696
|
+
_enum: {
|
|
4697
|
+
Consumer: string;
|
|
4698
|
+
Sufficient: string;
|
|
4699
|
+
DepositHeld: string;
|
|
4700
|
+
DepositRefunded: string;
|
|
4701
|
+
DepositFrom: string;
|
|
4702
|
+
};
|
|
4703
|
+
};
|
|
4704
|
+
/**
|
|
4705
|
+
* Lookup499: pallet_assets::types::Approval<Balance, DepositBalance>
|
|
4706
|
+
**/
|
|
4707
|
+
PalletAssetsApproval: {
|
|
4708
|
+
amount: string;
|
|
4709
|
+
deposit: string;
|
|
4710
|
+
};
|
|
4711
|
+
/**
|
|
4712
|
+
* Lookup500: pallet_assets::types::AssetMetadata<DepositBalance, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
4713
|
+
**/
|
|
4714
|
+
PalletAssetsAssetMetadata: {
|
|
4715
|
+
deposit: string;
|
|
4716
|
+
name: string;
|
|
4717
|
+
symbol: string;
|
|
4718
|
+
decimals: string;
|
|
4719
|
+
isFrozen: string;
|
|
4720
|
+
};
|
|
4721
|
+
/**
|
|
4722
|
+
* Lookup502: pallet_assets::pallet::Error<T, I>
|
|
4723
|
+
**/
|
|
4724
|
+
PalletAssetsError: {
|
|
4725
|
+
_enum: string[];
|
|
4726
|
+
};
|
|
4727
|
+
/**
|
|
4728
|
+
* Lookup504: pallet_balances::types::BalanceLock<Balance>
|
|
3774
4729
|
**/
|
|
3775
4730
|
PalletBalancesBalanceLock: {
|
|
3776
4731
|
id: string;
|
|
@@ -3778,27 +4733,27 @@ declare const _default: {
|
|
|
3778
4733
|
reasons: string;
|
|
3779
4734
|
};
|
|
3780
4735
|
/**
|
|
3781
|
-
*
|
|
4736
|
+
* Lookup505: pallet_balances::types::Reasons
|
|
3782
4737
|
**/
|
|
3783
4738
|
PalletBalancesReasons: {
|
|
3784
4739
|
_enum: string[];
|
|
3785
4740
|
};
|
|
3786
4741
|
/**
|
|
3787
|
-
*
|
|
4742
|
+
* Lookup508: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
3788
4743
|
**/
|
|
3789
4744
|
PalletBalancesReserveData: {
|
|
3790
4745
|
id: string;
|
|
3791
4746
|
amount: string;
|
|
3792
4747
|
};
|
|
3793
4748
|
/**
|
|
3794
|
-
*
|
|
4749
|
+
* Lookup511: pallet_balances::types::IdAmount<tangle_testnet_runtime::RuntimeHoldReason, Balance>
|
|
3795
4750
|
**/
|
|
3796
4751
|
PalletBalancesIdAmountRuntimeHoldReason: {
|
|
3797
4752
|
id: string;
|
|
3798
4753
|
amount: string;
|
|
3799
4754
|
};
|
|
3800
4755
|
/**
|
|
3801
|
-
*
|
|
4756
|
+
* Lookup512: tangle_testnet_runtime::RuntimeHoldReason
|
|
3802
4757
|
**/
|
|
3803
4758
|
TangleTestnetRuntimeRuntimeHoldReason: {
|
|
3804
4759
|
_enum: {
|
|
@@ -3826,24 +4781,25 @@ declare const _default: {
|
|
|
3826
4781
|
__Unused21: string;
|
|
3827
4782
|
__Unused22: string;
|
|
3828
4783
|
__Unused23: string;
|
|
4784
|
+
__Unused24: string;
|
|
3829
4785
|
Preimage: string;
|
|
3830
4786
|
};
|
|
3831
4787
|
};
|
|
3832
4788
|
/**
|
|
3833
|
-
*
|
|
4789
|
+
* Lookup513: pallet_preimage::pallet::HoldReason
|
|
3834
4790
|
**/
|
|
3835
4791
|
PalletPreimageHoldReason: {
|
|
3836
4792
|
_enum: string[];
|
|
3837
4793
|
};
|
|
3838
4794
|
/**
|
|
3839
|
-
*
|
|
4795
|
+
* Lookup516: pallet_balances::types::IdAmount<tangle_testnet_runtime::RuntimeFreezeReason, Balance>
|
|
3840
4796
|
**/
|
|
3841
4797
|
PalletBalancesIdAmountRuntimeFreezeReason: {
|
|
3842
4798
|
id: string;
|
|
3843
4799
|
amount: string;
|
|
3844
4800
|
};
|
|
3845
4801
|
/**
|
|
3846
|
-
*
|
|
4802
|
+
* Lookup517: tangle_testnet_runtime::RuntimeFreezeReason
|
|
3847
4803
|
**/
|
|
3848
4804
|
TangleTestnetRuntimeRuntimeFreezeReason: {
|
|
3849
4805
|
_enum: {
|
|
@@ -3869,29 +4825,30 @@ declare const _default: {
|
|
|
3869
4825
|
__Unused19: string;
|
|
3870
4826
|
__Unused20: string;
|
|
3871
4827
|
__Unused21: string;
|
|
4828
|
+
__Unused22: string;
|
|
3872
4829
|
NominationPools: string;
|
|
3873
4830
|
};
|
|
3874
4831
|
};
|
|
3875
4832
|
/**
|
|
3876
|
-
*
|
|
4833
|
+
* Lookup518: pallet_nomination_pools::pallet::FreezeReason
|
|
3877
4834
|
**/
|
|
3878
4835
|
PalletNominationPoolsFreezeReason: {
|
|
3879
4836
|
_enum: string[];
|
|
3880
4837
|
};
|
|
3881
4838
|
/**
|
|
3882
|
-
*
|
|
4839
|
+
* Lookup520: pallet_balances::pallet::Error<T, I>
|
|
3883
4840
|
**/
|
|
3884
4841
|
PalletBalancesError: {
|
|
3885
4842
|
_enum: string[];
|
|
3886
4843
|
};
|
|
3887
4844
|
/**
|
|
3888
|
-
*
|
|
4845
|
+
* Lookup522: pallet_transaction_payment::Releases
|
|
3889
4846
|
**/
|
|
3890
4847
|
PalletTransactionPaymentReleases: {
|
|
3891
4848
|
_enum: string[];
|
|
3892
4849
|
};
|
|
3893
4850
|
/**
|
|
3894
|
-
*
|
|
4851
|
+
* Lookup529: sp_consensus_babe::digests::PreDigest
|
|
3895
4852
|
**/
|
|
3896
4853
|
SpConsensusBabeDigestsPreDigest: {
|
|
3897
4854
|
_enum: {
|
|
@@ -3902,7 +4859,7 @@ declare const _default: {
|
|
|
3902
4859
|
};
|
|
3903
4860
|
};
|
|
3904
4861
|
/**
|
|
3905
|
-
*
|
|
4862
|
+
* Lookup530: sp_consensus_babe::digests::PrimaryPreDigest
|
|
3906
4863
|
**/
|
|
3907
4864
|
SpConsensusBabeDigestsPrimaryPreDigest: {
|
|
3908
4865
|
authorityIndex: string;
|
|
@@ -3910,21 +4867,21 @@ declare const _default: {
|
|
|
3910
4867
|
vrfSignature: string;
|
|
3911
4868
|
};
|
|
3912
4869
|
/**
|
|
3913
|
-
*
|
|
4870
|
+
* Lookup531: sp_core::sr25519::vrf::VrfSignature
|
|
3914
4871
|
**/
|
|
3915
4872
|
SpCoreSr25519VrfVrfSignature: {
|
|
3916
4873
|
preOutput: string;
|
|
3917
4874
|
proof: string;
|
|
3918
4875
|
};
|
|
3919
4876
|
/**
|
|
3920
|
-
*
|
|
4877
|
+
* Lookup532: sp_consensus_babe::digests::SecondaryPlainPreDigest
|
|
3921
4878
|
**/
|
|
3922
4879
|
SpConsensusBabeDigestsSecondaryPlainPreDigest: {
|
|
3923
4880
|
authorityIndex: string;
|
|
3924
4881
|
slot: string;
|
|
3925
4882
|
};
|
|
3926
4883
|
/**
|
|
3927
|
-
*
|
|
4884
|
+
* Lookup533: sp_consensus_babe::digests::SecondaryVRFPreDigest
|
|
3928
4885
|
**/
|
|
3929
4886
|
SpConsensusBabeDigestsSecondaryVRFPreDigest: {
|
|
3930
4887
|
authorityIndex: string;
|
|
@@ -3932,20 +4889,20 @@ declare const _default: {
|
|
|
3932
4889
|
vrfSignature: string;
|
|
3933
4890
|
};
|
|
3934
4891
|
/**
|
|
3935
|
-
*
|
|
4892
|
+
* Lookup534: sp_consensus_babe::BabeEpochConfiguration
|
|
3936
4893
|
**/
|
|
3937
4894
|
SpConsensusBabeBabeEpochConfiguration: {
|
|
3938
4895
|
c: string;
|
|
3939
4896
|
allowedSlots: string;
|
|
3940
4897
|
};
|
|
3941
4898
|
/**
|
|
3942
|
-
*
|
|
4899
|
+
* Lookup536: pallet_babe::pallet::Error<T>
|
|
3943
4900
|
**/
|
|
3944
4901
|
PalletBabeError: {
|
|
3945
4902
|
_enum: string[];
|
|
3946
4903
|
};
|
|
3947
4904
|
/**
|
|
3948
|
-
*
|
|
4905
|
+
* Lookup537: pallet_grandpa::StoredState<N>
|
|
3949
4906
|
**/
|
|
3950
4907
|
PalletGrandpaStoredState: {
|
|
3951
4908
|
_enum: {
|
|
@@ -3962,7 +4919,7 @@ declare const _default: {
|
|
|
3962
4919
|
};
|
|
3963
4920
|
};
|
|
3964
4921
|
/**
|
|
3965
|
-
*
|
|
4922
|
+
* Lookup538: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
3966
4923
|
**/
|
|
3967
4924
|
PalletGrandpaStoredPendingChange: {
|
|
3968
4925
|
scheduledAt: string;
|
|
@@ -3971,19 +4928,19 @@ declare const _default: {
|
|
|
3971
4928
|
forced: string;
|
|
3972
4929
|
};
|
|
3973
4930
|
/**
|
|
3974
|
-
*
|
|
4931
|
+
* Lookup540: pallet_grandpa::pallet::Error<T>
|
|
3975
4932
|
**/
|
|
3976
4933
|
PalletGrandpaError: {
|
|
3977
4934
|
_enum: string[];
|
|
3978
4935
|
};
|
|
3979
4936
|
/**
|
|
3980
|
-
*
|
|
4937
|
+
* Lookup542: pallet_indices::pallet::Error<T>
|
|
3981
4938
|
**/
|
|
3982
4939
|
PalletIndicesError: {
|
|
3983
4940
|
_enum: string[];
|
|
3984
4941
|
};
|
|
3985
4942
|
/**
|
|
3986
|
-
*
|
|
4943
|
+
* Lookup547: pallet_democracy::types::ReferendumInfo<BlockNumber, frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>, Balance>
|
|
3987
4944
|
**/
|
|
3988
4945
|
PalletDemocracyReferendumInfo: {
|
|
3989
4946
|
_enum: {
|
|
@@ -3995,7 +4952,7 @@ declare const _default: {
|
|
|
3995
4952
|
};
|
|
3996
4953
|
};
|
|
3997
4954
|
/**
|
|
3998
|
-
*
|
|
4955
|
+
* Lookup548: pallet_democracy::types::ReferendumStatus<BlockNumber, frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>, Balance>
|
|
3999
4956
|
**/
|
|
4000
4957
|
PalletDemocracyReferendumStatus: {
|
|
4001
4958
|
end: string;
|
|
@@ -4005,7 +4962,7 @@ declare const _default: {
|
|
|
4005
4962
|
tally: string;
|
|
4006
4963
|
};
|
|
4007
4964
|
/**
|
|
4008
|
-
*
|
|
4965
|
+
* Lookup549: pallet_democracy::types::Tally<Balance>
|
|
4009
4966
|
**/
|
|
4010
4967
|
PalletDemocracyTally: {
|
|
4011
4968
|
ayes: string;
|
|
@@ -4013,7 +4970,7 @@ declare const _default: {
|
|
|
4013
4970
|
turnout: string;
|
|
4014
4971
|
};
|
|
4015
4972
|
/**
|
|
4016
|
-
*
|
|
4973
|
+
* Lookup550: pallet_democracy::vote::Voting<Balance, sp_core::crypto::AccountId32, BlockNumber, MaxVotes>
|
|
4017
4974
|
**/
|
|
4018
4975
|
PalletDemocracyVoteVoting: {
|
|
4019
4976
|
_enum: {
|
|
@@ -4032,24 +4989,24 @@ declare const _default: {
|
|
|
4032
4989
|
};
|
|
4033
4990
|
};
|
|
4034
4991
|
/**
|
|
4035
|
-
*
|
|
4992
|
+
* Lookup554: pallet_democracy::types::Delegations<Balance>
|
|
4036
4993
|
**/
|
|
4037
4994
|
PalletDemocracyDelegations: {
|
|
4038
4995
|
votes: string;
|
|
4039
4996
|
capital: string;
|
|
4040
4997
|
};
|
|
4041
4998
|
/**
|
|
4042
|
-
*
|
|
4999
|
+
* Lookup555: pallet_democracy::vote::PriorLock<BlockNumber, Balance>
|
|
4043
5000
|
**/
|
|
4044
5001
|
PalletDemocracyVotePriorLock: string;
|
|
4045
5002
|
/**
|
|
4046
|
-
*
|
|
5003
|
+
* Lookup558: pallet_democracy::pallet::Error<T>
|
|
4047
5004
|
**/
|
|
4048
5005
|
PalletDemocracyError: {
|
|
4049
5006
|
_enum: string[];
|
|
4050
5007
|
};
|
|
4051
5008
|
/**
|
|
4052
|
-
*
|
|
5009
|
+
* Lookup560: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>
|
|
4053
5010
|
**/
|
|
4054
5011
|
PalletCollectiveVotes: {
|
|
4055
5012
|
index: string;
|
|
@@ -4059,25 +5016,25 @@ declare const _default: {
|
|
|
4059
5016
|
end: string;
|
|
4060
5017
|
};
|
|
4061
5018
|
/**
|
|
4062
|
-
*
|
|
5019
|
+
* Lookup561: pallet_collective::pallet::Error<T, I>
|
|
4063
5020
|
**/
|
|
4064
5021
|
PalletCollectiveError: {
|
|
4065
5022
|
_enum: string[];
|
|
4066
5023
|
};
|
|
4067
5024
|
/**
|
|
4068
|
-
*
|
|
5025
|
+
* Lookup564: pallet_vesting::Releases
|
|
4069
5026
|
**/
|
|
4070
5027
|
PalletVestingReleases: {
|
|
4071
5028
|
_enum: string[];
|
|
4072
5029
|
};
|
|
4073
5030
|
/**
|
|
4074
|
-
*
|
|
5031
|
+
* Lookup565: pallet_vesting::pallet::Error<T>
|
|
4075
5032
|
**/
|
|
4076
5033
|
PalletVestingError: {
|
|
4077
5034
|
_enum: string[];
|
|
4078
5035
|
};
|
|
4079
5036
|
/**
|
|
4080
|
-
*
|
|
5037
|
+
* Lookup567: pallet_elections_phragmen::SeatHolder<sp_core::crypto::AccountId32, Balance>
|
|
4081
5038
|
**/
|
|
4082
5039
|
PalletElectionsPhragmenSeatHolder: {
|
|
4083
5040
|
who: string;
|
|
@@ -4085,7 +5042,7 @@ declare const _default: {
|
|
|
4085
5042
|
deposit: string;
|
|
4086
5043
|
};
|
|
4087
5044
|
/**
|
|
4088
|
-
*
|
|
5045
|
+
* Lookup568: pallet_elections_phragmen::Voter<sp_core::crypto::AccountId32, Balance>
|
|
4089
5046
|
**/
|
|
4090
5047
|
PalletElectionsPhragmenVoter: {
|
|
4091
5048
|
votes: string;
|
|
@@ -4093,13 +5050,13 @@ declare const _default: {
|
|
|
4093
5050
|
deposit: string;
|
|
4094
5051
|
};
|
|
4095
5052
|
/**
|
|
4096
|
-
*
|
|
5053
|
+
* Lookup569: pallet_elections_phragmen::pallet::Error<T>
|
|
4097
5054
|
**/
|
|
4098
5055
|
PalletElectionsPhragmenError: {
|
|
4099
5056
|
_enum: string[];
|
|
4100
5057
|
};
|
|
4101
5058
|
/**
|
|
4102
|
-
*
|
|
5059
|
+
* Lookup570: pallet_election_provider_multi_phase::ReadySolution<AccountId, MaxWinners>
|
|
4103
5060
|
**/
|
|
4104
5061
|
PalletElectionProviderMultiPhaseReadySolution: {
|
|
4105
5062
|
supports: string;
|
|
@@ -4107,14 +5064,14 @@ declare const _default: {
|
|
|
4107
5064
|
compute: string;
|
|
4108
5065
|
};
|
|
4109
5066
|
/**
|
|
4110
|
-
*
|
|
5067
|
+
* Lookup572: pallet_election_provider_multi_phase::RoundSnapshot<sp_core::crypto::AccountId32, DataProvider>
|
|
4111
5068
|
**/
|
|
4112
5069
|
PalletElectionProviderMultiPhaseRoundSnapshot: {
|
|
4113
5070
|
voters: string;
|
|
4114
5071
|
targets: string;
|
|
4115
5072
|
};
|
|
4116
5073
|
/**
|
|
4117
|
-
*
|
|
5074
|
+
* Lookup579: pallet_election_provider_multi_phase::signed::SignedSubmission<sp_core::crypto::AccountId32, Balance, tangle_testnet_runtime::NposSolution16>
|
|
4118
5075
|
**/
|
|
4119
5076
|
PalletElectionProviderMultiPhaseSignedSignedSubmission: {
|
|
4120
5077
|
who: string;
|
|
@@ -4123,13 +5080,13 @@ declare const _default: {
|
|
|
4123
5080
|
callFee: string;
|
|
4124
5081
|
};
|
|
4125
5082
|
/**
|
|
4126
|
-
*
|
|
5083
|
+
* Lookup580: pallet_election_provider_multi_phase::pallet::Error<T>
|
|
4127
5084
|
**/
|
|
4128
5085
|
PalletElectionProviderMultiPhaseError: {
|
|
4129
5086
|
_enum: string[];
|
|
4130
5087
|
};
|
|
4131
5088
|
/**
|
|
4132
|
-
*
|
|
5089
|
+
* Lookup581: pallet_staking::StakingLedger<T>
|
|
4133
5090
|
**/
|
|
4134
5091
|
PalletStakingStakingLedger: {
|
|
4135
5092
|
stash: string;
|
|
@@ -4139,14 +5096,14 @@ declare const _default: {
|
|
|
4139
5096
|
legacyClaimedRewards: string;
|
|
4140
5097
|
};
|
|
4141
5098
|
/**
|
|
4142
|
-
*
|
|
5099
|
+
* Lookup583: pallet_staking::UnlockChunk<Balance>
|
|
4143
5100
|
**/
|
|
4144
5101
|
PalletStakingUnlockChunk: {
|
|
4145
5102
|
value: string;
|
|
4146
5103
|
era: string;
|
|
4147
5104
|
};
|
|
4148
5105
|
/**
|
|
4149
|
-
*
|
|
5106
|
+
* Lookup586: pallet_staking::Nominations<T>
|
|
4150
5107
|
**/
|
|
4151
5108
|
PalletStakingNominations: {
|
|
4152
5109
|
targets: string;
|
|
@@ -4154,14 +5111,14 @@ declare const _default: {
|
|
|
4154
5111
|
suppressed: string;
|
|
4155
5112
|
};
|
|
4156
5113
|
/**
|
|
4157
|
-
*
|
|
5114
|
+
* Lookup587: pallet_staking::ActiveEraInfo
|
|
4158
5115
|
**/
|
|
4159
5116
|
PalletStakingActiveEraInfo: {
|
|
4160
5117
|
index: string;
|
|
4161
5118
|
start: string;
|
|
4162
5119
|
};
|
|
4163
5120
|
/**
|
|
4164
|
-
*
|
|
5121
|
+
* Lookup589: sp_staking::PagedExposureMetadata<Balance>
|
|
4165
5122
|
**/
|
|
4166
5123
|
SpStakingPagedExposureMetadata: {
|
|
4167
5124
|
total: string;
|
|
@@ -4170,21 +5127,21 @@ declare const _default: {
|
|
|
4170
5127
|
pageCount: string;
|
|
4171
5128
|
};
|
|
4172
5129
|
/**
|
|
4173
|
-
*
|
|
5130
|
+
* Lookup591: sp_staking::ExposurePage<sp_core::crypto::AccountId32, Balance>
|
|
4174
5131
|
**/
|
|
4175
5132
|
SpStakingExposurePage: {
|
|
4176
5133
|
pageTotal: string;
|
|
4177
5134
|
others: string;
|
|
4178
5135
|
};
|
|
4179
5136
|
/**
|
|
4180
|
-
*
|
|
5137
|
+
* Lookup592: pallet_staking::EraRewardPoints<sp_core::crypto::AccountId32>
|
|
4181
5138
|
**/
|
|
4182
5139
|
PalletStakingEraRewardPoints: {
|
|
4183
5140
|
total: string;
|
|
4184
5141
|
individual: string;
|
|
4185
5142
|
};
|
|
4186
5143
|
/**
|
|
4187
|
-
*
|
|
5144
|
+
* Lookup597: pallet_staking::UnappliedSlash<sp_core::crypto::AccountId32, Balance>
|
|
4188
5145
|
**/
|
|
4189
5146
|
PalletStakingUnappliedSlash: {
|
|
4190
5147
|
validator: string;
|
|
@@ -4194,7 +5151,7 @@ declare const _default: {
|
|
|
4194
5151
|
payout: string;
|
|
4195
5152
|
};
|
|
4196
5153
|
/**
|
|
4197
|
-
*
|
|
5154
|
+
* Lookup601: pallet_staking::slashing::SlashingSpans
|
|
4198
5155
|
**/
|
|
4199
5156
|
PalletStakingSlashingSlashingSpans: {
|
|
4200
5157
|
spanIndex: string;
|
|
@@ -4203,30 +5160,30 @@ declare const _default: {
|
|
|
4203
5160
|
prior: string;
|
|
4204
5161
|
};
|
|
4205
5162
|
/**
|
|
4206
|
-
*
|
|
5163
|
+
* Lookup602: pallet_staking::slashing::SpanRecord<Balance>
|
|
4207
5164
|
**/
|
|
4208
5165
|
PalletStakingSlashingSpanRecord: {
|
|
4209
5166
|
slashed: string;
|
|
4210
5167
|
paidOut: string;
|
|
4211
5168
|
};
|
|
4212
5169
|
/**
|
|
4213
|
-
*
|
|
5170
|
+
* Lookup605: pallet_staking::pallet::pallet::Error<T>
|
|
4214
5171
|
**/
|
|
4215
5172
|
PalletStakingPalletError: {
|
|
4216
5173
|
_enum: string[];
|
|
4217
5174
|
};
|
|
4218
5175
|
/**
|
|
4219
|
-
*
|
|
5176
|
+
* Lookup609: sp_core::crypto::KeyTypeId
|
|
4220
5177
|
**/
|
|
4221
5178
|
SpCoreCryptoKeyTypeId: string;
|
|
4222
5179
|
/**
|
|
4223
|
-
*
|
|
5180
|
+
* Lookup610: pallet_session::pallet::Error<T>
|
|
4224
5181
|
**/
|
|
4225
5182
|
PalletSessionError: {
|
|
4226
5183
|
_enum: string[];
|
|
4227
5184
|
};
|
|
4228
5185
|
/**
|
|
4229
|
-
*
|
|
5186
|
+
* Lookup612: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
|
|
4230
5187
|
**/
|
|
4231
5188
|
PalletTreasuryProposal: {
|
|
4232
5189
|
proposer: string;
|
|
@@ -4235,7 +5192,7 @@ declare const _default: {
|
|
|
4235
5192
|
bond: string;
|
|
4236
5193
|
};
|
|
4237
5194
|
/**
|
|
4238
|
-
*
|
|
5195
|
+
* Lookup614: pallet_treasury::SpendStatus<AssetKind, AssetBalance, sp_core::crypto::AccountId32, BlockNumber, PaymentId>
|
|
4239
5196
|
**/
|
|
4240
5197
|
PalletTreasurySpendStatus: {
|
|
4241
5198
|
assetKind: string;
|
|
@@ -4246,7 +5203,7 @@ declare const _default: {
|
|
|
4246
5203
|
status: string;
|
|
4247
5204
|
};
|
|
4248
5205
|
/**
|
|
4249
|
-
*
|
|
5206
|
+
* Lookup615: pallet_treasury::PaymentState<Id>
|
|
4250
5207
|
**/
|
|
4251
5208
|
PalletTreasuryPaymentState: {
|
|
4252
5209
|
_enum: {
|
|
@@ -4258,17 +5215,17 @@ declare const _default: {
|
|
|
4258
5215
|
};
|
|
4259
5216
|
};
|
|
4260
5217
|
/**
|
|
4261
|
-
*
|
|
5218
|
+
* Lookup616: frame_support::PalletId
|
|
4262
5219
|
**/
|
|
4263
5220
|
FrameSupportPalletId: string;
|
|
4264
5221
|
/**
|
|
4265
|
-
*
|
|
5222
|
+
* Lookup617: pallet_treasury::pallet::Error<T, I>
|
|
4266
5223
|
**/
|
|
4267
5224
|
PalletTreasuryError: {
|
|
4268
5225
|
_enum: string[];
|
|
4269
5226
|
};
|
|
4270
5227
|
/**
|
|
4271
|
-
*
|
|
5228
|
+
* Lookup618: pallet_bounties::Bounty<sp_core::crypto::AccountId32, Balance, BlockNumber>
|
|
4272
5229
|
**/
|
|
4273
5230
|
PalletBountiesBounty: {
|
|
4274
5231
|
proposer: string;
|
|
@@ -4279,7 +5236,7 @@ declare const _default: {
|
|
|
4279
5236
|
status: string;
|
|
4280
5237
|
};
|
|
4281
5238
|
/**
|
|
4282
|
-
*
|
|
5239
|
+
* Lookup619: pallet_bounties::BountyStatus<sp_core::crypto::AccountId32, BlockNumber>
|
|
4283
5240
|
**/
|
|
4284
5241
|
PalletBountiesBountyStatus: {
|
|
4285
5242
|
_enum: {
|
|
@@ -4301,13 +5258,13 @@ declare const _default: {
|
|
|
4301
5258
|
};
|
|
4302
5259
|
};
|
|
4303
5260
|
/**
|
|
4304
|
-
*
|
|
5261
|
+
* Lookup621: pallet_bounties::pallet::Error<T, I>
|
|
4305
5262
|
**/
|
|
4306
5263
|
PalletBountiesError: {
|
|
4307
5264
|
_enum: string[];
|
|
4308
5265
|
};
|
|
4309
5266
|
/**
|
|
4310
|
-
*
|
|
5267
|
+
* Lookup622: pallet_child_bounties::ChildBounty<sp_core::crypto::AccountId32, Balance, BlockNumber>
|
|
4311
5268
|
**/
|
|
4312
5269
|
PalletChildBountiesChildBounty: {
|
|
4313
5270
|
parentBounty: string;
|
|
@@ -4317,7 +5274,7 @@ declare const _default: {
|
|
|
4317
5274
|
status: string;
|
|
4318
5275
|
};
|
|
4319
5276
|
/**
|
|
4320
|
-
*
|
|
5277
|
+
* Lookup623: pallet_child_bounties::ChildBountyStatus<sp_core::crypto::AccountId32, BlockNumber>
|
|
4321
5278
|
**/
|
|
4322
5279
|
PalletChildBountiesChildBountyStatus: {
|
|
4323
5280
|
_enum: {
|
|
@@ -4336,13 +5293,13 @@ declare const _default: {
|
|
|
4336
5293
|
};
|
|
4337
5294
|
};
|
|
4338
5295
|
/**
|
|
4339
|
-
*
|
|
5296
|
+
* Lookup624: pallet_child_bounties::pallet::Error<T>
|
|
4340
5297
|
**/
|
|
4341
5298
|
PalletChildBountiesError: {
|
|
4342
5299
|
_enum: string[];
|
|
4343
5300
|
};
|
|
4344
5301
|
/**
|
|
4345
|
-
*
|
|
5302
|
+
* Lookup625: pallet_bags_list::list::Node<T, I>
|
|
4346
5303
|
**/
|
|
4347
5304
|
PalletBagsListListNode: {
|
|
4348
5305
|
id: string;
|
|
@@ -4352,14 +5309,14 @@ declare const _default: {
|
|
|
4352
5309
|
score: string;
|
|
4353
5310
|
};
|
|
4354
5311
|
/**
|
|
4355
|
-
*
|
|
5312
|
+
* Lookup626: pallet_bags_list::list::Bag<T, I>
|
|
4356
5313
|
**/
|
|
4357
5314
|
PalletBagsListListBag: {
|
|
4358
5315
|
head: string;
|
|
4359
5316
|
tail: string;
|
|
4360
5317
|
};
|
|
4361
5318
|
/**
|
|
4362
|
-
*
|
|
5319
|
+
* Lookup628: pallet_bags_list::pallet::Error<T, I>
|
|
4363
5320
|
**/
|
|
4364
5321
|
PalletBagsListError: {
|
|
4365
5322
|
_enum: {
|
|
@@ -4367,13 +5324,13 @@ declare const _default: {
|
|
|
4367
5324
|
};
|
|
4368
5325
|
};
|
|
4369
5326
|
/**
|
|
4370
|
-
*
|
|
5327
|
+
* Lookup629: pallet_bags_list::list::ListError
|
|
4371
5328
|
**/
|
|
4372
5329
|
PalletBagsListListListError: {
|
|
4373
5330
|
_enum: string[];
|
|
4374
5331
|
};
|
|
4375
5332
|
/**
|
|
4376
|
-
*
|
|
5333
|
+
* Lookup630: pallet_nomination_pools::PoolMember<T>
|
|
4377
5334
|
**/
|
|
4378
5335
|
PalletNominationPoolsPoolMember: {
|
|
4379
5336
|
poolId: string;
|
|
@@ -4382,7 +5339,7 @@ declare const _default: {
|
|
|
4382
5339
|
unbondingEras: string;
|
|
4383
5340
|
};
|
|
4384
5341
|
/**
|
|
4385
|
-
*
|
|
5342
|
+
* Lookup635: pallet_nomination_pools::BondedPoolInner<T>
|
|
4386
5343
|
**/
|
|
4387
5344
|
PalletNominationPoolsBondedPoolInner: {
|
|
4388
5345
|
commission: string;
|
|
@@ -4392,7 +5349,7 @@ declare const _default: {
|
|
|
4392
5349
|
state: string;
|
|
4393
5350
|
};
|
|
4394
5351
|
/**
|
|
4395
|
-
*
|
|
5352
|
+
* Lookup636: pallet_nomination_pools::Commission<T>
|
|
4396
5353
|
**/
|
|
4397
5354
|
PalletNominationPoolsCommission: {
|
|
4398
5355
|
current: string;
|
|
@@ -4402,7 +5359,7 @@ declare const _default: {
|
|
|
4402
5359
|
claimPermission: string;
|
|
4403
5360
|
};
|
|
4404
5361
|
/**
|
|
4405
|
-
*
|
|
5362
|
+
* Lookup639: pallet_nomination_pools::PoolRoles<sp_core::crypto::AccountId32>
|
|
4406
5363
|
**/
|
|
4407
5364
|
PalletNominationPoolsPoolRoles: {
|
|
4408
5365
|
depositor: string;
|
|
@@ -4411,7 +5368,7 @@ declare const _default: {
|
|
|
4411
5368
|
bouncer: string;
|
|
4412
5369
|
};
|
|
4413
5370
|
/**
|
|
4414
|
-
*
|
|
5371
|
+
* Lookup640: pallet_nomination_pools::RewardPool<T>
|
|
4415
5372
|
**/
|
|
4416
5373
|
PalletNominationPoolsRewardPool: {
|
|
4417
5374
|
lastRecordedRewardCounter: string;
|
|
@@ -4421,21 +5378,21 @@ declare const _default: {
|
|
|
4421
5378
|
totalCommissionClaimed: string;
|
|
4422
5379
|
};
|
|
4423
5380
|
/**
|
|
4424
|
-
*
|
|
5381
|
+
* Lookup641: pallet_nomination_pools::SubPools<T>
|
|
4425
5382
|
**/
|
|
4426
5383
|
PalletNominationPoolsSubPools: {
|
|
4427
5384
|
noEra: string;
|
|
4428
5385
|
withEra: string;
|
|
4429
5386
|
};
|
|
4430
5387
|
/**
|
|
4431
|
-
*
|
|
5388
|
+
* Lookup642: pallet_nomination_pools::UnbondPool<T>
|
|
4432
5389
|
**/
|
|
4433
5390
|
PalletNominationPoolsUnbondPool: {
|
|
4434
5391
|
points: string;
|
|
4435
5392
|
balance: string;
|
|
4436
5393
|
};
|
|
4437
5394
|
/**
|
|
4438
|
-
*
|
|
5395
|
+
* Lookup647: pallet_nomination_pools::pallet::Error<T>
|
|
4439
5396
|
**/
|
|
4440
5397
|
PalletNominationPoolsError: {
|
|
4441
5398
|
_enum: {
|
|
@@ -4474,13 +5431,13 @@ declare const _default: {
|
|
|
4474
5431
|
};
|
|
4475
5432
|
};
|
|
4476
5433
|
/**
|
|
4477
|
-
*
|
|
5434
|
+
* Lookup648: pallet_nomination_pools::pallet::DefensiveError
|
|
4478
5435
|
**/
|
|
4479
5436
|
PalletNominationPoolsDefensiveError: {
|
|
4480
5437
|
_enum: string[];
|
|
4481
5438
|
};
|
|
4482
5439
|
/**
|
|
4483
|
-
*
|
|
5440
|
+
* Lookup651: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>, BlockNumber, tangle_testnet_runtime::OriginCaller, sp_core::crypto::AccountId32>
|
|
4484
5441
|
**/
|
|
4485
5442
|
PalletSchedulerScheduled: {
|
|
4486
5443
|
maybeId: string;
|
|
@@ -4490,13 +5447,13 @@ declare const _default: {
|
|
|
4490
5447
|
origin: string;
|
|
4491
5448
|
};
|
|
4492
5449
|
/**
|
|
4493
|
-
*
|
|
5450
|
+
* Lookup653: pallet_scheduler::pallet::Error<T>
|
|
4494
5451
|
**/
|
|
4495
5452
|
PalletSchedulerError: {
|
|
4496
5453
|
_enum: string[];
|
|
4497
5454
|
};
|
|
4498
5455
|
/**
|
|
4499
|
-
*
|
|
5456
|
+
* Lookup654: pallet_preimage::OldRequestStatus<sp_core::crypto::AccountId32, Balance>
|
|
4500
5457
|
**/
|
|
4501
5458
|
PalletPreimageOldRequestStatus: {
|
|
4502
5459
|
_enum: {
|
|
@@ -4512,7 +5469,7 @@ declare const _default: {
|
|
|
4512
5469
|
};
|
|
4513
5470
|
};
|
|
4514
5471
|
/**
|
|
4515
|
-
*
|
|
5472
|
+
* Lookup656: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Ticket>
|
|
4516
5473
|
**/
|
|
4517
5474
|
PalletPreimageRequestStatus: {
|
|
4518
5475
|
_enum: {
|
|
@@ -4528,32 +5485,32 @@ declare const _default: {
|
|
|
4528
5485
|
};
|
|
4529
5486
|
};
|
|
4530
5487
|
/**
|
|
4531
|
-
*
|
|
5488
|
+
* Lookup660: pallet_preimage::pallet::Error<T>
|
|
4532
5489
|
**/
|
|
4533
5490
|
PalletPreimageError: {
|
|
4534
5491
|
_enum: string[];
|
|
4535
5492
|
};
|
|
4536
5493
|
/**
|
|
4537
|
-
*
|
|
5494
|
+
* Lookup661: sp_staking::offence::OffenceDetails<sp_core::crypto::AccountId32, Offender>
|
|
4538
5495
|
**/
|
|
4539
5496
|
SpStakingOffenceOffenceDetails: {
|
|
4540
5497
|
offender: string;
|
|
4541
5498
|
reporters: string;
|
|
4542
5499
|
};
|
|
4543
5500
|
/**
|
|
4544
|
-
*
|
|
5501
|
+
* Lookup663: pallet_tx_pause::pallet::Error<T>
|
|
4545
5502
|
**/
|
|
4546
5503
|
PalletTxPauseError: {
|
|
4547
5504
|
_enum: string[];
|
|
4548
5505
|
};
|
|
4549
5506
|
/**
|
|
4550
|
-
*
|
|
5507
|
+
* Lookup666: pallet_im_online::pallet::Error<T>
|
|
4551
5508
|
**/
|
|
4552
5509
|
PalletImOnlineError: {
|
|
4553
5510
|
_enum: string[];
|
|
4554
5511
|
};
|
|
4555
5512
|
/**
|
|
4556
|
-
*
|
|
5513
|
+
* Lookup668: pallet_identity::types::Registration<Balance, MaxJudgements, pallet_identity::legacy::IdentityInfo<FieldLimit>>
|
|
4557
5514
|
**/
|
|
4558
5515
|
PalletIdentityRegistration: {
|
|
4559
5516
|
judgements: string;
|
|
@@ -4561,7 +5518,7 @@ declare const _default: {
|
|
|
4561
5518
|
info: string;
|
|
4562
5519
|
};
|
|
4563
5520
|
/**
|
|
4564
|
-
*
|
|
5521
|
+
* Lookup677: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32, IdField>
|
|
4565
5522
|
**/
|
|
4566
5523
|
PalletIdentityRegistrarInfo: {
|
|
4567
5524
|
account: string;
|
|
@@ -4569,26 +5526,26 @@ declare const _default: {
|
|
|
4569
5526
|
fields: string;
|
|
4570
5527
|
};
|
|
4571
5528
|
/**
|
|
4572
|
-
*
|
|
5529
|
+
* Lookup679: pallet_identity::types::AuthorityProperties<bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
4573
5530
|
**/
|
|
4574
5531
|
PalletIdentityAuthorityProperties: {
|
|
4575
5532
|
suffix: string;
|
|
4576
5533
|
allocation: string;
|
|
4577
5534
|
};
|
|
4578
5535
|
/**
|
|
4579
|
-
*
|
|
5536
|
+
* Lookup682: pallet_identity::pallet::Error<T>
|
|
4580
5537
|
**/
|
|
4581
5538
|
PalletIdentityError: {
|
|
4582
5539
|
_enum: string[];
|
|
4583
5540
|
};
|
|
4584
5541
|
/**
|
|
4585
|
-
*
|
|
5542
|
+
* Lookup683: pallet_utility::pallet::Error<T>
|
|
4586
5543
|
**/
|
|
4587
5544
|
PalletUtilityError: {
|
|
4588
5545
|
_enum: string[];
|
|
4589
5546
|
};
|
|
4590
5547
|
/**
|
|
4591
|
-
*
|
|
5548
|
+
* Lookup685: pallet_multisig::Multisig<BlockNumber, Balance, sp_core::crypto::AccountId32, MaxApprovals>
|
|
4592
5549
|
**/
|
|
4593
5550
|
PalletMultisigMultisig: {
|
|
4594
5551
|
when: string;
|
|
@@ -4597,13 +5554,13 @@ declare const _default: {
|
|
|
4597
5554
|
approvals: string;
|
|
4598
5555
|
};
|
|
4599
5556
|
/**
|
|
4600
|
-
*
|
|
5557
|
+
* Lookup686: pallet_multisig::pallet::Error<T>
|
|
4601
5558
|
**/
|
|
4602
5559
|
PalletMultisigError: {
|
|
4603
5560
|
_enum: string[];
|
|
4604
5561
|
};
|
|
4605
5562
|
/**
|
|
4606
|
-
*
|
|
5563
|
+
* Lookup689: fp_rpc::TransactionStatus
|
|
4607
5564
|
**/
|
|
4608
5565
|
FpRpcTransactionStatus: {
|
|
4609
5566
|
transactionHash: string;
|
|
@@ -4615,11 +5572,11 @@ declare const _default: {
|
|
|
4615
5572
|
logsBloom: string;
|
|
4616
5573
|
};
|
|
4617
5574
|
/**
|
|
4618
|
-
*
|
|
5575
|
+
* Lookup692: ethbloom::Bloom
|
|
4619
5576
|
**/
|
|
4620
5577
|
EthbloomBloom: string;
|
|
4621
5578
|
/**
|
|
4622
|
-
*
|
|
5579
|
+
* Lookup694: ethereum::receipt::ReceiptV3
|
|
4623
5580
|
**/
|
|
4624
5581
|
EthereumReceiptReceiptV3: {
|
|
4625
5582
|
_enum: {
|
|
@@ -4629,7 +5586,7 @@ declare const _default: {
|
|
|
4629
5586
|
};
|
|
4630
5587
|
};
|
|
4631
5588
|
/**
|
|
4632
|
-
*
|
|
5589
|
+
* Lookup695: ethereum::receipt::EIP658ReceiptData
|
|
4633
5590
|
**/
|
|
4634
5591
|
EthereumReceiptEip658ReceiptData: {
|
|
4635
5592
|
statusCode: string;
|
|
@@ -4638,7 +5595,7 @@ declare const _default: {
|
|
|
4638
5595
|
logs: string;
|
|
4639
5596
|
};
|
|
4640
5597
|
/**
|
|
4641
|
-
*
|
|
5598
|
+
* Lookup696: ethereum::block::Block<ethereum::transaction::TransactionV2>
|
|
4642
5599
|
**/
|
|
4643
5600
|
EthereumBlock: {
|
|
4644
5601
|
header: string;
|
|
@@ -4646,7 +5603,7 @@ declare const _default: {
|
|
|
4646
5603
|
ommers: string;
|
|
4647
5604
|
};
|
|
4648
5605
|
/**
|
|
4649
|
-
*
|
|
5606
|
+
* Lookup697: ethereum::header::Header
|
|
4650
5607
|
**/
|
|
4651
5608
|
EthereumHeader: {
|
|
4652
5609
|
parentHash: string;
|
|
@@ -4666,17 +5623,17 @@ declare const _default: {
|
|
|
4666
5623
|
nonce: string;
|
|
4667
5624
|
};
|
|
4668
5625
|
/**
|
|
4669
|
-
*
|
|
5626
|
+
* Lookup698: ethereum_types::hash::H64
|
|
4670
5627
|
**/
|
|
4671
5628
|
EthereumTypesHashH64: string;
|
|
4672
5629
|
/**
|
|
4673
|
-
*
|
|
5630
|
+
* Lookup703: pallet_ethereum::pallet::Error<T>
|
|
4674
5631
|
**/
|
|
4675
5632
|
PalletEthereumError: {
|
|
4676
5633
|
_enum: string[];
|
|
4677
5634
|
};
|
|
4678
5635
|
/**
|
|
4679
|
-
*
|
|
5636
|
+
* Lookup704: pallet_evm::CodeMetadata
|
|
4680
5637
|
**/
|
|
4681
5638
|
PalletEvmCodeMetadata: {
|
|
4682
5639
|
_alias: {
|
|
@@ -4687,25 +5644,25 @@ declare const _default: {
|
|
|
4687
5644
|
hash_: string;
|
|
4688
5645
|
};
|
|
4689
5646
|
/**
|
|
4690
|
-
*
|
|
5647
|
+
* Lookup706: pallet_evm::pallet::Error<T>
|
|
4691
5648
|
**/
|
|
4692
5649
|
PalletEvmError: {
|
|
4693
5650
|
_enum: string[];
|
|
4694
5651
|
};
|
|
4695
5652
|
/**
|
|
4696
|
-
*
|
|
5653
|
+
* Lookup707: pallet_hotfix_sufficients::pallet::Error<T>
|
|
4697
5654
|
**/
|
|
4698
5655
|
PalletHotfixSufficientsError: {
|
|
4699
5656
|
_enum: string[];
|
|
4700
5657
|
};
|
|
4701
5658
|
/**
|
|
4702
|
-
*
|
|
5659
|
+
* Lookup709: pallet_airdrop_claims::pallet::Error<T>
|
|
4703
5660
|
**/
|
|
4704
5661
|
PalletAirdropClaimsError: {
|
|
4705
5662
|
_enum: string[];
|
|
4706
5663
|
};
|
|
4707
5664
|
/**
|
|
4708
|
-
*
|
|
5665
|
+
* Lookup710: pallet_roles::types::RestakingLedger<T>
|
|
4709
5666
|
**/
|
|
4710
5667
|
PalletRolesRestakingLedger: {
|
|
4711
5668
|
stash: string;
|
|
@@ -4718,20 +5675,20 @@ declare const _default: {
|
|
|
4718
5675
|
maxActiveServices: string;
|
|
4719
5676
|
};
|
|
4720
5677
|
/**
|
|
4721
|
-
*
|
|
5678
|
+
* Lookup716: pallet_roles::types::UnlockChunk<Balance>
|
|
4722
5679
|
**/
|
|
4723
5680
|
PalletRolesUnlockChunk: {
|
|
4724
5681
|
value: string;
|
|
4725
5682
|
era: string;
|
|
4726
5683
|
};
|
|
4727
5684
|
/**
|
|
4728
|
-
*
|
|
5685
|
+
* Lookup720: pallet_roles::pallet::Error<T>
|
|
4729
5686
|
**/
|
|
4730
5687
|
PalletRolesError: {
|
|
4731
5688
|
_enum: string[];
|
|
4732
5689
|
};
|
|
4733
5690
|
/**
|
|
4734
|
-
*
|
|
5691
|
+
* Lookup721: tangle_primitives::jobs::PhaseResult<sp_core::crypto::AccountId32, BlockNumber, tangle_testnet_runtime::MaxParticipants, tangle_testnet_runtime::MaxKeyLen, tangle_testnet_runtime::MaxDataLen, tangle_testnet_runtime::MaxSignatureLen, tangle_testnet_runtime::MaxSubmissionLen, tangle_testnet_runtime::MaxProofLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
|
4735
5692
|
**/
|
|
4736
5693
|
TanglePrimitivesJobsPhaseResult: {
|
|
4737
5694
|
owner: string;
|
|
@@ -4741,53 +5698,210 @@ declare const _default: {
|
|
|
4741
5698
|
jobType: string;
|
|
4742
5699
|
};
|
|
4743
5700
|
/**
|
|
4744
|
-
*
|
|
5701
|
+
* Lookup723: pallet_jobs::module::Error<T>
|
|
4745
5702
|
**/
|
|
4746
5703
|
PalletJobsModuleError: {
|
|
4747
5704
|
_enum: string[];
|
|
4748
5705
|
};
|
|
4749
5706
|
/**
|
|
4750
|
-
*
|
|
5707
|
+
* Lookup724: pallet_dkg::pallet::Error<T>
|
|
4751
5708
|
**/
|
|
4752
5709
|
PalletDkgError: {
|
|
4753
5710
|
_enum: string[];
|
|
4754
5711
|
};
|
|
4755
5712
|
/**
|
|
4756
|
-
*
|
|
5713
|
+
* Lookup725: pallet_zksaas::pallet::Error<T>
|
|
4757
5714
|
**/
|
|
4758
5715
|
PalletZksaasError: {
|
|
4759
5716
|
_enum: string[];
|
|
4760
5717
|
};
|
|
4761
5718
|
/**
|
|
4762
|
-
*
|
|
5719
|
+
* Lookup728: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, tangle_testnet_runtime::ProxyType, BlockNumber>
|
|
5720
|
+
**/
|
|
5721
|
+
PalletProxyProxyDefinition: {
|
|
5722
|
+
delegate: string;
|
|
5723
|
+
proxyType: string;
|
|
5724
|
+
delay: string;
|
|
5725
|
+
};
|
|
5726
|
+
/**
|
|
5727
|
+
* Lookup732: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
|
|
5728
|
+
**/
|
|
5729
|
+
PalletProxyAnnouncement: {
|
|
5730
|
+
real: string;
|
|
5731
|
+
callHash: string;
|
|
5732
|
+
height: string;
|
|
5733
|
+
};
|
|
5734
|
+
/**
|
|
5735
|
+
* Lookup734: pallet_proxy::pallet::Error<T>
|
|
5736
|
+
**/
|
|
5737
|
+
PalletProxyError: {
|
|
5738
|
+
_enum: string[];
|
|
5739
|
+
};
|
|
5740
|
+
/**
|
|
5741
|
+
* Lookup735: pallet_multi_asset_delegation::types::operator::OperatorMetadata<sp_core::crypto::AccountId32, Balance, AssetId>
|
|
5742
|
+
**/
|
|
5743
|
+
PalletMultiAssetDelegationOperatorOperatorMetadata: {
|
|
5744
|
+
bond: string;
|
|
5745
|
+
delegationCount: string;
|
|
5746
|
+
request: string;
|
|
5747
|
+
delegations: string;
|
|
5748
|
+
status: string;
|
|
5749
|
+
};
|
|
5750
|
+
/**
|
|
5751
|
+
* Lookup737: pallet_multi_asset_delegation::types::operator::OperatorBondLessRequest<Balance>
|
|
5752
|
+
**/
|
|
5753
|
+
PalletMultiAssetDelegationOperatorOperatorBondLessRequest: {
|
|
5754
|
+
amount: string;
|
|
5755
|
+
requestTime: string;
|
|
5756
|
+
};
|
|
5757
|
+
/**
|
|
5758
|
+
* Lookup739: pallet_multi_asset_delegation::types::operator::DelegatorBond<sp_core::crypto::AccountId32, Balance, AssetId>
|
|
5759
|
+
**/
|
|
5760
|
+
PalletMultiAssetDelegationOperatorDelegatorBond: {
|
|
5761
|
+
delegator: string;
|
|
5762
|
+
amount: string;
|
|
5763
|
+
assetId: string;
|
|
5764
|
+
};
|
|
5765
|
+
/**
|
|
5766
|
+
* Lookup740: pallet_multi_asset_delegation::types::operator::OperatorStatus
|
|
5767
|
+
**/
|
|
5768
|
+
PalletMultiAssetDelegationOperatorOperatorStatus: {
|
|
5769
|
+
_enum: {
|
|
5770
|
+
Active: string;
|
|
5771
|
+
Inactive: string;
|
|
5772
|
+
Leaving: string;
|
|
5773
|
+
};
|
|
5774
|
+
};
|
|
5775
|
+
/**
|
|
5776
|
+
* Lookup741: pallet_multi_asset_delegation::types::operator::OperatorSnapshot<sp_core::crypto::AccountId32, Balance, AssetId>
|
|
5777
|
+
**/
|
|
5778
|
+
PalletMultiAssetDelegationOperatorOperatorSnapshot: {
|
|
5779
|
+
bond: string;
|
|
5780
|
+
delegations: string;
|
|
5781
|
+
};
|
|
5782
|
+
/**
|
|
5783
|
+
* Lookup742: pallet_multi_asset_delegation::types::delegator::DelegatorMetadata<sp_core::crypto::AccountId32, Balance, AssetId>
|
|
5784
|
+
**/
|
|
5785
|
+
PalletMultiAssetDelegationDelegatorDelegatorMetadata: {
|
|
5786
|
+
deposits: string;
|
|
5787
|
+
unstakeRequest: string;
|
|
5788
|
+
delegations: string;
|
|
5789
|
+
delegatorBondLessRequest: string;
|
|
5790
|
+
status: string;
|
|
5791
|
+
};
|
|
5792
|
+
/**
|
|
5793
|
+
* Lookup747: pallet_multi_asset_delegation::types::delegator::UnstakeRequest<AssetId, Balance>
|
|
5794
|
+
**/
|
|
5795
|
+
PalletMultiAssetDelegationDelegatorUnstakeRequest: {
|
|
5796
|
+
assetId: string;
|
|
5797
|
+
amount: string;
|
|
5798
|
+
requestedRound: string;
|
|
5799
|
+
};
|
|
5800
|
+
/**
|
|
5801
|
+
* Lookup749: pallet_multi_asset_delegation::types::delegator::BondInfoDelegator<sp_core::crypto::AccountId32, Balance, AssetId>
|
|
5802
|
+
**/
|
|
5803
|
+
PalletMultiAssetDelegationDelegatorBondInfoDelegator: {
|
|
5804
|
+
operator: string;
|
|
5805
|
+
amount: string;
|
|
5806
|
+
assetId: string;
|
|
5807
|
+
};
|
|
5808
|
+
/**
|
|
5809
|
+
* Lookup751: pallet_multi_asset_delegation::types::delegator::BondLessRequest<AssetId, Balance>
|
|
5810
|
+
**/
|
|
5811
|
+
PalletMultiAssetDelegationDelegatorBondLessRequest: {
|
|
5812
|
+
assetId: string;
|
|
5813
|
+
amount: string;
|
|
5814
|
+
requestedRound: string;
|
|
5815
|
+
};
|
|
5816
|
+
/**
|
|
5817
|
+
* Lookup752: pallet_multi_asset_delegation::types::delegator::DelegatorStatus
|
|
5818
|
+
**/
|
|
5819
|
+
PalletMultiAssetDelegationDelegatorDelegatorStatus: {
|
|
5820
|
+
_enum: {
|
|
5821
|
+
Active: string;
|
|
5822
|
+
LeavingScheduled: string;
|
|
5823
|
+
};
|
|
5824
|
+
};
|
|
5825
|
+
/**
|
|
5826
|
+
* Lookup753: pallet_multi_asset_delegation::types::rewards::RewardConfig<AssetId, Balance>
|
|
5827
|
+
**/
|
|
5828
|
+
PalletMultiAssetDelegationRewardsRewardConfig: {
|
|
5829
|
+
configs: string;
|
|
5830
|
+
whitelistedBlueprintIds: string;
|
|
5831
|
+
};
|
|
5832
|
+
/**
|
|
5833
|
+
* Lookup755: pallet_multi_asset_delegation::types::rewards::RewardConfigForAsset<Balance>
|
|
5834
|
+
**/
|
|
5835
|
+
PalletMultiAssetDelegationRewardsRewardConfigForAsset: {
|
|
5836
|
+
apy: string;
|
|
5837
|
+
cap: string;
|
|
5838
|
+
};
|
|
5839
|
+
/**
|
|
5840
|
+
* Lookup758: pallet_multi_asset_delegation::pallet::Error<T>
|
|
5841
|
+
**/
|
|
5842
|
+
PalletMultiAssetDelegationError: {
|
|
5843
|
+
_enum: string[];
|
|
5844
|
+
};
|
|
5845
|
+
/**
|
|
5846
|
+
* Lookup760: sygma_access_segregator::pallet::Error<T>
|
|
5847
|
+
**/
|
|
5848
|
+
SygmaAccessSegregatorError: {
|
|
5849
|
+
_enum: string[];
|
|
5850
|
+
};
|
|
5851
|
+
/**
|
|
5852
|
+
* Lookup762: sygma_basic_feehandler::pallet::Error<T>
|
|
5853
|
+
**/
|
|
5854
|
+
SygmaBasicFeehandlerError: {
|
|
5855
|
+
_enum: string[];
|
|
5856
|
+
};
|
|
5857
|
+
/**
|
|
5858
|
+
* Lookup763: sygma_fee_handler_router::pallet::Error<T>
|
|
5859
|
+
**/
|
|
5860
|
+
SygmaFeeHandlerRouterError: {
|
|
5861
|
+
_enum: string[];
|
|
5862
|
+
};
|
|
5863
|
+
/**
|
|
5864
|
+
* Lookup765: sygma_percentage_feehandler::pallet::Error<T>
|
|
5865
|
+
**/
|
|
5866
|
+
SygmaPercentageFeehandlerError: {
|
|
5867
|
+
_enum: string[];
|
|
5868
|
+
};
|
|
5869
|
+
/**
|
|
5870
|
+
* Lookup772: sygma_bridge::pallet::Error<T>
|
|
5871
|
+
**/
|
|
5872
|
+
SygmaBridgeError: {
|
|
5873
|
+
_enum: string[];
|
|
5874
|
+
};
|
|
5875
|
+
/**
|
|
5876
|
+
* Lookup775: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
4763
5877
|
**/
|
|
4764
5878
|
FrameSystemExtensionsCheckNonZeroSender: string;
|
|
4765
5879
|
/**
|
|
4766
|
-
*
|
|
5880
|
+
* Lookup776: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
4767
5881
|
**/
|
|
4768
5882
|
FrameSystemExtensionsCheckSpecVersion: string;
|
|
4769
5883
|
/**
|
|
4770
|
-
*
|
|
5884
|
+
* Lookup777: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
4771
5885
|
**/
|
|
4772
5886
|
FrameSystemExtensionsCheckTxVersion: string;
|
|
4773
5887
|
/**
|
|
4774
|
-
*
|
|
5888
|
+
* Lookup778: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
4775
5889
|
**/
|
|
4776
5890
|
FrameSystemExtensionsCheckGenesis: string;
|
|
4777
5891
|
/**
|
|
4778
|
-
*
|
|
5892
|
+
* Lookup781: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
4779
5893
|
**/
|
|
4780
5894
|
FrameSystemExtensionsCheckNonce: string;
|
|
4781
5895
|
/**
|
|
4782
|
-
*
|
|
5896
|
+
* Lookup782: frame_system::extensions::check_weight::CheckWeight<T>
|
|
4783
5897
|
**/
|
|
4784
5898
|
FrameSystemExtensionsCheckWeight: string;
|
|
4785
5899
|
/**
|
|
4786
|
-
*
|
|
5900
|
+
* Lookup783: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
4787
5901
|
**/
|
|
4788
5902
|
PalletTransactionPaymentChargeTransactionPayment: string;
|
|
4789
5903
|
/**
|
|
4790
|
-
*
|
|
5904
|
+
* Lookup785: tangle_testnet_runtime::Runtime
|
|
4791
5905
|
**/
|
|
4792
5906
|
TangleTestnetRuntimeRuntime: string;
|
|
4793
5907
|
};
|