@webb-tools/tangle-substrate-types 0.5.5 → 0.5.9

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