@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
|
@@ -192,7 +192,123 @@ var _default = exports.default = {
|
|
|
192
192
|
}
|
|
193
193
|
},
|
|
194
194
|
/**
|
|
195
|
-
* Lookup35:
|
|
195
|
+
* Lookup35: pallet_assets::pallet::Event<T, I>
|
|
196
|
+
**/
|
|
197
|
+
PalletAssetsEvent: {
|
|
198
|
+
_enum: {
|
|
199
|
+
Created: {
|
|
200
|
+
assetId: 'u128',
|
|
201
|
+
creator: 'AccountId32',
|
|
202
|
+
owner: 'AccountId32'
|
|
203
|
+
},
|
|
204
|
+
Issued: {
|
|
205
|
+
assetId: 'u128',
|
|
206
|
+
owner: 'AccountId32',
|
|
207
|
+
amount: 'u128'
|
|
208
|
+
},
|
|
209
|
+
Transferred: {
|
|
210
|
+
assetId: 'u128',
|
|
211
|
+
from: 'AccountId32',
|
|
212
|
+
to: 'AccountId32',
|
|
213
|
+
amount: 'u128'
|
|
214
|
+
},
|
|
215
|
+
Burned: {
|
|
216
|
+
assetId: 'u128',
|
|
217
|
+
owner: 'AccountId32',
|
|
218
|
+
balance: 'u128'
|
|
219
|
+
},
|
|
220
|
+
TeamChanged: {
|
|
221
|
+
assetId: 'u128',
|
|
222
|
+
issuer: 'AccountId32',
|
|
223
|
+
admin: 'AccountId32',
|
|
224
|
+
freezer: 'AccountId32'
|
|
225
|
+
},
|
|
226
|
+
OwnerChanged: {
|
|
227
|
+
assetId: 'u128',
|
|
228
|
+
owner: 'AccountId32'
|
|
229
|
+
},
|
|
230
|
+
Frozen: {
|
|
231
|
+
assetId: 'u128',
|
|
232
|
+
who: 'AccountId32'
|
|
233
|
+
},
|
|
234
|
+
Thawed: {
|
|
235
|
+
assetId: 'u128',
|
|
236
|
+
who: 'AccountId32'
|
|
237
|
+
},
|
|
238
|
+
AssetFrozen: {
|
|
239
|
+
assetId: 'u128'
|
|
240
|
+
},
|
|
241
|
+
AssetThawed: {
|
|
242
|
+
assetId: 'u128'
|
|
243
|
+
},
|
|
244
|
+
AccountsDestroyed: {
|
|
245
|
+
assetId: 'u128',
|
|
246
|
+
accountsDestroyed: 'u32',
|
|
247
|
+
accountsRemaining: 'u32'
|
|
248
|
+
},
|
|
249
|
+
ApprovalsDestroyed: {
|
|
250
|
+
assetId: 'u128',
|
|
251
|
+
approvalsDestroyed: 'u32',
|
|
252
|
+
approvalsRemaining: 'u32'
|
|
253
|
+
},
|
|
254
|
+
DestructionStarted: {
|
|
255
|
+
assetId: 'u128'
|
|
256
|
+
},
|
|
257
|
+
Destroyed: {
|
|
258
|
+
assetId: 'u128'
|
|
259
|
+
},
|
|
260
|
+
ForceCreated: {
|
|
261
|
+
assetId: 'u128',
|
|
262
|
+
owner: 'AccountId32'
|
|
263
|
+
},
|
|
264
|
+
MetadataSet: {
|
|
265
|
+
assetId: 'u128',
|
|
266
|
+
name: 'Bytes',
|
|
267
|
+
symbol: 'Bytes',
|
|
268
|
+
decimals: 'u8',
|
|
269
|
+
isFrozen: 'bool'
|
|
270
|
+
},
|
|
271
|
+
MetadataCleared: {
|
|
272
|
+
assetId: 'u128'
|
|
273
|
+
},
|
|
274
|
+
ApprovedTransfer: {
|
|
275
|
+
assetId: 'u128',
|
|
276
|
+
source: 'AccountId32',
|
|
277
|
+
delegate: 'AccountId32',
|
|
278
|
+
amount: 'u128'
|
|
279
|
+
},
|
|
280
|
+
ApprovalCancelled: {
|
|
281
|
+
assetId: 'u128',
|
|
282
|
+
owner: 'AccountId32',
|
|
283
|
+
delegate: 'AccountId32'
|
|
284
|
+
},
|
|
285
|
+
TransferredApproved: {
|
|
286
|
+
assetId: 'u128',
|
|
287
|
+
owner: 'AccountId32',
|
|
288
|
+
delegate: 'AccountId32',
|
|
289
|
+
destination: 'AccountId32',
|
|
290
|
+
amount: 'u128'
|
|
291
|
+
},
|
|
292
|
+
AssetStatusChanged: {
|
|
293
|
+
assetId: 'u128'
|
|
294
|
+
},
|
|
295
|
+
AssetMinBalanceChanged: {
|
|
296
|
+
assetId: 'u128',
|
|
297
|
+
newMinBalance: 'u128'
|
|
298
|
+
},
|
|
299
|
+
Touched: {
|
|
300
|
+
assetId: 'u128',
|
|
301
|
+
who: 'AccountId32',
|
|
302
|
+
depositor: 'AccountId32'
|
|
303
|
+
},
|
|
304
|
+
Blocked: {
|
|
305
|
+
assetId: 'u128',
|
|
306
|
+
who: 'AccountId32'
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
/**
|
|
311
|
+
* Lookup36: pallet_balances::pallet::Event<T, I>
|
|
196
312
|
**/
|
|
197
313
|
PalletBalancesEvent: {
|
|
198
314
|
_enum: {
|
|
@@ -290,13 +406,13 @@ var _default = exports.default = {
|
|
|
290
406
|
}
|
|
291
407
|
},
|
|
292
408
|
/**
|
|
293
|
-
*
|
|
409
|
+
* Lookup37: frame_support::traits::tokens::misc::BalanceStatus
|
|
294
410
|
**/
|
|
295
411
|
FrameSupportTokensMiscBalanceStatus: {
|
|
296
412
|
_enum: ['Free', 'Reserved']
|
|
297
413
|
},
|
|
298
414
|
/**
|
|
299
|
-
*
|
|
415
|
+
* Lookup38: pallet_transaction_payment::pallet::Event<T>
|
|
300
416
|
**/
|
|
301
417
|
PalletTransactionPaymentEvent: {
|
|
302
418
|
_enum: {
|
|
@@ -308,7 +424,7 @@ var _default = exports.default = {
|
|
|
308
424
|
}
|
|
309
425
|
},
|
|
310
426
|
/**
|
|
311
|
-
*
|
|
427
|
+
* Lookup39: pallet_grandpa::pallet::Event
|
|
312
428
|
**/
|
|
313
429
|
PalletGrandpaEvent: {
|
|
314
430
|
_enum: {
|
|
@@ -320,15 +436,15 @@ var _default = exports.default = {
|
|
|
320
436
|
}
|
|
321
437
|
},
|
|
322
438
|
/**
|
|
323
|
-
*
|
|
439
|
+
* Lookup42: sp_consensus_grandpa::app::Public
|
|
324
440
|
**/
|
|
325
441
|
SpConsensusGrandpaAppPublic: 'SpCoreEd25519Public',
|
|
326
442
|
/**
|
|
327
|
-
*
|
|
443
|
+
* Lookup43: sp_core::ed25519::Public
|
|
328
444
|
**/
|
|
329
445
|
SpCoreEd25519Public: '[u8;32]',
|
|
330
446
|
/**
|
|
331
|
-
*
|
|
447
|
+
* Lookup44: pallet_indices::pallet::Event<T>
|
|
332
448
|
**/
|
|
333
449
|
PalletIndicesEvent: {
|
|
334
450
|
_enum: {
|
|
@@ -346,7 +462,7 @@ var _default = exports.default = {
|
|
|
346
462
|
}
|
|
347
463
|
},
|
|
348
464
|
/**
|
|
349
|
-
*
|
|
465
|
+
* Lookup45: pallet_democracy::pallet::Event<T>
|
|
350
466
|
**/
|
|
351
467
|
PalletDemocracyEvent: {
|
|
352
468
|
_enum: {
|
|
@@ -424,13 +540,13 @@ var _default = exports.default = {
|
|
|
424
540
|
}
|
|
425
541
|
},
|
|
426
542
|
/**
|
|
427
|
-
*
|
|
543
|
+
* Lookup46: pallet_democracy::vote_threshold::VoteThreshold
|
|
428
544
|
**/
|
|
429
545
|
PalletDemocracyVoteThreshold: {
|
|
430
546
|
_enum: ['SuperMajorityApprove', 'SuperMajorityAgainst', 'SimpleMajority']
|
|
431
547
|
},
|
|
432
548
|
/**
|
|
433
|
-
*
|
|
549
|
+
* Lookup47: pallet_democracy::vote::AccountVote<Balance>
|
|
434
550
|
**/
|
|
435
551
|
PalletDemocracyVoteAccountVote: {
|
|
436
552
|
_enum: {
|
|
@@ -445,7 +561,7 @@ var _default = exports.default = {
|
|
|
445
561
|
}
|
|
446
562
|
},
|
|
447
563
|
/**
|
|
448
|
-
*
|
|
564
|
+
* Lookup49: pallet_democracy::types::MetadataOwner
|
|
449
565
|
**/
|
|
450
566
|
PalletDemocracyMetadataOwner: {
|
|
451
567
|
_enum: {
|
|
@@ -455,7 +571,7 @@ var _default = exports.default = {
|
|
|
455
571
|
}
|
|
456
572
|
},
|
|
457
573
|
/**
|
|
458
|
-
*
|
|
574
|
+
* Lookup50: pallet_collective::pallet::Event<T, I>
|
|
459
575
|
**/
|
|
460
576
|
PalletCollectiveEvent: {
|
|
461
577
|
_enum: {
|
|
@@ -494,7 +610,7 @@ var _default = exports.default = {
|
|
|
494
610
|
}
|
|
495
611
|
},
|
|
496
612
|
/**
|
|
497
|
-
*
|
|
613
|
+
* Lookup51: pallet_vesting::pallet::Event<T>
|
|
498
614
|
**/
|
|
499
615
|
PalletVestingEvent: {
|
|
500
616
|
_enum: {
|
|
@@ -508,7 +624,7 @@ var _default = exports.default = {
|
|
|
508
624
|
}
|
|
509
625
|
},
|
|
510
626
|
/**
|
|
511
|
-
*
|
|
627
|
+
* Lookup52: pallet_elections_phragmen::pallet::Event<T>
|
|
512
628
|
**/
|
|
513
629
|
PalletElectionsPhragmenEvent: {
|
|
514
630
|
_enum: {
|
|
@@ -534,7 +650,7 @@ var _default = exports.default = {
|
|
|
534
650
|
}
|
|
535
651
|
},
|
|
536
652
|
/**
|
|
537
|
-
*
|
|
653
|
+
* Lookup55: pallet_election_provider_multi_phase::pallet::Event<T>
|
|
538
654
|
**/
|
|
539
655
|
PalletElectionProviderMultiPhaseEvent: {
|
|
540
656
|
_enum: {
|
|
@@ -564,13 +680,13 @@ var _default = exports.default = {
|
|
|
564
680
|
}
|
|
565
681
|
},
|
|
566
682
|
/**
|
|
567
|
-
*
|
|
683
|
+
* Lookup56: pallet_election_provider_multi_phase::ElectionCompute
|
|
568
684
|
**/
|
|
569
685
|
PalletElectionProviderMultiPhaseElectionCompute: {
|
|
570
686
|
_enum: ['OnChain', 'Signed', 'Unsigned', 'Fallback', 'Emergency']
|
|
571
687
|
},
|
|
572
688
|
/**
|
|
573
|
-
*
|
|
689
|
+
* Lookup57: sp_npos_elections::ElectionScore
|
|
574
690
|
**/
|
|
575
691
|
SpNposElectionsElectionScore: {
|
|
576
692
|
minimalStake: 'u128',
|
|
@@ -578,7 +694,7 @@ var _default = exports.default = {
|
|
|
578
694
|
sumStakeSquared: 'u128'
|
|
579
695
|
},
|
|
580
696
|
/**
|
|
581
|
-
*
|
|
697
|
+
* Lookup58: pallet_election_provider_multi_phase::Phase<Bn>
|
|
582
698
|
**/
|
|
583
699
|
PalletElectionProviderMultiPhasePhase: {
|
|
584
700
|
_enum: {
|
|
@@ -589,7 +705,7 @@ var _default = exports.default = {
|
|
|
589
705
|
}
|
|
590
706
|
},
|
|
591
707
|
/**
|
|
592
|
-
*
|
|
708
|
+
* Lookup60: pallet_staking::pallet::pallet::Event<T>
|
|
593
709
|
**/
|
|
594
710
|
PalletStakingPalletEvent: {
|
|
595
711
|
_enum: {
|
|
@@ -662,7 +778,7 @@ var _default = exports.default = {
|
|
|
662
778
|
}
|
|
663
779
|
},
|
|
664
780
|
/**
|
|
665
|
-
*
|
|
781
|
+
* Lookup61: pallet_staking::RewardDestination<sp_core::crypto::AccountId32>
|
|
666
782
|
**/
|
|
667
783
|
PalletStakingRewardDestination: {
|
|
668
784
|
_enum: {
|
|
@@ -674,20 +790,20 @@ var _default = exports.default = {
|
|
|
674
790
|
}
|
|
675
791
|
},
|
|
676
792
|
/**
|
|
677
|
-
*
|
|
793
|
+
* Lookup63: pallet_staking::ValidatorPrefs
|
|
678
794
|
**/
|
|
679
795
|
PalletStakingValidatorPrefs: {
|
|
680
796
|
commission: 'Compact<Perbill>',
|
|
681
797
|
blocked: 'bool'
|
|
682
798
|
},
|
|
683
799
|
/**
|
|
684
|
-
*
|
|
800
|
+
* Lookup65: pallet_staking::Forcing
|
|
685
801
|
**/
|
|
686
802
|
PalletStakingForcing: {
|
|
687
803
|
_enum: ['NotForcing', 'ForceNew', 'ForceNone', 'ForceAlways']
|
|
688
804
|
},
|
|
689
805
|
/**
|
|
690
|
-
*
|
|
806
|
+
* Lookup66: pallet_session::pallet::Event
|
|
691
807
|
**/
|
|
692
808
|
PalletSessionEvent: {
|
|
693
809
|
_enum: {
|
|
@@ -697,7 +813,7 @@ var _default = exports.default = {
|
|
|
697
813
|
}
|
|
698
814
|
},
|
|
699
815
|
/**
|
|
700
|
-
*
|
|
816
|
+
* Lookup67: pallet_treasury::pallet::Event<T, I>
|
|
701
817
|
**/
|
|
702
818
|
PalletTreasuryEvent: {
|
|
703
819
|
_enum: {
|
|
@@ -759,7 +875,7 @@ var _default = exports.default = {
|
|
|
759
875
|
}
|
|
760
876
|
},
|
|
761
877
|
/**
|
|
762
|
-
*
|
|
878
|
+
* Lookup68: pallet_bounties::pallet::Event<T, I>
|
|
763
879
|
**/
|
|
764
880
|
PalletBountiesEvent: {
|
|
765
881
|
_enum: {
|
|
@@ -805,7 +921,7 @@ var _default = exports.default = {
|
|
|
805
921
|
}
|
|
806
922
|
},
|
|
807
923
|
/**
|
|
808
|
-
*
|
|
924
|
+
* Lookup69: pallet_child_bounties::pallet::Event<T>
|
|
809
925
|
**/
|
|
810
926
|
PalletChildBountiesEvent: {
|
|
811
927
|
_enum: {
|
|
@@ -831,7 +947,7 @@ var _default = exports.default = {
|
|
|
831
947
|
}
|
|
832
948
|
},
|
|
833
949
|
/**
|
|
834
|
-
*
|
|
950
|
+
* Lookup70: pallet_bags_list::pallet::Event<T, I>
|
|
835
951
|
**/
|
|
836
952
|
PalletBagsListEvent: {
|
|
837
953
|
_enum: {
|
|
@@ -847,7 +963,7 @@ var _default = exports.default = {
|
|
|
847
963
|
}
|
|
848
964
|
},
|
|
849
965
|
/**
|
|
850
|
-
*
|
|
966
|
+
* Lookup71: pallet_nomination_pools::pallet::Event<T>
|
|
851
967
|
**/
|
|
852
968
|
PalletNominationPoolsEvent: {
|
|
853
969
|
_enum: {
|
|
@@ -935,20 +1051,20 @@ var _default = exports.default = {
|
|
|
935
1051
|
}
|
|
936
1052
|
},
|
|
937
1053
|
/**
|
|
938
|
-
*
|
|
1054
|
+
* Lookup72: pallet_nomination_pools::PoolState
|
|
939
1055
|
**/
|
|
940
1056
|
PalletNominationPoolsPoolState: {
|
|
941
1057
|
_enum: ['Open', 'Blocked', 'Destroying']
|
|
942
1058
|
},
|
|
943
1059
|
/**
|
|
944
|
-
*
|
|
1060
|
+
* Lookup75: pallet_nomination_pools::CommissionChangeRate<BlockNumber>
|
|
945
1061
|
**/
|
|
946
1062
|
PalletNominationPoolsCommissionChangeRate: {
|
|
947
1063
|
maxIncrease: 'Perbill',
|
|
948
1064
|
minDelay: 'u64'
|
|
949
1065
|
},
|
|
950
1066
|
/**
|
|
951
|
-
*
|
|
1067
|
+
* Lookup77: pallet_nomination_pools::CommissionClaimPermission<sp_core::crypto::AccountId32>
|
|
952
1068
|
**/
|
|
953
1069
|
PalletNominationPoolsCommissionClaimPermission: {
|
|
954
1070
|
_enum: {
|
|
@@ -957,7 +1073,7 @@ var _default = exports.default = {
|
|
|
957
1073
|
}
|
|
958
1074
|
},
|
|
959
1075
|
/**
|
|
960
|
-
*
|
|
1076
|
+
* Lookup78: pallet_scheduler::pallet::Event<T>
|
|
961
1077
|
**/
|
|
962
1078
|
PalletSchedulerEvent: {
|
|
963
1079
|
_enum: {
|
|
@@ -989,7 +1105,7 @@ var _default = exports.default = {
|
|
|
989
1105
|
}
|
|
990
1106
|
},
|
|
991
1107
|
/**
|
|
992
|
-
*
|
|
1108
|
+
* Lookup81: pallet_preimage::pallet::Event<T>
|
|
993
1109
|
**/
|
|
994
1110
|
PalletPreimageEvent: {
|
|
995
1111
|
_enum: {
|
|
@@ -1014,7 +1130,7 @@ var _default = exports.default = {
|
|
|
1014
1130
|
}
|
|
1015
1131
|
},
|
|
1016
1132
|
/**
|
|
1017
|
-
*
|
|
1133
|
+
* Lookup82: pallet_offences::pallet::Event
|
|
1018
1134
|
**/
|
|
1019
1135
|
PalletOffencesEvent: {
|
|
1020
1136
|
_enum: {
|
|
@@ -1025,7 +1141,7 @@ var _default = exports.default = {
|
|
|
1025
1141
|
}
|
|
1026
1142
|
},
|
|
1027
1143
|
/**
|
|
1028
|
-
*
|
|
1144
|
+
* Lookup84: pallet_tx_pause::pallet::Event<T>
|
|
1029
1145
|
**/
|
|
1030
1146
|
PalletTxPauseEvent: {
|
|
1031
1147
|
_enum: {
|
|
@@ -1038,7 +1154,7 @@ var _default = exports.default = {
|
|
|
1038
1154
|
}
|
|
1039
1155
|
},
|
|
1040
1156
|
/**
|
|
1041
|
-
*
|
|
1157
|
+
* Lookup87: pallet_im_online::pallet::Event<T>
|
|
1042
1158
|
**/
|
|
1043
1159
|
PalletImOnlineEvent: {
|
|
1044
1160
|
_enum: {
|
|
@@ -1052,15 +1168,15 @@ var _default = exports.default = {
|
|
|
1052
1168
|
}
|
|
1053
1169
|
},
|
|
1054
1170
|
/**
|
|
1055
|
-
*
|
|
1171
|
+
* Lookup88: pallet_im_online::sr25519::app_sr25519::Public
|
|
1056
1172
|
**/
|
|
1057
1173
|
PalletImOnlineSr25519AppSr25519Public: 'SpCoreSr25519Public',
|
|
1058
1174
|
/**
|
|
1059
|
-
*
|
|
1175
|
+
* Lookup89: sp_core::sr25519::Public
|
|
1060
1176
|
**/
|
|
1061
1177
|
SpCoreSr25519Public: '[u8;32]',
|
|
1062
1178
|
/**
|
|
1063
|
-
*
|
|
1179
|
+
* Lookup92: sp_staking::Exposure<sp_core::crypto::AccountId32, Balance>
|
|
1064
1180
|
**/
|
|
1065
1181
|
SpStakingExposure: {
|
|
1066
1182
|
total: 'Compact<u128>',
|
|
@@ -1068,14 +1184,14 @@ var _default = exports.default = {
|
|
|
1068
1184
|
others: 'Vec<SpStakingIndividualExposure>'
|
|
1069
1185
|
},
|
|
1070
1186
|
/**
|
|
1071
|
-
*
|
|
1187
|
+
* Lookup95: sp_staking::IndividualExposure<sp_core::crypto::AccountId32, Balance>
|
|
1072
1188
|
**/
|
|
1073
1189
|
SpStakingIndividualExposure: {
|
|
1074
1190
|
who: 'AccountId32',
|
|
1075
1191
|
value: 'Compact<u128>'
|
|
1076
1192
|
},
|
|
1077
1193
|
/**
|
|
1078
|
-
*
|
|
1194
|
+
* Lookup96: pallet_identity::pallet::Event<T>
|
|
1079
1195
|
**/
|
|
1080
1196
|
PalletIdentityEvent: {
|
|
1081
1197
|
_enum: {
|
|
@@ -1149,7 +1265,7 @@ var _default = exports.default = {
|
|
|
1149
1265
|
}
|
|
1150
1266
|
},
|
|
1151
1267
|
/**
|
|
1152
|
-
*
|
|
1268
|
+
* Lookup98: pallet_utility::pallet::Event
|
|
1153
1269
|
**/
|
|
1154
1270
|
PalletUtilityEvent: {
|
|
1155
1271
|
_enum: {
|
|
@@ -1169,7 +1285,7 @@ var _default = exports.default = {
|
|
|
1169
1285
|
}
|
|
1170
1286
|
},
|
|
1171
1287
|
/**
|
|
1172
|
-
*
|
|
1288
|
+
* Lookup99: pallet_multisig::pallet::Event<T>
|
|
1173
1289
|
**/
|
|
1174
1290
|
PalletMultisigEvent: {
|
|
1175
1291
|
_enum: {
|
|
@@ -1200,14 +1316,14 @@ var _default = exports.default = {
|
|
|
1200
1316
|
}
|
|
1201
1317
|
},
|
|
1202
1318
|
/**
|
|
1203
|
-
*
|
|
1319
|
+
* Lookup100: pallet_multisig::Timepoint<BlockNumber>
|
|
1204
1320
|
**/
|
|
1205
1321
|
PalletMultisigTimepoint: {
|
|
1206
1322
|
height: 'u64',
|
|
1207
1323
|
index: 'u32'
|
|
1208
1324
|
},
|
|
1209
1325
|
/**
|
|
1210
|
-
*
|
|
1326
|
+
* Lookup101: pallet_ethereum::pallet::Event
|
|
1211
1327
|
**/
|
|
1212
1328
|
PalletEthereumEvent: {
|
|
1213
1329
|
_enum: {
|
|
@@ -1221,7 +1337,7 @@ var _default = exports.default = {
|
|
|
1221
1337
|
}
|
|
1222
1338
|
},
|
|
1223
1339
|
/**
|
|
1224
|
-
*
|
|
1340
|
+
* Lookup104: evm_core::error::ExitReason
|
|
1225
1341
|
**/
|
|
1226
1342
|
EvmCoreErrorExitReason: {
|
|
1227
1343
|
_enum: {
|
|
@@ -1232,13 +1348,13 @@ var _default = exports.default = {
|
|
|
1232
1348
|
}
|
|
1233
1349
|
},
|
|
1234
1350
|
/**
|
|
1235
|
-
*
|
|
1351
|
+
* Lookup105: evm_core::error::ExitSucceed
|
|
1236
1352
|
**/
|
|
1237
1353
|
EvmCoreErrorExitSucceed: {
|
|
1238
1354
|
_enum: ['Stopped', 'Returned', 'Suicided']
|
|
1239
1355
|
},
|
|
1240
1356
|
/**
|
|
1241
|
-
*
|
|
1357
|
+
* Lookup106: evm_core::error::ExitError
|
|
1242
1358
|
**/
|
|
1243
1359
|
EvmCoreErrorExitError: {
|
|
1244
1360
|
_enum: {
|
|
@@ -1261,13 +1377,13 @@ var _default = exports.default = {
|
|
|
1261
1377
|
}
|
|
1262
1378
|
},
|
|
1263
1379
|
/**
|
|
1264
|
-
*
|
|
1380
|
+
* Lookup110: evm_core::error::ExitRevert
|
|
1265
1381
|
**/
|
|
1266
1382
|
EvmCoreErrorExitRevert: {
|
|
1267
1383
|
_enum: ['Reverted']
|
|
1268
1384
|
},
|
|
1269
1385
|
/**
|
|
1270
|
-
*
|
|
1386
|
+
* Lookup111: evm_core::error::ExitFatal
|
|
1271
1387
|
**/
|
|
1272
1388
|
EvmCoreErrorExitFatal: {
|
|
1273
1389
|
_enum: {
|
|
@@ -1278,7 +1394,7 @@ var _default = exports.default = {
|
|
|
1278
1394
|
}
|
|
1279
1395
|
},
|
|
1280
1396
|
/**
|
|
1281
|
-
*
|
|
1397
|
+
* Lookup112: pallet_evm::pallet::Event<T>
|
|
1282
1398
|
**/
|
|
1283
1399
|
PalletEvmEvent: {
|
|
1284
1400
|
_enum: {
|
|
@@ -1300,7 +1416,7 @@ var _default = exports.default = {
|
|
|
1300
1416
|
}
|
|
1301
1417
|
},
|
|
1302
1418
|
/**
|
|
1303
|
-
*
|
|
1419
|
+
* Lookup113: ethereum::log::Log
|
|
1304
1420
|
**/
|
|
1305
1421
|
EthereumLog: {
|
|
1306
1422
|
address: 'H160',
|
|
@@ -1308,7 +1424,7 @@ var _default = exports.default = {
|
|
|
1308
1424
|
data: 'Bytes'
|
|
1309
1425
|
},
|
|
1310
1426
|
/**
|
|
1311
|
-
*
|
|
1427
|
+
* Lookup115: pallet_base_fee::pallet::Event
|
|
1312
1428
|
**/
|
|
1313
1429
|
PalletBaseFeeEvent: {
|
|
1314
1430
|
_enum: {
|
|
@@ -1322,7 +1438,7 @@ var _default = exports.default = {
|
|
|
1322
1438
|
}
|
|
1323
1439
|
},
|
|
1324
1440
|
/**
|
|
1325
|
-
*
|
|
1441
|
+
* Lookup119: pallet_airdrop_claims::pallet::Event<T>
|
|
1326
1442
|
**/
|
|
1327
1443
|
PalletAirdropClaimsEvent: {
|
|
1328
1444
|
_enum: {
|
|
@@ -1334,7 +1450,7 @@ var _default = exports.default = {
|
|
|
1334
1450
|
}
|
|
1335
1451
|
},
|
|
1336
1452
|
/**
|
|
1337
|
-
*
|
|
1453
|
+
* Lookup120: pallet_airdrop_claims::utils::MultiAddress
|
|
1338
1454
|
**/
|
|
1339
1455
|
PalletAirdropClaimsUtilsMultiAddress: {
|
|
1340
1456
|
_enum: {
|
|
@@ -1343,11 +1459,11 @@ var _default = exports.default = {
|
|
|
1343
1459
|
}
|
|
1344
1460
|
},
|
|
1345
1461
|
/**
|
|
1346
|
-
*
|
|
1462
|
+
* Lookup121: pallet_airdrop_claims::utils::ethereum_address::EthereumAddress
|
|
1347
1463
|
**/
|
|
1348
1464
|
PalletAirdropClaimsUtilsEthereumAddress: '[u8;20]',
|
|
1349
1465
|
/**
|
|
1350
|
-
*
|
|
1466
|
+
* Lookup122: pallet_roles::pallet::Event<T>
|
|
1351
1467
|
**/
|
|
1352
1468
|
PalletRolesEvent: {
|
|
1353
1469
|
_enum: {
|
|
@@ -1396,7 +1512,7 @@ var _default = exports.default = {
|
|
|
1396
1512
|
}
|
|
1397
1513
|
},
|
|
1398
1514
|
/**
|
|
1399
|
-
*
|
|
1515
|
+
* Lookup123: tangle_primitives::roles::RoleType
|
|
1400
1516
|
**/
|
|
1401
1517
|
TanglePrimitivesRolesRoleType: {
|
|
1402
1518
|
_enum: {
|
|
@@ -1406,19 +1522,19 @@ var _default = exports.default = {
|
|
|
1406
1522
|
}
|
|
1407
1523
|
},
|
|
1408
1524
|
/**
|
|
1409
|
-
*
|
|
1525
|
+
* Lookup124: tangle_primitives::roles::tss::ThresholdSignatureRoleType
|
|
1410
1526
|
**/
|
|
1411
1527
|
TanglePrimitivesRolesTssThresholdSignatureRoleType: {
|
|
1412
|
-
_enum: ['DfnsCGGMP21Secp256k1', 'DfnsCGGMP21Secp256r1', 'DfnsCGGMP21Stark', 'SilentShardDKLS23Secp256k1', 'ZcashFrostP256', 'ZcashFrostP384', 'ZcashFrostSecp256k1', 'ZcashFrostRistretto255', 'ZcashFrostEd25519', 'ZcashFrostEd448', 'GennaroDKGBls381']
|
|
1528
|
+
_enum: ['DfnsCGGMP21Secp256k1', 'DfnsCGGMP21Secp256r1', 'DfnsCGGMP21Stark', 'SilentShardDKLS23Secp256k1', 'ZcashFrostP256', 'ZcashFrostP384', 'ZcashFrostSecp256k1', 'ZcashFrostRistretto255', 'ZcashFrostEd25519', 'ZcashFrostEd448', 'GennaroDKGBls381', 'WstsV2']
|
|
1413
1529
|
},
|
|
1414
1530
|
/**
|
|
1415
|
-
*
|
|
1531
|
+
* Lookup125: tangle_primitives::roles::zksaas::ZeroKnowledgeRoleType
|
|
1416
1532
|
**/
|
|
1417
1533
|
TanglePrimitivesRolesZksaasZeroKnowledgeRoleType: {
|
|
1418
1534
|
_enum: ['ZkSaaSGroth16', 'ZkSaaSMarlin']
|
|
1419
1535
|
},
|
|
1420
1536
|
/**
|
|
1421
|
-
*
|
|
1537
|
+
* Lookup129: pallet_jobs::module::Event<T>
|
|
1422
1538
|
**/
|
|
1423
1539
|
PalletJobsModuleEvent: {
|
|
1424
1540
|
_enum: {
|
|
@@ -1457,7 +1573,7 @@ var _default = exports.default = {
|
|
|
1457
1573
|
}
|
|
1458
1574
|
},
|
|
1459
1575
|
/**
|
|
1460
|
-
*
|
|
1576
|
+
* Lookup130: tangle_primitives::jobs::JobSubmission<sp_core::crypto::AccountId32, BlockNumber, tangle_testnet_runtime::MaxParticipants, tangle_testnet_runtime::MaxSubmissionLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
|
1461
1577
|
**/
|
|
1462
1578
|
TanglePrimitivesJobsJobSubmission: {
|
|
1463
1579
|
expiry: 'u64',
|
|
@@ -1466,19 +1582,19 @@ var _default = exports.default = {
|
|
|
1466
1582
|
fallback: 'TanglePrimitivesJobsFallbackOptions'
|
|
1467
1583
|
},
|
|
1468
1584
|
/**
|
|
1469
|
-
*
|
|
1585
|
+
* Lookup131: tangle_testnet_runtime::MaxParticipants
|
|
1470
1586
|
**/
|
|
1471
1587
|
TangleTestnetRuntimeMaxParticipants: 'Null',
|
|
1472
1588
|
/**
|
|
1473
|
-
*
|
|
1589
|
+
* Lookup132: tangle_testnet_runtime::MaxSubmissionLen
|
|
1474
1590
|
**/
|
|
1475
1591
|
TangleTestnetRuntimeMaxSubmissionLen: 'Null',
|
|
1476
1592
|
/**
|
|
1477
|
-
*
|
|
1593
|
+
* Lookup133: tangle_testnet_runtime::MaxAdditionalParamsLen
|
|
1478
1594
|
**/
|
|
1479
1595
|
TangleTestnetRuntimeMaxAdditionalParamsLen: 'Null',
|
|
1480
1596
|
/**
|
|
1481
|
-
*
|
|
1597
|
+
* Lookup134: tangle_primitives::jobs::JobType<sp_core::crypto::AccountId32, tangle_testnet_runtime::MaxParticipants, tangle_testnet_runtime::MaxSubmissionLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
|
1482
1598
|
**/
|
|
1483
1599
|
TanglePrimitivesJobsJobType: {
|
|
1484
1600
|
_enum: {
|
|
@@ -1491,16 +1607,17 @@ var _default = exports.default = {
|
|
|
1491
1607
|
}
|
|
1492
1608
|
},
|
|
1493
1609
|
/**
|
|
1494
|
-
*
|
|
1610
|
+
* Lookup135: tangle_primitives::jobs::tss::DKGTSSPhaseOneJobType<sp_core::crypto::AccountId32, tangle_testnet_runtime::MaxParticipants>
|
|
1495
1611
|
**/
|
|
1496
1612
|
TanglePrimitivesJobsTssDkgtssPhaseOneJobType: {
|
|
1497
1613
|
participants: 'Vec<AccountId32>',
|
|
1498
1614
|
threshold: 'u8',
|
|
1499
1615
|
permittedCaller: 'Option<AccountId32>',
|
|
1500
|
-
roleType: 'TanglePrimitivesRolesTssThresholdSignatureRoleType'
|
|
1616
|
+
roleType: 'TanglePrimitivesRolesTssThresholdSignatureRoleType',
|
|
1617
|
+
hdWallet: 'bool'
|
|
1501
1618
|
},
|
|
1502
1619
|
/**
|
|
1503
|
-
*
|
|
1620
|
+
* Lookup138: tangle_primitives::jobs::tss::DKGTSSPhaseTwoJobType<tangle_testnet_runtime::MaxSubmissionLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
|
1504
1621
|
**/
|
|
1505
1622
|
TanglePrimitivesJobsTssDkgtssPhaseTwoJobType: {
|
|
1506
1623
|
phaseOneId: 'u64',
|
|
@@ -1509,14 +1626,14 @@ var _default = exports.default = {
|
|
|
1509
1626
|
roleType: 'TanglePrimitivesRolesTssThresholdSignatureRoleType'
|
|
1510
1627
|
},
|
|
1511
1628
|
/**
|
|
1512
|
-
*
|
|
1629
|
+
* Lookup142: tangle_primitives::jobs::tss::DKGTSSPhaseThreeJobType
|
|
1513
1630
|
**/
|
|
1514
1631
|
TanglePrimitivesJobsTssDkgtssPhaseThreeJobType: {
|
|
1515
1632
|
phaseOneId: 'u64',
|
|
1516
1633
|
roleType: 'TanglePrimitivesRolesTssThresholdSignatureRoleType'
|
|
1517
1634
|
},
|
|
1518
1635
|
/**
|
|
1519
|
-
*
|
|
1636
|
+
* Lookup143: tangle_primitives::jobs::tss::DKGTSSPhaseFourJobType
|
|
1520
1637
|
**/
|
|
1521
1638
|
TanglePrimitivesJobsTssDkgtssPhaseFourJobType: {
|
|
1522
1639
|
phaseOneId: 'u64',
|
|
@@ -1524,7 +1641,7 @@ var _default = exports.default = {
|
|
|
1524
1641
|
roleType: 'TanglePrimitivesRolesTssThresholdSignatureRoleType'
|
|
1525
1642
|
},
|
|
1526
1643
|
/**
|
|
1527
|
-
*
|
|
1644
|
+
* Lookup144: tangle_primitives::jobs::zksaas::ZkSaaSPhaseOneJobType<sp_core::crypto::AccountId32, tangle_testnet_runtime::MaxParticipants, tangle_testnet_runtime::MaxSubmissionLen>
|
|
1528
1645
|
**/
|
|
1529
1646
|
TanglePrimitivesJobsZksaasZkSaaSPhaseOneJobType: {
|
|
1530
1647
|
participants: 'Vec<AccountId32>',
|
|
@@ -1533,7 +1650,7 @@ var _default = exports.default = {
|
|
|
1533
1650
|
roleType: 'TanglePrimitivesRolesZksaasZeroKnowledgeRoleType'
|
|
1534
1651
|
},
|
|
1535
1652
|
/**
|
|
1536
|
-
*
|
|
1653
|
+
* Lookup145: tangle_primitives::jobs::zksaas::ZkSaaSSystem<tangle_testnet_runtime::MaxSubmissionLen>
|
|
1537
1654
|
**/
|
|
1538
1655
|
TanglePrimitivesJobsZksaasZkSaaSSystem: {
|
|
1539
1656
|
_enum: {
|
|
@@ -1541,7 +1658,7 @@ var _default = exports.default = {
|
|
|
1541
1658
|
}
|
|
1542
1659
|
},
|
|
1543
1660
|
/**
|
|
1544
|
-
*
|
|
1661
|
+
* Lookup146: tangle_primitives::jobs::zksaas::Groth16System<tangle_testnet_runtime::MaxSubmissionLen>
|
|
1545
1662
|
**/
|
|
1546
1663
|
TanglePrimitivesJobsZksaasGroth16System: {
|
|
1547
1664
|
circuit: 'TanglePrimitivesJobsZksaasHyperData',
|
|
@@ -1552,7 +1669,7 @@ var _default = exports.default = {
|
|
|
1552
1669
|
wasm: 'TanglePrimitivesJobsZksaasHyperData'
|
|
1553
1670
|
},
|
|
1554
1671
|
/**
|
|
1555
|
-
*
|
|
1672
|
+
* Lookup147: tangle_primitives::jobs::zksaas::HyperData<tangle_testnet_runtime::MaxSubmissionLen>
|
|
1556
1673
|
**/
|
|
1557
1674
|
TanglePrimitivesJobsZksaasHyperData: {
|
|
1558
1675
|
_enum: {
|
|
@@ -1562,7 +1679,7 @@ var _default = exports.default = {
|
|
|
1562
1679
|
}
|
|
1563
1680
|
},
|
|
1564
1681
|
/**
|
|
1565
|
-
*
|
|
1682
|
+
* Lookup148: tangle_primitives::jobs::zksaas::ZkSaaSPhaseTwoJobType<tangle_testnet_runtime::MaxSubmissionLen>
|
|
1566
1683
|
**/
|
|
1567
1684
|
TanglePrimitivesJobsZksaasZkSaaSPhaseTwoJobType: {
|
|
1568
1685
|
phaseOneId: 'u64',
|
|
@@ -1570,7 +1687,7 @@ var _default = exports.default = {
|
|
|
1570
1687
|
roleType: 'TanglePrimitivesRolesZksaasZeroKnowledgeRoleType'
|
|
1571
1688
|
},
|
|
1572
1689
|
/**
|
|
1573
|
-
*
|
|
1690
|
+
* Lookup149: tangle_primitives::jobs::zksaas::ZkSaaSPhaseTwoRequest<tangle_testnet_runtime::MaxSubmissionLen>
|
|
1574
1691
|
**/
|
|
1575
1692
|
TanglePrimitivesJobsZksaasZkSaaSPhaseTwoRequest: {
|
|
1576
1693
|
_enum: {
|
|
@@ -1578,7 +1695,7 @@ var _default = exports.default = {
|
|
|
1578
1695
|
}
|
|
1579
1696
|
},
|
|
1580
1697
|
/**
|
|
1581
|
-
*
|
|
1698
|
+
* Lookup150: tangle_primitives::jobs::zksaas::Groth16ProveRequest<tangle_testnet_runtime::MaxSubmissionLen>
|
|
1582
1699
|
**/
|
|
1583
1700
|
TanglePrimitivesJobsZksaasGroth16ProveRequest: {
|
|
1584
1701
|
publicInput: 'Bytes',
|
|
@@ -1587,7 +1704,7 @@ var _default = exports.default = {
|
|
|
1587
1704
|
qapShares: 'Vec<TanglePrimitivesJobsZksaasQapShare>'
|
|
1588
1705
|
},
|
|
1589
1706
|
/**
|
|
1590
|
-
*
|
|
1707
|
+
* Lookup154: tangle_primitives::jobs::zksaas::QAPShare<tangle_testnet_runtime::MaxSubmissionLen>
|
|
1591
1708
|
**/
|
|
1592
1709
|
TanglePrimitivesJobsZksaasQapShare: {
|
|
1593
1710
|
a: 'TanglePrimitivesJobsZksaasHyperData',
|
|
@@ -1595,7 +1712,7 @@ var _default = exports.default = {
|
|
|
1595
1712
|
c: 'TanglePrimitivesJobsZksaasHyperData'
|
|
1596
1713
|
},
|
|
1597
1714
|
/**
|
|
1598
|
-
*
|
|
1715
|
+
* Lookup156: tangle_primitives::jobs::FallbackOptions
|
|
1599
1716
|
**/
|
|
1600
1717
|
TanglePrimitivesJobsFallbackOptions: {
|
|
1601
1718
|
_enum: {
|
|
@@ -1604,7 +1721,7 @@ var _default = exports.default = {
|
|
|
1604
1721
|
}
|
|
1605
1722
|
},
|
|
1606
1723
|
/**
|
|
1607
|
-
*
|
|
1724
|
+
* Lookup157: tangle_primitives::jobs::JobInfo<sp_core::crypto::AccountId32, BlockNumber, Balance, tangle_testnet_runtime::MaxParticipants, tangle_testnet_runtime::MaxSubmissionLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
|
1608
1725
|
**/
|
|
1609
1726
|
TanglePrimitivesJobsJobInfo: {
|
|
1610
1727
|
owner: 'AccountId32',
|
|
@@ -1615,7 +1732,7 @@ var _default = exports.default = {
|
|
|
1615
1732
|
fallback: 'TanglePrimitivesJobsFallbackOptions'
|
|
1616
1733
|
},
|
|
1617
1734
|
/**
|
|
1618
|
-
*
|
|
1735
|
+
* Lookup158: pallet_dkg::pallet::Event<T>
|
|
1619
1736
|
**/
|
|
1620
1737
|
PalletDkgEvent: {
|
|
1621
1738
|
_enum: {
|
|
@@ -1628,7 +1745,7 @@ var _default = exports.default = {
|
|
|
1628
1745
|
}
|
|
1629
1746
|
},
|
|
1630
1747
|
/**
|
|
1631
|
-
*
|
|
1748
|
+
* Lookup159: pallet_dkg::types::FeeInfo<Balance>
|
|
1632
1749
|
**/
|
|
1633
1750
|
PalletDkgFeeInfo: {
|
|
1634
1751
|
baseFee: 'u128',
|
|
@@ -1639,7 +1756,7 @@ var _default = exports.default = {
|
|
|
1639
1756
|
storageFeePerBlock: 'u128'
|
|
1640
1757
|
},
|
|
1641
1758
|
/**
|
|
1642
|
-
*
|
|
1759
|
+
* Lookup160: pallet_zksaas::pallet::Event<T>
|
|
1643
1760
|
**/
|
|
1644
1761
|
PalletZksaasEvent: {
|
|
1645
1762
|
_enum: {
|
|
@@ -1647,7 +1764,7 @@ var _default = exports.default = {
|
|
|
1647
1764
|
}
|
|
1648
1765
|
},
|
|
1649
1766
|
/**
|
|
1650
|
-
*
|
|
1767
|
+
* Lookup161: pallet_zksaas::types::FeeInfo<Balance>
|
|
1651
1768
|
**/
|
|
1652
1769
|
PalletZksaasFeeInfo: {
|
|
1653
1770
|
baseFee: 'u128',
|
|
@@ -1656,7 +1773,374 @@ var _default = exports.default = {
|
|
|
1656
1773
|
storageFeePerByte: 'u128'
|
|
1657
1774
|
},
|
|
1658
1775
|
/**
|
|
1659
|
-
*
|
|
1776
|
+
* Lookup162: pallet_proxy::pallet::Event<T>
|
|
1777
|
+
**/
|
|
1778
|
+
PalletProxyEvent: {
|
|
1779
|
+
_enum: {
|
|
1780
|
+
ProxyExecuted: {
|
|
1781
|
+
result: 'Result<Null, SpRuntimeDispatchError>'
|
|
1782
|
+
},
|
|
1783
|
+
PureCreated: {
|
|
1784
|
+
pure: 'AccountId32',
|
|
1785
|
+
who: 'AccountId32',
|
|
1786
|
+
proxyType: 'TangleTestnetRuntimeProxyType',
|
|
1787
|
+
disambiguationIndex: 'u16'
|
|
1788
|
+
},
|
|
1789
|
+
Announced: {
|
|
1790
|
+
real: 'AccountId32',
|
|
1791
|
+
proxy: 'AccountId32',
|
|
1792
|
+
callHash: 'H256'
|
|
1793
|
+
},
|
|
1794
|
+
ProxyAdded: {
|
|
1795
|
+
delegator: 'AccountId32',
|
|
1796
|
+
delegatee: 'AccountId32',
|
|
1797
|
+
proxyType: 'TangleTestnetRuntimeProxyType',
|
|
1798
|
+
delay: 'u64'
|
|
1799
|
+
},
|
|
1800
|
+
ProxyRemoved: {
|
|
1801
|
+
delegator: 'AccountId32',
|
|
1802
|
+
delegatee: 'AccountId32',
|
|
1803
|
+
proxyType: 'TangleTestnetRuntimeProxyType',
|
|
1804
|
+
delay: 'u64'
|
|
1805
|
+
}
|
|
1806
|
+
}
|
|
1807
|
+
},
|
|
1808
|
+
/**
|
|
1809
|
+
* Lookup163: tangle_testnet_runtime::ProxyType
|
|
1810
|
+
**/
|
|
1811
|
+
TangleTestnetRuntimeProxyType: {
|
|
1812
|
+
_enum: ['Any', 'NonTransfer', 'Governance', 'Staking']
|
|
1813
|
+
},
|
|
1814
|
+
/**
|
|
1815
|
+
* Lookup165: pallet_multi_asset_delegation::pallet::Event<T>
|
|
1816
|
+
**/
|
|
1817
|
+
PalletMultiAssetDelegationEvent: {
|
|
1818
|
+
_enum: {
|
|
1819
|
+
OperatorJoined: {
|
|
1820
|
+
who: 'AccountId32'
|
|
1821
|
+
},
|
|
1822
|
+
OperatorLeavingScheduled: {
|
|
1823
|
+
who: 'AccountId32'
|
|
1824
|
+
},
|
|
1825
|
+
OperatorLeaveCancelled: {
|
|
1826
|
+
who: 'AccountId32'
|
|
1827
|
+
},
|
|
1828
|
+
OperatorLeaveExecuted: {
|
|
1829
|
+
who: 'AccountId32'
|
|
1830
|
+
},
|
|
1831
|
+
OperatorBondMore: {
|
|
1832
|
+
who: 'AccountId32',
|
|
1833
|
+
additionalBond: 'u128'
|
|
1834
|
+
},
|
|
1835
|
+
OperatorBondLessScheduled: {
|
|
1836
|
+
who: 'AccountId32',
|
|
1837
|
+
bondLessAmount: 'u128'
|
|
1838
|
+
},
|
|
1839
|
+
OperatorBondLessExecuted: {
|
|
1840
|
+
who: 'AccountId32'
|
|
1841
|
+
},
|
|
1842
|
+
OperatorBondLessCancelled: {
|
|
1843
|
+
who: 'AccountId32'
|
|
1844
|
+
},
|
|
1845
|
+
OperatorWentOffline: {
|
|
1846
|
+
who: 'AccountId32'
|
|
1847
|
+
},
|
|
1848
|
+
OperatorWentOnline: {
|
|
1849
|
+
who: 'AccountId32'
|
|
1850
|
+
},
|
|
1851
|
+
Deposited: {
|
|
1852
|
+
who: 'AccountId32',
|
|
1853
|
+
amount: 'u128',
|
|
1854
|
+
assetId: 'Option<u128>'
|
|
1855
|
+
},
|
|
1856
|
+
ScheduledUnstake: {
|
|
1857
|
+
who: 'AccountId32',
|
|
1858
|
+
amount: 'u128',
|
|
1859
|
+
assetId: 'Option<u128>'
|
|
1860
|
+
},
|
|
1861
|
+
ExecutedUnstake: {
|
|
1862
|
+
who: 'AccountId32'
|
|
1863
|
+
},
|
|
1864
|
+
CancelledUnstake: {
|
|
1865
|
+
who: 'AccountId32'
|
|
1866
|
+
},
|
|
1867
|
+
Delegated: {
|
|
1868
|
+
who: 'AccountId32',
|
|
1869
|
+
operator: 'AccountId32',
|
|
1870
|
+
amount: 'u128',
|
|
1871
|
+
assetId: 'u128'
|
|
1872
|
+
},
|
|
1873
|
+
ScheduledDelegatorBondLess: {
|
|
1874
|
+
who: 'AccountId32',
|
|
1875
|
+
operator: 'AccountId32',
|
|
1876
|
+
amount: 'u128',
|
|
1877
|
+
assetId: 'u128'
|
|
1878
|
+
},
|
|
1879
|
+
ExecutedDelegatorBondLess: {
|
|
1880
|
+
who: 'AccountId32'
|
|
1881
|
+
},
|
|
1882
|
+
CancelledDelegatorBondLess: {
|
|
1883
|
+
who: 'AccountId32'
|
|
1884
|
+
},
|
|
1885
|
+
WhitelistedAssetsSet: {
|
|
1886
|
+
assets: 'Vec<u128>'
|
|
1887
|
+
},
|
|
1888
|
+
IncentiveAPYAndCapSet: {
|
|
1889
|
+
assetId: 'u128',
|
|
1890
|
+
apy: 'u128',
|
|
1891
|
+
cap: 'u128'
|
|
1892
|
+
},
|
|
1893
|
+
BlueprintWhitelisted: {
|
|
1894
|
+
blueprintId: 'u32'
|
|
1895
|
+
}
|
|
1896
|
+
}
|
|
1897
|
+
},
|
|
1898
|
+
/**
|
|
1899
|
+
* Lookup168: sygma_access_segregator::pallet::Event<T>
|
|
1900
|
+
**/
|
|
1901
|
+
SygmaAccessSegregatorEvent: {
|
|
1902
|
+
_enum: {
|
|
1903
|
+
AccessGranted: {
|
|
1904
|
+
palletIndex: 'u8',
|
|
1905
|
+
extrinsicName: 'Bytes',
|
|
1906
|
+
who: 'AccountId32'
|
|
1907
|
+
}
|
|
1908
|
+
}
|
|
1909
|
+
},
|
|
1910
|
+
/**
|
|
1911
|
+
* Lookup169: sygma_basic_feehandler::pallet::Event<T>
|
|
1912
|
+
**/
|
|
1913
|
+
SygmaBasicFeehandlerEvent: {
|
|
1914
|
+
_enum: {
|
|
1915
|
+
FeeSet: {
|
|
1916
|
+
domain: 'u8',
|
|
1917
|
+
asset: 'StagingXcmV4AssetAssetId',
|
|
1918
|
+
amount: 'u128'
|
|
1919
|
+
}
|
|
1920
|
+
}
|
|
1921
|
+
},
|
|
1922
|
+
/**
|
|
1923
|
+
* Lookup170: staging_xcm::v4::asset::AssetId
|
|
1924
|
+
**/
|
|
1925
|
+
StagingXcmV4AssetAssetId: 'StagingXcmV4Location',
|
|
1926
|
+
/**
|
|
1927
|
+
* Lookup171: staging_xcm::v4::location::Location
|
|
1928
|
+
**/
|
|
1929
|
+
StagingXcmV4Location: {
|
|
1930
|
+
parents: 'u8',
|
|
1931
|
+
interior: 'StagingXcmV4Junctions'
|
|
1932
|
+
},
|
|
1933
|
+
/**
|
|
1934
|
+
* Lookup172: staging_xcm::v4::junctions::Junctions
|
|
1935
|
+
**/
|
|
1936
|
+
StagingXcmV4Junctions: {
|
|
1937
|
+
_enum: {
|
|
1938
|
+
Here: 'Null',
|
|
1939
|
+
X1: '[Lookup174;1]',
|
|
1940
|
+
X2: '[Lookup174;2]',
|
|
1941
|
+
X3: '[Lookup174;3]',
|
|
1942
|
+
X4: '[Lookup174;4]',
|
|
1943
|
+
X5: '[Lookup174;5]',
|
|
1944
|
+
X6: '[Lookup174;6]',
|
|
1945
|
+
X7: '[Lookup174;7]',
|
|
1946
|
+
X8: '[Lookup174;8]'
|
|
1947
|
+
}
|
|
1948
|
+
},
|
|
1949
|
+
/**
|
|
1950
|
+
* Lookup174: staging_xcm::v4::junction::Junction
|
|
1951
|
+
**/
|
|
1952
|
+
StagingXcmV4Junction: {
|
|
1953
|
+
_enum: {
|
|
1954
|
+
Parachain: 'Compact<u32>',
|
|
1955
|
+
AccountId32: {
|
|
1956
|
+
network: 'Option<StagingXcmV4JunctionNetworkId>',
|
|
1957
|
+
id: '[u8;32]'
|
|
1958
|
+
},
|
|
1959
|
+
AccountIndex64: {
|
|
1960
|
+
network: 'Option<StagingXcmV4JunctionNetworkId>',
|
|
1961
|
+
index: 'Compact<u64>'
|
|
1962
|
+
},
|
|
1963
|
+
AccountKey20: {
|
|
1964
|
+
network: 'Option<StagingXcmV4JunctionNetworkId>',
|
|
1965
|
+
key: '[u8;20]'
|
|
1966
|
+
},
|
|
1967
|
+
PalletInstance: 'u8',
|
|
1968
|
+
GeneralIndex: 'Compact<u128>',
|
|
1969
|
+
GeneralKey: {
|
|
1970
|
+
length: 'u8',
|
|
1971
|
+
data: '[u8;32]'
|
|
1972
|
+
},
|
|
1973
|
+
OnlyChild: 'Null',
|
|
1974
|
+
Plurality: {
|
|
1975
|
+
id: 'XcmV3JunctionBodyId',
|
|
1976
|
+
part: 'XcmV3JunctionBodyPart'
|
|
1977
|
+
},
|
|
1978
|
+
GlobalConsensus: 'StagingXcmV4JunctionNetworkId'
|
|
1979
|
+
}
|
|
1980
|
+
},
|
|
1981
|
+
/**
|
|
1982
|
+
* Lookup177: staging_xcm::v4::junction::NetworkId
|
|
1983
|
+
**/
|
|
1984
|
+
StagingXcmV4JunctionNetworkId: {
|
|
1985
|
+
_enum: {
|
|
1986
|
+
ByGenesis: '[u8;32]',
|
|
1987
|
+
ByFork: {
|
|
1988
|
+
blockNumber: 'u64',
|
|
1989
|
+
blockHash: '[u8;32]'
|
|
1990
|
+
},
|
|
1991
|
+
Polkadot: 'Null',
|
|
1992
|
+
Kusama: 'Null',
|
|
1993
|
+
Westend: 'Null',
|
|
1994
|
+
Rococo: 'Null',
|
|
1995
|
+
Wococo: 'Null',
|
|
1996
|
+
Ethereum: {
|
|
1997
|
+
chainId: 'Compact<u64>'
|
|
1998
|
+
},
|
|
1999
|
+
BitcoinCore: 'Null',
|
|
2000
|
+
BitcoinCash: 'Null',
|
|
2001
|
+
PolkadotBulletin: 'Null'
|
|
2002
|
+
}
|
|
2003
|
+
},
|
|
2004
|
+
/**
|
|
2005
|
+
* Lookup178: xcm::v3::junction::BodyId
|
|
2006
|
+
**/
|
|
2007
|
+
XcmV3JunctionBodyId: {
|
|
2008
|
+
_enum: {
|
|
2009
|
+
Unit: 'Null',
|
|
2010
|
+
Moniker: '[u8;4]',
|
|
2011
|
+
Index: 'Compact<u32>',
|
|
2012
|
+
Executive: 'Null',
|
|
2013
|
+
Technical: 'Null',
|
|
2014
|
+
Legislative: 'Null',
|
|
2015
|
+
Judicial: 'Null',
|
|
2016
|
+
Defense: 'Null',
|
|
2017
|
+
Administration: 'Null',
|
|
2018
|
+
Treasury: 'Null'
|
|
2019
|
+
}
|
|
2020
|
+
},
|
|
2021
|
+
/**
|
|
2022
|
+
* Lookup179: xcm::v3::junction::BodyPart
|
|
2023
|
+
**/
|
|
2024
|
+
XcmV3JunctionBodyPart: {
|
|
2025
|
+
_enum: {
|
|
2026
|
+
Voice: 'Null',
|
|
2027
|
+
Members: {
|
|
2028
|
+
count: 'Compact<u32>'
|
|
2029
|
+
},
|
|
2030
|
+
Fraction: {
|
|
2031
|
+
nom: 'Compact<u32>',
|
|
2032
|
+
denom: 'Compact<u32>'
|
|
2033
|
+
},
|
|
2034
|
+
AtLeastProportion: {
|
|
2035
|
+
nom: 'Compact<u32>',
|
|
2036
|
+
denom: 'Compact<u32>'
|
|
2037
|
+
},
|
|
2038
|
+
MoreThanProportion: {
|
|
2039
|
+
nom: 'Compact<u32>',
|
|
2040
|
+
denom: 'Compact<u32>'
|
|
2041
|
+
}
|
|
2042
|
+
}
|
|
2043
|
+
},
|
|
2044
|
+
/**
|
|
2045
|
+
* Lookup187: sygma_fee_handler_router::pallet::Event<T>
|
|
2046
|
+
**/
|
|
2047
|
+
SygmaFeeHandlerRouterEvent: {
|
|
2048
|
+
_enum: {
|
|
2049
|
+
FeeHandlerSet: {
|
|
2050
|
+
domain: 'u8',
|
|
2051
|
+
asset: 'StagingXcmV4AssetAssetId',
|
|
2052
|
+
handlerType: 'SygmaFeeHandlerRouterFeeHandlerType'
|
|
2053
|
+
}
|
|
2054
|
+
}
|
|
2055
|
+
},
|
|
2056
|
+
/**
|
|
2057
|
+
* Lookup188: sygma_fee_handler_router::pallet::FeeHandlerType
|
|
2058
|
+
**/
|
|
2059
|
+
SygmaFeeHandlerRouterFeeHandlerType: {
|
|
2060
|
+
_enum: ['BasicFeeHandler', 'PercentageFeeHandler', 'DynamicFeeHandler']
|
|
2061
|
+
},
|
|
2062
|
+
/**
|
|
2063
|
+
* Lookup189: sygma_percentage_feehandler::pallet::Event<T>
|
|
2064
|
+
**/
|
|
2065
|
+
SygmaPercentageFeehandlerEvent: {
|
|
2066
|
+
_enum: {
|
|
2067
|
+
FeeRateSet: {
|
|
2068
|
+
domain: 'u8',
|
|
2069
|
+
asset: 'StagingXcmV4AssetAssetId',
|
|
2070
|
+
rateBasisPoint: 'u32',
|
|
2071
|
+
feeLowerBound: 'u128',
|
|
2072
|
+
feeUpperBound: 'u128'
|
|
2073
|
+
}
|
|
2074
|
+
}
|
|
2075
|
+
},
|
|
2076
|
+
/**
|
|
2077
|
+
* Lookup190: sygma_bridge::pallet::Event<T>
|
|
2078
|
+
**/
|
|
2079
|
+
SygmaBridgeEvent: {
|
|
2080
|
+
_enum: {
|
|
2081
|
+
Deposit: {
|
|
2082
|
+
destDomainId: 'u8',
|
|
2083
|
+
resourceId: '[u8;32]',
|
|
2084
|
+
depositNonce: 'u64',
|
|
2085
|
+
sender: 'AccountId32',
|
|
2086
|
+
transferType: 'SygmaTraitsTransferType',
|
|
2087
|
+
depositData: 'Bytes',
|
|
2088
|
+
handlerResponse: 'Bytes'
|
|
2089
|
+
},
|
|
2090
|
+
ProposalExecution: {
|
|
2091
|
+
originDomainId: 'u8',
|
|
2092
|
+
depositNonce: 'u64',
|
|
2093
|
+
dataHash: '[u8;32]'
|
|
2094
|
+
},
|
|
2095
|
+
FailedHandlerExecution: {
|
|
2096
|
+
error: 'Bytes',
|
|
2097
|
+
originDomainId: 'u8',
|
|
2098
|
+
depositNonce: 'u64'
|
|
2099
|
+
},
|
|
2100
|
+
Retry: {
|
|
2101
|
+
depositOnBlockHeight: 'u128',
|
|
2102
|
+
destDomainId: 'u8',
|
|
2103
|
+
sender: 'AccountId32'
|
|
2104
|
+
},
|
|
2105
|
+
BridgePaused: {
|
|
2106
|
+
destDomainId: 'u8'
|
|
2107
|
+
},
|
|
2108
|
+
BridgeUnpaused: {
|
|
2109
|
+
destDomainId: 'u8'
|
|
2110
|
+
},
|
|
2111
|
+
RegisterDestDomain: {
|
|
2112
|
+
sender: 'AccountId32',
|
|
2113
|
+
domainId: 'u8',
|
|
2114
|
+
chainId: 'U256'
|
|
2115
|
+
},
|
|
2116
|
+
UnregisterDestDomain: {
|
|
2117
|
+
sender: 'AccountId32',
|
|
2118
|
+
domainId: 'u8',
|
|
2119
|
+
chainId: 'U256'
|
|
2120
|
+
},
|
|
2121
|
+
FeeCollected: {
|
|
2122
|
+
feePayer: 'AccountId32',
|
|
2123
|
+
destDomainId: 'u8',
|
|
2124
|
+
resourceId: '[u8;32]',
|
|
2125
|
+
feeAmount: 'u128',
|
|
2126
|
+
feeAssetId: 'StagingXcmV4AssetAssetId'
|
|
2127
|
+
},
|
|
2128
|
+
AllBridgePaused: {
|
|
2129
|
+
sender: 'AccountId32'
|
|
2130
|
+
},
|
|
2131
|
+
AllBridgeUnpaused: {
|
|
2132
|
+
sender: 'AccountId32'
|
|
2133
|
+
}
|
|
2134
|
+
}
|
|
2135
|
+
},
|
|
2136
|
+
/**
|
|
2137
|
+
* Lookup191: sygma_traits::TransferType
|
|
2138
|
+
**/
|
|
2139
|
+
SygmaTraitsTransferType: {
|
|
2140
|
+
_enum: ['FungibleTransfer', 'NonFungibleTransfer', 'GenericTransfer']
|
|
2141
|
+
},
|
|
2142
|
+
/**
|
|
2143
|
+
* Lookup192: frame_system::Phase
|
|
1660
2144
|
**/
|
|
1661
2145
|
FrameSystemPhase: {
|
|
1662
2146
|
_enum: {
|
|
@@ -1666,21 +2150,21 @@ var _default = exports.default = {
|
|
|
1666
2150
|
}
|
|
1667
2151
|
},
|
|
1668
2152
|
/**
|
|
1669
|
-
*
|
|
2153
|
+
* Lookup194: frame_system::LastRuntimeUpgradeInfo
|
|
1670
2154
|
**/
|
|
1671
2155
|
FrameSystemLastRuntimeUpgradeInfo: {
|
|
1672
2156
|
specVersion: 'Compact<u32>',
|
|
1673
2157
|
specName: 'Text'
|
|
1674
2158
|
},
|
|
1675
2159
|
/**
|
|
1676
|
-
*
|
|
2160
|
+
* Lookup195: frame_system::CodeUpgradeAuthorization<T>
|
|
1677
2161
|
**/
|
|
1678
2162
|
FrameSystemCodeUpgradeAuthorization: {
|
|
1679
2163
|
codeHash: 'H256',
|
|
1680
2164
|
checkVersion: 'bool'
|
|
1681
2165
|
},
|
|
1682
2166
|
/**
|
|
1683
|
-
*
|
|
2167
|
+
* Lookup196: frame_system::pallet::Call<T>
|
|
1684
2168
|
**/
|
|
1685
2169
|
FrameSystemCall: {
|
|
1686
2170
|
_enum: {
|
|
@@ -1725,7 +2209,7 @@ var _default = exports.default = {
|
|
|
1725
2209
|
}
|
|
1726
2210
|
},
|
|
1727
2211
|
/**
|
|
1728
|
-
*
|
|
2212
|
+
* Lookup200: frame_system::limits::BlockWeights
|
|
1729
2213
|
**/
|
|
1730
2214
|
FrameSystemLimitsBlockWeights: {
|
|
1731
2215
|
baseBlock: 'SpWeightsWeightV2Weight',
|
|
@@ -1733,7 +2217,7 @@ var _default = exports.default = {
|
|
|
1733
2217
|
perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
|
|
1734
2218
|
},
|
|
1735
2219
|
/**
|
|
1736
|
-
*
|
|
2220
|
+
* Lookup201: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
1737
2221
|
**/
|
|
1738
2222
|
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
|
1739
2223
|
normal: 'FrameSystemLimitsWeightsPerClass',
|
|
@@ -1741,7 +2225,7 @@ var _default = exports.default = {
|
|
|
1741
2225
|
mandatory: 'FrameSystemLimitsWeightsPerClass'
|
|
1742
2226
|
},
|
|
1743
2227
|
/**
|
|
1744
|
-
*
|
|
2228
|
+
* Lookup202: frame_system::limits::WeightsPerClass
|
|
1745
2229
|
**/
|
|
1746
2230
|
FrameSystemLimitsWeightsPerClass: {
|
|
1747
2231
|
baseExtrinsic: 'SpWeightsWeightV2Weight',
|
|
@@ -1750,13 +2234,13 @@ var _default = exports.default = {
|
|
|
1750
2234
|
reserved: 'Option<SpWeightsWeightV2Weight>'
|
|
1751
2235
|
},
|
|
1752
2236
|
/**
|
|
1753
|
-
*
|
|
2237
|
+
* Lookup204: frame_system::limits::BlockLength
|
|
1754
2238
|
**/
|
|
1755
2239
|
FrameSystemLimitsBlockLength: {
|
|
1756
2240
|
max: 'FrameSupportDispatchPerDispatchClassU32'
|
|
1757
2241
|
},
|
|
1758
2242
|
/**
|
|
1759
|
-
*
|
|
2243
|
+
* Lookup205: frame_support::dispatch::PerDispatchClass<T>
|
|
1760
2244
|
**/
|
|
1761
2245
|
FrameSupportDispatchPerDispatchClassU32: {
|
|
1762
2246
|
normal: 'u32',
|
|
@@ -1764,14 +2248,14 @@ var _default = exports.default = {
|
|
|
1764
2248
|
mandatory: 'u32'
|
|
1765
2249
|
},
|
|
1766
2250
|
/**
|
|
1767
|
-
*
|
|
2251
|
+
* Lookup206: sp_weights::RuntimeDbWeight
|
|
1768
2252
|
**/
|
|
1769
2253
|
SpWeightsRuntimeDbWeight: {
|
|
1770
2254
|
read: 'u64',
|
|
1771
2255
|
write: 'u64'
|
|
1772
2256
|
},
|
|
1773
2257
|
/**
|
|
1774
|
-
*
|
|
2258
|
+
* Lookup207: sp_version::RuntimeVersion
|
|
1775
2259
|
**/
|
|
1776
2260
|
SpVersionRuntimeVersion: {
|
|
1777
2261
|
specName: 'Text',
|
|
@@ -1784,13 +2268,13 @@ var _default = exports.default = {
|
|
|
1784
2268
|
stateVersion: 'u8'
|
|
1785
2269
|
},
|
|
1786
2270
|
/**
|
|
1787
|
-
*
|
|
2271
|
+
* Lookup212: frame_system::pallet::Error<T>
|
|
1788
2272
|
**/
|
|
1789
2273
|
FrameSystemError: {
|
|
1790
2274
|
_enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered', 'NothingAuthorized', 'Unauthorized']
|
|
1791
2275
|
},
|
|
1792
2276
|
/**
|
|
1793
|
-
*
|
|
2277
|
+
* Lookup213: pallet_timestamp::pallet::Call<T>
|
|
1794
2278
|
**/
|
|
1795
2279
|
PalletTimestampCall: {
|
|
1796
2280
|
_enum: {
|
|
@@ -1800,7 +2284,7 @@ var _default = exports.default = {
|
|
|
1800
2284
|
}
|
|
1801
2285
|
},
|
|
1802
2286
|
/**
|
|
1803
|
-
*
|
|
2287
|
+
* Lookup214: pallet_sudo::pallet::Call<T>
|
|
1804
2288
|
**/
|
|
1805
2289
|
PalletSudoCall: {
|
|
1806
2290
|
_enum: {
|
|
@@ -1825,7 +2309,159 @@ var _default = exports.default = {
|
|
|
1825
2309
|
}
|
|
1826
2310
|
},
|
|
1827
2311
|
/**
|
|
1828
|
-
*
|
|
2312
|
+
* Lookup216: pallet_assets::pallet::Call<T, I>
|
|
2313
|
+
**/
|
|
2314
|
+
PalletAssetsCall: {
|
|
2315
|
+
_enum: {
|
|
2316
|
+
create: {
|
|
2317
|
+
id: 'Compact<u128>',
|
|
2318
|
+
admin: 'MultiAddress',
|
|
2319
|
+
minBalance: 'u128'
|
|
2320
|
+
},
|
|
2321
|
+
force_create: {
|
|
2322
|
+
id: 'Compact<u128>',
|
|
2323
|
+
owner: 'MultiAddress',
|
|
2324
|
+
isSufficient: 'bool',
|
|
2325
|
+
minBalance: 'Compact<u128>'
|
|
2326
|
+
},
|
|
2327
|
+
start_destroy: {
|
|
2328
|
+
id: 'Compact<u128>'
|
|
2329
|
+
},
|
|
2330
|
+
destroy_accounts: {
|
|
2331
|
+
id: 'Compact<u128>'
|
|
2332
|
+
},
|
|
2333
|
+
destroy_approvals: {
|
|
2334
|
+
id: 'Compact<u128>'
|
|
2335
|
+
},
|
|
2336
|
+
finish_destroy: {
|
|
2337
|
+
id: 'Compact<u128>'
|
|
2338
|
+
},
|
|
2339
|
+
mint: {
|
|
2340
|
+
id: 'Compact<u128>',
|
|
2341
|
+
beneficiary: 'MultiAddress',
|
|
2342
|
+
amount: 'Compact<u128>'
|
|
2343
|
+
},
|
|
2344
|
+
burn: {
|
|
2345
|
+
id: 'Compact<u128>',
|
|
2346
|
+
who: 'MultiAddress',
|
|
2347
|
+
amount: 'Compact<u128>'
|
|
2348
|
+
},
|
|
2349
|
+
transfer: {
|
|
2350
|
+
id: 'Compact<u128>',
|
|
2351
|
+
target: 'MultiAddress',
|
|
2352
|
+
amount: 'Compact<u128>'
|
|
2353
|
+
},
|
|
2354
|
+
transfer_keep_alive: {
|
|
2355
|
+
id: 'Compact<u128>',
|
|
2356
|
+
target: 'MultiAddress',
|
|
2357
|
+
amount: 'Compact<u128>'
|
|
2358
|
+
},
|
|
2359
|
+
force_transfer: {
|
|
2360
|
+
id: 'Compact<u128>',
|
|
2361
|
+
source: 'MultiAddress',
|
|
2362
|
+
dest: 'MultiAddress',
|
|
2363
|
+
amount: 'Compact<u128>'
|
|
2364
|
+
},
|
|
2365
|
+
freeze: {
|
|
2366
|
+
id: 'Compact<u128>',
|
|
2367
|
+
who: 'MultiAddress'
|
|
2368
|
+
},
|
|
2369
|
+
thaw: {
|
|
2370
|
+
id: 'Compact<u128>',
|
|
2371
|
+
who: 'MultiAddress'
|
|
2372
|
+
},
|
|
2373
|
+
freeze_asset: {
|
|
2374
|
+
id: 'Compact<u128>'
|
|
2375
|
+
},
|
|
2376
|
+
thaw_asset: {
|
|
2377
|
+
id: 'Compact<u128>'
|
|
2378
|
+
},
|
|
2379
|
+
transfer_ownership: {
|
|
2380
|
+
id: 'Compact<u128>',
|
|
2381
|
+
owner: 'MultiAddress'
|
|
2382
|
+
},
|
|
2383
|
+
set_team: {
|
|
2384
|
+
id: 'Compact<u128>',
|
|
2385
|
+
issuer: 'MultiAddress',
|
|
2386
|
+
admin: 'MultiAddress',
|
|
2387
|
+
freezer: 'MultiAddress'
|
|
2388
|
+
},
|
|
2389
|
+
set_metadata: {
|
|
2390
|
+
id: 'Compact<u128>',
|
|
2391
|
+
name: 'Bytes',
|
|
2392
|
+
symbol: 'Bytes',
|
|
2393
|
+
decimals: 'u8'
|
|
2394
|
+
},
|
|
2395
|
+
clear_metadata: {
|
|
2396
|
+
id: 'Compact<u128>'
|
|
2397
|
+
},
|
|
2398
|
+
force_set_metadata: {
|
|
2399
|
+
id: 'Compact<u128>',
|
|
2400
|
+
name: 'Bytes',
|
|
2401
|
+
symbol: 'Bytes',
|
|
2402
|
+
decimals: 'u8',
|
|
2403
|
+
isFrozen: 'bool'
|
|
2404
|
+
},
|
|
2405
|
+
force_clear_metadata: {
|
|
2406
|
+
id: 'Compact<u128>'
|
|
2407
|
+
},
|
|
2408
|
+
force_asset_status: {
|
|
2409
|
+
id: 'Compact<u128>',
|
|
2410
|
+
owner: 'MultiAddress',
|
|
2411
|
+
issuer: 'MultiAddress',
|
|
2412
|
+
admin: 'MultiAddress',
|
|
2413
|
+
freezer: 'MultiAddress',
|
|
2414
|
+
minBalance: 'Compact<u128>',
|
|
2415
|
+
isSufficient: 'bool',
|
|
2416
|
+
isFrozen: 'bool'
|
|
2417
|
+
},
|
|
2418
|
+
approve_transfer: {
|
|
2419
|
+
id: 'Compact<u128>',
|
|
2420
|
+
delegate: 'MultiAddress',
|
|
2421
|
+
amount: 'Compact<u128>'
|
|
2422
|
+
},
|
|
2423
|
+
cancel_approval: {
|
|
2424
|
+
id: 'Compact<u128>',
|
|
2425
|
+
delegate: 'MultiAddress'
|
|
2426
|
+
},
|
|
2427
|
+
force_cancel_approval: {
|
|
2428
|
+
id: 'Compact<u128>',
|
|
2429
|
+
owner: 'MultiAddress',
|
|
2430
|
+
delegate: 'MultiAddress'
|
|
2431
|
+
},
|
|
2432
|
+
transfer_approved: {
|
|
2433
|
+
id: 'Compact<u128>',
|
|
2434
|
+
owner: 'MultiAddress',
|
|
2435
|
+
destination: 'MultiAddress',
|
|
2436
|
+
amount: 'Compact<u128>'
|
|
2437
|
+
},
|
|
2438
|
+
touch: {
|
|
2439
|
+
id: 'Compact<u128>'
|
|
2440
|
+
},
|
|
2441
|
+
refund: {
|
|
2442
|
+
id: 'Compact<u128>',
|
|
2443
|
+
allowBurn: 'bool'
|
|
2444
|
+
},
|
|
2445
|
+
set_min_balance: {
|
|
2446
|
+
id: 'Compact<u128>',
|
|
2447
|
+
minBalance: 'u128'
|
|
2448
|
+
},
|
|
2449
|
+
touch_other: {
|
|
2450
|
+
id: 'Compact<u128>',
|
|
2451
|
+
who: 'MultiAddress'
|
|
2452
|
+
},
|
|
2453
|
+
refund_other: {
|
|
2454
|
+
id: 'Compact<u128>',
|
|
2455
|
+
who: 'MultiAddress'
|
|
2456
|
+
},
|
|
2457
|
+
block: {
|
|
2458
|
+
id: 'Compact<u128>',
|
|
2459
|
+
who: 'MultiAddress'
|
|
2460
|
+
}
|
|
2461
|
+
}
|
|
2462
|
+
},
|
|
2463
|
+
/**
|
|
2464
|
+
* Lookup218: pallet_balances::pallet::Call<T, I>
|
|
1829
2465
|
**/
|
|
1830
2466
|
PalletBalancesCall: {
|
|
1831
2467
|
_enum: {
|
|
@@ -1866,13 +2502,13 @@ var _default = exports.default = {
|
|
|
1866
2502
|
}
|
|
1867
2503
|
},
|
|
1868
2504
|
/**
|
|
1869
|
-
*
|
|
2505
|
+
* Lookup219: pallet_balances::types::AdjustmentDirection
|
|
1870
2506
|
**/
|
|
1871
2507
|
PalletBalancesAdjustmentDirection: {
|
|
1872
2508
|
_enum: ['Increase', 'Decrease']
|
|
1873
2509
|
},
|
|
1874
2510
|
/**
|
|
1875
|
-
*
|
|
2511
|
+
* Lookup220: pallet_babe::pallet::Call<T>
|
|
1876
2512
|
**/
|
|
1877
2513
|
PalletBabeCall: {
|
|
1878
2514
|
_enum: {
|
|
@@ -1890,7 +2526,7 @@ var _default = exports.default = {
|
|
|
1890
2526
|
}
|
|
1891
2527
|
},
|
|
1892
2528
|
/**
|
|
1893
|
-
*
|
|
2529
|
+
* Lookup221: sp_consensus_slots::EquivocationProof<sp_runtime::generic::header::Header<Number, Hash>, sp_consensus_babe::app::Public>
|
|
1894
2530
|
**/
|
|
1895
2531
|
SpConsensusSlotsEquivocationProof: {
|
|
1896
2532
|
offender: 'SpConsensusBabeAppPublic',
|
|
@@ -1899,7 +2535,7 @@ var _default = exports.default = {
|
|
|
1899
2535
|
secondHeader: 'SpRuntimeHeader'
|
|
1900
2536
|
},
|
|
1901
2537
|
/**
|
|
1902
|
-
*
|
|
2538
|
+
* Lookup222: sp_runtime::generic::header::Header<Number, Hash>
|
|
1903
2539
|
**/
|
|
1904
2540
|
SpRuntimeHeader: {
|
|
1905
2541
|
parentHash: 'H256',
|
|
@@ -1909,11 +2545,11 @@ var _default = exports.default = {
|
|
|
1909
2545
|
digest: 'SpRuntimeDigest'
|
|
1910
2546
|
},
|
|
1911
2547
|
/**
|
|
1912
|
-
*
|
|
2548
|
+
* Lookup223: sp_consensus_babe::app::Public
|
|
1913
2549
|
**/
|
|
1914
2550
|
SpConsensusBabeAppPublic: 'SpCoreSr25519Public',
|
|
1915
2551
|
/**
|
|
1916
|
-
*
|
|
2552
|
+
* Lookup225: sp_session::MembershipProof
|
|
1917
2553
|
**/
|
|
1918
2554
|
SpSessionMembershipProof: {
|
|
1919
2555
|
session: 'u32',
|
|
@@ -1921,7 +2557,7 @@ var _default = exports.default = {
|
|
|
1921
2557
|
validatorCount: 'u32'
|
|
1922
2558
|
},
|
|
1923
2559
|
/**
|
|
1924
|
-
*
|
|
2560
|
+
* Lookup226: sp_consensus_babe::digests::NextConfigDescriptor
|
|
1925
2561
|
**/
|
|
1926
2562
|
SpConsensusBabeDigestsNextConfigDescriptor: {
|
|
1927
2563
|
_enum: {
|
|
@@ -1933,13 +2569,13 @@ var _default = exports.default = {
|
|
|
1933
2569
|
}
|
|
1934
2570
|
},
|
|
1935
2571
|
/**
|
|
1936
|
-
*
|
|
2572
|
+
* Lookup228: sp_consensus_babe::AllowedSlots
|
|
1937
2573
|
**/
|
|
1938
2574
|
SpConsensusBabeAllowedSlots: {
|
|
1939
2575
|
_enum: ['PrimarySlots', 'PrimaryAndSecondaryPlainSlots', 'PrimaryAndSecondaryVRFSlots']
|
|
1940
2576
|
},
|
|
1941
2577
|
/**
|
|
1942
|
-
*
|
|
2578
|
+
* Lookup229: pallet_grandpa::pallet::Call<T>
|
|
1943
2579
|
**/
|
|
1944
2580
|
PalletGrandpaCall: {
|
|
1945
2581
|
_enum: {
|
|
@@ -1958,14 +2594,14 @@ var _default = exports.default = {
|
|
|
1958
2594
|
}
|
|
1959
2595
|
},
|
|
1960
2596
|
/**
|
|
1961
|
-
*
|
|
2597
|
+
* Lookup230: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
1962
2598
|
**/
|
|
1963
2599
|
SpConsensusGrandpaEquivocationProof: {
|
|
1964
2600
|
setId: 'u64',
|
|
1965
2601
|
equivocation: 'SpConsensusGrandpaEquivocation'
|
|
1966
2602
|
},
|
|
1967
2603
|
/**
|
|
1968
|
-
*
|
|
2604
|
+
* Lookup231: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
1969
2605
|
**/
|
|
1970
2606
|
SpConsensusGrandpaEquivocation: {
|
|
1971
2607
|
_enum: {
|
|
@@ -1974,7 +2610,7 @@ var _default = exports.default = {
|
|
|
1974
2610
|
}
|
|
1975
2611
|
},
|
|
1976
2612
|
/**
|
|
1977
|
-
*
|
|
2613
|
+
* Lookup232: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
1978
2614
|
**/
|
|
1979
2615
|
FinalityGrandpaEquivocationPrevote: {
|
|
1980
2616
|
roundNumber: 'u64',
|
|
@@ -1983,22 +2619,22 @@ var _default = exports.default = {
|
|
|
1983
2619
|
second: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)'
|
|
1984
2620
|
},
|
|
1985
2621
|
/**
|
|
1986
|
-
*
|
|
2622
|
+
* Lookup233: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
1987
2623
|
**/
|
|
1988
2624
|
FinalityGrandpaPrevote: {
|
|
1989
2625
|
targetHash: 'H256',
|
|
1990
2626
|
targetNumber: 'u64'
|
|
1991
2627
|
},
|
|
1992
2628
|
/**
|
|
1993
|
-
*
|
|
2629
|
+
* Lookup234: sp_consensus_grandpa::app::Signature
|
|
1994
2630
|
**/
|
|
1995
2631
|
SpConsensusGrandpaAppSignature: 'SpCoreEd25519Signature',
|
|
1996
2632
|
/**
|
|
1997
|
-
*
|
|
2633
|
+
* Lookup235: sp_core::ed25519::Signature
|
|
1998
2634
|
**/
|
|
1999
2635
|
SpCoreEd25519Signature: '[u8;64]',
|
|
2000
2636
|
/**
|
|
2001
|
-
*
|
|
2637
|
+
* Lookup238: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2002
2638
|
**/
|
|
2003
2639
|
FinalityGrandpaEquivocationPrecommit: {
|
|
2004
2640
|
roundNumber: 'u64',
|
|
@@ -2007,18 +2643,18 @@ var _default = exports.default = {
|
|
|
2007
2643
|
second: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)'
|
|
2008
2644
|
},
|
|
2009
2645
|
/**
|
|
2010
|
-
*
|
|
2646
|
+
* Lookup239: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
2011
2647
|
**/
|
|
2012
2648
|
FinalityGrandpaPrecommit: {
|
|
2013
2649
|
targetHash: 'H256',
|
|
2014
2650
|
targetNumber: 'u64'
|
|
2015
2651
|
},
|
|
2016
2652
|
/**
|
|
2017
|
-
*
|
|
2653
|
+
* Lookup241: sp_core::Void
|
|
2018
2654
|
**/
|
|
2019
2655
|
SpCoreVoid: 'Null',
|
|
2020
2656
|
/**
|
|
2021
|
-
*
|
|
2657
|
+
* Lookup242: pallet_indices::pallet::Call<T>
|
|
2022
2658
|
**/
|
|
2023
2659
|
PalletIndicesCall: {
|
|
2024
2660
|
_enum: {
|
|
@@ -2049,7 +2685,7 @@ var _default = exports.default = {
|
|
|
2049
2685
|
}
|
|
2050
2686
|
},
|
|
2051
2687
|
/**
|
|
2052
|
-
*
|
|
2688
|
+
* Lookup243: pallet_democracy::pallet::Call<T>
|
|
2053
2689
|
**/
|
|
2054
2690
|
PalletDemocracyCall: {
|
|
2055
2691
|
_enum: {
|
|
@@ -2118,7 +2754,7 @@ var _default = exports.default = {
|
|
|
2118
2754
|
}
|
|
2119
2755
|
},
|
|
2120
2756
|
/**
|
|
2121
|
-
*
|
|
2757
|
+
* Lookup244: frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>
|
|
2122
2758
|
**/
|
|
2123
2759
|
FrameSupportPreimagesBounded: {
|
|
2124
2760
|
_enum: {
|
|
@@ -2139,17 +2775,17 @@ var _default = exports.default = {
|
|
|
2139
2775
|
}
|
|
2140
2776
|
},
|
|
2141
2777
|
/**
|
|
2142
|
-
*
|
|
2778
|
+
* Lookup245: sp_runtime::traits::BlakeTwo256
|
|
2143
2779
|
**/
|
|
2144
2780
|
SpRuntimeBlakeTwo256: 'Null',
|
|
2145
2781
|
/**
|
|
2146
|
-
*
|
|
2782
|
+
* Lookup247: pallet_democracy::conviction::Conviction
|
|
2147
2783
|
**/
|
|
2148
2784
|
PalletDemocracyConviction: {
|
|
2149
2785
|
_enum: ['None', 'Locked1x', 'Locked2x', 'Locked3x', 'Locked4x', 'Locked5x', 'Locked6x']
|
|
2150
2786
|
},
|
|
2151
2787
|
/**
|
|
2152
|
-
*
|
|
2788
|
+
* Lookup250: pallet_collective::pallet::Call<T, I>
|
|
2153
2789
|
**/
|
|
2154
2790
|
PalletCollectiveCall: {
|
|
2155
2791
|
_enum: {
|
|
@@ -2185,7 +2821,7 @@ var _default = exports.default = {
|
|
|
2185
2821
|
}
|
|
2186
2822
|
},
|
|
2187
2823
|
/**
|
|
2188
|
-
*
|
|
2824
|
+
* Lookup251: pallet_vesting::pallet::Call<T>
|
|
2189
2825
|
**/
|
|
2190
2826
|
PalletVestingCall: {
|
|
2191
2827
|
_enum: {
|
|
@@ -2213,7 +2849,7 @@ var _default = exports.default = {
|
|
|
2213
2849
|
}
|
|
2214
2850
|
},
|
|
2215
2851
|
/**
|
|
2216
|
-
*
|
|
2852
|
+
* Lookup252: pallet_vesting::vesting_info::VestingInfo<Balance, BlockNumber>
|
|
2217
2853
|
**/
|
|
2218
2854
|
PalletVestingVestingInfo: {
|
|
2219
2855
|
locked: 'u128',
|
|
@@ -2221,7 +2857,7 @@ var _default = exports.default = {
|
|
|
2221
2857
|
startingBlock: 'u64'
|
|
2222
2858
|
},
|
|
2223
2859
|
/**
|
|
2224
|
-
*
|
|
2860
|
+
* Lookup253: pallet_elections_phragmen::pallet::Call<T>
|
|
2225
2861
|
**/
|
|
2226
2862
|
PalletElectionsPhragmenCall: {
|
|
2227
2863
|
_enum: {
|
|
@@ -2248,7 +2884,7 @@ var _default = exports.default = {
|
|
|
2248
2884
|
}
|
|
2249
2885
|
},
|
|
2250
2886
|
/**
|
|
2251
|
-
*
|
|
2887
|
+
* Lookup254: pallet_elections_phragmen::Renouncing
|
|
2252
2888
|
**/
|
|
2253
2889
|
PalletElectionsPhragmenRenouncing: {
|
|
2254
2890
|
_enum: {
|
|
@@ -2258,7 +2894,7 @@ var _default = exports.default = {
|
|
|
2258
2894
|
}
|
|
2259
2895
|
},
|
|
2260
2896
|
/**
|
|
2261
|
-
*
|
|
2897
|
+
* Lookup255: pallet_election_provider_multi_phase::pallet::Call<T>
|
|
2262
2898
|
**/
|
|
2263
2899
|
PalletElectionProviderMultiPhaseCall: {
|
|
2264
2900
|
_enum: {
|
|
@@ -2282,7 +2918,7 @@ var _default = exports.default = {
|
|
|
2282
2918
|
}
|
|
2283
2919
|
},
|
|
2284
2920
|
/**
|
|
2285
|
-
*
|
|
2921
|
+
* Lookup256: pallet_election_provider_multi_phase::RawSolution<tangle_testnet_runtime::NposSolution16>
|
|
2286
2922
|
**/
|
|
2287
2923
|
PalletElectionProviderMultiPhaseRawSolution: {
|
|
2288
2924
|
solution: 'TangleTestnetRuntimeNposSolution16',
|
|
@@ -2290,7 +2926,7 @@ var _default = exports.default = {
|
|
|
2290
2926
|
round: 'u32'
|
|
2291
2927
|
},
|
|
2292
2928
|
/**
|
|
2293
|
-
*
|
|
2929
|
+
* Lookup257: tangle_testnet_runtime::NposSolution16
|
|
2294
2930
|
**/
|
|
2295
2931
|
TangleTestnetRuntimeNposSolution16: {
|
|
2296
2932
|
votes1: 'Vec<(Compact<u32>,Compact<u16>)>',
|
|
@@ -2311,21 +2947,21 @@ var _default = exports.default = {
|
|
|
2311
2947
|
votes16: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);15],Compact<u16>)>'
|
|
2312
2948
|
},
|
|
2313
2949
|
/**
|
|
2314
|
-
*
|
|
2950
|
+
* Lookup308: pallet_election_provider_multi_phase::SolutionOrSnapshotSize
|
|
2315
2951
|
**/
|
|
2316
2952
|
PalletElectionProviderMultiPhaseSolutionOrSnapshotSize: {
|
|
2317
2953
|
voters: 'Compact<u32>',
|
|
2318
2954
|
targets: 'Compact<u32>'
|
|
2319
2955
|
},
|
|
2320
2956
|
/**
|
|
2321
|
-
*
|
|
2957
|
+
* Lookup312: sp_npos_elections::Support<sp_core::crypto::AccountId32>
|
|
2322
2958
|
**/
|
|
2323
2959
|
SpNposElectionsSupport: {
|
|
2324
2960
|
total: 'u128',
|
|
2325
2961
|
voters: 'Vec<(AccountId32,u128)>'
|
|
2326
2962
|
},
|
|
2327
2963
|
/**
|
|
2328
|
-
*
|
|
2964
|
+
* Lookup313: pallet_staking::pallet::pallet::Call<T>
|
|
2329
2965
|
**/
|
|
2330
2966
|
PalletStakingPalletCall: {
|
|
2331
2967
|
_enum: {
|
|
@@ -2427,7 +3063,7 @@ var _default = exports.default = {
|
|
|
2427
3063
|
}
|
|
2428
3064
|
},
|
|
2429
3065
|
/**
|
|
2430
|
-
*
|
|
3066
|
+
* Lookup317: pallet_staking::pallet::pallet::ConfigOp<T>
|
|
2431
3067
|
**/
|
|
2432
3068
|
PalletStakingPalletConfigOpU128: {
|
|
2433
3069
|
_enum: {
|
|
@@ -2437,7 +3073,7 @@ var _default = exports.default = {
|
|
|
2437
3073
|
}
|
|
2438
3074
|
},
|
|
2439
3075
|
/**
|
|
2440
|
-
*
|
|
3076
|
+
* Lookup318: pallet_staking::pallet::pallet::ConfigOp<T>
|
|
2441
3077
|
**/
|
|
2442
3078
|
PalletStakingPalletConfigOpU32: {
|
|
2443
3079
|
_enum: {
|
|
@@ -2447,7 +3083,7 @@ var _default = exports.default = {
|
|
|
2447
3083
|
}
|
|
2448
3084
|
},
|
|
2449
3085
|
/**
|
|
2450
|
-
*
|
|
3086
|
+
* Lookup319: pallet_staking::pallet::pallet::ConfigOp<sp_arithmetic::per_things::Percent>
|
|
2451
3087
|
**/
|
|
2452
3088
|
PalletStakingPalletConfigOpPercent: {
|
|
2453
3089
|
_enum: {
|
|
@@ -2457,7 +3093,7 @@ var _default = exports.default = {
|
|
|
2457
3093
|
}
|
|
2458
3094
|
},
|
|
2459
3095
|
/**
|
|
2460
|
-
*
|
|
3096
|
+
* Lookup320: pallet_staking::pallet::pallet::ConfigOp<sp_arithmetic::per_things::Perbill>
|
|
2461
3097
|
**/
|
|
2462
3098
|
PalletStakingPalletConfigOpPerbill: {
|
|
2463
3099
|
_enum: {
|
|
@@ -2467,7 +3103,7 @@ var _default = exports.default = {
|
|
|
2467
3103
|
}
|
|
2468
3104
|
},
|
|
2469
3105
|
/**
|
|
2470
|
-
*
|
|
3106
|
+
* Lookup322: pallet_session::pallet::Call<T>
|
|
2471
3107
|
**/
|
|
2472
3108
|
PalletSessionCall: {
|
|
2473
3109
|
_enum: {
|
|
@@ -2482,7 +3118,7 @@ var _default = exports.default = {
|
|
|
2482
3118
|
}
|
|
2483
3119
|
},
|
|
2484
3120
|
/**
|
|
2485
|
-
*
|
|
3121
|
+
* Lookup323: tangle_testnet_runtime::opaque::SessionKeys
|
|
2486
3122
|
**/
|
|
2487
3123
|
TangleTestnetRuntimeOpaqueSessionKeys: {
|
|
2488
3124
|
babe: 'SpConsensusBabeAppPublic',
|
|
@@ -2491,15 +3127,15 @@ var _default = exports.default = {
|
|
|
2491
3127
|
role: 'TangleCryptoPrimitivesCryptoPublic'
|
|
2492
3128
|
},
|
|
2493
3129
|
/**
|
|
2494
|
-
*
|
|
3130
|
+
* Lookup324: tangle_crypto_primitives::crypto::Public
|
|
2495
3131
|
**/
|
|
2496
3132
|
TangleCryptoPrimitivesCryptoPublic: 'SpCoreEcdsaPublic',
|
|
2497
3133
|
/**
|
|
2498
|
-
*
|
|
3134
|
+
* Lookup325: sp_core::ecdsa::Public
|
|
2499
3135
|
**/
|
|
2500
3136
|
SpCoreEcdsaPublic: '[u8;33]',
|
|
2501
3137
|
/**
|
|
2502
|
-
*
|
|
3138
|
+
* Lookup327: pallet_treasury::pallet::Call<T, I>
|
|
2503
3139
|
**/
|
|
2504
3140
|
PalletTreasuryCall: {
|
|
2505
3141
|
_enum: {
|
|
@@ -2538,7 +3174,7 @@ var _default = exports.default = {
|
|
|
2538
3174
|
}
|
|
2539
3175
|
},
|
|
2540
3176
|
/**
|
|
2541
|
-
*
|
|
3177
|
+
* Lookup329: pallet_bounties::pallet::Call<T, I>
|
|
2542
3178
|
**/
|
|
2543
3179
|
PalletBountiesCall: {
|
|
2544
3180
|
_enum: {
|
|
@@ -2577,7 +3213,7 @@ var _default = exports.default = {
|
|
|
2577
3213
|
}
|
|
2578
3214
|
},
|
|
2579
3215
|
/**
|
|
2580
|
-
*
|
|
3216
|
+
* Lookup330: pallet_child_bounties::pallet::Call<T>
|
|
2581
3217
|
**/
|
|
2582
3218
|
PalletChildBountiesCall: {
|
|
2583
3219
|
_enum: {
|
|
@@ -2616,7 +3252,7 @@ var _default = exports.default = {
|
|
|
2616
3252
|
}
|
|
2617
3253
|
},
|
|
2618
3254
|
/**
|
|
2619
|
-
*
|
|
3255
|
+
* Lookup331: pallet_bags_list::pallet::Call<T, I>
|
|
2620
3256
|
**/
|
|
2621
3257
|
PalletBagsListCall: {
|
|
2622
3258
|
_enum: {
|
|
@@ -2633,7 +3269,7 @@ var _default = exports.default = {
|
|
|
2633
3269
|
}
|
|
2634
3270
|
},
|
|
2635
3271
|
/**
|
|
2636
|
-
*
|
|
3272
|
+
* Lookup332: pallet_nomination_pools::pallet::Call<T>
|
|
2637
3273
|
**/
|
|
2638
3274
|
PalletNominationPoolsCall: {
|
|
2639
3275
|
_enum: {
|
|
@@ -2734,7 +3370,7 @@ var _default = exports.default = {
|
|
|
2734
3370
|
}
|
|
2735
3371
|
},
|
|
2736
3372
|
/**
|
|
2737
|
-
*
|
|
3373
|
+
* Lookup333: pallet_nomination_pools::BondExtra<Balance>
|
|
2738
3374
|
**/
|
|
2739
3375
|
PalletNominationPoolsBondExtra: {
|
|
2740
3376
|
_enum: {
|
|
@@ -2743,7 +3379,7 @@ var _default = exports.default = {
|
|
|
2743
3379
|
}
|
|
2744
3380
|
},
|
|
2745
3381
|
/**
|
|
2746
|
-
*
|
|
3382
|
+
* Lookup334: pallet_nomination_pools::ConfigOp<T>
|
|
2747
3383
|
**/
|
|
2748
3384
|
PalletNominationPoolsConfigOpU128: {
|
|
2749
3385
|
_enum: {
|
|
@@ -2753,7 +3389,7 @@ var _default = exports.default = {
|
|
|
2753
3389
|
}
|
|
2754
3390
|
},
|
|
2755
3391
|
/**
|
|
2756
|
-
*
|
|
3392
|
+
* Lookup335: pallet_nomination_pools::ConfigOp<T>
|
|
2757
3393
|
**/
|
|
2758
3394
|
PalletNominationPoolsConfigOpU32: {
|
|
2759
3395
|
_enum: {
|
|
@@ -2763,7 +3399,7 @@ var _default = exports.default = {
|
|
|
2763
3399
|
}
|
|
2764
3400
|
},
|
|
2765
3401
|
/**
|
|
2766
|
-
*
|
|
3402
|
+
* Lookup336: pallet_nomination_pools::ConfigOp<sp_arithmetic::per_things::Perbill>
|
|
2767
3403
|
**/
|
|
2768
3404
|
PalletNominationPoolsConfigOpPerbill: {
|
|
2769
3405
|
_enum: {
|
|
@@ -2773,7 +3409,7 @@ var _default = exports.default = {
|
|
|
2773
3409
|
}
|
|
2774
3410
|
},
|
|
2775
3411
|
/**
|
|
2776
|
-
*
|
|
3412
|
+
* Lookup337: pallet_nomination_pools::ConfigOp<sp_core::crypto::AccountId32>
|
|
2777
3413
|
**/
|
|
2778
3414
|
PalletNominationPoolsConfigOpAccountId32: {
|
|
2779
3415
|
_enum: {
|
|
@@ -2783,13 +3419,13 @@ var _default = exports.default = {
|
|
|
2783
3419
|
}
|
|
2784
3420
|
},
|
|
2785
3421
|
/**
|
|
2786
|
-
*
|
|
3422
|
+
* Lookup338: pallet_nomination_pools::ClaimPermission
|
|
2787
3423
|
**/
|
|
2788
3424
|
PalletNominationPoolsClaimPermission: {
|
|
2789
3425
|
_enum: ['Permissioned', 'PermissionlessCompound', 'PermissionlessWithdraw', 'PermissionlessAll']
|
|
2790
3426
|
},
|
|
2791
3427
|
/**
|
|
2792
|
-
*
|
|
3428
|
+
* Lookup339: pallet_scheduler::pallet::Call<T>
|
|
2793
3429
|
**/
|
|
2794
3430
|
PalletSchedulerCall: {
|
|
2795
3431
|
_enum: {
|
|
@@ -2829,7 +3465,7 @@ var _default = exports.default = {
|
|
|
2829
3465
|
}
|
|
2830
3466
|
},
|
|
2831
3467
|
/**
|
|
2832
|
-
*
|
|
3468
|
+
* Lookup341: pallet_preimage::pallet::Call<T>
|
|
2833
3469
|
**/
|
|
2834
3470
|
PalletPreimageCall: {
|
|
2835
3471
|
_enum: {
|
|
@@ -2860,7 +3496,7 @@ var _default = exports.default = {
|
|
|
2860
3496
|
}
|
|
2861
3497
|
},
|
|
2862
3498
|
/**
|
|
2863
|
-
*
|
|
3499
|
+
* Lookup342: pallet_tx_pause::pallet::Call<T>
|
|
2864
3500
|
**/
|
|
2865
3501
|
PalletTxPauseCall: {
|
|
2866
3502
|
_enum: {
|
|
@@ -2873,7 +3509,7 @@ var _default = exports.default = {
|
|
|
2873
3509
|
}
|
|
2874
3510
|
},
|
|
2875
3511
|
/**
|
|
2876
|
-
*
|
|
3512
|
+
* Lookup343: pallet_im_online::pallet::Call<T>
|
|
2877
3513
|
**/
|
|
2878
3514
|
PalletImOnlineCall: {
|
|
2879
3515
|
_enum: {
|
|
@@ -2884,7 +3520,7 @@ var _default = exports.default = {
|
|
|
2884
3520
|
}
|
|
2885
3521
|
},
|
|
2886
3522
|
/**
|
|
2887
|
-
*
|
|
3523
|
+
* Lookup344: pallet_im_online::Heartbeat<BlockNumber>
|
|
2888
3524
|
**/
|
|
2889
3525
|
PalletImOnlineHeartbeat: {
|
|
2890
3526
|
blockNumber: 'u64',
|
|
@@ -2893,15 +3529,15 @@ var _default = exports.default = {
|
|
|
2893
3529
|
validatorsLen: 'u32'
|
|
2894
3530
|
},
|
|
2895
3531
|
/**
|
|
2896
|
-
*
|
|
3532
|
+
* Lookup345: pallet_im_online::sr25519::app_sr25519::Signature
|
|
2897
3533
|
**/
|
|
2898
3534
|
PalletImOnlineSr25519AppSr25519Signature: 'SpCoreSr25519Signature',
|
|
2899
3535
|
/**
|
|
2900
|
-
*
|
|
3536
|
+
* Lookup346: sp_core::sr25519::Signature
|
|
2901
3537
|
**/
|
|
2902
3538
|
SpCoreSr25519Signature: '[u8;64]',
|
|
2903
3539
|
/**
|
|
2904
|
-
*
|
|
3540
|
+
* Lookup347: pallet_identity::pallet::Call<T>
|
|
2905
3541
|
**/
|
|
2906
3542
|
PalletIdentityCall: {
|
|
2907
3543
|
_enum: {
|
|
@@ -2986,7 +3622,7 @@ var _default = exports.default = {
|
|
|
2986
3622
|
}
|
|
2987
3623
|
},
|
|
2988
3624
|
/**
|
|
2989
|
-
*
|
|
3625
|
+
* Lookup348: pallet_identity::legacy::IdentityInfo<FieldLimit>
|
|
2990
3626
|
**/
|
|
2991
3627
|
PalletIdentityLegacyIdentityInfo: {
|
|
2992
3628
|
additional: 'Vec<(Data,Data)>',
|
|
@@ -3000,7 +3636,7 @@ var _default = exports.default = {
|
|
|
3000
3636
|
twitter: 'Data'
|
|
3001
3637
|
},
|
|
3002
3638
|
/**
|
|
3003
|
-
*
|
|
3639
|
+
* Lookup384: pallet_identity::types::Judgement<Balance>
|
|
3004
3640
|
**/
|
|
3005
3641
|
PalletIdentityJudgement: {
|
|
3006
3642
|
_enum: {
|
|
@@ -3014,7 +3650,7 @@ var _default = exports.default = {
|
|
|
3014
3650
|
}
|
|
3015
3651
|
},
|
|
3016
3652
|
/**
|
|
3017
|
-
*
|
|
3653
|
+
* Lookup386: sp_runtime::MultiSignature
|
|
3018
3654
|
**/
|
|
3019
3655
|
SpRuntimeMultiSignature: {
|
|
3020
3656
|
_enum: {
|
|
@@ -3024,11 +3660,11 @@ var _default = exports.default = {
|
|
|
3024
3660
|
}
|
|
3025
3661
|
},
|
|
3026
3662
|
/**
|
|
3027
|
-
*
|
|
3663
|
+
* Lookup387: sp_core::ecdsa::Signature
|
|
3028
3664
|
**/
|
|
3029
3665
|
SpCoreEcdsaSignature: '[u8;65]',
|
|
3030
3666
|
/**
|
|
3031
|
-
*
|
|
3667
|
+
* Lookup389: pallet_utility::pallet::Call<T>
|
|
3032
3668
|
**/
|
|
3033
3669
|
PalletUtilityCall: {
|
|
3034
3670
|
_enum: {
|
|
@@ -3056,7 +3692,7 @@ var _default = exports.default = {
|
|
|
3056
3692
|
}
|
|
3057
3693
|
},
|
|
3058
3694
|
/**
|
|
3059
|
-
*
|
|
3695
|
+
* Lookup391: tangle_testnet_runtime::OriginCaller
|
|
3060
3696
|
**/
|
|
3061
3697
|
TangleTestnetRuntimeOriginCaller: {
|
|
3062
3698
|
_enum: {
|
|
@@ -3071,8 +3707,8 @@ var _default = exports.default = {
|
|
|
3071
3707
|
__Unused8: 'Null',
|
|
3072
3708
|
__Unused9: 'Null',
|
|
3073
3709
|
__Unused10: 'Null',
|
|
3710
|
+
__Unused11: 'Null',
|
|
3074
3711
|
Council: 'PalletCollectiveRawOrigin',
|
|
3075
|
-
__Unused12: 'Null',
|
|
3076
3712
|
__Unused13: 'Null',
|
|
3077
3713
|
__Unused14: 'Null',
|
|
3078
3714
|
__Unused15: 'Null',
|
|
@@ -3091,11 +3727,12 @@ var _default = exports.default = {
|
|
|
3091
3727
|
__Unused28: 'Null',
|
|
3092
3728
|
__Unused29: 'Null',
|
|
3093
3729
|
__Unused30: 'Null',
|
|
3730
|
+
__Unused31: 'Null',
|
|
3094
3731
|
Ethereum: 'PalletEthereumRawOrigin'
|
|
3095
3732
|
}
|
|
3096
3733
|
},
|
|
3097
3734
|
/**
|
|
3098
|
-
*
|
|
3735
|
+
* Lookup392: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
|
|
3099
3736
|
**/
|
|
3100
3737
|
FrameSupportDispatchRawOrigin: {
|
|
3101
3738
|
_enum: {
|
|
@@ -3105,7 +3742,7 @@ var _default = exports.default = {
|
|
|
3105
3742
|
}
|
|
3106
3743
|
},
|
|
3107
3744
|
/**
|
|
3108
|
-
*
|
|
3745
|
+
* Lookup393: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
|
|
3109
3746
|
**/
|
|
3110
3747
|
PalletCollectiveRawOrigin: {
|
|
3111
3748
|
_enum: {
|
|
@@ -3115,7 +3752,7 @@ var _default = exports.default = {
|
|
|
3115
3752
|
}
|
|
3116
3753
|
},
|
|
3117
3754
|
/**
|
|
3118
|
-
*
|
|
3755
|
+
* Lookup394: pallet_ethereum::RawOrigin
|
|
3119
3756
|
**/
|
|
3120
3757
|
PalletEthereumRawOrigin: {
|
|
3121
3758
|
_enum: {
|
|
@@ -3123,7 +3760,7 @@ var _default = exports.default = {
|
|
|
3123
3760
|
}
|
|
3124
3761
|
},
|
|
3125
3762
|
/**
|
|
3126
|
-
*
|
|
3763
|
+
* Lookup395: pallet_multisig::pallet::Call<T>
|
|
3127
3764
|
**/
|
|
3128
3765
|
PalletMultisigCall: {
|
|
3129
3766
|
_enum: {
|
|
@@ -3154,7 +3791,7 @@ var _default = exports.default = {
|
|
|
3154
3791
|
}
|
|
3155
3792
|
},
|
|
3156
3793
|
/**
|
|
3157
|
-
*
|
|
3794
|
+
* Lookup397: pallet_ethereum::pallet::Call<T>
|
|
3158
3795
|
**/
|
|
3159
3796
|
PalletEthereumCall: {
|
|
3160
3797
|
_enum: {
|
|
@@ -3164,7 +3801,7 @@ var _default = exports.default = {
|
|
|
3164
3801
|
}
|
|
3165
3802
|
},
|
|
3166
3803
|
/**
|
|
3167
|
-
*
|
|
3804
|
+
* Lookup398: ethereum::transaction::TransactionV2
|
|
3168
3805
|
**/
|
|
3169
3806
|
EthereumTransactionTransactionV2: {
|
|
3170
3807
|
_enum: {
|
|
@@ -3174,7 +3811,7 @@ var _default = exports.default = {
|
|
|
3174
3811
|
}
|
|
3175
3812
|
},
|
|
3176
3813
|
/**
|
|
3177
|
-
*
|
|
3814
|
+
* Lookup399: ethereum::transaction::LegacyTransaction
|
|
3178
3815
|
**/
|
|
3179
3816
|
EthereumTransactionLegacyTransaction: {
|
|
3180
3817
|
nonce: 'U256',
|
|
@@ -3186,7 +3823,7 @@ var _default = exports.default = {
|
|
|
3186
3823
|
signature: 'EthereumTransactionTransactionSignature'
|
|
3187
3824
|
},
|
|
3188
3825
|
/**
|
|
3189
|
-
*
|
|
3826
|
+
* Lookup400: ethereum::transaction::TransactionAction
|
|
3190
3827
|
**/
|
|
3191
3828
|
EthereumTransactionTransactionAction: {
|
|
3192
3829
|
_enum: {
|
|
@@ -3195,7 +3832,7 @@ var _default = exports.default = {
|
|
|
3195
3832
|
}
|
|
3196
3833
|
},
|
|
3197
3834
|
/**
|
|
3198
|
-
*
|
|
3835
|
+
* Lookup401: ethereum::transaction::TransactionSignature
|
|
3199
3836
|
**/
|
|
3200
3837
|
EthereumTransactionTransactionSignature: {
|
|
3201
3838
|
v: 'u64',
|
|
@@ -3203,7 +3840,7 @@ var _default = exports.default = {
|
|
|
3203
3840
|
s: 'H256'
|
|
3204
3841
|
},
|
|
3205
3842
|
/**
|
|
3206
|
-
*
|
|
3843
|
+
* Lookup403: ethereum::transaction::EIP2930Transaction
|
|
3207
3844
|
**/
|
|
3208
3845
|
EthereumTransactionEip2930Transaction: {
|
|
3209
3846
|
chainId: 'u64',
|
|
@@ -3219,14 +3856,14 @@ var _default = exports.default = {
|
|
|
3219
3856
|
s: 'H256'
|
|
3220
3857
|
},
|
|
3221
3858
|
/**
|
|
3222
|
-
*
|
|
3859
|
+
* Lookup405: ethereum::transaction::AccessListItem
|
|
3223
3860
|
**/
|
|
3224
3861
|
EthereumTransactionAccessListItem: {
|
|
3225
3862
|
address: 'H160',
|
|
3226
3863
|
storageKeys: 'Vec<H256>'
|
|
3227
3864
|
},
|
|
3228
3865
|
/**
|
|
3229
|
-
*
|
|
3866
|
+
* Lookup406: ethereum::transaction::EIP1559Transaction
|
|
3230
3867
|
**/
|
|
3231
3868
|
EthereumTransactionEip1559Transaction: {
|
|
3232
3869
|
chainId: 'u64',
|
|
@@ -3243,7 +3880,7 @@ var _default = exports.default = {
|
|
|
3243
3880
|
s: 'H256'
|
|
3244
3881
|
},
|
|
3245
3882
|
/**
|
|
3246
|
-
*
|
|
3883
|
+
* Lookup407: pallet_evm::pallet::Call<T>
|
|
3247
3884
|
**/
|
|
3248
3885
|
PalletEvmCall: {
|
|
3249
3886
|
_enum: {
|
|
@@ -3286,7 +3923,7 @@ var _default = exports.default = {
|
|
|
3286
3923
|
}
|
|
3287
3924
|
},
|
|
3288
3925
|
/**
|
|
3289
|
-
*
|
|
3926
|
+
* Lookup411: pallet_dynamic_fee::pallet::Call<T>
|
|
3290
3927
|
**/
|
|
3291
3928
|
PalletDynamicFeeCall: {
|
|
3292
3929
|
_enum: {
|
|
@@ -3296,7 +3933,7 @@ var _default = exports.default = {
|
|
|
3296
3933
|
}
|
|
3297
3934
|
},
|
|
3298
3935
|
/**
|
|
3299
|
-
*
|
|
3936
|
+
* Lookup412: pallet_base_fee::pallet::Call<T>
|
|
3300
3937
|
**/
|
|
3301
3938
|
PalletBaseFeeCall: {
|
|
3302
3939
|
_enum: {
|
|
@@ -3309,7 +3946,7 @@ var _default = exports.default = {
|
|
|
3309
3946
|
}
|
|
3310
3947
|
},
|
|
3311
3948
|
/**
|
|
3312
|
-
*
|
|
3949
|
+
* Lookup413: pallet_hotfix_sufficients::pallet::Call<T>
|
|
3313
3950
|
**/
|
|
3314
3951
|
PalletHotfixSufficientsCall: {
|
|
3315
3952
|
_enum: {
|
|
@@ -3319,7 +3956,7 @@ var _default = exports.default = {
|
|
|
3319
3956
|
}
|
|
3320
3957
|
},
|
|
3321
3958
|
/**
|
|
3322
|
-
*
|
|
3959
|
+
* Lookup415: pallet_airdrop_claims::pallet::Call<T>
|
|
3323
3960
|
**/
|
|
3324
3961
|
PalletAirdropClaimsCall: {
|
|
3325
3962
|
_enum: {
|
|
@@ -3351,11 +3988,14 @@ var _default = exports.default = {
|
|
|
3351
3988
|
force_set_expiry_config: {
|
|
3352
3989
|
expiryBlock: 'u64',
|
|
3353
3990
|
dest: 'PalletAirdropClaimsUtilsMultiAddress'
|
|
3991
|
+
},
|
|
3992
|
+
claim_signed: {
|
|
3993
|
+
dest: 'Option<PalletAirdropClaimsUtilsMultiAddress>'
|
|
3354
3994
|
}
|
|
3355
3995
|
}
|
|
3356
3996
|
},
|
|
3357
3997
|
/**
|
|
3358
|
-
*
|
|
3998
|
+
* Lookup417: pallet_airdrop_claims::utils::MultiAddressSignature
|
|
3359
3999
|
**/
|
|
3360
4000
|
PalletAirdropClaimsUtilsMultiAddressSignature: {
|
|
3361
4001
|
_enum: {
|
|
@@ -3364,21 +4004,21 @@ var _default = exports.default = {
|
|
|
3364
4004
|
}
|
|
3365
4005
|
},
|
|
3366
4006
|
/**
|
|
3367
|
-
*
|
|
4007
|
+
* Lookup418: pallet_airdrop_claims::utils::ethereum_address::EcdsaSignature
|
|
3368
4008
|
**/
|
|
3369
4009
|
PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature: '[u8;65]',
|
|
3370
4010
|
/**
|
|
3371
|
-
*
|
|
4011
|
+
* Lookup419: pallet_airdrop_claims::utils::Sr25519Signature
|
|
3372
4012
|
**/
|
|
3373
4013
|
PalletAirdropClaimsUtilsSr25519Signature: 'SpCoreSr25519Signature',
|
|
3374
4014
|
/**
|
|
3375
|
-
*
|
|
4015
|
+
* Lookup425: pallet_airdrop_claims::StatementKind
|
|
3376
4016
|
**/
|
|
3377
4017
|
PalletAirdropClaimsStatementKind: {
|
|
3378
4018
|
_enum: ['Regular', 'Safe']
|
|
3379
4019
|
},
|
|
3380
4020
|
/**
|
|
3381
|
-
*
|
|
4021
|
+
* Lookup426: pallet_roles::pallet::Call<T>
|
|
3382
4022
|
**/
|
|
3383
4023
|
PalletRolesCall: {
|
|
3384
4024
|
_enum: {
|
|
@@ -3405,7 +4045,7 @@ var _default = exports.default = {
|
|
|
3405
4045
|
}
|
|
3406
4046
|
},
|
|
3407
4047
|
/**
|
|
3408
|
-
*
|
|
4048
|
+
* Lookup427: pallet_roles::profile::Profile<T>
|
|
3409
4049
|
**/
|
|
3410
4050
|
PalletRolesProfile: {
|
|
3411
4051
|
_enum: {
|
|
@@ -3414,27 +4054,27 @@ var _default = exports.default = {
|
|
|
3414
4054
|
}
|
|
3415
4055
|
},
|
|
3416
4056
|
/**
|
|
3417
|
-
*
|
|
4057
|
+
* Lookup428: pallet_roles::profile::IndependentRestakeProfile<T>
|
|
3418
4058
|
**/
|
|
3419
4059
|
PalletRolesProfileIndependentRestakeProfile: {
|
|
3420
4060
|
records: 'Vec<PalletRolesProfileRecord>'
|
|
3421
4061
|
},
|
|
3422
4062
|
/**
|
|
3423
|
-
*
|
|
4063
|
+
* Lookup430: pallet_roles::profile::Record<T>
|
|
3424
4064
|
**/
|
|
3425
4065
|
PalletRolesProfileRecord: {
|
|
3426
4066
|
role: 'TanglePrimitivesRolesRoleType',
|
|
3427
4067
|
amount: 'Option<u128>'
|
|
3428
4068
|
},
|
|
3429
4069
|
/**
|
|
3430
|
-
*
|
|
4070
|
+
* Lookup432: pallet_roles::profile::SharedRestakeProfile<T>
|
|
3431
4071
|
**/
|
|
3432
4072
|
PalletRolesProfileSharedRestakeProfile: {
|
|
3433
4073
|
records: 'Vec<PalletRolesProfileRecord>',
|
|
3434
4074
|
amount: 'u128'
|
|
3435
4075
|
},
|
|
3436
4076
|
/**
|
|
3437
|
-
*
|
|
4077
|
+
* Lookup433: pallet_jobs::module::Call<T>
|
|
3438
4078
|
**/
|
|
3439
4079
|
PalletJobsModuleCall: {
|
|
3440
4080
|
_enum: {
|
|
@@ -3473,7 +4113,7 @@ var _default = exports.default = {
|
|
|
3473
4113
|
}
|
|
3474
4114
|
},
|
|
3475
4115
|
/**
|
|
3476
|
-
*
|
|
4116
|
+
* 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>
|
|
3477
4117
|
**/
|
|
3478
4118
|
TanglePrimitivesJobsJobResult: {
|
|
3479
4119
|
_enum: {
|
|
@@ -3486,55 +4126,57 @@ var _default = exports.default = {
|
|
|
3486
4126
|
}
|
|
3487
4127
|
},
|
|
3488
4128
|
/**
|
|
3489
|
-
*
|
|
4129
|
+
* Lookup435: tangle_testnet_runtime::MaxKeyLen
|
|
3490
4130
|
**/
|
|
3491
4131
|
TangleTestnetRuntimeMaxKeyLen: 'Null',
|
|
3492
4132
|
/**
|
|
3493
|
-
*
|
|
4133
|
+
* Lookup436: tangle_testnet_runtime::MaxSignatureLen
|
|
3494
4134
|
**/
|
|
3495
4135
|
TangleTestnetRuntimeMaxSignatureLen: 'Null',
|
|
3496
4136
|
/**
|
|
3497
|
-
*
|
|
4137
|
+
* Lookup437: tangle_testnet_runtime::MaxDataLen
|
|
3498
4138
|
**/
|
|
3499
4139
|
TangleTestnetRuntimeMaxDataLen: 'Null',
|
|
3500
4140
|
/**
|
|
3501
|
-
*
|
|
4141
|
+
* Lookup438: tangle_testnet_runtime::MaxProofLen
|
|
3502
4142
|
**/
|
|
3503
4143
|
TangleTestnetRuntimeMaxProofLen: 'Null',
|
|
3504
4144
|
/**
|
|
3505
|
-
*
|
|
4145
|
+
* Lookup439: tangle_primitives::jobs::tss::DKGTSSKeySubmissionResult<tangle_testnet_runtime::MaxKeyLen, tangle_testnet_runtime::MaxParticipants, tangle_testnet_runtime::MaxSignatureLen>
|
|
3506
4146
|
**/
|
|
3507
4147
|
TanglePrimitivesJobsTssDkgtssKeySubmissionResult: {
|
|
3508
4148
|
signatureScheme: 'TanglePrimitivesJobsTssDigitalSignatureScheme',
|
|
3509
4149
|
key: 'Bytes',
|
|
4150
|
+
chainCode: 'Option<[u8;32]>',
|
|
3510
4151
|
participants: 'Vec<Bytes>',
|
|
3511
4152
|
signatures: 'Vec<Bytes>',
|
|
3512
4153
|
threshold: 'u8'
|
|
3513
4154
|
},
|
|
3514
4155
|
/**
|
|
3515
|
-
*
|
|
4156
|
+
* Lookup440: tangle_primitives::jobs::tss::DigitalSignatureScheme
|
|
3516
4157
|
**/
|
|
3517
4158
|
TanglePrimitivesJobsTssDigitalSignatureScheme: {
|
|
3518
|
-
_enum: ['EcdsaSecp256k1', 'EcdsaSecp256r1', 'EcdsaStark', 'SchnorrP256', 'SchnorrP384', 'SchnorrSecp256k1', 'SchnorrSr25519', 'SchnorrRistretto255', '
|
|
4159
|
+
_enum: ['EcdsaSecp256k1', 'EcdsaSecp256r1', 'EcdsaStark', 'SchnorrP256', 'SchnorrP384', 'SchnorrSecp256k1', 'SchnorrSr25519', 'SchnorrRistretto255', 'SchnorrEd25519', 'SchnorrEd448', 'SchnorrTaproot', 'Bls381']
|
|
3519
4160
|
},
|
|
3520
4161
|
/**
|
|
3521
|
-
*
|
|
4162
|
+
* Lookup447: tangle_primitives::jobs::tss::DKGTSSSignatureResult<tangle_testnet_runtime::MaxDataLen, tangle_testnet_runtime::MaxKeyLen, tangle_testnet_runtime::MaxSignatureLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
|
3522
4163
|
**/
|
|
3523
4164
|
TanglePrimitivesJobsTssDkgtssSignatureResult: {
|
|
3524
4165
|
signatureScheme: 'TanglePrimitivesJobsTssDigitalSignatureScheme',
|
|
3525
|
-
derivationPath: 'Option<Bytes>',
|
|
3526
4166
|
data: 'Bytes',
|
|
3527
4167
|
signature: 'Bytes',
|
|
3528
|
-
verifyingKey: 'Bytes'
|
|
4168
|
+
verifyingKey: 'Bytes',
|
|
4169
|
+
derivationPath: 'Option<Bytes>',
|
|
4170
|
+
chainCode: 'Option<[u8;32]>'
|
|
3529
4171
|
},
|
|
3530
4172
|
/**
|
|
3531
|
-
*
|
|
4173
|
+
* Lookup449: tangle_primitives::jobs::tss::DKGTSSKeyRefreshResult
|
|
3532
4174
|
**/
|
|
3533
4175
|
TanglePrimitivesJobsTssDkgtssKeyRefreshResult: {
|
|
3534
4176
|
signatureScheme: 'TanglePrimitivesJobsTssDigitalSignatureScheme'
|
|
3535
4177
|
},
|
|
3536
4178
|
/**
|
|
3537
|
-
*
|
|
4179
|
+
* Lookup450: tangle_primitives::jobs::tss::DKGTSSKeyRotationResult<tangle_testnet_runtime::MaxKeyLen, tangle_testnet_runtime::MaxSignatureLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
|
3538
4180
|
**/
|
|
3539
4181
|
TanglePrimitivesJobsTssDkgtssKeyRotationResult: {
|
|
3540
4182
|
phaseOneId: 'u64',
|
|
@@ -3543,17 +4185,18 @@ var _default = exports.default = {
|
|
|
3543
4185
|
key: 'Bytes',
|
|
3544
4186
|
signature: 'Bytes',
|
|
3545
4187
|
signatureScheme: 'TanglePrimitivesJobsTssDigitalSignatureScheme',
|
|
3546
|
-
derivationPath: 'Option<Bytes>'
|
|
4188
|
+
derivationPath: 'Option<Bytes>',
|
|
4189
|
+
chainCode: 'Option<[u8;32]>'
|
|
3547
4190
|
},
|
|
3548
4191
|
/**
|
|
3549
|
-
*
|
|
4192
|
+
* Lookup451: tangle_primitives::jobs::zksaas::ZkSaaSCircuitResult<tangle_testnet_runtime::MaxParticipants>
|
|
3550
4193
|
**/
|
|
3551
4194
|
TanglePrimitivesJobsZksaasZkSaaSCircuitResult: {
|
|
3552
4195
|
jobId: 'u64',
|
|
3553
4196
|
participants: 'Vec<SpCoreEcdsaPublic>'
|
|
3554
4197
|
},
|
|
3555
4198
|
/**
|
|
3556
|
-
*
|
|
4199
|
+
* Lookup454: tangle_primitives::jobs::zksaas::ZkSaaSProofResult<tangle_testnet_runtime::MaxProofLen>
|
|
3557
4200
|
**/
|
|
3558
4201
|
TanglePrimitivesJobsZksaasZkSaaSProofResult: {
|
|
3559
4202
|
_enum: {
|
|
@@ -3562,25 +4205,25 @@ var _default = exports.default = {
|
|
|
3562
4205
|
}
|
|
3563
4206
|
},
|
|
3564
4207
|
/**
|
|
3565
|
-
*
|
|
4208
|
+
* Lookup455: tangle_primitives::jobs::zksaas::ArkworksProofResult<tangle_testnet_runtime::MaxProofLen>
|
|
3566
4209
|
**/
|
|
3567
4210
|
TanglePrimitivesJobsZksaasArkworksProofResult: {
|
|
3568
4211
|
proof: 'Bytes'
|
|
3569
4212
|
},
|
|
3570
4213
|
/**
|
|
3571
|
-
*
|
|
4214
|
+
* Lookup457: tangle_primitives::jobs::zksaas::CircomProofResult<tangle_testnet_runtime::MaxProofLen>
|
|
3572
4215
|
**/
|
|
3573
4216
|
TanglePrimitivesJobsZksaasCircomProofResult: {
|
|
3574
4217
|
proof: 'Bytes'
|
|
3575
4218
|
},
|
|
3576
4219
|
/**
|
|
3577
|
-
*
|
|
4220
|
+
* Lookup458: tangle_primitives::jobs::ValidatorOffenceType
|
|
3578
4221
|
**/
|
|
3579
4222
|
TanglePrimitivesJobsValidatorOffenceType: {
|
|
3580
4223
|
_enum: ['Inactivity', 'InvalidSignatureSubmitted', 'RejectedValidAction', 'ApprovedInvalidAction']
|
|
3581
4224
|
},
|
|
3582
4225
|
/**
|
|
3583
|
-
*
|
|
4226
|
+
* Lookup459: tangle_primitives::misbehavior::MisbehaviorSubmission
|
|
3584
4227
|
**/
|
|
3585
4228
|
TanglePrimitivesMisbehaviorMisbehaviorSubmission: {
|
|
3586
4229
|
roleType: 'TanglePrimitivesRolesRoleType',
|
|
@@ -3589,7 +4232,7 @@ var _default = exports.default = {
|
|
|
3589
4232
|
justification: 'TanglePrimitivesMisbehaviorMisbehaviorJustification'
|
|
3590
4233
|
},
|
|
3591
4234
|
/**
|
|
3592
|
-
*
|
|
4235
|
+
* Lookup460: tangle_primitives::misbehavior::MisbehaviorJustification
|
|
3593
4236
|
**/
|
|
3594
4237
|
TanglePrimitivesMisbehaviorMisbehaviorJustification: {
|
|
3595
4238
|
_enum: {
|
|
@@ -3598,7 +4241,7 @@ var _default = exports.default = {
|
|
|
3598
4241
|
}
|
|
3599
4242
|
},
|
|
3600
4243
|
/**
|
|
3601
|
-
*
|
|
4244
|
+
* Lookup461: tangle_primitives::misbehavior::DKGTSSJustification
|
|
3602
4245
|
**/
|
|
3603
4246
|
TanglePrimitivesMisbehaviorDkgtssJustification: {
|
|
3604
4247
|
_enum: {
|
|
@@ -3607,7 +4250,7 @@ var _default = exports.default = {
|
|
|
3607
4250
|
}
|
|
3608
4251
|
},
|
|
3609
4252
|
/**
|
|
3610
|
-
*
|
|
4253
|
+
* Lookup462: tangle_primitives::misbehavior::dfns_cggmp21::DfnsCGGMP21Justification
|
|
3611
4254
|
**/
|
|
3612
4255
|
TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification: {
|
|
3613
4256
|
_enum: {
|
|
@@ -3629,7 +4272,7 @@ var _default = exports.default = {
|
|
|
3629
4272
|
}
|
|
3630
4273
|
},
|
|
3631
4274
|
/**
|
|
3632
|
-
*
|
|
4275
|
+
* Lookup464: tangle_primitives::misbehavior::dfns_cggmp21::KeygenAborted
|
|
3633
4276
|
**/
|
|
3634
4277
|
TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted: {
|
|
3635
4278
|
_enum: {
|
|
@@ -3651,7 +4294,7 @@ var _default = exports.default = {
|
|
|
3651
4294
|
}
|
|
3652
4295
|
},
|
|
3653
4296
|
/**
|
|
3654
|
-
*
|
|
4297
|
+
* Lookup465: tangle_primitives::misbehavior::SignedRoundMessage
|
|
3655
4298
|
**/
|
|
3656
4299
|
TanglePrimitivesMisbehaviorSignedRoundMessage: {
|
|
3657
4300
|
sender: 'u16',
|
|
@@ -3659,7 +4302,7 @@ var _default = exports.default = {
|
|
|
3659
4302
|
signature: 'Bytes'
|
|
3660
4303
|
},
|
|
3661
4304
|
/**
|
|
3662
|
-
*
|
|
4305
|
+
* Lookup467: tangle_primitives::misbehavior::dfns_cggmp21::KeyRefreshAborted
|
|
3663
4306
|
**/
|
|
3664
4307
|
TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted: {
|
|
3665
4308
|
_enum: {
|
|
@@ -3684,7 +4327,7 @@ var _default = exports.default = {
|
|
|
3684
4327
|
}
|
|
3685
4328
|
},
|
|
3686
4329
|
/**
|
|
3687
|
-
*
|
|
4330
|
+
* Lookup468: tangle_primitives::misbehavior::dfns_cggmp21::InvalidProofReason
|
|
3688
4331
|
**/
|
|
3689
4332
|
TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason: {
|
|
3690
4333
|
_enum: {
|
|
@@ -3701,13 +4344,13 @@ var _default = exports.default = {
|
|
|
3701
4344
|
}
|
|
3702
4345
|
},
|
|
3703
4346
|
/**
|
|
3704
|
-
*
|
|
4347
|
+
* Lookup469: tangle_primitives::misbehavior::dfns_cggmp21::SigningAborted
|
|
3705
4348
|
**/
|
|
3706
4349
|
TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted: {
|
|
3707
4350
|
_enum: ['EncProofOfK', 'InvalidPsi', 'InvalidPsiPrimePrime', 'MismatchedDelta']
|
|
3708
4351
|
},
|
|
3709
4352
|
/**
|
|
3710
|
-
*
|
|
4353
|
+
* Lookup470: tangle_primitives::misbehavior::zcash_frost::ZCashFrostJustification
|
|
3711
4354
|
**/
|
|
3712
4355
|
TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification: {
|
|
3713
4356
|
_enum: {
|
|
@@ -3724,7 +4367,7 @@ var _default = exports.default = {
|
|
|
3724
4367
|
}
|
|
3725
4368
|
},
|
|
3726
4369
|
/**
|
|
3727
|
-
*
|
|
4370
|
+
* Lookup471: tangle_primitives::misbehavior::zcash_frost::KeygenAborted
|
|
3728
4371
|
**/
|
|
3729
4372
|
TanglePrimitivesMisbehaviorZcashFrostKeygenAborted: {
|
|
3730
4373
|
_enum: {
|
|
@@ -3738,7 +4381,7 @@ var _default = exports.default = {
|
|
|
3738
4381
|
}
|
|
3739
4382
|
},
|
|
3740
4383
|
/**
|
|
3741
|
-
*
|
|
4384
|
+
* Lookup472: tangle_primitives::misbehavior::zcash_frost::SigningAborted
|
|
3742
4385
|
**/
|
|
3743
4386
|
TanglePrimitivesMisbehaviorZcashFrostSigningAborted: {
|
|
3744
4387
|
_enum: {
|
|
@@ -3749,11 +4392,11 @@ var _default = exports.default = {
|
|
|
3749
4392
|
}
|
|
3750
4393
|
},
|
|
3751
4394
|
/**
|
|
3752
|
-
*
|
|
4395
|
+
* Lookup473: tangle_primitives::misbehavior::ZkSaaSJustification
|
|
3753
4396
|
**/
|
|
3754
4397
|
TanglePrimitivesMisbehaviorZkSaaSJustification: 'Null',
|
|
3755
4398
|
/**
|
|
3756
|
-
*
|
|
4399
|
+
* Lookup474: pallet_dkg::pallet::Call<T>
|
|
3757
4400
|
**/
|
|
3758
4401
|
PalletDkgCall: {
|
|
3759
4402
|
_enum: {
|
|
@@ -3763,7 +4406,7 @@ var _default = exports.default = {
|
|
|
3763
4406
|
}
|
|
3764
4407
|
},
|
|
3765
4408
|
/**
|
|
3766
|
-
*
|
|
4409
|
+
* Lookup475: pallet_zksaas::pallet::Call<T>
|
|
3767
4410
|
**/
|
|
3768
4411
|
PalletZksaasCall: {
|
|
3769
4412
|
_enum: {
|
|
@@ -3773,13 +4416,325 @@ var _default = exports.default = {
|
|
|
3773
4416
|
}
|
|
3774
4417
|
},
|
|
3775
4418
|
/**
|
|
3776
|
-
*
|
|
4419
|
+
* Lookup476: pallet_proxy::pallet::Call<T>
|
|
4420
|
+
**/
|
|
4421
|
+
PalletProxyCall: {
|
|
4422
|
+
_enum: {
|
|
4423
|
+
proxy: {
|
|
4424
|
+
real: 'MultiAddress',
|
|
4425
|
+
forceProxyType: 'Option<TangleTestnetRuntimeProxyType>',
|
|
4426
|
+
call: 'Call'
|
|
4427
|
+
},
|
|
4428
|
+
add_proxy: {
|
|
4429
|
+
delegate: 'MultiAddress',
|
|
4430
|
+
proxyType: 'TangleTestnetRuntimeProxyType',
|
|
4431
|
+
delay: 'u64'
|
|
4432
|
+
},
|
|
4433
|
+
remove_proxy: {
|
|
4434
|
+
delegate: 'MultiAddress',
|
|
4435
|
+
proxyType: 'TangleTestnetRuntimeProxyType',
|
|
4436
|
+
delay: 'u64'
|
|
4437
|
+
},
|
|
4438
|
+
remove_proxies: 'Null',
|
|
4439
|
+
create_pure: {
|
|
4440
|
+
proxyType: 'TangleTestnetRuntimeProxyType',
|
|
4441
|
+
delay: 'u64',
|
|
4442
|
+
index: 'u16'
|
|
4443
|
+
},
|
|
4444
|
+
kill_pure: {
|
|
4445
|
+
spawner: 'MultiAddress',
|
|
4446
|
+
proxyType: 'TangleTestnetRuntimeProxyType',
|
|
4447
|
+
index: 'u16',
|
|
4448
|
+
height: 'Compact<u64>',
|
|
4449
|
+
extIndex: 'Compact<u32>'
|
|
4450
|
+
},
|
|
4451
|
+
announce: {
|
|
4452
|
+
real: 'MultiAddress',
|
|
4453
|
+
callHash: 'H256'
|
|
4454
|
+
},
|
|
4455
|
+
remove_announcement: {
|
|
4456
|
+
real: 'MultiAddress',
|
|
4457
|
+
callHash: 'H256'
|
|
4458
|
+
},
|
|
4459
|
+
reject_announcement: {
|
|
4460
|
+
delegate: 'MultiAddress',
|
|
4461
|
+
callHash: 'H256'
|
|
4462
|
+
},
|
|
4463
|
+
proxy_announced: {
|
|
4464
|
+
delegate: 'MultiAddress',
|
|
4465
|
+
real: 'MultiAddress',
|
|
4466
|
+
forceProxyType: 'Option<TangleTestnetRuntimeProxyType>',
|
|
4467
|
+
call: 'Call'
|
|
4468
|
+
}
|
|
4469
|
+
}
|
|
4470
|
+
},
|
|
4471
|
+
/**
|
|
4472
|
+
* Lookup478: pallet_multi_asset_delegation::pallet::Call<T>
|
|
4473
|
+
**/
|
|
4474
|
+
PalletMultiAssetDelegationCall: {
|
|
4475
|
+
_enum: {
|
|
4476
|
+
join_operators: {
|
|
4477
|
+
bondAmount: 'u128'
|
|
4478
|
+
},
|
|
4479
|
+
schedule_leave_operators: 'Null',
|
|
4480
|
+
cancel_leave_operators: 'Null',
|
|
4481
|
+
execute_leave_operators: 'Null',
|
|
4482
|
+
operator_bond_more: {
|
|
4483
|
+
additionalBond: 'u128'
|
|
4484
|
+
},
|
|
4485
|
+
schedule_operator_bond_less: {
|
|
4486
|
+
bondLessAmount: 'u128'
|
|
4487
|
+
},
|
|
4488
|
+
execute_operator_bond_less: 'Null',
|
|
4489
|
+
cancel_operator_bond_less: 'Null',
|
|
4490
|
+
go_offline: 'Null',
|
|
4491
|
+
go_online: 'Null',
|
|
4492
|
+
deposit: {
|
|
4493
|
+
assetId: 'Option<u128>',
|
|
4494
|
+
amount: 'u128'
|
|
4495
|
+
},
|
|
4496
|
+
schedule_unstake: {
|
|
4497
|
+
assetId: 'Option<u128>',
|
|
4498
|
+
amount: 'u128'
|
|
4499
|
+
},
|
|
4500
|
+
execute_unstake: 'Null',
|
|
4501
|
+
cancel_unstake: 'Null',
|
|
4502
|
+
delegate: {
|
|
4503
|
+
operator: 'AccountId32',
|
|
4504
|
+
assetId: 'u128',
|
|
4505
|
+
amount: 'u128'
|
|
4506
|
+
},
|
|
4507
|
+
schedule_delegator_bond_less: {
|
|
4508
|
+
operator: 'AccountId32',
|
|
4509
|
+
assetId: 'u128',
|
|
4510
|
+
amount: 'u128'
|
|
4511
|
+
},
|
|
4512
|
+
execute_delegator_bond_less: 'Null',
|
|
4513
|
+
cancel_delegator_bond_less: 'Null',
|
|
4514
|
+
set_whitelisted_assets: {
|
|
4515
|
+
assets: 'Vec<u128>'
|
|
4516
|
+
},
|
|
4517
|
+
set_incentive_apy_and_cap: {
|
|
4518
|
+
assetId: 'u128',
|
|
4519
|
+
apy: 'u128',
|
|
4520
|
+
cap: 'u128'
|
|
4521
|
+
},
|
|
4522
|
+
whitelist_blueprint_for_rewards: {
|
|
4523
|
+
blueprintId: 'u32'
|
|
4524
|
+
}
|
|
4525
|
+
}
|
|
4526
|
+
},
|
|
4527
|
+
/**
|
|
4528
|
+
* Lookup479: sygma_access_segregator::pallet::Call<T>
|
|
4529
|
+
**/
|
|
4530
|
+
SygmaAccessSegregatorCall: {
|
|
4531
|
+
_enum: {
|
|
4532
|
+
grant_access: {
|
|
4533
|
+
palletIndex: 'u8',
|
|
4534
|
+
extrinsicName: 'Bytes',
|
|
4535
|
+
who: 'AccountId32'
|
|
4536
|
+
}
|
|
4537
|
+
}
|
|
4538
|
+
},
|
|
4539
|
+
/**
|
|
4540
|
+
* Lookup480: sygma_basic_feehandler::pallet::Call<T>
|
|
4541
|
+
**/
|
|
4542
|
+
SygmaBasicFeehandlerCall: {
|
|
4543
|
+
_enum: {
|
|
4544
|
+
set_fee: {
|
|
4545
|
+
domain: 'u8',
|
|
4546
|
+
asset: 'StagingXcmV4AssetAssetId',
|
|
4547
|
+
amount: 'u128'
|
|
4548
|
+
}
|
|
4549
|
+
}
|
|
4550
|
+
},
|
|
4551
|
+
/**
|
|
4552
|
+
* Lookup481: sygma_fee_handler_router::pallet::Call<T>
|
|
4553
|
+
**/
|
|
4554
|
+
SygmaFeeHandlerRouterCall: {
|
|
4555
|
+
_enum: {
|
|
4556
|
+
set_fee_handler: {
|
|
4557
|
+
domain: 'u8',
|
|
4558
|
+
asset: 'StagingXcmV4AssetAssetId',
|
|
4559
|
+
handlerType: 'SygmaFeeHandlerRouterFeeHandlerType'
|
|
4560
|
+
}
|
|
4561
|
+
}
|
|
4562
|
+
},
|
|
4563
|
+
/**
|
|
4564
|
+
* Lookup482: sygma_percentage_feehandler::pallet::Call<T>
|
|
4565
|
+
**/
|
|
4566
|
+
SygmaPercentageFeehandlerCall: {
|
|
4567
|
+
_enum: {
|
|
4568
|
+
set_fee_rate: {
|
|
4569
|
+
domain: 'u8',
|
|
4570
|
+
asset: 'StagingXcmV4AssetAssetId',
|
|
4571
|
+
feeRateBasisPoint: 'u32',
|
|
4572
|
+
feeLowerBound: 'u128',
|
|
4573
|
+
feeUpperBound: 'u128'
|
|
4574
|
+
}
|
|
4575
|
+
}
|
|
4576
|
+
},
|
|
4577
|
+
/**
|
|
4578
|
+
* Lookup483: sygma_bridge::pallet::Call<T>
|
|
4579
|
+
**/
|
|
4580
|
+
SygmaBridgeCall: {
|
|
4581
|
+
_enum: {
|
|
4582
|
+
pause_bridge: {
|
|
4583
|
+
destDomainId: 'u8'
|
|
4584
|
+
},
|
|
4585
|
+
unpause_bridge: {
|
|
4586
|
+
destDomainId: 'u8'
|
|
4587
|
+
},
|
|
4588
|
+
set_mpc_address: {
|
|
4589
|
+
addr: 'SygmaTraitsMpcAddress'
|
|
4590
|
+
},
|
|
4591
|
+
register_domain: {
|
|
4592
|
+
destDomainId: 'u8',
|
|
4593
|
+
destChainId: 'U256'
|
|
4594
|
+
},
|
|
4595
|
+
unregister_domain: {
|
|
4596
|
+
destDomainId: 'u8',
|
|
4597
|
+
destChainId: 'U256'
|
|
4598
|
+
},
|
|
4599
|
+
deposit: {
|
|
4600
|
+
asset: 'StagingXcmV4Asset',
|
|
4601
|
+
dest: 'StagingXcmV4Location'
|
|
4602
|
+
},
|
|
4603
|
+
retry: {
|
|
4604
|
+
depositOnBlockHeight: 'u128',
|
|
4605
|
+
destDomainId: 'u8'
|
|
4606
|
+
},
|
|
4607
|
+
execute_proposal: {
|
|
4608
|
+
proposals: 'Vec<SygmaBridgeProposal>',
|
|
4609
|
+
signature: 'Bytes'
|
|
4610
|
+
},
|
|
4611
|
+
pause_all_bridges: 'Null',
|
|
4612
|
+
unpause_all_bridges: 'Null'
|
|
4613
|
+
}
|
|
4614
|
+
},
|
|
4615
|
+
/**
|
|
4616
|
+
* Lookup484: sygma_traits::MpcAddress
|
|
4617
|
+
**/
|
|
4618
|
+
SygmaTraitsMpcAddress: '[u8;20]',
|
|
4619
|
+
/**
|
|
4620
|
+
* Lookup485: staging_xcm::v4::asset::Asset
|
|
4621
|
+
**/
|
|
4622
|
+
StagingXcmV4Asset: {
|
|
4623
|
+
id: 'StagingXcmV4AssetAssetId',
|
|
4624
|
+
fun: 'StagingXcmV4AssetFungibility'
|
|
4625
|
+
},
|
|
4626
|
+
/**
|
|
4627
|
+
* Lookup486: staging_xcm::v4::asset::Fungibility
|
|
4628
|
+
**/
|
|
4629
|
+
StagingXcmV4AssetFungibility: {
|
|
4630
|
+
_enum: {
|
|
4631
|
+
Fungible: 'Compact<u128>',
|
|
4632
|
+
NonFungible: 'StagingXcmV4AssetAssetInstance'
|
|
4633
|
+
}
|
|
4634
|
+
},
|
|
4635
|
+
/**
|
|
4636
|
+
* Lookup487: staging_xcm::v4::asset::AssetInstance
|
|
4637
|
+
**/
|
|
4638
|
+
StagingXcmV4AssetAssetInstance: {
|
|
4639
|
+
_enum: {
|
|
4640
|
+
Undefined: 'Null',
|
|
4641
|
+
Index: 'Compact<u128>',
|
|
4642
|
+
Array4: '[u8;4]',
|
|
4643
|
+
Array8: '[u8;8]',
|
|
4644
|
+
Array16: '[u8;16]',
|
|
4645
|
+
Array32: '[u8;32]'
|
|
4646
|
+
}
|
|
4647
|
+
},
|
|
4648
|
+
/**
|
|
4649
|
+
* Lookup489: sygma_bridge::pallet::Proposal
|
|
4650
|
+
**/
|
|
4651
|
+
SygmaBridgeProposal: {
|
|
4652
|
+
originDomainId: 'u8',
|
|
4653
|
+
depositNonce: 'u64',
|
|
4654
|
+
resourceId: '[u8;32]',
|
|
4655
|
+
data: 'Bytes'
|
|
4656
|
+
},
|
|
4657
|
+
/**
|
|
4658
|
+
* Lookup490: pallet_sudo::pallet::Error<T>
|
|
3777
4659
|
**/
|
|
3778
4660
|
PalletSudoError: {
|
|
3779
4661
|
_enum: ['RequireSudo']
|
|
3780
4662
|
},
|
|
3781
4663
|
/**
|
|
3782
|
-
*
|
|
4664
|
+
* Lookup492: pallet_assets::types::AssetDetails<Balance, sp_core::crypto::AccountId32, DepositBalance>
|
|
4665
|
+
**/
|
|
4666
|
+
PalletAssetsAssetDetails: {
|
|
4667
|
+
owner: 'AccountId32',
|
|
4668
|
+
issuer: 'AccountId32',
|
|
4669
|
+
admin: 'AccountId32',
|
|
4670
|
+
freezer: 'AccountId32',
|
|
4671
|
+
supply: 'u128',
|
|
4672
|
+
deposit: 'u128',
|
|
4673
|
+
minBalance: 'u128',
|
|
4674
|
+
isSufficient: 'bool',
|
|
4675
|
+
accounts: 'u32',
|
|
4676
|
+
sufficients: 'u32',
|
|
4677
|
+
approvals: 'u32',
|
|
4678
|
+
status: 'PalletAssetsAssetStatus'
|
|
4679
|
+
},
|
|
4680
|
+
/**
|
|
4681
|
+
* Lookup493: pallet_assets::types::AssetStatus
|
|
4682
|
+
**/
|
|
4683
|
+
PalletAssetsAssetStatus: {
|
|
4684
|
+
_enum: ['Live', 'Frozen', 'Destroying']
|
|
4685
|
+
},
|
|
4686
|
+
/**
|
|
4687
|
+
* Lookup495: pallet_assets::types::AssetAccount<Balance, DepositBalance, Extra, sp_core::crypto::AccountId32>
|
|
4688
|
+
**/
|
|
4689
|
+
PalletAssetsAssetAccount: {
|
|
4690
|
+
balance: 'u128',
|
|
4691
|
+
status: 'PalletAssetsAccountStatus',
|
|
4692
|
+
reason: 'PalletAssetsExistenceReason',
|
|
4693
|
+
extra: 'Null'
|
|
4694
|
+
},
|
|
4695
|
+
/**
|
|
4696
|
+
* Lookup496: pallet_assets::types::AccountStatus
|
|
4697
|
+
**/
|
|
4698
|
+
PalletAssetsAccountStatus: {
|
|
4699
|
+
_enum: ['Liquid', 'Frozen', 'Blocked']
|
|
4700
|
+
},
|
|
4701
|
+
/**
|
|
4702
|
+
* Lookup497: pallet_assets::types::ExistenceReason<Balance, sp_core::crypto::AccountId32>
|
|
4703
|
+
**/
|
|
4704
|
+
PalletAssetsExistenceReason: {
|
|
4705
|
+
_enum: {
|
|
4706
|
+
Consumer: 'Null',
|
|
4707
|
+
Sufficient: 'Null',
|
|
4708
|
+
DepositHeld: 'u128',
|
|
4709
|
+
DepositRefunded: 'Null',
|
|
4710
|
+
DepositFrom: '(AccountId32,u128)'
|
|
4711
|
+
}
|
|
4712
|
+
},
|
|
4713
|
+
/**
|
|
4714
|
+
* Lookup499: pallet_assets::types::Approval<Balance, DepositBalance>
|
|
4715
|
+
**/
|
|
4716
|
+
PalletAssetsApproval: {
|
|
4717
|
+
amount: 'u128',
|
|
4718
|
+
deposit: 'u128'
|
|
4719
|
+
},
|
|
4720
|
+
/**
|
|
4721
|
+
* Lookup500: pallet_assets::types::AssetMetadata<DepositBalance, bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
4722
|
+
**/
|
|
4723
|
+
PalletAssetsAssetMetadata: {
|
|
4724
|
+
deposit: 'u128',
|
|
4725
|
+
name: 'Bytes',
|
|
4726
|
+
symbol: 'Bytes',
|
|
4727
|
+
decimals: 'u8',
|
|
4728
|
+
isFrozen: 'bool'
|
|
4729
|
+
},
|
|
4730
|
+
/**
|
|
4731
|
+
* Lookup502: pallet_assets::pallet::Error<T, I>
|
|
4732
|
+
**/
|
|
4733
|
+
PalletAssetsError: {
|
|
4734
|
+
_enum: ['BalanceLow', 'NoAccount', 'NoPermission', 'Unknown', 'Frozen', 'InUse', 'BadWitness', 'MinBalanceZero', 'UnavailableConsumer', 'BadMetadata', 'Unapproved', 'WouldDie', 'AlreadyExists', 'NoDeposit', 'WouldBurn', 'LiveAsset', 'AssetNotLive', 'IncorrectStatus', 'NotFrozen', 'CallbackFailed']
|
|
4735
|
+
},
|
|
4736
|
+
/**
|
|
4737
|
+
* Lookup504: pallet_balances::types::BalanceLock<Balance>
|
|
3783
4738
|
**/
|
|
3784
4739
|
PalletBalancesBalanceLock: {
|
|
3785
4740
|
id: '[u8;8]',
|
|
@@ -3787,27 +4742,27 @@ var _default = exports.default = {
|
|
|
3787
4742
|
reasons: 'PalletBalancesReasons'
|
|
3788
4743
|
},
|
|
3789
4744
|
/**
|
|
3790
|
-
*
|
|
4745
|
+
* Lookup505: pallet_balances::types::Reasons
|
|
3791
4746
|
**/
|
|
3792
4747
|
PalletBalancesReasons: {
|
|
3793
4748
|
_enum: ['Fee', 'Misc', 'All']
|
|
3794
4749
|
},
|
|
3795
4750
|
/**
|
|
3796
|
-
*
|
|
4751
|
+
* Lookup508: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
3797
4752
|
**/
|
|
3798
4753
|
PalletBalancesReserveData: {
|
|
3799
4754
|
id: '[u8;8]',
|
|
3800
4755
|
amount: 'u128'
|
|
3801
4756
|
},
|
|
3802
4757
|
/**
|
|
3803
|
-
*
|
|
4758
|
+
* Lookup511: pallet_balances::types::IdAmount<tangle_testnet_runtime::RuntimeHoldReason, Balance>
|
|
3804
4759
|
**/
|
|
3805
4760
|
PalletBalancesIdAmountRuntimeHoldReason: {
|
|
3806
4761
|
id: 'TangleTestnetRuntimeRuntimeHoldReason',
|
|
3807
4762
|
amount: 'u128'
|
|
3808
4763
|
},
|
|
3809
4764
|
/**
|
|
3810
|
-
*
|
|
4765
|
+
* Lookup512: tangle_testnet_runtime::RuntimeHoldReason
|
|
3811
4766
|
**/
|
|
3812
4767
|
TangleTestnetRuntimeRuntimeHoldReason: {
|
|
3813
4768
|
_enum: {
|
|
@@ -3835,24 +4790,25 @@ var _default = exports.default = {
|
|
|
3835
4790
|
__Unused21: 'Null',
|
|
3836
4791
|
__Unused22: 'Null',
|
|
3837
4792
|
__Unused23: 'Null',
|
|
4793
|
+
__Unused24: 'Null',
|
|
3838
4794
|
Preimage: 'PalletPreimageHoldReason'
|
|
3839
4795
|
}
|
|
3840
4796
|
},
|
|
3841
4797
|
/**
|
|
3842
|
-
*
|
|
4798
|
+
* Lookup513: pallet_preimage::pallet::HoldReason
|
|
3843
4799
|
**/
|
|
3844
4800
|
PalletPreimageHoldReason: {
|
|
3845
4801
|
_enum: ['Preimage']
|
|
3846
4802
|
},
|
|
3847
4803
|
/**
|
|
3848
|
-
*
|
|
4804
|
+
* Lookup516: pallet_balances::types::IdAmount<tangle_testnet_runtime::RuntimeFreezeReason, Balance>
|
|
3849
4805
|
**/
|
|
3850
4806
|
PalletBalancesIdAmountRuntimeFreezeReason: {
|
|
3851
4807
|
id: 'TangleTestnetRuntimeRuntimeFreezeReason',
|
|
3852
4808
|
amount: 'u128'
|
|
3853
4809
|
},
|
|
3854
4810
|
/**
|
|
3855
|
-
*
|
|
4811
|
+
* Lookup517: tangle_testnet_runtime::RuntimeFreezeReason
|
|
3856
4812
|
**/
|
|
3857
4813
|
TangleTestnetRuntimeRuntimeFreezeReason: {
|
|
3858
4814
|
_enum: {
|
|
@@ -3878,29 +4834,30 @@ var _default = exports.default = {
|
|
|
3878
4834
|
__Unused19: 'Null',
|
|
3879
4835
|
__Unused20: 'Null',
|
|
3880
4836
|
__Unused21: 'Null',
|
|
4837
|
+
__Unused22: 'Null',
|
|
3881
4838
|
NominationPools: 'PalletNominationPoolsFreezeReason'
|
|
3882
4839
|
}
|
|
3883
4840
|
},
|
|
3884
4841
|
/**
|
|
3885
|
-
*
|
|
4842
|
+
* Lookup518: pallet_nomination_pools::pallet::FreezeReason
|
|
3886
4843
|
**/
|
|
3887
4844
|
PalletNominationPoolsFreezeReason: {
|
|
3888
4845
|
_enum: ['PoolMinBalance']
|
|
3889
4846
|
},
|
|
3890
4847
|
/**
|
|
3891
|
-
*
|
|
4848
|
+
* Lookup520: pallet_balances::pallet::Error<T, I>
|
|
3892
4849
|
**/
|
|
3893
4850
|
PalletBalancesError: {
|
|
3894
4851
|
_enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'Expendability', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves', 'TooManyHolds', 'TooManyFreezes', 'IssuanceDeactivated', 'DeltaZero']
|
|
3895
4852
|
},
|
|
3896
4853
|
/**
|
|
3897
|
-
*
|
|
4854
|
+
* Lookup522: pallet_transaction_payment::Releases
|
|
3898
4855
|
**/
|
|
3899
4856
|
PalletTransactionPaymentReleases: {
|
|
3900
4857
|
_enum: ['V1Ancient', 'V2']
|
|
3901
4858
|
},
|
|
3902
4859
|
/**
|
|
3903
|
-
*
|
|
4860
|
+
* Lookup529: sp_consensus_babe::digests::PreDigest
|
|
3904
4861
|
**/
|
|
3905
4862
|
SpConsensusBabeDigestsPreDigest: {
|
|
3906
4863
|
_enum: {
|
|
@@ -3911,7 +4868,7 @@ var _default = exports.default = {
|
|
|
3911
4868
|
}
|
|
3912
4869
|
},
|
|
3913
4870
|
/**
|
|
3914
|
-
*
|
|
4871
|
+
* Lookup530: sp_consensus_babe::digests::PrimaryPreDigest
|
|
3915
4872
|
**/
|
|
3916
4873
|
SpConsensusBabeDigestsPrimaryPreDigest: {
|
|
3917
4874
|
authorityIndex: 'u32',
|
|
@@ -3919,21 +4876,21 @@ var _default = exports.default = {
|
|
|
3919
4876
|
vrfSignature: 'SpCoreSr25519VrfVrfSignature'
|
|
3920
4877
|
},
|
|
3921
4878
|
/**
|
|
3922
|
-
*
|
|
4879
|
+
* Lookup531: sp_core::sr25519::vrf::VrfSignature
|
|
3923
4880
|
**/
|
|
3924
4881
|
SpCoreSr25519VrfVrfSignature: {
|
|
3925
4882
|
preOutput: '[u8;32]',
|
|
3926
4883
|
proof: '[u8;64]'
|
|
3927
4884
|
},
|
|
3928
4885
|
/**
|
|
3929
|
-
*
|
|
4886
|
+
* Lookup532: sp_consensus_babe::digests::SecondaryPlainPreDigest
|
|
3930
4887
|
**/
|
|
3931
4888
|
SpConsensusBabeDigestsSecondaryPlainPreDigest: {
|
|
3932
4889
|
authorityIndex: 'u32',
|
|
3933
4890
|
slot: 'u64'
|
|
3934
4891
|
},
|
|
3935
4892
|
/**
|
|
3936
|
-
*
|
|
4893
|
+
* Lookup533: sp_consensus_babe::digests::SecondaryVRFPreDigest
|
|
3937
4894
|
**/
|
|
3938
4895
|
SpConsensusBabeDigestsSecondaryVRFPreDigest: {
|
|
3939
4896
|
authorityIndex: 'u32',
|
|
@@ -3941,20 +4898,20 @@ var _default = exports.default = {
|
|
|
3941
4898
|
vrfSignature: 'SpCoreSr25519VrfVrfSignature'
|
|
3942
4899
|
},
|
|
3943
4900
|
/**
|
|
3944
|
-
*
|
|
4901
|
+
* Lookup534: sp_consensus_babe::BabeEpochConfiguration
|
|
3945
4902
|
**/
|
|
3946
4903
|
SpConsensusBabeBabeEpochConfiguration: {
|
|
3947
4904
|
c: '(u64,u64)',
|
|
3948
4905
|
allowedSlots: 'SpConsensusBabeAllowedSlots'
|
|
3949
4906
|
},
|
|
3950
4907
|
/**
|
|
3951
|
-
*
|
|
4908
|
+
* Lookup536: pallet_babe::pallet::Error<T>
|
|
3952
4909
|
**/
|
|
3953
4910
|
PalletBabeError: {
|
|
3954
4911
|
_enum: ['InvalidEquivocationProof', 'InvalidKeyOwnershipProof', 'DuplicateOffenceReport', 'InvalidConfiguration']
|
|
3955
4912
|
},
|
|
3956
4913
|
/**
|
|
3957
|
-
*
|
|
4914
|
+
* Lookup537: pallet_grandpa::StoredState<N>
|
|
3958
4915
|
**/
|
|
3959
4916
|
PalletGrandpaStoredState: {
|
|
3960
4917
|
_enum: {
|
|
@@ -3971,7 +4928,7 @@ var _default = exports.default = {
|
|
|
3971
4928
|
}
|
|
3972
4929
|
},
|
|
3973
4930
|
/**
|
|
3974
|
-
*
|
|
4931
|
+
* Lookup538: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
3975
4932
|
**/
|
|
3976
4933
|
PalletGrandpaStoredPendingChange: {
|
|
3977
4934
|
scheduledAt: 'u64',
|
|
@@ -3980,19 +4937,19 @@ var _default = exports.default = {
|
|
|
3980
4937
|
forced: 'Option<u64>'
|
|
3981
4938
|
},
|
|
3982
4939
|
/**
|
|
3983
|
-
*
|
|
4940
|
+
* Lookup540: pallet_grandpa::pallet::Error<T>
|
|
3984
4941
|
**/
|
|
3985
4942
|
PalletGrandpaError: {
|
|
3986
4943
|
_enum: ['PauseFailed', 'ResumeFailed', 'ChangePending', 'TooSoon', 'InvalidKeyOwnershipProof', 'InvalidEquivocationProof', 'DuplicateOffenceReport']
|
|
3987
4944
|
},
|
|
3988
4945
|
/**
|
|
3989
|
-
*
|
|
4946
|
+
* Lookup542: pallet_indices::pallet::Error<T>
|
|
3990
4947
|
**/
|
|
3991
4948
|
PalletIndicesError: {
|
|
3992
4949
|
_enum: ['NotAssigned', 'NotOwner', 'InUse', 'NotTransfer', 'Permanent']
|
|
3993
4950
|
},
|
|
3994
4951
|
/**
|
|
3995
|
-
*
|
|
4952
|
+
* Lookup547: pallet_democracy::types::ReferendumInfo<BlockNumber, frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>, Balance>
|
|
3996
4953
|
**/
|
|
3997
4954
|
PalletDemocracyReferendumInfo: {
|
|
3998
4955
|
_enum: {
|
|
@@ -4004,7 +4961,7 @@ var _default = exports.default = {
|
|
|
4004
4961
|
}
|
|
4005
4962
|
},
|
|
4006
4963
|
/**
|
|
4007
|
-
*
|
|
4964
|
+
* Lookup548: pallet_democracy::types::ReferendumStatus<BlockNumber, frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>, Balance>
|
|
4008
4965
|
**/
|
|
4009
4966
|
PalletDemocracyReferendumStatus: {
|
|
4010
4967
|
end: 'u64',
|
|
@@ -4014,7 +4971,7 @@ var _default = exports.default = {
|
|
|
4014
4971
|
tally: 'PalletDemocracyTally'
|
|
4015
4972
|
},
|
|
4016
4973
|
/**
|
|
4017
|
-
*
|
|
4974
|
+
* Lookup549: pallet_democracy::types::Tally<Balance>
|
|
4018
4975
|
**/
|
|
4019
4976
|
PalletDemocracyTally: {
|
|
4020
4977
|
ayes: 'u128',
|
|
@@ -4022,7 +4979,7 @@ var _default = exports.default = {
|
|
|
4022
4979
|
turnout: 'u128'
|
|
4023
4980
|
},
|
|
4024
4981
|
/**
|
|
4025
|
-
*
|
|
4982
|
+
* Lookup550: pallet_democracy::vote::Voting<Balance, sp_core::crypto::AccountId32, BlockNumber, MaxVotes>
|
|
4026
4983
|
**/
|
|
4027
4984
|
PalletDemocracyVoteVoting: {
|
|
4028
4985
|
_enum: {
|
|
@@ -4041,24 +4998,24 @@ var _default = exports.default = {
|
|
|
4041
4998
|
}
|
|
4042
4999
|
},
|
|
4043
5000
|
/**
|
|
4044
|
-
*
|
|
5001
|
+
* Lookup554: pallet_democracy::types::Delegations<Balance>
|
|
4045
5002
|
**/
|
|
4046
5003
|
PalletDemocracyDelegations: {
|
|
4047
5004
|
votes: 'u128',
|
|
4048
5005
|
capital: 'u128'
|
|
4049
5006
|
},
|
|
4050
5007
|
/**
|
|
4051
|
-
*
|
|
5008
|
+
* Lookup555: pallet_democracy::vote::PriorLock<BlockNumber, Balance>
|
|
4052
5009
|
**/
|
|
4053
5010
|
PalletDemocracyVotePriorLock: '(u64,u128)',
|
|
4054
5011
|
/**
|
|
4055
|
-
*
|
|
5012
|
+
* Lookup558: pallet_democracy::pallet::Error<T>
|
|
4056
5013
|
**/
|
|
4057
5014
|
PalletDemocracyError: {
|
|
4058
5015
|
_enum: ['ValueLow', 'ProposalMissing', 'AlreadyCanceled', 'DuplicateProposal', 'ProposalBlacklisted', 'NotSimpleMajority', 'InvalidHash', 'NoProposal', 'AlreadyVetoed', 'ReferendumInvalid', 'NoneWaiting', 'NotVoter', 'NoPermission', 'AlreadyDelegating', 'InsufficientFunds', 'NotDelegating', 'VotesExist', 'InstantNotAllowed', 'Nonsense', 'WrongUpperBound', 'MaxVotesReached', 'TooMany', 'VotingPeriodLow', 'PreimageNotExist']
|
|
4059
5016
|
},
|
|
4060
5017
|
/**
|
|
4061
|
-
*
|
|
5018
|
+
* Lookup560: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>
|
|
4062
5019
|
**/
|
|
4063
5020
|
PalletCollectiveVotes: {
|
|
4064
5021
|
index: 'u32',
|
|
@@ -4068,25 +5025,25 @@ var _default = exports.default = {
|
|
|
4068
5025
|
end: 'u64'
|
|
4069
5026
|
},
|
|
4070
5027
|
/**
|
|
4071
|
-
*
|
|
5028
|
+
* Lookup561: pallet_collective::pallet::Error<T, I>
|
|
4072
5029
|
**/
|
|
4073
5030
|
PalletCollectiveError: {
|
|
4074
5031
|
_enum: ['NotMember', 'DuplicateProposal', 'ProposalMissing', 'WrongIndex', 'DuplicateVote', 'AlreadyInitialized', 'TooEarly', 'TooManyProposals', 'WrongProposalWeight', 'WrongProposalLength', 'PrimeAccountNotMember']
|
|
4075
5032
|
},
|
|
4076
5033
|
/**
|
|
4077
|
-
*
|
|
5034
|
+
* Lookup564: pallet_vesting::Releases
|
|
4078
5035
|
**/
|
|
4079
5036
|
PalletVestingReleases: {
|
|
4080
5037
|
_enum: ['V0', 'V1']
|
|
4081
5038
|
},
|
|
4082
5039
|
/**
|
|
4083
|
-
*
|
|
5040
|
+
* Lookup565: pallet_vesting::pallet::Error<T>
|
|
4084
5041
|
**/
|
|
4085
5042
|
PalletVestingError: {
|
|
4086
5043
|
_enum: ['NotVesting', 'AtMaxVestingSchedules', 'AmountLow', 'ScheduleIndexOutOfBounds', 'InvalidScheduleParams']
|
|
4087
5044
|
},
|
|
4088
5045
|
/**
|
|
4089
|
-
*
|
|
5046
|
+
* Lookup567: pallet_elections_phragmen::SeatHolder<sp_core::crypto::AccountId32, Balance>
|
|
4090
5047
|
**/
|
|
4091
5048
|
PalletElectionsPhragmenSeatHolder: {
|
|
4092
5049
|
who: 'AccountId32',
|
|
@@ -4094,7 +5051,7 @@ var _default = exports.default = {
|
|
|
4094
5051
|
deposit: 'u128'
|
|
4095
5052
|
},
|
|
4096
5053
|
/**
|
|
4097
|
-
*
|
|
5054
|
+
* Lookup568: pallet_elections_phragmen::Voter<sp_core::crypto::AccountId32, Balance>
|
|
4098
5055
|
**/
|
|
4099
5056
|
PalletElectionsPhragmenVoter: {
|
|
4100
5057
|
votes: 'Vec<AccountId32>',
|
|
@@ -4102,13 +5059,13 @@ var _default = exports.default = {
|
|
|
4102
5059
|
deposit: 'u128'
|
|
4103
5060
|
},
|
|
4104
5061
|
/**
|
|
4105
|
-
*
|
|
5062
|
+
* Lookup569: pallet_elections_phragmen::pallet::Error<T>
|
|
4106
5063
|
**/
|
|
4107
5064
|
PalletElectionsPhragmenError: {
|
|
4108
5065
|
_enum: ['UnableToVote', 'NoVotes', 'TooManyVotes', 'MaximumVotesExceeded', 'LowBalance', 'UnableToPayBond', 'MustBeVoter', 'DuplicatedCandidate', 'TooManyCandidates', 'MemberSubmit', 'RunnerUpSubmit', 'InsufficientCandidateFunds', 'NotMember', 'InvalidWitnessData', 'InvalidVoteCount', 'InvalidRenouncing', 'InvalidReplacement']
|
|
4109
5066
|
},
|
|
4110
5067
|
/**
|
|
4111
|
-
*
|
|
5068
|
+
* Lookup570: pallet_election_provider_multi_phase::ReadySolution<AccountId, MaxWinners>
|
|
4112
5069
|
**/
|
|
4113
5070
|
PalletElectionProviderMultiPhaseReadySolution: {
|
|
4114
5071
|
supports: 'Vec<(AccountId32,SpNposElectionsSupport)>',
|
|
@@ -4116,14 +5073,14 @@ var _default = exports.default = {
|
|
|
4116
5073
|
compute: 'PalletElectionProviderMultiPhaseElectionCompute'
|
|
4117
5074
|
},
|
|
4118
5075
|
/**
|
|
4119
|
-
*
|
|
5076
|
+
* Lookup572: pallet_election_provider_multi_phase::RoundSnapshot<sp_core::crypto::AccountId32, DataProvider>
|
|
4120
5077
|
**/
|
|
4121
5078
|
PalletElectionProviderMultiPhaseRoundSnapshot: {
|
|
4122
5079
|
voters: 'Vec<(AccountId32,u64,Vec<AccountId32>)>',
|
|
4123
5080
|
targets: 'Vec<AccountId32>'
|
|
4124
5081
|
},
|
|
4125
5082
|
/**
|
|
4126
|
-
*
|
|
5083
|
+
* Lookup579: pallet_election_provider_multi_phase::signed::SignedSubmission<sp_core::crypto::AccountId32, Balance, tangle_testnet_runtime::NposSolution16>
|
|
4127
5084
|
**/
|
|
4128
5085
|
PalletElectionProviderMultiPhaseSignedSignedSubmission: {
|
|
4129
5086
|
who: 'AccountId32',
|
|
@@ -4132,13 +5089,13 @@ var _default = exports.default = {
|
|
|
4132
5089
|
callFee: 'u128'
|
|
4133
5090
|
},
|
|
4134
5091
|
/**
|
|
4135
|
-
*
|
|
5092
|
+
* Lookup580: pallet_election_provider_multi_phase::pallet::Error<T>
|
|
4136
5093
|
**/
|
|
4137
5094
|
PalletElectionProviderMultiPhaseError: {
|
|
4138
5095
|
_enum: ['PreDispatchEarlySubmission', 'PreDispatchWrongWinnerCount', 'PreDispatchWeakSubmission', 'SignedQueueFull', 'SignedCannotPayDeposit', 'SignedInvalidWitness', 'SignedTooMuchWeight', 'OcwCallWrongEra', 'MissingSnapshotMetadata', 'InvalidSubmissionIndex', 'CallNotAllowed', 'FallbackFailed', 'BoundNotMet', 'TooManyWinners', 'PreDispatchDifferentRound']
|
|
4139
5096
|
},
|
|
4140
5097
|
/**
|
|
4141
|
-
*
|
|
5098
|
+
* Lookup581: pallet_staking::StakingLedger<T>
|
|
4142
5099
|
**/
|
|
4143
5100
|
PalletStakingStakingLedger: {
|
|
4144
5101
|
stash: 'AccountId32',
|
|
@@ -4148,14 +5105,14 @@ var _default = exports.default = {
|
|
|
4148
5105
|
legacyClaimedRewards: 'Vec<u32>'
|
|
4149
5106
|
},
|
|
4150
5107
|
/**
|
|
4151
|
-
*
|
|
5108
|
+
* Lookup583: pallet_staking::UnlockChunk<Balance>
|
|
4152
5109
|
**/
|
|
4153
5110
|
PalletStakingUnlockChunk: {
|
|
4154
5111
|
value: 'Compact<u128>',
|
|
4155
5112
|
era: 'Compact<u32>'
|
|
4156
5113
|
},
|
|
4157
5114
|
/**
|
|
4158
|
-
*
|
|
5115
|
+
* Lookup586: pallet_staking::Nominations<T>
|
|
4159
5116
|
**/
|
|
4160
5117
|
PalletStakingNominations: {
|
|
4161
5118
|
targets: 'Vec<AccountId32>',
|
|
@@ -4163,14 +5120,14 @@ var _default = exports.default = {
|
|
|
4163
5120
|
suppressed: 'bool'
|
|
4164
5121
|
},
|
|
4165
5122
|
/**
|
|
4166
|
-
*
|
|
5123
|
+
* Lookup587: pallet_staking::ActiveEraInfo
|
|
4167
5124
|
**/
|
|
4168
5125
|
PalletStakingActiveEraInfo: {
|
|
4169
5126
|
index: 'u32',
|
|
4170
5127
|
start: 'Option<u64>'
|
|
4171
5128
|
},
|
|
4172
5129
|
/**
|
|
4173
|
-
*
|
|
5130
|
+
* Lookup589: sp_staking::PagedExposureMetadata<Balance>
|
|
4174
5131
|
**/
|
|
4175
5132
|
SpStakingPagedExposureMetadata: {
|
|
4176
5133
|
total: 'Compact<u128>',
|
|
@@ -4179,21 +5136,21 @@ var _default = exports.default = {
|
|
|
4179
5136
|
pageCount: 'u32'
|
|
4180
5137
|
},
|
|
4181
5138
|
/**
|
|
4182
|
-
*
|
|
5139
|
+
* Lookup591: sp_staking::ExposurePage<sp_core::crypto::AccountId32, Balance>
|
|
4183
5140
|
**/
|
|
4184
5141
|
SpStakingExposurePage: {
|
|
4185
5142
|
pageTotal: 'Compact<u128>',
|
|
4186
5143
|
others: 'Vec<SpStakingIndividualExposure>'
|
|
4187
5144
|
},
|
|
4188
5145
|
/**
|
|
4189
|
-
*
|
|
5146
|
+
* Lookup592: pallet_staking::EraRewardPoints<sp_core::crypto::AccountId32>
|
|
4190
5147
|
**/
|
|
4191
5148
|
PalletStakingEraRewardPoints: {
|
|
4192
5149
|
total: 'u32',
|
|
4193
5150
|
individual: 'BTreeMap<AccountId32, u32>'
|
|
4194
5151
|
},
|
|
4195
5152
|
/**
|
|
4196
|
-
*
|
|
5153
|
+
* Lookup597: pallet_staking::UnappliedSlash<sp_core::crypto::AccountId32, Balance>
|
|
4197
5154
|
**/
|
|
4198
5155
|
PalletStakingUnappliedSlash: {
|
|
4199
5156
|
validator: 'AccountId32',
|
|
@@ -4203,7 +5160,7 @@ var _default = exports.default = {
|
|
|
4203
5160
|
payout: 'u128'
|
|
4204
5161
|
},
|
|
4205
5162
|
/**
|
|
4206
|
-
*
|
|
5163
|
+
* Lookup601: pallet_staking::slashing::SlashingSpans
|
|
4207
5164
|
**/
|
|
4208
5165
|
PalletStakingSlashingSlashingSpans: {
|
|
4209
5166
|
spanIndex: 'u32',
|
|
@@ -4212,30 +5169,30 @@ var _default = exports.default = {
|
|
|
4212
5169
|
prior: 'Vec<u32>'
|
|
4213
5170
|
},
|
|
4214
5171
|
/**
|
|
4215
|
-
*
|
|
5172
|
+
* Lookup602: pallet_staking::slashing::SpanRecord<Balance>
|
|
4216
5173
|
**/
|
|
4217
5174
|
PalletStakingSlashingSpanRecord: {
|
|
4218
5175
|
slashed: 'u128',
|
|
4219
5176
|
paidOut: 'u128'
|
|
4220
5177
|
},
|
|
4221
5178
|
/**
|
|
4222
|
-
*
|
|
5179
|
+
* Lookup605: pallet_staking::pallet::pallet::Error<T>
|
|
4223
5180
|
**/
|
|
4224
5181
|
PalletStakingPalletError: {
|
|
4225
5182
|
_enum: ['NotController', 'NotStash', 'AlreadyBonded', 'AlreadyPaired', 'EmptyTargets', 'DuplicateIndex', 'InvalidSlashIndex', 'InsufficientBond', 'NoMoreChunks', 'NoUnlockChunk', 'FundedTarget', 'InvalidEraToReward', 'InvalidNumberOfNominations', 'NotSortedAndUnique', 'AlreadyClaimed', 'InvalidPage', 'IncorrectHistoryDepth', 'IncorrectSlashingSpans', 'BadState', 'TooManyTargets', 'BadTarget', 'CannotChillOther', 'TooManyNominators', 'TooManyValidators', 'CommissionTooLow', 'BoundNotMet', 'ControllerDeprecated', 'RestakeActive']
|
|
4226
5183
|
},
|
|
4227
5184
|
/**
|
|
4228
|
-
*
|
|
5185
|
+
* Lookup609: sp_core::crypto::KeyTypeId
|
|
4229
5186
|
**/
|
|
4230
5187
|
SpCoreCryptoKeyTypeId: '[u8;4]',
|
|
4231
5188
|
/**
|
|
4232
|
-
*
|
|
5189
|
+
* Lookup610: pallet_session::pallet::Error<T>
|
|
4233
5190
|
**/
|
|
4234
5191
|
PalletSessionError: {
|
|
4235
5192
|
_enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']
|
|
4236
5193
|
},
|
|
4237
5194
|
/**
|
|
4238
|
-
*
|
|
5195
|
+
* Lookup612: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
|
|
4239
5196
|
**/
|
|
4240
5197
|
PalletTreasuryProposal: {
|
|
4241
5198
|
proposer: 'AccountId32',
|
|
@@ -4244,7 +5201,7 @@ var _default = exports.default = {
|
|
|
4244
5201
|
bond: 'u128'
|
|
4245
5202
|
},
|
|
4246
5203
|
/**
|
|
4247
|
-
*
|
|
5204
|
+
* Lookup614: pallet_treasury::SpendStatus<AssetKind, AssetBalance, sp_core::crypto::AccountId32, BlockNumber, PaymentId>
|
|
4248
5205
|
**/
|
|
4249
5206
|
PalletTreasurySpendStatus: {
|
|
4250
5207
|
assetKind: 'Null',
|
|
@@ -4255,7 +5212,7 @@ var _default = exports.default = {
|
|
|
4255
5212
|
status: 'PalletTreasuryPaymentState'
|
|
4256
5213
|
},
|
|
4257
5214
|
/**
|
|
4258
|
-
*
|
|
5215
|
+
* Lookup615: pallet_treasury::PaymentState<Id>
|
|
4259
5216
|
**/
|
|
4260
5217
|
PalletTreasuryPaymentState: {
|
|
4261
5218
|
_enum: {
|
|
@@ -4267,17 +5224,17 @@ var _default = exports.default = {
|
|
|
4267
5224
|
}
|
|
4268
5225
|
},
|
|
4269
5226
|
/**
|
|
4270
|
-
*
|
|
5227
|
+
* Lookup616: frame_support::PalletId
|
|
4271
5228
|
**/
|
|
4272
5229
|
FrameSupportPalletId: '[u8;8]',
|
|
4273
5230
|
/**
|
|
4274
|
-
*
|
|
5231
|
+
* Lookup617: pallet_treasury::pallet::Error<T, I>
|
|
4275
5232
|
**/
|
|
4276
5233
|
PalletTreasuryError: {
|
|
4277
5234
|
_enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved', 'FailedToConvertBalance', 'SpendExpired', 'EarlyPayout', 'AlreadyAttempted', 'PayoutError', 'NotAttempted', 'Inconclusive']
|
|
4278
5235
|
},
|
|
4279
5236
|
/**
|
|
4280
|
-
*
|
|
5237
|
+
* Lookup618: pallet_bounties::Bounty<sp_core::crypto::AccountId32, Balance, BlockNumber>
|
|
4281
5238
|
**/
|
|
4282
5239
|
PalletBountiesBounty: {
|
|
4283
5240
|
proposer: 'AccountId32',
|
|
@@ -4288,7 +5245,7 @@ var _default = exports.default = {
|
|
|
4288
5245
|
status: 'PalletBountiesBountyStatus'
|
|
4289
5246
|
},
|
|
4290
5247
|
/**
|
|
4291
|
-
*
|
|
5248
|
+
* Lookup619: pallet_bounties::BountyStatus<sp_core::crypto::AccountId32, BlockNumber>
|
|
4292
5249
|
**/
|
|
4293
5250
|
PalletBountiesBountyStatus: {
|
|
4294
5251
|
_enum: {
|
|
@@ -4310,13 +5267,13 @@ var _default = exports.default = {
|
|
|
4310
5267
|
}
|
|
4311
5268
|
},
|
|
4312
5269
|
/**
|
|
4313
|
-
*
|
|
5270
|
+
* Lookup621: pallet_bounties::pallet::Error<T, I>
|
|
4314
5271
|
**/
|
|
4315
5272
|
PalletBountiesError: {
|
|
4316
5273
|
_enum: ['InsufficientProposersBalance', 'InvalidIndex', 'ReasonTooBig', 'UnexpectedStatus', 'RequireCurator', 'InvalidValue', 'InvalidFee', 'PendingPayout', 'Premature', 'HasActiveChildBounty', 'TooManyQueued']
|
|
4317
5274
|
},
|
|
4318
5275
|
/**
|
|
4319
|
-
*
|
|
5276
|
+
* Lookup622: pallet_child_bounties::ChildBounty<sp_core::crypto::AccountId32, Balance, BlockNumber>
|
|
4320
5277
|
**/
|
|
4321
5278
|
PalletChildBountiesChildBounty: {
|
|
4322
5279
|
parentBounty: 'u32',
|
|
@@ -4326,7 +5283,7 @@ var _default = exports.default = {
|
|
|
4326
5283
|
status: 'PalletChildBountiesChildBountyStatus'
|
|
4327
5284
|
},
|
|
4328
5285
|
/**
|
|
4329
|
-
*
|
|
5286
|
+
* Lookup623: pallet_child_bounties::ChildBountyStatus<sp_core::crypto::AccountId32, BlockNumber>
|
|
4330
5287
|
**/
|
|
4331
5288
|
PalletChildBountiesChildBountyStatus: {
|
|
4332
5289
|
_enum: {
|
|
@@ -4345,13 +5302,13 @@ var _default = exports.default = {
|
|
|
4345
5302
|
}
|
|
4346
5303
|
},
|
|
4347
5304
|
/**
|
|
4348
|
-
*
|
|
5305
|
+
* Lookup624: pallet_child_bounties::pallet::Error<T>
|
|
4349
5306
|
**/
|
|
4350
5307
|
PalletChildBountiesError: {
|
|
4351
5308
|
_enum: ['ParentBountyNotActive', 'InsufficientBountyBalance', 'TooManyChildBounties']
|
|
4352
5309
|
},
|
|
4353
5310
|
/**
|
|
4354
|
-
*
|
|
5311
|
+
* Lookup625: pallet_bags_list::list::Node<T, I>
|
|
4355
5312
|
**/
|
|
4356
5313
|
PalletBagsListListNode: {
|
|
4357
5314
|
id: 'AccountId32',
|
|
@@ -4361,14 +5318,14 @@ var _default = exports.default = {
|
|
|
4361
5318
|
score: 'u64'
|
|
4362
5319
|
},
|
|
4363
5320
|
/**
|
|
4364
|
-
*
|
|
5321
|
+
* Lookup626: pallet_bags_list::list::Bag<T, I>
|
|
4365
5322
|
**/
|
|
4366
5323
|
PalletBagsListListBag: {
|
|
4367
5324
|
head: 'Option<AccountId32>',
|
|
4368
5325
|
tail: 'Option<AccountId32>'
|
|
4369
5326
|
},
|
|
4370
5327
|
/**
|
|
4371
|
-
*
|
|
5328
|
+
* Lookup628: pallet_bags_list::pallet::Error<T, I>
|
|
4372
5329
|
**/
|
|
4373
5330
|
PalletBagsListError: {
|
|
4374
5331
|
_enum: {
|
|
@@ -4376,13 +5333,13 @@ var _default = exports.default = {
|
|
|
4376
5333
|
}
|
|
4377
5334
|
},
|
|
4378
5335
|
/**
|
|
4379
|
-
*
|
|
5336
|
+
* Lookup629: pallet_bags_list::list::ListError
|
|
4380
5337
|
**/
|
|
4381
5338
|
PalletBagsListListListError: {
|
|
4382
5339
|
_enum: ['Duplicate', 'NotHeavier', 'NotInSameBag', 'NodeNotFound']
|
|
4383
5340
|
},
|
|
4384
5341
|
/**
|
|
4385
|
-
*
|
|
5342
|
+
* Lookup630: pallet_nomination_pools::PoolMember<T>
|
|
4386
5343
|
**/
|
|
4387
5344
|
PalletNominationPoolsPoolMember: {
|
|
4388
5345
|
poolId: 'u32',
|
|
@@ -4391,7 +5348,7 @@ var _default = exports.default = {
|
|
|
4391
5348
|
unbondingEras: 'BTreeMap<u32, u128>'
|
|
4392
5349
|
},
|
|
4393
5350
|
/**
|
|
4394
|
-
*
|
|
5351
|
+
* Lookup635: pallet_nomination_pools::BondedPoolInner<T>
|
|
4395
5352
|
**/
|
|
4396
5353
|
PalletNominationPoolsBondedPoolInner: {
|
|
4397
5354
|
commission: 'PalletNominationPoolsCommission',
|
|
@@ -4401,7 +5358,7 @@ var _default = exports.default = {
|
|
|
4401
5358
|
state: 'PalletNominationPoolsPoolState'
|
|
4402
5359
|
},
|
|
4403
5360
|
/**
|
|
4404
|
-
*
|
|
5361
|
+
* Lookup636: pallet_nomination_pools::Commission<T>
|
|
4405
5362
|
**/
|
|
4406
5363
|
PalletNominationPoolsCommission: {
|
|
4407
5364
|
current: 'Option<(Perbill,AccountId32)>',
|
|
@@ -4411,7 +5368,7 @@ var _default = exports.default = {
|
|
|
4411
5368
|
claimPermission: 'Option<PalletNominationPoolsCommissionClaimPermission>'
|
|
4412
5369
|
},
|
|
4413
5370
|
/**
|
|
4414
|
-
*
|
|
5371
|
+
* Lookup639: pallet_nomination_pools::PoolRoles<sp_core::crypto::AccountId32>
|
|
4415
5372
|
**/
|
|
4416
5373
|
PalletNominationPoolsPoolRoles: {
|
|
4417
5374
|
depositor: 'AccountId32',
|
|
@@ -4420,7 +5377,7 @@ var _default = exports.default = {
|
|
|
4420
5377
|
bouncer: 'Option<AccountId32>'
|
|
4421
5378
|
},
|
|
4422
5379
|
/**
|
|
4423
|
-
*
|
|
5380
|
+
* Lookup640: pallet_nomination_pools::RewardPool<T>
|
|
4424
5381
|
**/
|
|
4425
5382
|
PalletNominationPoolsRewardPool: {
|
|
4426
5383
|
lastRecordedRewardCounter: 'u128',
|
|
@@ -4430,21 +5387,21 @@ var _default = exports.default = {
|
|
|
4430
5387
|
totalCommissionClaimed: 'u128'
|
|
4431
5388
|
},
|
|
4432
5389
|
/**
|
|
4433
|
-
*
|
|
5390
|
+
* Lookup641: pallet_nomination_pools::SubPools<T>
|
|
4434
5391
|
**/
|
|
4435
5392
|
PalletNominationPoolsSubPools: {
|
|
4436
5393
|
noEra: 'PalletNominationPoolsUnbondPool',
|
|
4437
5394
|
withEra: 'BTreeMap<u32, PalletNominationPoolsUnbondPool>'
|
|
4438
5395
|
},
|
|
4439
5396
|
/**
|
|
4440
|
-
*
|
|
5397
|
+
* Lookup642: pallet_nomination_pools::UnbondPool<T>
|
|
4441
5398
|
**/
|
|
4442
5399
|
PalletNominationPoolsUnbondPool: {
|
|
4443
5400
|
points: 'u128',
|
|
4444
5401
|
balance: 'u128'
|
|
4445
5402
|
},
|
|
4446
5403
|
/**
|
|
4447
|
-
*
|
|
5404
|
+
* Lookup647: pallet_nomination_pools::pallet::Error<T>
|
|
4448
5405
|
**/
|
|
4449
5406
|
PalletNominationPoolsError: {
|
|
4450
5407
|
_enum: {
|
|
@@ -4483,13 +5440,13 @@ var _default = exports.default = {
|
|
|
4483
5440
|
}
|
|
4484
5441
|
},
|
|
4485
5442
|
/**
|
|
4486
|
-
*
|
|
5443
|
+
* Lookup648: pallet_nomination_pools::pallet::DefensiveError
|
|
4487
5444
|
**/
|
|
4488
5445
|
PalletNominationPoolsDefensiveError: {
|
|
4489
5446
|
_enum: ['NotEnoughSpaceInUnbondPool', 'PoolNotFound', 'RewardPoolNotFound', 'SubPoolsNotFound', 'BondedStashKilledPrematurely']
|
|
4490
5447
|
},
|
|
4491
5448
|
/**
|
|
4492
|
-
*
|
|
5449
|
+
* 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>
|
|
4493
5450
|
**/
|
|
4494
5451
|
PalletSchedulerScheduled: {
|
|
4495
5452
|
maybeId: 'Option<[u8;32]>',
|
|
@@ -4499,13 +5456,13 @@ var _default = exports.default = {
|
|
|
4499
5456
|
origin: 'TangleTestnetRuntimeOriginCaller'
|
|
4500
5457
|
},
|
|
4501
5458
|
/**
|
|
4502
|
-
*
|
|
5459
|
+
* Lookup653: pallet_scheduler::pallet::Error<T>
|
|
4503
5460
|
**/
|
|
4504
5461
|
PalletSchedulerError: {
|
|
4505
5462
|
_enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange', 'Named']
|
|
4506
5463
|
},
|
|
4507
5464
|
/**
|
|
4508
|
-
*
|
|
5465
|
+
* Lookup654: pallet_preimage::OldRequestStatus<sp_core::crypto::AccountId32, Balance>
|
|
4509
5466
|
**/
|
|
4510
5467
|
PalletPreimageOldRequestStatus: {
|
|
4511
5468
|
_enum: {
|
|
@@ -4521,7 +5478,7 @@ var _default = exports.default = {
|
|
|
4521
5478
|
}
|
|
4522
5479
|
},
|
|
4523
5480
|
/**
|
|
4524
|
-
*
|
|
5481
|
+
* Lookup656: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Ticket>
|
|
4525
5482
|
**/
|
|
4526
5483
|
PalletPreimageRequestStatus: {
|
|
4527
5484
|
_enum: {
|
|
@@ -4537,32 +5494,32 @@ var _default = exports.default = {
|
|
|
4537
5494
|
}
|
|
4538
5495
|
},
|
|
4539
5496
|
/**
|
|
4540
|
-
*
|
|
5497
|
+
* Lookup660: pallet_preimage::pallet::Error<T>
|
|
4541
5498
|
**/
|
|
4542
5499
|
PalletPreimageError: {
|
|
4543
5500
|
_enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested', 'TooMany', 'TooFew']
|
|
4544
5501
|
},
|
|
4545
5502
|
/**
|
|
4546
|
-
*
|
|
5503
|
+
* Lookup661: sp_staking::offence::OffenceDetails<sp_core::crypto::AccountId32, Offender>
|
|
4547
5504
|
**/
|
|
4548
5505
|
SpStakingOffenceOffenceDetails: {
|
|
4549
5506
|
offender: '(AccountId32,SpStakingExposure)',
|
|
4550
5507
|
reporters: 'Vec<AccountId32>'
|
|
4551
5508
|
},
|
|
4552
5509
|
/**
|
|
4553
|
-
*
|
|
5510
|
+
* Lookup663: pallet_tx_pause::pallet::Error<T>
|
|
4554
5511
|
**/
|
|
4555
5512
|
PalletTxPauseError: {
|
|
4556
5513
|
_enum: ['IsPaused', 'IsUnpaused', 'Unpausable', 'NotFound']
|
|
4557
5514
|
},
|
|
4558
5515
|
/**
|
|
4559
|
-
*
|
|
5516
|
+
* Lookup666: pallet_im_online::pallet::Error<T>
|
|
4560
5517
|
**/
|
|
4561
5518
|
PalletImOnlineError: {
|
|
4562
5519
|
_enum: ['InvalidKey', 'DuplicatedHeartbeat']
|
|
4563
5520
|
},
|
|
4564
5521
|
/**
|
|
4565
|
-
*
|
|
5522
|
+
* Lookup668: pallet_identity::types::Registration<Balance, MaxJudgements, pallet_identity::legacy::IdentityInfo<FieldLimit>>
|
|
4566
5523
|
**/
|
|
4567
5524
|
PalletIdentityRegistration: {
|
|
4568
5525
|
judgements: 'Vec<(u32,PalletIdentityJudgement)>',
|
|
@@ -4570,7 +5527,7 @@ var _default = exports.default = {
|
|
|
4570
5527
|
info: 'PalletIdentityLegacyIdentityInfo'
|
|
4571
5528
|
},
|
|
4572
5529
|
/**
|
|
4573
|
-
*
|
|
5530
|
+
* Lookup677: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32, IdField>
|
|
4574
5531
|
**/
|
|
4575
5532
|
PalletIdentityRegistrarInfo: {
|
|
4576
5533
|
account: 'AccountId32',
|
|
@@ -4578,26 +5535,26 @@ var _default = exports.default = {
|
|
|
4578
5535
|
fields: 'u64'
|
|
4579
5536
|
},
|
|
4580
5537
|
/**
|
|
4581
|
-
*
|
|
5538
|
+
* Lookup679: pallet_identity::types::AuthorityProperties<bounded_collections::bounded_vec::BoundedVec<T, S>>
|
|
4582
5539
|
**/
|
|
4583
5540
|
PalletIdentityAuthorityProperties: {
|
|
4584
5541
|
suffix: 'Bytes',
|
|
4585
5542
|
allocation: 'u32'
|
|
4586
5543
|
},
|
|
4587
5544
|
/**
|
|
4588
|
-
*
|
|
5545
|
+
* Lookup682: pallet_identity::pallet::Error<T>
|
|
4589
5546
|
**/
|
|
4590
5547
|
PalletIdentityError: {
|
|
4591
5548
|
_enum: ['TooManySubAccounts', 'NotFound', 'NotNamed', 'EmptyIndex', 'FeeChanged', 'NoIdentity', 'StickyJudgement', 'JudgementGiven', 'InvalidJudgement', 'InvalidIndex', 'InvalidTarget', 'TooManyRegistrars', 'AlreadyClaimed', 'NotSub', 'NotOwned', 'JudgementForDifferentIdentity', 'JudgementPaymentFailed', 'InvalidSuffix', 'NotUsernameAuthority', 'NoAllocation', 'InvalidSignature', 'RequiresSignature', 'InvalidUsername', 'UsernameTaken', 'NoUsername', 'NotExpired']
|
|
4592
5549
|
},
|
|
4593
5550
|
/**
|
|
4594
|
-
*
|
|
5551
|
+
* Lookup683: pallet_utility::pallet::Error<T>
|
|
4595
5552
|
**/
|
|
4596
5553
|
PalletUtilityError: {
|
|
4597
5554
|
_enum: ['TooManyCalls']
|
|
4598
5555
|
},
|
|
4599
5556
|
/**
|
|
4600
|
-
*
|
|
5557
|
+
* Lookup685: pallet_multisig::Multisig<BlockNumber, Balance, sp_core::crypto::AccountId32, MaxApprovals>
|
|
4601
5558
|
**/
|
|
4602
5559
|
PalletMultisigMultisig: {
|
|
4603
5560
|
when: 'PalletMultisigTimepoint',
|
|
@@ -4606,13 +5563,13 @@ var _default = exports.default = {
|
|
|
4606
5563
|
approvals: 'Vec<AccountId32>'
|
|
4607
5564
|
},
|
|
4608
5565
|
/**
|
|
4609
|
-
*
|
|
5566
|
+
* Lookup686: pallet_multisig::pallet::Error<T>
|
|
4610
5567
|
**/
|
|
4611
5568
|
PalletMultisigError: {
|
|
4612
5569
|
_enum: ['MinimumThreshold', 'AlreadyApproved', 'NoApprovalsNeeded', 'TooFewSignatories', 'TooManySignatories', 'SignatoriesOutOfOrder', 'SenderInSignatories', 'NotFound', 'NotOwner', 'NoTimepoint', 'WrongTimepoint', 'UnexpectedTimepoint', 'MaxWeightTooLow', 'AlreadyStored']
|
|
4613
5570
|
},
|
|
4614
5571
|
/**
|
|
4615
|
-
*
|
|
5572
|
+
* Lookup689: fp_rpc::TransactionStatus
|
|
4616
5573
|
**/
|
|
4617
5574
|
FpRpcTransactionStatus: {
|
|
4618
5575
|
transactionHash: 'H256',
|
|
@@ -4624,11 +5581,11 @@ var _default = exports.default = {
|
|
|
4624
5581
|
logsBloom: 'EthbloomBloom'
|
|
4625
5582
|
},
|
|
4626
5583
|
/**
|
|
4627
|
-
*
|
|
5584
|
+
* Lookup692: ethbloom::Bloom
|
|
4628
5585
|
**/
|
|
4629
5586
|
EthbloomBloom: '[u8;256]',
|
|
4630
5587
|
/**
|
|
4631
|
-
*
|
|
5588
|
+
* Lookup694: ethereum::receipt::ReceiptV3
|
|
4632
5589
|
**/
|
|
4633
5590
|
EthereumReceiptReceiptV3: {
|
|
4634
5591
|
_enum: {
|
|
@@ -4638,7 +5595,7 @@ var _default = exports.default = {
|
|
|
4638
5595
|
}
|
|
4639
5596
|
},
|
|
4640
5597
|
/**
|
|
4641
|
-
*
|
|
5598
|
+
* Lookup695: ethereum::receipt::EIP658ReceiptData
|
|
4642
5599
|
**/
|
|
4643
5600
|
EthereumReceiptEip658ReceiptData: {
|
|
4644
5601
|
statusCode: 'u8',
|
|
@@ -4647,7 +5604,7 @@ var _default = exports.default = {
|
|
|
4647
5604
|
logs: 'Vec<EthereumLog>'
|
|
4648
5605
|
},
|
|
4649
5606
|
/**
|
|
4650
|
-
*
|
|
5607
|
+
* Lookup696: ethereum::block::Block<ethereum::transaction::TransactionV2>
|
|
4651
5608
|
**/
|
|
4652
5609
|
EthereumBlock: {
|
|
4653
5610
|
header: 'EthereumHeader',
|
|
@@ -4655,7 +5612,7 @@ var _default = exports.default = {
|
|
|
4655
5612
|
ommers: 'Vec<EthereumHeader>'
|
|
4656
5613
|
},
|
|
4657
5614
|
/**
|
|
4658
|
-
*
|
|
5615
|
+
* Lookup697: ethereum::header::Header
|
|
4659
5616
|
**/
|
|
4660
5617
|
EthereumHeader: {
|
|
4661
5618
|
parentHash: 'H256',
|
|
@@ -4675,17 +5632,17 @@ var _default = exports.default = {
|
|
|
4675
5632
|
nonce: 'EthereumTypesHashH64'
|
|
4676
5633
|
},
|
|
4677
5634
|
/**
|
|
4678
|
-
*
|
|
5635
|
+
* Lookup698: ethereum_types::hash::H64
|
|
4679
5636
|
**/
|
|
4680
5637
|
EthereumTypesHashH64: '[u8;8]',
|
|
4681
5638
|
/**
|
|
4682
|
-
*
|
|
5639
|
+
* Lookup703: pallet_ethereum::pallet::Error<T>
|
|
4683
5640
|
**/
|
|
4684
5641
|
PalletEthereumError: {
|
|
4685
5642
|
_enum: ['InvalidSignature', 'PreLogExists']
|
|
4686
5643
|
},
|
|
4687
5644
|
/**
|
|
4688
|
-
*
|
|
5645
|
+
* Lookup704: pallet_evm::CodeMetadata
|
|
4689
5646
|
**/
|
|
4690
5647
|
PalletEvmCodeMetadata: {
|
|
4691
5648
|
_alias: {
|
|
@@ -4696,25 +5653,25 @@ var _default = exports.default = {
|
|
|
4696
5653
|
hash_: 'H256'
|
|
4697
5654
|
},
|
|
4698
5655
|
/**
|
|
4699
|
-
*
|
|
5656
|
+
* Lookup706: pallet_evm::pallet::Error<T>
|
|
4700
5657
|
**/
|
|
4701
5658
|
PalletEvmError: {
|
|
4702
5659
|
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'InvalidChainId', 'InvalidSignature', 'Reentrancy', 'TransactionMustComeFromEOA', 'Undefined']
|
|
4703
5660
|
},
|
|
4704
5661
|
/**
|
|
4705
|
-
*
|
|
5662
|
+
* Lookup707: pallet_hotfix_sufficients::pallet::Error<T>
|
|
4706
5663
|
**/
|
|
4707
5664
|
PalletHotfixSufficientsError: {
|
|
4708
5665
|
_enum: ['MaxAddressCountExceeded']
|
|
4709
5666
|
},
|
|
4710
5667
|
/**
|
|
4711
|
-
*
|
|
5668
|
+
* Lookup709: pallet_airdrop_claims::pallet::Error<T>
|
|
4712
5669
|
**/
|
|
4713
5670
|
PalletAirdropClaimsError: {
|
|
4714
5671
|
_enum: ['InvalidEthereumSignature', 'InvalidNativeSignature', 'InvalidNativeAccount', 'SignerHasNoClaim', 'SenderHasNoClaim', 'PotUnderflow', 'InvalidStatement', 'VestedBalanceExists']
|
|
4715
5672
|
},
|
|
4716
5673
|
/**
|
|
4717
|
-
*
|
|
5674
|
+
* Lookup710: pallet_roles::types::RestakingLedger<T>
|
|
4718
5675
|
**/
|
|
4719
5676
|
PalletRolesRestakingLedger: {
|
|
4720
5677
|
stash: 'AccountId32',
|
|
@@ -4727,20 +5684,20 @@ var _default = exports.default = {
|
|
|
4727
5684
|
maxActiveServices: 'u32'
|
|
4728
5685
|
},
|
|
4729
5686
|
/**
|
|
4730
|
-
*
|
|
5687
|
+
* Lookup716: pallet_roles::types::UnlockChunk<Balance>
|
|
4731
5688
|
**/
|
|
4732
5689
|
PalletRolesUnlockChunk: {
|
|
4733
5690
|
value: 'Compact<u128>',
|
|
4734
5691
|
era: 'Compact<u32>'
|
|
4735
5692
|
},
|
|
4736
5693
|
/**
|
|
4737
|
-
*
|
|
5694
|
+
* Lookup720: pallet_roles::pallet::Error<T>
|
|
4738
5695
|
**/
|
|
4739
5696
|
PalletRolesError: {
|
|
4740
5697
|
_enum: ['NotValidator', 'HasRoleAssigned', 'RoleNotAssigned', 'MaxRoles', 'RoleCannotBeRemoved', 'RestakingAmountCannotBeUpdated', 'ExceedsMaxRestakeValue', 'InsufficientRestakingBond', 'ProfileUpdateFailed', 'ProfileAlreadyExists', 'NoProfileFound', 'ProfileDeleteRequestFailed', 'SessionKeysNotProvided', 'KeySizeExceeded', 'CannotGetCurrentEra', 'InvalidEraToReward', 'BoundNotMet', 'AlreadyClaimed', 'NoMoreChunks']
|
|
4741
5698
|
},
|
|
4742
5699
|
/**
|
|
4743
|
-
*
|
|
5700
|
+
* 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>
|
|
4744
5701
|
**/
|
|
4745
5702
|
TanglePrimitivesJobsPhaseResult: {
|
|
4746
5703
|
owner: 'AccountId32',
|
|
@@ -4750,53 +5707,210 @@ var _default = exports.default = {
|
|
|
4750
5707
|
jobType: 'TanglePrimitivesJobsJobType'
|
|
4751
5708
|
},
|
|
4752
5709
|
/**
|
|
4753
|
-
*
|
|
5710
|
+
* Lookup723: pallet_jobs::module::Error<T>
|
|
4754
5711
|
**/
|
|
4755
5712
|
PalletJobsModuleError: {
|
|
4756
5713
|
_enum: ['InvalidJobPhase', 'InvalidValidator', 'InvalidJobParams', 'PreviousResultNotFound', 'ResultExpired', 'JobAlreadyExpired', 'JobNotFound', 'PhaseOneResultNotFound', 'NoRewards', 'NotEnoughValidators', 'EmptyResult', 'EmptyJob', 'ValidatorRoleKeyNotFound', 'ResultNotExpectedType', 'NoPermission', 'TooManyParticipants', 'ExceedsMaxKeySize', 'TooManyJobsForValidator']
|
|
4757
5714
|
},
|
|
4758
5715
|
/**
|
|
4759
|
-
*
|
|
5716
|
+
* Lookup724: pallet_dkg::pallet::Error<T>
|
|
4760
5717
|
**/
|
|
4761
5718
|
PalletDkgError: {
|
|
4762
5719
|
_enum: ['CannotRetreiveSigner', 'NotEnoughSigners', 'InvalidSignatureData', 'NoParticipantsFound', 'NoSignaturesFound', 'InvalidJobType', 'DuplicateSignature', 'InvalidSignature', 'InvalidSignatureScheme', 'InvalidSignatureDeserialization', 'InvalidVerifyingKey', 'InvalidVerifyingKeyDeserialization', 'SigningKeyMismatch', 'InvalidParticipantPublicKey', 'InvalidBlsPublicKey', 'InvalidRoleType', 'InvalidJustification', 'MalformedRoundMessage', 'NotSignedByOffender', 'ValidDecommitment', 'ValidDataSize', 'ValidFeldmanVerification', 'ValidSchnorrProof', 'ValidRingPedersenParameters', 'ValidModProof', 'ValidFrostSignatureShare', 'InvalidFrostMessageSerialization', 'InvalidFrostMessageDeserialization', 'InvalidIdentifierDeserialization', 'ValidFrostSignature', 'UnknownIdentifier', 'DuplicateIdentifier', 'IncorrectNumberOfIdentifiers', 'IdentifierDerivationNotSupported', 'MalformedFrostSignature', 'InvalidFrostSignature', 'InvalidFrostSignatureShare', 'InvalidFrostSignatureScheme', 'MalformedFrostVerifyingKey', 'MalformedFrostSigningKey', 'MissingFrostCommitment', 'IdentityCommitment', 'FrostFieldError', 'FrostGroupError', 'FieldElementError', 'InvalidPublicKey', 'InvalidMessage', 'MalformedStarkSignature']
|
|
4763
5720
|
},
|
|
4764
5721
|
/**
|
|
4765
|
-
*
|
|
5722
|
+
* Lookup725: pallet_zksaas::pallet::Error<T>
|
|
4766
5723
|
**/
|
|
4767
5724
|
PalletZksaasError: {
|
|
4768
5725
|
_enum: ['InvalidJobType', 'InvalidProof', 'MalformedProof']
|
|
4769
5726
|
},
|
|
4770
5727
|
/**
|
|
4771
|
-
*
|
|
5728
|
+
* Lookup728: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, tangle_testnet_runtime::ProxyType, BlockNumber>
|
|
5729
|
+
**/
|
|
5730
|
+
PalletProxyProxyDefinition: {
|
|
5731
|
+
delegate: 'AccountId32',
|
|
5732
|
+
proxyType: 'TangleTestnetRuntimeProxyType',
|
|
5733
|
+
delay: 'u64'
|
|
5734
|
+
},
|
|
5735
|
+
/**
|
|
5736
|
+
* Lookup732: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
|
|
5737
|
+
**/
|
|
5738
|
+
PalletProxyAnnouncement: {
|
|
5739
|
+
real: 'AccountId32',
|
|
5740
|
+
callHash: 'H256',
|
|
5741
|
+
height: 'u64'
|
|
5742
|
+
},
|
|
5743
|
+
/**
|
|
5744
|
+
* Lookup734: pallet_proxy::pallet::Error<T>
|
|
5745
|
+
**/
|
|
5746
|
+
PalletProxyError: {
|
|
5747
|
+
_enum: ['TooMany', 'NotFound', 'NotProxy', 'Unproxyable', 'Duplicate', 'NoPermission', 'Unannounced', 'NoSelfProxy']
|
|
5748
|
+
},
|
|
5749
|
+
/**
|
|
5750
|
+
* Lookup735: pallet_multi_asset_delegation::types::operator::OperatorMetadata<sp_core::crypto::AccountId32, Balance, AssetId>
|
|
5751
|
+
**/
|
|
5752
|
+
PalletMultiAssetDelegationOperatorOperatorMetadata: {
|
|
5753
|
+
bond: 'u128',
|
|
5754
|
+
delegationCount: 'u32',
|
|
5755
|
+
request: 'Option<PalletMultiAssetDelegationOperatorOperatorBondLessRequest>',
|
|
5756
|
+
delegations: 'Vec<PalletMultiAssetDelegationOperatorDelegatorBond>',
|
|
5757
|
+
status: 'PalletMultiAssetDelegationOperatorOperatorStatus'
|
|
5758
|
+
},
|
|
5759
|
+
/**
|
|
5760
|
+
* Lookup737: pallet_multi_asset_delegation::types::operator::OperatorBondLessRequest<Balance>
|
|
5761
|
+
**/
|
|
5762
|
+
PalletMultiAssetDelegationOperatorOperatorBondLessRequest: {
|
|
5763
|
+
amount: 'u128',
|
|
5764
|
+
requestTime: 'u32'
|
|
5765
|
+
},
|
|
5766
|
+
/**
|
|
5767
|
+
* Lookup739: pallet_multi_asset_delegation::types::operator::DelegatorBond<sp_core::crypto::AccountId32, Balance, AssetId>
|
|
5768
|
+
**/
|
|
5769
|
+
PalletMultiAssetDelegationOperatorDelegatorBond: {
|
|
5770
|
+
delegator: 'AccountId32',
|
|
5771
|
+
amount: 'u128',
|
|
5772
|
+
assetId: 'u128'
|
|
5773
|
+
},
|
|
5774
|
+
/**
|
|
5775
|
+
* Lookup740: pallet_multi_asset_delegation::types::operator::OperatorStatus
|
|
5776
|
+
**/
|
|
5777
|
+
PalletMultiAssetDelegationOperatorOperatorStatus: {
|
|
5778
|
+
_enum: {
|
|
5779
|
+
Active: 'Null',
|
|
5780
|
+
Inactive: 'Null',
|
|
5781
|
+
Leaving: 'u32'
|
|
5782
|
+
}
|
|
5783
|
+
},
|
|
5784
|
+
/**
|
|
5785
|
+
* Lookup741: pallet_multi_asset_delegation::types::operator::OperatorSnapshot<sp_core::crypto::AccountId32, Balance, AssetId>
|
|
5786
|
+
**/
|
|
5787
|
+
PalletMultiAssetDelegationOperatorOperatorSnapshot: {
|
|
5788
|
+
bond: 'u128',
|
|
5789
|
+
delegations: 'Vec<PalletMultiAssetDelegationOperatorDelegatorBond>'
|
|
5790
|
+
},
|
|
5791
|
+
/**
|
|
5792
|
+
* Lookup742: pallet_multi_asset_delegation::types::delegator::DelegatorMetadata<sp_core::crypto::AccountId32, Balance, AssetId>
|
|
5793
|
+
**/
|
|
5794
|
+
PalletMultiAssetDelegationDelegatorDelegatorMetadata: {
|
|
5795
|
+
deposits: 'BTreeMap<u128, u128>',
|
|
5796
|
+
unstakeRequest: 'Option<PalletMultiAssetDelegationDelegatorUnstakeRequest>',
|
|
5797
|
+
delegations: 'Vec<PalletMultiAssetDelegationDelegatorBondInfoDelegator>',
|
|
5798
|
+
delegatorBondLessRequest: 'Option<PalletMultiAssetDelegationDelegatorBondLessRequest>',
|
|
5799
|
+
status: 'PalletMultiAssetDelegationDelegatorDelegatorStatus'
|
|
5800
|
+
},
|
|
5801
|
+
/**
|
|
5802
|
+
* Lookup747: pallet_multi_asset_delegation::types::delegator::UnstakeRequest<AssetId, Balance>
|
|
5803
|
+
**/
|
|
5804
|
+
PalletMultiAssetDelegationDelegatorUnstakeRequest: {
|
|
5805
|
+
assetId: 'u128',
|
|
5806
|
+
amount: 'u128',
|
|
5807
|
+
requestedRound: 'u32'
|
|
5808
|
+
},
|
|
5809
|
+
/**
|
|
5810
|
+
* Lookup749: pallet_multi_asset_delegation::types::delegator::BondInfoDelegator<sp_core::crypto::AccountId32, Balance, AssetId>
|
|
5811
|
+
**/
|
|
5812
|
+
PalletMultiAssetDelegationDelegatorBondInfoDelegator: {
|
|
5813
|
+
operator: 'AccountId32',
|
|
5814
|
+
amount: 'u128',
|
|
5815
|
+
assetId: 'u128'
|
|
5816
|
+
},
|
|
5817
|
+
/**
|
|
5818
|
+
* Lookup751: pallet_multi_asset_delegation::types::delegator::BondLessRequest<AssetId, Balance>
|
|
5819
|
+
**/
|
|
5820
|
+
PalletMultiAssetDelegationDelegatorBondLessRequest: {
|
|
5821
|
+
assetId: 'u128',
|
|
5822
|
+
amount: 'u128',
|
|
5823
|
+
requestedRound: 'u32'
|
|
5824
|
+
},
|
|
5825
|
+
/**
|
|
5826
|
+
* Lookup752: pallet_multi_asset_delegation::types::delegator::DelegatorStatus
|
|
5827
|
+
**/
|
|
5828
|
+
PalletMultiAssetDelegationDelegatorDelegatorStatus: {
|
|
5829
|
+
_enum: {
|
|
5830
|
+
Active: 'Null',
|
|
5831
|
+
LeavingScheduled: 'u32'
|
|
5832
|
+
}
|
|
5833
|
+
},
|
|
5834
|
+
/**
|
|
5835
|
+
* Lookup753: pallet_multi_asset_delegation::types::rewards::RewardConfig<AssetId, Balance>
|
|
5836
|
+
**/
|
|
5837
|
+
PalletMultiAssetDelegationRewardsRewardConfig: {
|
|
5838
|
+
configs: 'BTreeMap<u128, PalletMultiAssetDelegationRewardsRewardConfigForAsset>',
|
|
5839
|
+
whitelistedBlueprintIds: 'Vec<u32>'
|
|
5840
|
+
},
|
|
5841
|
+
/**
|
|
5842
|
+
* Lookup755: pallet_multi_asset_delegation::types::rewards::RewardConfigForAsset<Balance>
|
|
5843
|
+
**/
|
|
5844
|
+
PalletMultiAssetDelegationRewardsRewardConfigForAsset: {
|
|
5845
|
+
apy: 'u128',
|
|
5846
|
+
cap: 'u128'
|
|
5847
|
+
},
|
|
5848
|
+
/**
|
|
5849
|
+
* Lookup758: pallet_multi_asset_delegation::pallet::Error<T>
|
|
5850
|
+
**/
|
|
5851
|
+
PalletMultiAssetDelegationError: {
|
|
5852
|
+
_enum: ['AlreadyOperator', 'BondTooLow', 'NotAnOperator', 'CannotExit', 'AlreadyLeaving', 'NotLeavingOperator', 'NotLeavingRound', 'NoScheduledBondLess', 'BondLessRequestNotSatisfied', 'NotActiveOperator', 'NotOfflineOperator', 'AlreadyDelegator', 'NotDelegator', 'WithdrawRequestAlreadyExists', 'InsufficientBalance', 'NoWithdrawRequest', 'UnstakeNotReady', 'NoBondLessRequest', 'BondLessNotReady', 'BondLessRequestAlreadyExists', 'ActiveServicesUsingAsset', 'NoActiveDelegation', 'AssetNotWhitelisted', 'NotAuthorized', 'AssetNotFound', 'BlueprintAlreadyWhitelisted']
|
|
5853
|
+
},
|
|
5854
|
+
/**
|
|
5855
|
+
* Lookup760: sygma_access_segregator::pallet::Error<T>
|
|
5856
|
+
**/
|
|
5857
|
+
SygmaAccessSegregatorError: {
|
|
5858
|
+
_enum: ['Unimplemented', 'GrantAccessFailed']
|
|
5859
|
+
},
|
|
5860
|
+
/**
|
|
5861
|
+
* Lookup762: sygma_basic_feehandler::pallet::Error<T>
|
|
5862
|
+
**/
|
|
5863
|
+
SygmaBasicFeehandlerError: {
|
|
5864
|
+
_enum: ['Unimplemented', 'AccessDenied']
|
|
5865
|
+
},
|
|
5866
|
+
/**
|
|
5867
|
+
* Lookup763: sygma_fee_handler_router::pallet::Error<T>
|
|
5868
|
+
**/
|
|
5869
|
+
SygmaFeeHandlerRouterError: {
|
|
5870
|
+
_enum: ['AccessDenied', 'Unimplemented']
|
|
5871
|
+
},
|
|
5872
|
+
/**
|
|
5873
|
+
* Lookup765: sygma_percentage_feehandler::pallet::Error<T>
|
|
5874
|
+
**/
|
|
5875
|
+
SygmaPercentageFeehandlerError: {
|
|
5876
|
+
_enum: ['Unimplemented', 'AccessDenied', 'FeeRateOutOfRange', 'InvalidFeeBound']
|
|
5877
|
+
},
|
|
5878
|
+
/**
|
|
5879
|
+
* Lookup772: sygma_bridge::pallet::Error<T>
|
|
5880
|
+
**/
|
|
5881
|
+
SygmaBridgeError: {
|
|
5882
|
+
_enum: ['AccessDenied', 'BadMpcSignature', 'InsufficientBalance', 'TransactFailedDeposit', 'TransactFailedWithdraw', 'TransactFailedFeeDeposit', 'TransactFailedHoldInReserved', 'TransactFailedReleaseFromReserved', 'FeeTooExpensive', 'MissingMpcAddress', 'MpcAddrNotUpdatable', 'BridgePaused', 'BridgeUnpaused', 'MissingFeeConfig', 'AssetNotBound', 'ProposalAlreadyComplete', 'EmptyProposalList', 'TransactorFailed', 'InvalidDepositDataInvalidLength', 'InvalidDepositDataInvalidAmount', 'InvalidDepositDataInvalidRecipientLength', 'InvalidDepositDataRecipientLengthNotMatch', 'InvalidDepositDataInvalidRecipient', 'DestDomainNotSupported', 'DestChainIDNotMatch', 'ExtractDestDataFailed', 'DecimalConversionFail', 'DepositNonceOverflow', 'NoLiquidityHolderAccountBound', 'Unimplemented']
|
|
5883
|
+
},
|
|
5884
|
+
/**
|
|
5885
|
+
* Lookup775: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
4772
5886
|
**/
|
|
4773
5887
|
FrameSystemExtensionsCheckNonZeroSender: 'Null',
|
|
4774
5888
|
/**
|
|
4775
|
-
*
|
|
5889
|
+
* Lookup776: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
4776
5890
|
**/
|
|
4777
5891
|
FrameSystemExtensionsCheckSpecVersion: 'Null',
|
|
4778
5892
|
/**
|
|
4779
|
-
*
|
|
5893
|
+
* Lookup777: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
4780
5894
|
**/
|
|
4781
5895
|
FrameSystemExtensionsCheckTxVersion: 'Null',
|
|
4782
5896
|
/**
|
|
4783
|
-
*
|
|
5897
|
+
* Lookup778: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
4784
5898
|
**/
|
|
4785
5899
|
FrameSystemExtensionsCheckGenesis: 'Null',
|
|
4786
5900
|
/**
|
|
4787
|
-
*
|
|
5901
|
+
* Lookup781: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
4788
5902
|
**/
|
|
4789
5903
|
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
|
|
4790
5904
|
/**
|
|
4791
|
-
*
|
|
5905
|
+
* Lookup782: frame_system::extensions::check_weight::CheckWeight<T>
|
|
4792
5906
|
**/
|
|
4793
5907
|
FrameSystemExtensionsCheckWeight: 'Null',
|
|
4794
5908
|
/**
|
|
4795
|
-
*
|
|
5909
|
+
* Lookup783: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
4796
5910
|
**/
|
|
4797
5911
|
PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
|
|
4798
5912
|
/**
|
|
4799
|
-
*
|
|
5913
|
+
* Lookup785: tangle_testnet_runtime::Runtime
|
|
4800
5914
|
**/
|
|
4801
5915
|
TangleTestnetRuntimeRuntime: 'Null'
|
|
4802
5916
|
};
|