scale.rb 0.2.5 → 0.2.10

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,31 +1,68 @@
1
1
  {
2
2
  "types": {
3
+ "Balance": "u128",
4
+ "BalanceOf": "Balance",
5
+ "Block": "GenericBlock",
6
+ "Call": "GenericCall",
7
+ "H160": "H160",
8
+ "H256": "H256",
9
+ "H512": "H512",
10
+ "Hash": "H256",
11
+ "CallHash": "Hash",
12
+ "CallHashOf": "CallHash",
13
+ "Fixed64": "u64",
14
+ "Fixed128": "u128",
15
+ "AccountIdOf": "AccountId",
3
16
  "AccountVoteSplit": {
4
17
  "type": "struct",
5
18
  "type_mapping": [
6
- ["aye", "Balance"],
7
- ["nay", "Balance"]
19
+ [
20
+ "aye",
21
+ "Balance"
22
+ ],
23
+ [
24
+ "nay",
25
+ "Balance"
26
+ ]
8
27
  ]
9
28
  },
10
29
  "AccountVoteStandard": {
11
30
  "type": "struct",
12
31
  "type_mapping": [
13
- ["vote", "Vote"],
14
- ["balance", "Balance"]
32
+ [
33
+ "vote",
34
+ "Vote"
35
+ ],
36
+ [
37
+ "balance",
38
+ "Balance"
39
+ ]
15
40
  ]
16
41
  },
17
42
  "AccountVote": {
18
43
  "type": "enum",
19
44
  "type_mapping": [
20
- ["Standard", "AccountVoteStandard"],
21
- ["Split", "AccountVoteSplit"]
45
+ [
46
+ "Standard",
47
+ "AccountVoteStandard"
48
+ ],
49
+ [
50
+ "Split",
51
+ "AccountVoteSplit"
52
+ ]
22
53
  ]
23
54
  },
24
55
  "Delegations": {
25
56
  "type": "struct",
26
57
  "type_mapping": [
27
- ["votes", "Balance"],
28
- ["capital", "Balance"]
58
+ [
59
+ "votes",
60
+ "Balance"
61
+ ],
62
+ [
63
+ "capital",
64
+ "Balance"
65
+ ]
29
66
  ]
30
67
  },
31
68
  "PriorLock": {
@@ -38,33 +75,69 @@
38
75
  "ReferendumInfoFinished": {
39
76
  "type": "struct",
40
77
  "type_mapping": [
41
- ["approved", "bool"],
42
- ["end", "BlockNumber"]
78
+ [
79
+ "approved",
80
+ "bool"
81
+ ],
82
+ [
83
+ "end",
84
+ "BlockNumber"
85
+ ]
43
86
  ]
44
87
  },
45
88
  "Tally": {
46
89
  "type": "struct",
47
90
  "type_mapping": [
48
- ["ayes", "Balance"],
49
- ["nays", "Balance"],
50
- ["turnout", "Balance"]
91
+ [
92
+ "ayes",
93
+ "Balance"
94
+ ],
95
+ [
96
+ "nays",
97
+ "Balance"
98
+ ],
99
+ [
100
+ "turnout",
101
+ "Balance"
102
+ ]
51
103
  ]
52
104
  },
53
105
  "ReferendumStatus": {
54
106
  "type": "struct",
55
107
  "type_mapping": [
56
- ["end", "BlockNumber"],
57
- ["proposalHash", "Hash"],
58
- ["threshold", "VoteThreshold"],
59
- ["delay", "BlockNumber"],
60
- ["tally", "Tally"]
108
+ [
109
+ "end",
110
+ "BlockNumber"
111
+ ],
112
+ [
113
+ "proposalHash",
114
+ "Hash"
115
+ ],
116
+ [
117
+ "threshold",
118
+ "VoteThreshold"
119
+ ],
120
+ [
121
+ "delay",
122
+ "BlockNumber"
123
+ ],
124
+ [
125
+ "tally",
126
+ "Tally"
127
+ ]
61
128
  ]
62
129
  },
63
130
  "ReferendumInfo": {
64
131
  "type": "enum",
65
132
  "type_mapping": [
66
- ["Ongoing", "ReferendumStatus"],
67
- ["Finished", "ReferendumInfoFinished"]
133
+ [
134
+ "Ongoing",
135
+ "ReferendumStatus"
136
+ ],
137
+ [
138
+ "Finished",
139
+ "ReferendumInfoFinished"
140
+ ]
68
141
  ]
69
142
  },
70
143
  "VotingDirectVote": {
@@ -77,40 +150,82 @@
77
150
  "VotingDirect": {
78
151
  "type": "struct",
79
152
  "type_mapping": [
80
- ["votes", "Vec<VotingDirectVote>"],
81
- ["delegations", "Delegations"],
82
- ["prior", "PriorLock"]
153
+ [
154
+ "votes",
155
+ "Vec<VotingDirectVote>"
156
+ ],
157
+ [
158
+ "delegations",
159
+ "Delegations"
160
+ ],
161
+ [
162
+ "prior",
163
+ "PriorLock"
164
+ ]
83
165
  ]
84
166
  },
85
167
  "VotingDelegating": {
86
168
  "type": "struct",
87
169
  "type_mapping": [
88
- ["balance", "Balance"],
89
- ["target", "AccountId"],
90
- ["conviction", "Conviction"],
91
- ["delegations", "Delegations"],
92
- ["prior", "PriorLock"]
170
+ [
171
+ "balance",
172
+ "Balance"
173
+ ],
174
+ [
175
+ "target",
176
+ "AccountId"
177
+ ],
178
+ [
179
+ "conviction",
180
+ "Conviction"
181
+ ],
182
+ [
183
+ "delegations",
184
+ "Delegations"
185
+ ],
186
+ [
187
+ "prior",
188
+ "PriorLock"
189
+ ]
93
190
  ]
94
191
  },
95
192
  "Voting": {
96
193
  "type": "enum",
97
194
  "type_mapping": [
98
- ["Direct", "VotingDirect"],
99
- ["Delegating", "VotingDelegating"]
195
+ [
196
+ "Direct",
197
+ "VotingDirect"
198
+ ],
199
+ [
200
+ "Delegating",
201
+ "VotingDelegating"
202
+ ]
100
203
  ]
101
204
  },
102
205
  "(AccountId, Balance)": {
103
206
  "type": "struct",
104
207
  "type_mapping": [
105
- ["account", "AccountId"],
106
- ["balance", "Balance"]
208
+ [
209
+ "account",
210
+ "AccountId"
211
+ ],
212
+ [
213
+ "balance",
214
+ "Balance"
215
+ ]
107
216
  ]
108
217
  },
109
218
  "(BalanceOf<T, I>, BidKind<AccountId, BalanceOf<T, I>>)": {
110
219
  "type": "struct",
111
220
  "type_mapping": [
112
- ["balance", "Balance"],
113
- ["bidkind", "BidKind"]
221
+ [
222
+ "balance",
223
+ "Balance"
224
+ ],
225
+ [
226
+ "bidkind",
227
+ "BidKind"
228
+ ]
114
229
  ]
115
230
  },
116
231
  "RefCount": "u8",
@@ -118,62 +233,143 @@
118
233
  "AccountData": {
119
234
  "type": "struct",
120
235
  "type_mapping": [
121
- ["free", "Balance"],
122
- ["reserved", "Balance"],
123
- ["miscFrozen", "Balance"],
124
- ["feeFrozen", "Balance"]
236
+ [
237
+ "free",
238
+ "Balance"
239
+ ],
240
+ [
241
+ "reserved",
242
+ "Balance"
243
+ ],
244
+ [
245
+ "miscFrozen",
246
+ "Balance"
247
+ ],
248
+ [
249
+ "feeFrozen",
250
+ "Balance"
251
+ ]
125
252
  ]
126
253
  },
127
254
  "AccountInfo<Index, AccountData>": {
128
255
  "type": "struct",
129
256
  "type_mapping": [
130
- ["nonce", "Index"],
131
- ["refcount", "RefCount"],
132
- ["data", "AccountData"]
257
+ [
258
+ "nonce",
259
+ "Index"
260
+ ],
261
+ [
262
+ "refcount",
263
+ "RefCount"
264
+ ],
265
+ [
266
+ "data",
267
+ "AccountData"
268
+ ]
133
269
  ]
134
270
  },
135
271
  "ActiveEraInfo": {
136
272
  "type": "struct",
137
273
  "type_mapping": [
138
- ["index", "EraIndex"],
139
- ["start", "Option<Moment>"]
274
+ [
275
+ "index",
276
+ "EraIndex"
277
+ ],
278
+ [
279
+ "start",
280
+ "Option<Moment>"
281
+ ]
140
282
  ]
141
283
  },
142
- "BlockNumber": "U64",
284
+ "BlockNumber": "u32",
143
285
  "CandidateReceipt": {
144
286
  "type": "struct",
145
287
  "type_mapping": [
146
- ["parachainIndex", "ParaId"],
147
- ["collator", "AccountId"],
148
- ["signature", "CollatorSignature"],
149
- ["headData", "HeadData"],
150
- ["balanceUploads", "Vec<BalanceUpload>"],
151
- ["egressQueueRoots", "Vec<EgressQueueRoot>"],
152
- ["fees", "u64"],
153
- ["blockDataHash", "Hash"]
288
+ [
289
+ "parachainIndex",
290
+ "ParaId"
291
+ ],
292
+ [
293
+ "relayParent",
294
+ "Hash"
295
+ ],
296
+ [
297
+ "head_data",
298
+ "HeadData"
299
+ ],
300
+ [
301
+ "collator",
302
+ "CollatorId"
303
+ ],
304
+ [
305
+ "signature",
306
+ "CollatorSignature"
307
+ ],
308
+ [
309
+ "povBlockHash",
310
+ "Hash"
311
+ ],
312
+ [
313
+ "globalValidation",
314
+ "GlobalValidationSchedule"
315
+ ],
316
+ [
317
+ "localValidation",
318
+ "LocalValidationData"
319
+ ],
320
+ [
321
+ "commitments",
322
+ "CandidateCommitments"
323
+ ]
154
324
  ]
155
325
  },
156
326
  "ValidityVote": {
157
327
  "type": "struct",
158
328
  "type_mapping": [
159
- ["accountId", "AccountId"],
160
- ["validityAttestation", "ValidityAttestation"]
329
+ [
330
+ "accountId",
331
+ "AccountId"
332
+ ],
333
+ [
334
+ "validityAttestation",
335
+ "ValidityAttestation"
336
+ ]
161
337
  ]
162
338
  },
163
339
  "AttestedCandidate": {
164
340
  "type": "struct",
165
341
  "type_mapping": [
166
- ["candidate", "CandidateReceipt"],
167
- ["validityVotes", "Vec<ValidityVote>"]
342
+ [
343
+ "candidate",
344
+ "AbridgedCandidateReceipt"
345
+ ],
346
+ [
347
+ "validityVotes",
348
+ "Vec<ValidityAttestation>"
349
+ ],
350
+ [
351
+ "validatorIndices",
352
+ "BitVec"
353
+ ]
168
354
  ]
169
355
  },
170
356
  "LockIdentifier": "[u8; 8]",
357
+ "TransactionPriority": "u64",
171
358
  "BalanceLock": {
172
359
  "type": "struct",
173
360
  "type_mapping": [
174
- ["id", "LockIdentifier"],
175
- ["amount", "Balance"],
176
- ["reasons", "Reasons"]
361
+ [
362
+ "id",
363
+ "LockIdentifier"
364
+ ],
365
+ [
366
+ "amount",
367
+ "Balance"
368
+ ],
369
+ [
370
+ "reasons",
371
+ "Reasons"
372
+ ]
177
373
  ]
178
374
  },
179
375
  "FullIdentification": {
@@ -191,7 +387,7 @@
191
387
  ["exposure", "FullIdentification"]
192
388
  ]
193
389
  },
194
- "SetId": "U64",
390
+ "SetId": "u64",
195
391
  "Reasons": {
196
392
  "type": "enum",
197
393
  "value_list": [
@@ -201,9 +397,9 @@
201
397
  ]
202
398
  },
203
399
  "RoundNumber": "U64",
204
- "SessionIndex": "U32",
205
- "AuctionIndex": "U32",
206
- "AuthIndex": "U32",
400
+ "SessionIndex": "u32",
401
+ "AuctionIndex": "u32",
402
+ "AuthIndex": "u32",
207
403
  "AuthorityIndex": "u64",
208
404
  "Signature": "H512",
209
405
  "CollatorSignature": "Signature",
@@ -215,32 +411,69 @@
215
411
  ["weight", "AuthorityWeight"]
216
412
  ]
217
413
  },
218
- "AuthorityList": "VecNextAuthority",
414
+ "AuthorityList": "Vec<NextAuthority>",
219
415
  "BalanceUpload": {
220
416
  "type": "struct",
221
417
  "type_mapping": [
222
- ["accountId", "AccountId"],
223
- ["balance", "u64"]
418
+ [
419
+ "accountId",
420
+ "AccountId"
421
+ ],
422
+ [
423
+ "balance",
424
+ "u64"
425
+ ]
224
426
  ]
225
427
  },
226
- "CollatorId": "H256",
428
+ "CollatorId": "[u8; 32]",
227
429
  "ContractInfo": {
228
430
  "type": "enum",
229
- "value_list": [
230
- "Alive",
231
- "Tombstone"
431
+ "type_mapping": [
432
+ [
433
+ "Alive",
434
+ "AliveContractInfo"
435
+ ],
436
+ [
437
+ "Tombstone",
438
+ "TombstoneContractInfo"
439
+ ]
232
440
  ]
233
441
  },
234
- "TrieId": "Vec<u8>",
442
+ "TrieId": "Bytes",
235
443
  "RawAliveContractInfo": {
236
444
  "type": "struct",
237
445
  "type_mapping": [
238
- ["trie_id", "TrieId"],
239
- ["storage_size", "u32"],
240
- ["code_hash", "CodeHash"],
241
- ["rent_allowance", "Balance"],
242
- ["deduct_block", "BlockNumber"],
243
- ["last_write", "Option<BlockNumber>"]
446
+ [
447
+ "trie_id",
448
+ "TrieId"
449
+ ],
450
+ [
451
+ "storage_size",
452
+ "u32"
453
+ ],
454
+ [
455
+ "code_hash",
456
+ "CodeHash"
457
+ ],
458
+ [
459
+ "rent_allowance",
460
+ "Balance"
461
+ ],
462
+ [
463
+ "deduct_block",
464
+ "BlockNumber"
465
+ ],
466
+ [
467
+ "last_write",
468
+ "Option<BlockNumber>"
469
+ ]
470
+ ]
471
+ },
472
+ "Pays": {
473
+ "type": "enum",
474
+ "value_list": [
475
+ "Yes",
476
+ "No"
244
477
  ]
245
478
  },
246
479
  "DispatchClass": {
@@ -254,20 +487,72 @@
254
487
  "DispatchInfo": {
255
488
  "type": "struct",
256
489
  "type_mapping": [
257
- ["weight", "Weight"],
258
- ["class", "DispatchClass"],
259
- ["paysFee", "bool"]
490
+ [
491
+ "weight",
492
+ "Weight"
493
+ ],
494
+ [
495
+ "class",
496
+ "DispatchClass"
497
+ ],
498
+ [
499
+ "paysFee",
500
+ "Pays"
501
+ ]
260
502
  ]
261
503
  },
262
504
  "EgressQueueRoot": {
263
505
  "type": "struct",
264
506
  "type_mapping": [
265
- ["paraId", "ParaId"],
266
- ["hash", "Hash"]
507
+ [
508
+ "paraId",
509
+ "ParaId"
510
+ ],
511
+ [
512
+ "hash",
513
+ "Hash"
514
+ ]
267
515
  ]
268
516
  },
269
517
  "EventIndex": "u32",
270
- "Extrinsic": "ExtrinsicDecoder",
518
+ "Extrinsic": "ExtrinsicsDecoder",
519
+ "ExtrinsicPayloadValue": {
520
+ "type": "struct",
521
+ "type_mapping": [
522
+ [
523
+ "call",
524
+ "CallBytes"
525
+ ],
526
+ [
527
+ "era",
528
+ "Era"
529
+ ],
530
+ [
531
+ "nonce",
532
+ "Compact<Index>"
533
+ ],
534
+ [
535
+ "tip",
536
+ "Compact<Balance>"
537
+ ],
538
+ [
539
+ "specVersion",
540
+ "u32"
541
+ ],
542
+ [
543
+ "transactionVersion",
544
+ "u32"
545
+ ],
546
+ [
547
+ "genesisHash",
548
+ "Hash"
549
+ ],
550
+ [
551
+ "blockHash",
552
+ "Hash"
553
+ ]
554
+ ]
555
+ },
271
556
  "Gas": "u64",
272
557
  "IdentityFields": {
273
558
  "type": "set",
@@ -276,9 +561,9 @@
276
561
  "Display": 1,
277
562
  "Legal": 2,
278
563
  "Web": 4,
279
- "Riot": 8,
280
- "Email": 16,
281
- "PgpFingerprint": 32,
564
+ "Riot": 8,
565
+ "Email": 16,
566
+ "PgpFingerprint": 32,
282
567
  "Image": 64,
283
568
  "Twitter": 128
284
569
  }
@@ -293,27 +578,75 @@
293
578
  "IdentityInfo": {
294
579
  "type": "struct",
295
580
  "type_mapping": [
296
- ["additional", "Vec<IdentityInfoAdditional>"],
297
- ["display", "Data"],
298
- ["legal", "Data"],
299
- ["web", "Data"],
300
- ["riot", "Data"],
301
- ["email", "Data"],
302
- ["pgpFingerprint", "Option<H160>"],
303
- ["image", "Data"],
304
- ["twitter", "Data"]
581
+ [
582
+ "additional",
583
+ "Vec<IdentityInfoAdditional>"
584
+ ],
585
+ [
586
+ "display",
587
+ "Data"
588
+ ],
589
+ [
590
+ "legal",
591
+ "Data"
592
+ ],
593
+ [
594
+ "web",
595
+ "Data"
596
+ ],
597
+ [
598
+ "riot",
599
+ "Data"
600
+ ],
601
+ [
602
+ "email",
603
+ "Data"
604
+ ],
605
+ [
606
+ "pgpFingerprint",
607
+ "Option<H160>"
608
+ ],
609
+ [
610
+ "image",
611
+ "Data"
612
+ ],
613
+ [
614
+ "twitter",
615
+ "Data"
616
+ ]
305
617
  ]
306
618
  },
307
619
  "IdentityJudgement": {
308
620
  "type": "enum",
309
621
  "type_mapping": [
310
- ["Unknown", "Null"],
311
- ["FeePaid", "Balance"],
312
- ["Reasonable", "Null"],
313
- ["KnownGood", "Null"],
314
- ["OutOfDate", "Null"],
315
- ["LowQuality", "Null"],
316
- ["Erroneous", "Null"]
622
+ [
623
+ "Unknown",
624
+ "Null"
625
+ ],
626
+ [
627
+ "FeePaid",
628
+ "Balance"
629
+ ],
630
+ [
631
+ "Reasonable",
632
+ "Null"
633
+ ],
634
+ [
635
+ "KnownGood",
636
+ "Null"
637
+ ],
638
+ [
639
+ "OutOfDate",
640
+ "Null"
641
+ ],
642
+ [
643
+ "LowQuality",
644
+ "Null"
645
+ ],
646
+ [
647
+ "Erroneous",
648
+ "Null"
649
+ ]
317
650
  ]
318
651
  },
319
652
  "Judgement": "IdentityJudgement",
@@ -323,66 +656,121 @@
323
656
  "(LeasePeriodOf, IncomingParachain<AccountId, Hash>)": {
324
657
  "type": "struct",
325
658
  "type_mapping": [
326
- ["leasePeriod", "LeasePeriodOf"],
327
- ["incomingParachain", "IncomingParachain"]
659
+ [
660
+ "leasePeriod",
661
+ "LeasePeriodOf"
662
+ ],
663
+ [
664
+ "incomingParachain",
665
+ "IncomingParachain"
666
+ ]
328
667
  ]
329
668
  },
330
669
  "(ParaId, Option<(CollatorId, Retriable)>)": {
331
670
  "type": "struct",
332
671
  "type_mapping": [
333
- ["ParaId", "ParaId"],
334
- ["CollatorId-Retriable", "Option<(CollatorId, Retriable)>"]
672
+ [
673
+ "ParaId",
674
+ "ParaId"
675
+ ],
676
+ [
677
+ "CollatorId-Retriable",
678
+ "Option<(CollatorId, Retriable)>"
679
+ ]
335
680
  ]
336
681
  },
337
- "MaybeVrf": "[u8; 32]",
682
+ "MaybeVrf": "Option<VrfData>",
338
683
  "MemberCount": "u32",
339
684
  "MomentOf": "Moment",
340
- "MoreAttestations": "Null",
341
- "Multiplier": "u64",
342
- "CallHash": "H256",
343
- "Timepoint": {
685
+ "MoreAttestations": {
344
686
  "type": "struct",
345
- "type_mapping": [
346
- ["height", "BlockNumber"],
347
- ["index", "u32"]
348
- ]
687
+ "type_mapping": []
349
688
  },
350
- "Multisig": {
689
+ "Multiplier": "Fixed128",
690
+ "Timepoint": {
351
691
  "type": "struct",
352
692
  "type_mapping": [
353
- ["when", "Timepoint"],
354
- ["deposit", "Balance"],
355
- ["depositor", "AccountId"],
356
- ["approvals", "Vec<AccountId>"]
693
+ [
694
+ "height",
695
+ "BlockNumber"
696
+ ],
697
+ [
698
+ "index",
699
+ "u32"
700
+ ]
357
701
  ]
358
702
  },
359
- "Offender": {
703
+ "Multisig": {
360
704
  "type": "struct",
361
705
  "type_mapping": [
362
- ["validatorId", "ValidatorId"],
363
- ["exposure", "Exposure"]
706
+ [
707
+ "when",
708
+ "Timepoint"
709
+ ],
710
+ [
711
+ "deposit",
712
+ "Balance"
713
+ ],
714
+ [
715
+ "depositor",
716
+ "AccountId"
717
+ ],
718
+ [
719
+ "approvals",
720
+ "Vec<AccountId>"
721
+ ]
364
722
  ]
365
723
  },
724
+ "Offender": "IdentificationTuple",
366
725
  "PhantomData": "Null",
367
726
  "sp_std::marker::PhantomData<(AccountId, Event)>": "PhantomData",
368
727
  "Reporter": "AccountId",
369
728
  "OffenceDetails": {
370
729
  "type": "struct",
371
730
  "type_mapping": [
372
- ["offender", "Offender"],
373
- ["reporters", "Vec<Reporter>"]
731
+ [
732
+ "offender",
733
+ "Offender"
734
+ ],
735
+ [
736
+ "reporters",
737
+ "Vec<Reporter>"
738
+ ]
374
739
  ]
375
740
  },
376
741
  "OpenTipFinder": "(AccountId, Balance)",
377
742
  "OpenTipTip": "(AccountId, Balance)",
378
- "OpenTip<AccountId, BalanceOf, BlockNumber, Hash>": {
743
+ "OpenTip": {
379
744
  "type": "struct",
380
745
  "type_mapping": [
381
- ["reason", "Hash"],
382
- ["who", "AccountId"],
383
- ["finder", "Option<OpenTipFinder>"],
384
- ["closes", "Option<BlockNumber>"],
385
- ["tips", "Vec<OpenTipTip>"]
746
+ [
747
+ "reason",
748
+ "Hash"
749
+ ],
750
+ [
751
+ "who",
752
+ "AccountId"
753
+ ],
754
+ [
755
+ "finder",
756
+ "AccountId"
757
+ ],
758
+ [
759
+ "deposit",
760
+ "Balance"
761
+ ],
762
+ [
763
+ "closes",
764
+ "Option<BlockNumber>"
765
+ ],
766
+ [
767
+ "tips",
768
+ "Vec<OpenTipTip>"
769
+ ],
770
+ [
771
+ "findersFee",
772
+ "bool"
773
+ ]
386
774
  ]
387
775
  },
388
776
  "ParaId": "u32",
@@ -397,7 +785,10 @@
397
785
  "ParaInfo": {
398
786
  "type": "struct",
399
787
  "type_mapping": [
400
- ["scheduling", "ParaScheduling"]
788
+ [
789
+ "scheduling",
790
+ "Scheduling"
791
+ ]
401
792
  ]
402
793
  },
403
794
  "Percent": "u8",
@@ -407,50 +798,129 @@
407
798
  "RawAuraPreDigest": {
408
799
  "type": "struct",
409
800
  "type_mapping": [
410
- ["slotNumber", "SlotNumber"]
801
+ [
802
+ "slotNumber",
803
+ "u64"
804
+ ]
411
805
  ]
412
806
  },
413
807
  "RawBabePreDigest": {
414
808
  "type": "enum",
415
809
  "type_mapping": [
416
- ["value", "Null"],
417
- ["value", "RawBabePreDigestPrimary"],
418
- ["value", "RawBabePreDigestSecondary"]
810
+ [
811
+ "Phantom",
812
+ "Null"
813
+ ],
814
+ [
815
+ "Primary",
816
+ "RawBabePreDigestPrimary"
817
+ ],
818
+ [
819
+ "SecondaryPlain",
820
+ "RawBabePreDigestSecondaryPlain"
821
+ ],
822
+ [
823
+ "SecondaryVRF",
824
+ "RawBabePreDigestSecondaryVRF"
825
+ ]
419
826
  ]
420
827
  },
421
828
  "RawBabePreDigestPrimary": {
422
829
  "type": "struct",
423
830
  "type_mapping": [
424
- ["authorityIndex", "u32"],
425
- ["slotNumber", "SlotNumber"],
426
- ["vrfOutput", "VrfData"],
427
- ["vrfProof", "VrfProof"]
831
+ [
832
+ "authorityIndex",
833
+ "u32"
834
+ ],
835
+ [
836
+ "slotNumber",
837
+ "SlotNumber"
838
+ ],
839
+ [
840
+ "vrfOutput",
841
+ "VrfOutput"
842
+ ],
843
+ [
844
+ "vrfProof",
845
+ "VrfProof"
846
+ ]
847
+ ]
848
+ },
849
+ "RawBabePreDigestSecondaryPlain": {
850
+ "type": "struct",
851
+ "type_mapping": [
852
+ [
853
+ "authorityIndex",
854
+ "u32"
855
+ ],
856
+ [
857
+ "slotNumber",
858
+ "SlotNumber"
859
+ ]
428
860
  ]
429
861
  },
430
- "RawBabePreDigestSecondary": {
862
+ "RawBabePreDigestSecondaryVRF": {
431
863
  "type": "struct",
432
864
  "type_mapping": [
433
- ["authorityIndex", "u32"],
434
- ["slotNumber", "SlotNumber"]
865
+ [
866
+ "authorityIndex",
867
+ "u32"
868
+ ],
869
+ [
870
+ "slotNumber",
871
+ "SlotNumber"
872
+ ],
873
+ [
874
+ "vrfOutput",
875
+ "VrfOutput"
876
+ ],
877
+ [
878
+ "vrfProof",
879
+ "VrfProof"
880
+ ]
435
881
  ]
436
882
  },
437
883
  "ReferendumInfo<BlockNumber, Proposal>": {
438
884
  "type": "struct",
439
885
  "type_mapping": [
440
- ["end", "BlockNumber"],
441
- ["proposal", "Proposal"],
442
- ["threshold", "VoteThreshold"],
443
- ["delay", "BlockNumber"]
886
+ [
887
+ "end",
888
+ "BlockNumber"
889
+ ],
890
+ [
891
+ "proposal",
892
+ "Proposal"
893
+ ],
894
+ [
895
+ "threshold",
896
+ "VoteThreshold"
897
+ ],
898
+ [
899
+ "delay",
900
+ "BlockNumber"
901
+ ]
444
902
  ]
445
903
  },
446
904
  "(ReferendumInfo<BlockNumber, Proposal>)": "ReferendumInfo<BlockNumber, Proposal>",
447
905
  "ReferendumInfo<BlockNumber, Hash>": {
448
906
  "type": "struct",
449
907
  "type_mapping": [
450
- ["end", "BlockNumber"],
451
- ["proposalHash", "Hash"],
452
- ["threshold", "VoteThreshold"],
453
- ["delay", "BlockNumber"]
908
+ [
909
+ "end",
910
+ "BlockNumber"
911
+ ],
912
+ [
913
+ "proposalHash",
914
+ "Hash"
915
+ ],
916
+ [
917
+ "threshold",
918
+ "VoteThreshold"
919
+ ],
920
+ [
921
+ "delay",
922
+ "BlockNumber"
923
+ ]
454
924
  ]
455
925
  },
456
926
  "(ReferendumInfo<BlockNumber, Hash>)": "ReferendumInfo<BlockNumber, Hash>",
@@ -458,9 +928,18 @@
458
928
  "RegistrarInfo": {
459
929
  "type": "struct",
460
930
  "type_mapping": [
461
- ["account", "AccountId"],
462
- ["fee", "Balance"],
463
- ["fields", "IdentityFields"]
931
+ [
932
+ "account",
933
+ "AccountId"
934
+ ],
935
+ [
936
+ "fee",
937
+ "Balance"
938
+ ],
939
+ [
940
+ "fields",
941
+ "IdentityFields"
942
+ ]
464
943
  ]
465
944
  },
466
945
  "RegistrationJudgement": {
@@ -473,43 +952,88 @@
473
952
  "Registration": {
474
953
  "type": "struct",
475
954
  "type_mapping": [
476
- ["judgements", "Vec<RegistrationJudgement>"],
477
- ["deposit", "Balance"],
478
- ["info", "IdentityInfo"]
955
+ [
956
+ "judgements",
957
+ "Vec<RegistrationJudgement>"
958
+ ],
959
+ [
960
+ "deposit",
961
+ "Balance"
962
+ ],
963
+ [
964
+ "info",
965
+ "IdentityInfo"
966
+ ]
479
967
  ]
480
968
  },
481
969
  "ReportIdOf": "Hash",
482
970
  "Schedule": {
483
971
  "type": "struct",
484
972
  "type_mapping": [
485
- ["version", "u32"],
486
- ["put_code_per_byte_cost", "Gas"],
487
- ["grow_mem_cost", "Gas"],
488
- ["regular_op_cost", "Gas"],
489
- ["return_data_per_byte_cost", "Gas"],
490
- ["event_data_per_byte_cost", "Gas"],
491
- ["event_per_topic_cost", "Gas"],
492
- ["event_base_cost", "Gas"],
493
- ["call_base_cost", "Gas"],
494
- ["instantiate_base_cost", "Gas"],
495
- ["sandbox_data_read_cost", "Gas"],
496
- ["sandbox_data_write_cost", "Gas"],
497
- ["max_event_topics", "u32"],
498
- ["max_stack_height", "u32"],
499
- ["max_memory_pages", "u32"],
500
- ["max_table_size", "u32"],
501
- ["enable_println", "bool"],
502
- ["max_subject_len", "u32"]
503
- ]
504
- },
505
- "StakingLedger<AccountId, BalanceOf>": {
506
- "type": "struct",
507
- "type_mapping": [
508
- ["stash", "AccountId"],
509
- ["total", "Compact<Balance>"],
510
- ["active", "Compact<Balance>"],
511
- ["unlocking", "Vec<UnlockChunk<Balance>>"],
512
- ["lastReward", "Option<EraIndex>"]
973
+ [
974
+ "version",
975
+ "u32"
976
+ ],
977
+ [
978
+ "putCodePerByteCost",
979
+ "Gas"
980
+ ],
981
+ [
982
+ "growMemCost",
983
+ "Gas"
984
+ ],
985
+ [
986
+ "regularOpCost",
987
+ "Gas"
988
+ ],
989
+ [
990
+ "returnDataPerByteCost",
991
+ "Gas"
992
+ ],
993
+ [
994
+ "eventDataPerByteCost",
995
+ "Gas"
996
+ ],
997
+ [
998
+ "eventPerTopicCost",
999
+ "Gas"
1000
+ ],
1001
+ [
1002
+ "eventBaseCost",
1003
+ "Gas"
1004
+ ],
1005
+ [
1006
+ "sandboxDataReadCost",
1007
+ "Gas"
1008
+ ],
1009
+ [
1010
+ "sandboxDataWriteCost",
1011
+ "Gas"
1012
+ ],
1013
+ [
1014
+ "transferCost",
1015
+ "Gas"
1016
+ ],
1017
+ [
1018
+ "maxEventTopics",
1019
+ "u32"
1020
+ ],
1021
+ [
1022
+ "maxStackHeight",
1023
+ "u32"
1024
+ ],
1025
+ [
1026
+ "maxMemoryPages",
1027
+ "u32"
1028
+ ],
1029
+ [
1030
+ "enablePrintln",
1031
+ "bool"
1032
+ ],
1033
+ [
1034
+ "maxSubjectLen",
1035
+ "u32"
1036
+ ]
513
1037
  ]
514
1038
  },
515
1039
  "SubId": "u32",
@@ -520,39 +1044,64 @@
520
1044
  "Uncle"
521
1045
  ]
522
1046
  },
523
- "ValidatorPrefs": {
1047
+ "ValidatorPrefs": {
524
1048
  "type": "struct",
525
1049
  "type_mapping": [
526
- ["commission", "Compact<Perbill>"]
1050
+ [
1051
+ "commission",
1052
+ "Compact<Perbill>"
1053
+ ]
527
1054
  ]
528
1055
  },
529
1056
  "VestingSchedule<Balance, BlockNumber>": {
530
1057
  "type": "struct",
531
1058
  "type_mapping": [
532
- ["offset", "Balance"],
533
- ["perBlock", "Balance"],
534
- ["startingBlock", "BlockNumber"]
1059
+ [
1060
+ "offset",
1061
+ "Balance"
1062
+ ],
1063
+ [
1064
+ "perBlock",
1065
+ "Balance"
1066
+ ],
1067
+ [
1068
+ "startingBlock",
1069
+ "BlockNumber"
1070
+ ]
535
1071
  ]
536
1072
  },
537
- "Weight": "u32",
538
- "WeightMultiplier": "u64",
539
- "WinningDataEntry": {
540
- "type": "struct",
541
- "type_mapping": [
542
- ["accountId", "AccountId"],
543
- ["paraId", "ParaId"],
544
- ["balance", "Balance"]
545
- ]
1073
+ "Weight": "u64",
1074
+ "WeightMultiplier": "Fixed64",
1075
+ "WinningDataEntry": "Option<Bidder>",
1076
+ "WinningData": "[WinningDataEntry; 10]",
1077
+ "WithdrawReasons": {
1078
+ "type": "set",
1079
+ "value_type": "u64",
1080
+ "value_list": {
1081
+ "TransactionPayment": 1,
1082
+ "Transfer": 2,
1083
+ "Reserve": 4,
1084
+ "Fee": 8,
1085
+ "Tip": 16
1086
+ }
546
1087
  },
547
- "WinningData": "Vec<WinningDataEntry>",
548
- "Index": "U32",
1088
+ "Index": "u32",
549
1089
  "Kind": "[u8; 16]",
550
1090
  "Nominations": {
551
1091
  "type": "struct",
552
1092
  "type_mapping": [
553
- ["targets", "Vec<AccountId>"],
554
- ["submittedIn", "EraIndex"],
555
- ["suppressed", "bool"]
1093
+ [
1094
+ "targets",
1095
+ "Vec<AccountId>"
1096
+ ],
1097
+ [
1098
+ "submittedIn",
1099
+ "EraIndex"
1100
+ ],
1101
+ [
1102
+ "suppressed",
1103
+ "bool"
1104
+ ]
556
1105
  ]
557
1106
  },
558
1107
  "OpaqueTimeSlot": "Bytes",
@@ -560,25 +1109,63 @@
560
1109
  "AuthoritySignature": "Signature",
561
1110
  "<AuthorityId as RuntimeAppPublic>::Signature": "AuthoritySignature",
562
1111
  "&[u8]": "Bytes",
1112
+ "Text": "Bytes",
563
1113
  "Forcing": {
564
1114
  "type": "enum",
565
1115
  "value_list": [
566
1116
  "NotForcing",
567
1117
  "ForceNew",
568
- "ForceNone"
1118
+ "ForceNone",
1119
+ "ForceAlways"
569
1120
  ]
570
1121
  },
571
1122
  "Heartbeat": {
572
1123
  "type": "struct",
573
1124
  "type_mapping": [
574
- ["blockNumber", "BlockNumber"],
575
- ["networkState", "OpaqueNetworkState"],
576
- ["sessionIndex", "SessionIndex"],
577
- ["authorityIndex", "AuthIndex"],
578
- ["validatorsLen", "u32"]
1125
+ [
1126
+ "blockNumber",
1127
+ "BlockNumber"
1128
+ ],
1129
+ [
1130
+ "networkState",
1131
+ "OpaqueNetworkState"
1132
+ ],
1133
+ [
1134
+ "sessionIndex",
1135
+ "SessionIndex"
1136
+ ],
1137
+ [
1138
+ "authorityIndex",
1139
+ "AuthIndex"
1140
+ ],
1141
+ [
1142
+ "validatorsLen",
1143
+ "u32"
1144
+ ]
579
1145
  ]
580
1146
  },
581
1147
  "RewardDestination": {
1148
+ "type": "enum",
1149
+ "type_mapping": [
1150
+ [
1151
+ "Staked",
1152
+ "Null"
1153
+ ],
1154
+ [
1155
+ "Stash",
1156
+ "Null"
1157
+ ],
1158
+ [
1159
+ "Controller",
1160
+ "Null"
1161
+ ],
1162
+ [
1163
+ "Account",
1164
+ "AccountId"
1165
+ ]
1166
+ ]
1167
+ },
1168
+ "RewardDestinationTo257": {
582
1169
  "type": "enum",
583
1170
  "value_list": [
584
1171
  "Staked",
@@ -589,27 +1176,57 @@
589
1176
  "ChangesTrieConfiguration": {
590
1177
  "type": "struct",
591
1178
  "type_mapping": [
592
- ["digestInterval", "u32"],
593
- ["digestLevels", "u32"]
1179
+ [
1180
+ "digestInterval",
1181
+ "u32"
1182
+ ],
1183
+ [
1184
+ "digestLevels",
1185
+ "u32"
1186
+ ]
594
1187
  ]
595
1188
  },
596
- "ConsensusEngineId": "[u8; 4]",
1189
+ "ConsensusEngineId": "GenericConsensusEngineId",
597
1190
  "DigestItem": {
598
1191
  "type": "enum",
599
1192
  "type_mapping": [
600
- ["Other", "Vec<u8>"],
601
- ["AuthoritiesChange", "Vec<AuthorityId>"],
602
- ["ChangesTrieRoot", "Hash"],
603
- ["SealV0", "SealV0"],
604
- ["Consensus", "Consensus"],
605
- ["Seal", "Seal"],
606
- ["PreRuntime", "PreRuntime"]
1193
+ [
1194
+ "Other",
1195
+ "Bytes"
1196
+ ],
1197
+ [
1198
+ "AuthoritiesChange",
1199
+ "Vec<AuthorityId>"
1200
+ ],
1201
+ [
1202
+ "ChangesTrieRoot",
1203
+ "Hash"
1204
+ ],
1205
+ [
1206
+ "SealV0",
1207
+ "SealV0"
1208
+ ],
1209
+ [
1210
+ "Consensus",
1211
+ "Consensus"
1212
+ ],
1213
+ [
1214
+ "Seal",
1215
+ "Seal"
1216
+ ],
1217
+ [
1218
+ "PreRuntime",
1219
+ "PreRuntime"
1220
+ ]
607
1221
  ]
608
1222
  },
609
1223
  "Digest": {
610
1224
  "type": "struct",
611
1225
  "type_mapping": [
612
- ["logs", "Vec<DigestItem<Hash>>"]
1226
+ [
1227
+ "logs",
1228
+ "Vec<DigestItem>"
1229
+ ]
613
1230
  ]
614
1231
  },
615
1232
  "DigestOf": "Digest",
@@ -618,18 +1235,36 @@
618
1235
  "SlashingSpans": {
619
1236
  "type": "struct",
620
1237
  "type_mapping": [
621
- ["spanIndex", "SpanIndex"],
622
- ["lastStart", "EraIndex"],
623
- ["lastNonzeroSlash", "EraIndex"],
624
- ["prior", "Vec<EraIndex>"]
1238
+ [
1239
+ "spanIndex",
1240
+ "SpanIndex"
1241
+ ],
1242
+ [
1243
+ "lastStart",
1244
+ "EraIndex"
1245
+ ],
1246
+ [
1247
+ "lastNonzeroSlash",
1248
+ "EraIndex"
1249
+ ],
1250
+ [
1251
+ "prior",
1252
+ "Vec<EraIndex>"
1253
+ ]
625
1254
  ]
626
1255
  },
627
1256
  "slashing::SlashingSpans": "SlashingSpans",
628
1257
  "SpanRecord": {
629
1258
  "type": "struct",
630
1259
  "type_mapping": [
631
- ["slashed", "Balance"],
632
- ["paidOut", "Balance"]
1260
+ [
1261
+ "slashed",
1262
+ "Balance"
1263
+ ],
1264
+ [
1265
+ "paidOut",
1266
+ "Balance"
1267
+ ]
633
1268
  ]
634
1269
  },
635
1270
  "slashing::SpanRecord<BalanceOf>": "SpanRecord",
@@ -643,76 +1278,163 @@
643
1278
  "UnappliedSlash<AccountId, BalanceOf>": {
644
1279
  "type": "struct",
645
1280
  "type_mapping": [
646
- ["validator", "AccountId"],
647
- ["own", "AccountId"],
648
- ["others", "Vec<UnappliedSlashOther>"],
649
- ["reporters", "Vec<AccountId>"],
650
- ["payout", "Balance"]
1281
+ [
1282
+ "validator",
1283
+ "AccountId"
1284
+ ],
1285
+ [
1286
+ "own",
1287
+ "AccountId"
1288
+ ],
1289
+ [
1290
+ "others",
1291
+ "Vec<UnappliedSlashOther>"
1292
+ ],
1293
+ [
1294
+ "reporters",
1295
+ "Vec<AccountId>"
1296
+ ],
1297
+ [
1298
+ "payout",
1299
+ "Balance"
1300
+ ]
651
1301
  ]
652
1302
  },
653
1303
  "Keys": "SessionKeysSubstrate",
654
1304
  "Header": {
655
1305
  "type": "struct",
656
1306
  "type_mapping": [
657
- ["parent_hash", "H256"],
658
- ["number", "Compact<BlockNumber>"],
659
- ["state_root", "H256"],
660
- ["extrinsics_root", "H256"],
661
- ["digest", "Digest"]
1307
+ [
1308
+ "parentHash",
1309
+ "Hash"
1310
+ ],
1311
+ [
1312
+ "number",
1313
+ "Compact<BlockNumber>"
1314
+ ],
1315
+ [
1316
+ "stateRoot",
1317
+ "Hash"
1318
+ ],
1319
+ [
1320
+ "extrinsicsRoot",
1321
+ "Hash"
1322
+ ],
1323
+ [
1324
+ "digest",
1325
+ "Digest"
1326
+ ]
662
1327
  ]
663
1328
  },
664
1329
  "DispatchErrorModule": {
665
1330
  "type": "struct",
666
1331
  "type_mapping": [
667
- ["index", "u8"],
668
- ["error", "u8"]
1332
+ [
1333
+ "index",
1334
+ "u8"
1335
+ ],
1336
+ [
1337
+ "error",
1338
+ "u8"
1339
+ ]
669
1340
  ]
670
1341
  },
671
1342
  "DispatchError": {
672
1343
  "type": "enum",
673
1344
  "type_mapping": [
674
- ["Other", "Null"],
675
- ["CannotLookup", "Null"],
676
- ["BadOrigin", "Null"],
677
- ["Module", "DispatchErrorModule"]
1345
+ [
1346
+ "Other",
1347
+ "Null"
1348
+ ],
1349
+ [
1350
+ "CannotLookup",
1351
+ "Null"
1352
+ ],
1353
+ [
1354
+ "BadOrigin",
1355
+ "Null"
1356
+ ],
1357
+ [
1358
+ "Module",
1359
+ "DispatchErrorModule"
1360
+ ]
678
1361
  ]
679
1362
  },
680
1363
  "DispatchResult": {
681
1364
  "type": "enum",
682
1365
  "type_mapping": [
683
- ["Ok", "Null"],
684
- ["Error", "DispatchError"]
1366
+ [
1367
+ "Ok",
1368
+ "Null"
1369
+ ],
1370
+ [
1371
+ "Error",
1372
+ "DispatchError"
1373
+ ]
685
1374
  ]
686
1375
  },
687
1376
  "ActiveRecovery": {
688
1377
  "type": "struct",
689
1378
  "type_mapping": [
690
- ["created", "BlockNumber"],
691
- ["deposit", "Balance"],
692
- ["friends", "Vec<AccountId>"]
1379
+ [
1380
+ "created",
1381
+ "BlockNumber"
1382
+ ],
1383
+ [
1384
+ "deposit",
1385
+ "Balance"
1386
+ ],
1387
+ [
1388
+ "friends",
1389
+ "Vec<AccountId>"
1390
+ ]
693
1391
  ]
694
1392
  },
695
1393
  "RecoveryConfig": {
696
1394
  "type": "struct",
697
1395
  "type_mapping": [
698
- ["delayPeriod", "BlockNumber"],
699
- ["deposit", "Balance"],
700
- ["friends", "Vec<AccountId>"],
701
- ["threshold", "u16"]
1396
+ [
1397
+ "delayPeriod",
1398
+ "BlockNumber"
1399
+ ],
1400
+ [
1401
+ "deposit",
1402
+ "Balance"
1403
+ ],
1404
+ [
1405
+ "friends",
1406
+ "Vec<AccountId>"
1407
+ ],
1408
+ [
1409
+ "threshold",
1410
+ "u16"
1411
+ ]
702
1412
  ]
703
1413
  },
704
1414
  "BidKindVouch": {
705
1415
  "type": "struct",
706
1416
  "type_mapping": [
707
- ["account", "AccountId"],
708
- ["amount", "Balance"]
1417
+ [
1418
+ "account",
1419
+ "AccountId"
1420
+ ],
1421
+ [
1422
+ "amount",
1423
+ "Balance"
1424
+ ]
709
1425
  ]
710
1426
  },
711
1427
  "BidKind": {
712
1428
  "type": "enum",
713
1429
  "type_mapping": [
714
- ["Deposit", "Balance"],
715
- ["Vouch", "BidKindVouch"]
1430
+ [
1431
+ "Deposit",
1432
+ "Balance"
1433
+ ],
1434
+ [
1435
+ "Vouch",
1436
+ "(AccountId, Balance)"
1437
+ ]
716
1438
  ]
717
1439
  },
718
1440
  "BidKind<AccountId,Balance>": "Bidkind",
@@ -720,9 +1442,18 @@
720
1442
  "Bid": {
721
1443
  "type": "struct",
722
1444
  "type_mapping": [
723
- ["who", "AccountId"],
724
- ["kind", "BidKind"],
725
- ["value", "Balance"]
1445
+ [
1446
+ "who",
1447
+ "AccountId"
1448
+ ],
1449
+ [
1450
+ "kind",
1451
+ "BidKind"
1452
+ ],
1453
+ [
1454
+ "value",
1455
+ "Balance"
1456
+ ]
726
1457
  ]
727
1458
  },
728
1459
  "StrikeCount": "u32",
@@ -736,59 +1467,115 @@
736
1467
  "ExtrinsicMetadata": {
737
1468
  "type": "struct",
738
1469
  "type_mapping": [
739
- ["version", "u8"],
740
- ["signedExtensions", "Vec<Bytes>"]
1470
+ [
1471
+ "version",
1472
+ "u8"
1473
+ ],
1474
+ [
1475
+ "signedExtensions",
1476
+ "Vec<Bytes>"
1477
+ ]
741
1478
  ]
742
1479
  },
743
1480
  "RewardPoint": "u32",
1481
+ "BTreeMap<AccountId, RewardPoint>": "Vec<(AccountId, RewardPoint)>",
744
1482
  "EraRewardPoints": {
745
1483
  "type": "struct",
746
1484
  "type_mapping": [
747
- ["total", "RewardPoint"],
748
- ["individual", "Vec<(AccountId, RewardPoint)>"]
1485
+ [
1486
+ "total",
1487
+ "RewardPoint"
1488
+ ],
1489
+ [
1490
+ "individual",
1491
+ "BTreeMap<AccountId, RewardPoint>"
1492
+ ]
749
1493
  ]
750
1494
  },
751
1495
  "IncomingParachainDeploy": {
752
1496
  "type": "struct",
753
1497
  "type_mapping": [
754
- ["code", "Bytes"],
755
- ["initialHeadData", "Bytes"]
1498
+ [
1499
+ "code",
1500
+ "ValidationCode"
1501
+ ],
1502
+ [
1503
+ "initialHeadData",
1504
+ "HeadData"
1505
+ ]
756
1506
  ]
757
1507
  },
758
1508
  "NewBidder": {
759
1509
  "type": "struct",
760
1510
  "type_mapping": [
761
- ["who", "AccountId"],
762
- ["sub", "SubId"]
1511
+ [
1512
+ "who",
1513
+ "AccountId"
1514
+ ],
1515
+ [
1516
+ "sub",
1517
+ "SubId"
1518
+ ]
763
1519
  ]
764
1520
  },
765
1521
  "IncomingParachainFixed": {
766
1522
  "type": "struct",
767
1523
  "type_mapping": [
768
- ["codeHash", "Hash"],
769
- ["initialHeadData", "Bytes"]
1524
+ [
1525
+ "codeHash",
1526
+ "Hash"
1527
+ ],
1528
+ [
1529
+ "codeSize",
1530
+ "u32"
1531
+ ],
1532
+ [
1533
+ "initialHeadData",
1534
+ "HeadData"
1535
+ ]
770
1536
  ]
771
1537
  },
772
1538
  "IncomingParachain": {
773
1539
  "type": "enum",
774
1540
  "type_mapping": [
775
- ["Unset", "NewBidder"],
776
- ["Fixed", "IncomingParachainFixed"],
777
- ["Deploy", "IncomingParachainDeploy"]
1541
+ [
1542
+ "Unset",
1543
+ "NewBidder"
1544
+ ],
1545
+ [
1546
+ "Fixed",
1547
+ "IncomingParachainFixed"
1548
+ ],
1549
+ [
1550
+ "Deploy",
1551
+ "IncomingParachainDeploy"
1552
+ ]
778
1553
  ]
779
1554
  },
780
1555
  "LastRuntimeUpgradeInfo": {
781
1556
  "type": "struct",
782
1557
  "type_mapping": [
783
- ["specVersion", "Compact<u32>"],
784
- ["specName", "Bytes"]
1558
+ [
1559
+ "specVersion",
1560
+ "Compact<u32>"
1561
+ ],
1562
+ [
1563
+ "specName",
1564
+ "Text"
1565
+ ]
785
1566
  ]
786
1567
  },
787
1568
  "ProxyState": {
788
- "type": "struct",
1569
+ "type": "enum",
789
1570
  "type_mapping": [
790
- ["Open", "AccountId"],
791
- ["Active", "AccountId"]
1571
+ [
1572
+ "Open",
1573
+ "AccountId"
1574
+ ],
1575
+ [
1576
+ "Active",
1577
+ "AccountId"
1578
+ ]
792
1579
  ]
793
1580
  },
794
1581
  "ReleasesBalances": {
@@ -798,7 +1585,21 @@
798
1585
  "V2_0_0"
799
1586
  ]
800
1587
  },
801
- "Releases": "ReleasesBalances",
1588
+ "Releases": {
1589
+ "type": "enum",
1590
+ "value_list": [
1591
+ "V1",
1592
+ "V2",
1593
+ "V3",
1594
+ "V4",
1595
+ "V5",
1596
+ "V6",
1597
+ "V7",
1598
+ "V8",
1599
+ "V9",
1600
+ "V10"
1601
+ ]
1602
+ },
802
1603
  "SlotRange": {
803
1604
  "type": "enum",
804
1605
  "value_list": [
@@ -817,23 +1618,51 @@
817
1618
  "ValidityAttestation": {
818
1619
  "type": "enum",
819
1620
  "type_mapping": [
820
- ["None", "Null"],
821
- ["Implicit", "CollatorSignature"],
822
- ["Explicit", "CollatorSignature"]
1621
+ [
1622
+ "Never",
1623
+ "Null"
1624
+ ],
1625
+ [
1626
+ "Implicit",
1627
+ "ValidatorSignature"
1628
+ ],
1629
+ [
1630
+ "Explicit",
1631
+ "ValidatorSignature"
1632
+ ]
823
1633
  ]
824
1634
  },
825
1635
  "VestingInfo": {
826
1636
  "type": "struct",
827
1637
  "type_mapping": [
828
- ["locked", "Balance"],
829
- ["perBlock", "Balance"],
830
- ["startingBlock", "BlockNumber"]
1638
+ [
1639
+ "locked",
1640
+ "Balance"
1641
+ ],
1642
+ [
1643
+ "perBlock",
1644
+ "Balance"
1645
+ ],
1646
+ [
1647
+ "startingBlock",
1648
+ "BlockNumber"
1649
+ ]
831
1650
  ]
832
1651
  },
833
1652
  "NominatorIndex": "u32",
834
1653
  "ValidatorIndex": "u16",
835
1654
  "PerU16": "u16",
1655
+ "ValidatorIndexCompact": "Compact<ValidatorIndex>",
1656
+ "NominatorIndexCompact": "Compact<NominatorIndex>",
836
1657
  "OffchainAccuracy": "PerU16",
1658
+ "OffchainAccuracyCompact": "Compact<OffchainAccuracy>",
1659
+ "CompactScoreCompact": {
1660
+ "type": "struct",
1661
+ "type_mapping": [
1662
+ ["validatorIndex", "ValidatorIndexCompact"],
1663
+ ["offchainAccuracy", "OffchainAccuracyCompact"]
1664
+ ]
1665
+ },
837
1666
  "CompactScore": {
838
1667
  "type": "struct",
839
1668
  "type_mapping": [
@@ -841,27 +1670,145 @@
841
1670
  ["offchainAccuracy", "OffchainAccuracy"]
842
1671
  ]
843
1672
  },
844
- "CompactAssignments": {
1673
+ "CompactAssignmentsFrom258": {
845
1674
  "type": "struct",
846
- "type_mapping": [
847
- ["votes1", "Vec<(NominatorIndex, ValidatorIndex)>"],
848
- ["votes2", "Vec<(NominatorIndex, [CompactScore; 1], ValidatorIndex)>"],
849
- ["votes3", "Vec<(NominatorIndex, [CompactScore; 2], ValidatorIndex)>"],
850
- ["votes4", "Vec<(NominatorIndex, [CompactScore; 3], ValidatorIndex)>"],
851
- ["votes5", "Vec<(NominatorIndex, [CompactScore; 4], ValidatorIndex)>"],
852
- ["votes6", "Vec<(NominatorIndex, [CompactScore; 5], ValidatorIndex)>"],
853
- ["votes7", "Vec<(NominatorIndex, [CompactScore; 6], ValidatorIndex)>"],
854
- ["votes8", "Vec<(NominatorIndex, [CompactScore; 7], ValidatorIndex)>"],
855
- ["votes9", "Vec<(NominatorIndex, [CompactScore; 8], ValidatorIndex)>"],
856
- ["votes10", "Vec<(NominatorIndex, [CompactScore; 9], ValidatorIndex)>"],
857
- ["votes11", "Vec<(NominatorIndex, [CompactScore; 10], ValidatorIndex)>"],
858
- ["votes12", "Vec<(NominatorIndex, [CompactScore; 11], ValidatorIndex)>"],
859
- ["votes13", "Vec<(NominatorIndex, [CompactScore; 12], ValidatorIndex)>"],
860
- ["votes14", "Vec<(NominatorIndex, [CompactScore; 13], ValidatorIndex)>"],
861
- ["votes15", "Vec<(NominatorIndex, [CompactScore; 14], ValidatorIndex)>"],
862
- ["votes16", "Vec<(NominatorIndex, [CompactScore; 15], ValidatorIndex)>"]
1675
+ "type_mapping": [
1676
+ [
1677
+ "votes1",
1678
+ "Vec<(NominatorIndexCompact, ValidatorIndexCompact)>"
1679
+ ],
1680
+ [
1681
+ "votes2",
1682
+ "Vec<(NominatorIndexCompact, CompactScoreCompact, ValidatorIndexCompact)>"
1683
+ ],
1684
+ [
1685
+ "votes3",
1686
+ "Vec<(NominatorIndexCompact, [CompactScoreCompact; 2], ValidatorIndexCompact)>"
1687
+ ],
1688
+ [
1689
+ "votes4",
1690
+ "Vec<(NominatorIndexCompact, [CompactScoreCompact; 3], ValidatorIndexCompact)>"
1691
+ ],
1692
+ [
1693
+ "votes5",
1694
+ "Vec<(NominatorIndexCompact, [CompactScoreCompact; 4], ValidatorIndexCompact)>"
1695
+ ],
1696
+ [
1697
+ "votes6",
1698
+ "Vec<(NominatorIndexCompact, [CompactScoreCompact; 5], ValidatorIndexCompact)>"
1699
+ ],
1700
+ [
1701
+ "votes7",
1702
+ "Vec<(NominatorIndexCompact, [CompactScoreCompact; 6], ValidatorIndexCompact)>"
1703
+ ],
1704
+ [
1705
+ "votes8",
1706
+ "Vec<(NominatorIndexCompact, [CompactScoreCompact; 7], ValidatorIndexCompact)>"
1707
+ ],
1708
+ [
1709
+ "votes9",
1710
+ "Vec<(NominatorIndexCompact, [CompactScoreCompact; 8], ValidatorIndexCompact)>"
1711
+ ],
1712
+ [
1713
+ "votes10",
1714
+ "Vec<(NominatorIndexCompact, [CompactScoreCompact; 9], ValidatorIndexCompact)>"
1715
+ ],
1716
+ [
1717
+ "votes11",
1718
+ "Vec<(NominatorIndexCompact, [CompactScoreCompact; 10], ValidatorIndexCompact)>"
1719
+ ],
1720
+ [
1721
+ "votes12",
1722
+ "Vec<(NominatorIndexCompact, [CompactScoreCompact; 11], ValidatorIndexCompact)>"
1723
+ ],
1724
+ [
1725
+ "votes13",
1726
+ "Vec<(NominatorIndexCompact, [CompactScoreCompact; 12], ValidatorIndexCompact)>"
1727
+ ],
1728
+ [
1729
+ "votes14",
1730
+ "Vec<(NominatorIndexCompact, [CompactScoreCompact; 13], ValidatorIndexCompact)>"
1731
+ ],
1732
+ [
1733
+ "votes15",
1734
+ "Vec<(NominatorIndexCompact, [CompactScoreCompact; 14], ValidatorIndexCompact)>"
1735
+ ],
1736
+ [
1737
+ "votes16",
1738
+ "Vec<(NominatorIndexCompact, [CompactScoreCompact; 15], ValidatorIndexCompact)>"
1739
+ ]
1740
+ ]
1741
+ },
1742
+ "CompactAssignmentsTo257": {
1743
+ "type": "struct",
1744
+ "type_mapping": [
1745
+ [
1746
+ "votes1",
1747
+ "Vec<(NominatorIndex, [CompactScore; 0], ValidatorIndex)>"
1748
+ ],
1749
+ [
1750
+ "votes2",
1751
+ "Vec<(NominatorIndex, [CompactScore; 1], ValidatorIndex)>"
1752
+ ],
1753
+ [
1754
+ "votes3",
1755
+ "Vec<(NominatorIndex, [CompactScore; 2], ValidatorIndex)>"
1756
+ ],
1757
+ [
1758
+ "votes4",
1759
+ "Vec<(NominatorIndex, [CompactScore; 3], ValidatorIndex)>"
1760
+ ],
1761
+ [
1762
+ "votes5",
1763
+ "Vec<(NominatorIndex, [CompactScore; 4], ValidatorIndex)>"
1764
+ ],
1765
+ [
1766
+ "votes6",
1767
+ "Vec<(NominatorIndex, [CompactScore; 5], ValidatorIndex)>"
1768
+ ],
1769
+ [
1770
+ "votes7",
1771
+ "Vec<(NominatorIndex, [CompactScore; 6], ValidatorIndex)>"
1772
+ ],
1773
+ [
1774
+ "votes8",
1775
+ "Vec<(NominatorIndex, [CompactScore; 7], ValidatorIndex)>"
1776
+ ],
1777
+ [
1778
+ "votes9",
1779
+ "Vec<(NominatorIndex, [CompactScore; 8], ValidatorIndex)>"
1780
+ ],
1781
+ [
1782
+ "votes10",
1783
+ "Vec<(NominatorIndex, [CompactScore; 9], ValidatorIndex)>"
1784
+ ],
1785
+ [
1786
+ "votes11",
1787
+ "Vec<(NominatorIndex, [CompactScore; 10], ValidatorIndex)>"
1788
+ ],
1789
+ [
1790
+ "votes12",
1791
+ "Vec<(NominatorIndex, [CompactScore; 11], ValidatorIndex)>"
1792
+ ],
1793
+ [
1794
+ "votes13",
1795
+ "Vec<(NominatorIndex, [CompactScore; 12], ValidatorIndex)>"
1796
+ ],
1797
+ [
1798
+ "votes14",
1799
+ "Vec<(NominatorIndex, [CompactScore; 13], ValidatorIndex)>"
1800
+ ],
1801
+ [
1802
+ "votes15",
1803
+ "Vec<(NominatorIndex, [CompactScore; 14], ValidatorIndex)>"
1804
+ ],
1805
+ [
1806
+ "votes16",
1807
+ "Vec<(NominatorIndex, [CompactScore; 15], ValidatorIndex)>"
863
1808
  ]
1809
+ ]
864
1810
  },
1811
+ "CompactAssignments": "CompactAssignmentsTo257",
865
1812
  "DeferredOffenceOf": {
866
1813
  "type": "struct",
867
1814
  "type_mapping": [
@@ -873,92 +1820,185 @@
873
1820
  "Statement": {
874
1821
  "type": "enum",
875
1822
  "type_mapping": [
876
- ["Never", "Null"],
877
- ["Candidate", "Hash"],
878
- ["Valid", "Hash"],
879
- ["Invalid", "Hash"]
1823
+ [
1824
+ "Never",
1825
+ "Null"
1826
+ ],
1827
+ [
1828
+ "Candidate",
1829
+ "Hash"
1830
+ ],
1831
+ [
1832
+ "Valid",
1833
+ "Hash"
1834
+ ],
1835
+ [
1836
+ "Invalid",
1837
+ "Hash"
1838
+ ]
880
1839
  ]
881
1840
  },
882
1841
  "ValidatorSignature": "Signature",
883
1842
  "DoubleVoteReportStatement": {
884
1843
  "type": "struct",
885
1844
  "type_mapping": [
886
- ["statement", "Statement"],
887
- ["signature", "ValidatorSignature"]
1845
+ [
1846
+ "statement",
1847
+ "Statement"
1848
+ ],
1849
+ [
1850
+ "signature",
1851
+ "ValidatorSignature"
1852
+ ]
888
1853
  ]
889
1854
  },
890
1855
  "DoubleVoteReportProof": {
891
1856
  "type": "struct",
892
1857
  "type_mapping": [
893
- ["session", "SessionIndex"],
894
- ["trieNodes", "Vec<Bytes>"]
1858
+ [
1859
+ "session",
1860
+ "SessionIndex"
1861
+ ],
1862
+ [
1863
+ "trieNodes",
1864
+ "Vec<Bytes>"
1865
+ ]
895
1866
  ]
896
1867
  },
897
1868
  "SigningContext": {
898
1869
  "type": "struct",
899
1870
  "type_mapping": [
900
- ["sessionIndex", "SessionIndex"],
901
- ["parentHash", "Hash"]
1871
+ [
1872
+ "sessionIndex",
1873
+ "SessionIndex"
1874
+ ],
1875
+ [
1876
+ "parentHash",
1877
+ "Hash"
1878
+ ]
902
1879
  ]
903
1880
  },
904
1881
  "DoubleVoteReport": {
905
1882
  "type": "struct",
906
1883
  "type_mapping": [
907
- ["identity", "ValidatorId"],
908
- ["first", "DoubleVoteReportStatement"],
909
- ["second", "DoubleVoteReportStatement"],
910
- ["proof", "DoubleVoteReportProof"],
911
- ["signingContext", "SigningContext"]
1884
+ [
1885
+ "identity",
1886
+ "ValidatorId"
1887
+ ],
1888
+ [
1889
+ "first",
1890
+ "(Statement, ValidatorSignature)"
1891
+ ],
1892
+ [
1893
+ "second",
1894
+ "(Statement, ValidatorSignature)"
1895
+ ],
1896
+ [
1897
+ "proof",
1898
+ "MembershipProof"
1899
+ ],
1900
+ [
1901
+ "signingContext",
1902
+ "SigningContext"
1903
+ ]
912
1904
  ]
913
1905
  },
914
1906
  "ElectionCompute": {
915
1907
  "type": "enum",
916
- "value_list": [
917
- "OnChain",
918
- "Signed",
919
- "Authority"
920
- ]
1908
+ "value_list": [
1909
+ "OnChain",
1910
+ "Signed",
1911
+ "Authority"
1912
+ ]
921
1913
  },
922
1914
  "ElectionResult": {
923
1915
  "type": "struct",
924
1916
  "type_mapping": [
925
- ["compute", "ElectionCompute"],
926
- ["slotStake", "Balance"],
927
- ["electedStashes", "Vec<AccountId>"],
928
- ["exposures", "Vec<(AccountId, Exposure)>"]
1917
+ [
1918
+ "compute",
1919
+ "ElectionCompute"
1920
+ ],
1921
+ [
1922
+ "slotStake",
1923
+ "Balance"
1924
+ ],
1925
+ [
1926
+ "electedStashes",
1927
+ "Vec<AccountId>"
1928
+ ],
1929
+ [
1930
+ "exposures",
1931
+ "Vec<(AccountId, Exposure)>"
1932
+ ]
929
1933
  ]
930
1934
  },
931
1935
  "ElectionStatus": {
932
1936
  "type": "enum",
933
1937
  "type_mapping": [
934
- ["Close", "Null"],
935
- ["Open", "BlockNumber"]
1938
+ [
1939
+ "Close",
1940
+ "Null"
1941
+ ],
1942
+ [
1943
+ "Open",
1944
+ "BlockNumber"
1945
+ ]
936
1946
  ]
937
1947
  },
938
1948
  "Phase": {
939
1949
  "type": "enum",
940
1950
  "type_mapping": [
941
- ["ApplyExtrinsic", "u32"],
942
- ["Finalization", "Null"],
943
- ["Initialization", "Null"]
1951
+ [
1952
+ "ApplyExtrinsic",
1953
+ "u32"
1954
+ ],
1955
+ [
1956
+ "Finalization",
1957
+ "Null"
1958
+ ],
1959
+ [
1960
+ "Initialization",
1961
+ "Null"
1962
+ ]
944
1963
  ]
945
1964
  },
946
1965
  "PhragmenScore": "[u128; 3]",
947
1966
  "PreimageStatusAvailable": {
948
1967
  "type": "struct",
949
1968
  "type_mapping": [
950
- ["data", "Bytes"],
951
- ["provider", "AccountId"],
952
- ["deposit", "Balance"],
953
- ["since", "BlockNumber"],
954
- ["expiry", "Option<BlockNumber>"]
1969
+ [
1970
+ "data",
1971
+ "Bytes"
1972
+ ],
1973
+ [
1974
+ "provider",
1975
+ "AccountId"
1976
+ ],
1977
+ [
1978
+ "deposit",
1979
+ "Balance"
1980
+ ],
1981
+ [
1982
+ "since",
1983
+ "BlockNumber"
1984
+ ],
1985
+ [
1986
+ "expiry",
1987
+ "Option<BlockNumber>"
1988
+ ]
955
1989
  ]
956
1990
  },
957
1991
  "PreimageStatus": {
958
1992
  "type": "enum",
959
1993
  "type_mapping": [
960
- ["Missing", "BlockNumber"],
961
- ["Available", "PreimageStatusAvailable"]
1994
+ [
1995
+ "Missing",
1996
+ "BlockNumber"
1997
+ ],
1998
+ [
1999
+ "Available",
2000
+ "PreimageStatusAvailable"
2001
+ ]
962
2002
  ]
963
2003
  },
964
2004
  "Randomness": "Hash",
@@ -972,20 +2012,2252 @@
972
2012
  ["index", "u32"]
973
2013
  ]
974
2014
  },
2015
+ "ValidationFunctionParams": {
2016
+ "type": "struct",
2017
+ "type_mapping": [
2018
+ [
2019
+ "maxCodeSize",
2020
+ "u32"
2021
+ ],
2022
+ [
2023
+ "relayChainHeight",
2024
+ "RelayChainBlockNumber"
2025
+ ],
2026
+ [
2027
+ "codeUpgradeAllowed",
2028
+ "Option<RelayChainBlockNumber>"
2029
+ ]
2030
+ ]
2031
+ },
975
2032
  "ValidationCode": "Bytes",
976
2033
  "ParaPastCodeMeta": {
977
2034
  "type": "struct",
978
2035
  "type_mapping": [
979
- ["upgrade_times", "Vec<BlockNumber>"],
980
- ["last_pruned", "Option<BlockNumber>"]
2036
+ [
2037
+ "upgradeTimes",
2038
+ "Vec<BlockNumber>"
2039
+ ],
2040
+ [
2041
+ "lastPruned",
2042
+ "Option<BlockNumber>"
2043
+ ]
981
2044
  ]
982
2045
  },
983
2046
  "ModuleId": "LockIdentifier",
984
2047
  "RuntimeDbWeight": {
985
2048
  "type": "struct",
986
2049
  "type_mapping": [
987
- ["read", "Weight"],
988
- ["write", "Weight"]
2050
+ [
2051
+ "read",
2052
+ "Weight"
2053
+ ],
2054
+ [
2055
+ "write",
2056
+ "Weight"
2057
+ ]
2058
+ ]
2059
+ },
2060
+ "Renouncing": {
2061
+ "type": "enum",
2062
+ "type_mapping": [
2063
+ [
2064
+ "Member",
2065
+ "Null"
2066
+ ],
2067
+ [
2068
+ "RunnerUp",
2069
+ "Null"
2070
+ ],
2071
+ [
2072
+ "Candidate",
2073
+ "Compact<u32>"
2074
+ ]
2075
+ ]
2076
+ },
2077
+ "ExtrinsicsWeight": {
2078
+ "type": "struct",
2079
+ "type_mapping": [
2080
+ [
2081
+ "normal",
2082
+ "Weight"
2083
+ ],
2084
+ [
2085
+ "operational",
2086
+ "Weight"
2087
+ ]
2088
+ ]
2089
+ },
2090
+ "weights::ExtrinsicsWeight": "ExtrinsicsWeight",
2091
+ "ValidatorCount": "u32",
2092
+ "MembershipProof": {
2093
+ "type": "struct",
2094
+ "type_mapping": [
2095
+ [
2096
+ "session",
2097
+ "SessionIndex"
2098
+ ],
2099
+ [
2100
+ "trieNodes",
2101
+ "Vec<Vec<u8>>"
2102
+ ],
2103
+ [
2104
+ "validatorCount",
2105
+ "ValidatorCount"
2106
+ ]
2107
+ ]
2108
+ },
2109
+ "JustificationNotification": "Bytes",
2110
+ "KeyOwnerProof": "MembershipProof",
2111
+ "DefunctVoter": {
2112
+ "type": "struct",
2113
+ "type_mapping": [
2114
+ [
2115
+ "who",
2116
+ "AccountId"
2117
+ ],
2118
+ [
2119
+ "voteCount",
2120
+ "Compact<u32>"
2121
+ ],
2122
+ [
2123
+ "candidateCount",
2124
+ "Compact<u32>"
2125
+ ]
2126
+ ]
2127
+ },
2128
+ "ElectionScore": "[u128; 3]",
2129
+ "ElectionSize": {
2130
+ "type": "struct",
2131
+ "type_mapping": [
2132
+ [
2133
+ "validators",
2134
+ "Compact<ValidatorIndex>"
2135
+ ],
2136
+ [
2137
+ "nominators",
2138
+ "Compact<NominatorIndex>"
2139
+ ]
2140
+ ]
2141
+ },
2142
+ "AllowedSlots": {
2143
+ "type": "enum",
2144
+ "value_list": [
2145
+ "PrimarySlots",
2146
+ "PrimaryAndSecondaryPlainSlots",
2147
+ "PrimaryAndSecondaryVRFSlots"
2148
+ ]
2149
+ },
2150
+ "NextConfigDescriptorV1": {
2151
+ "type": "struct",
2152
+ "type_mapping": [
2153
+ [
2154
+ "c",
2155
+ "(u64, u64)"
2156
+ ],
2157
+ [
2158
+ "allowedSlots",
2159
+ "AllowedSlots"
2160
+ ]
2161
+ ]
2162
+ },
2163
+ "NextConfigDescriptor": {
2164
+ "type": "enum",
2165
+ "type_mapping": [
2166
+ [
2167
+ "V0",
2168
+ "Null"
2169
+ ],
2170
+ [
2171
+ "V1",
2172
+ "NextConfigDescriptorV1"
2173
+ ]
2174
+ ]
2175
+ },
2176
+ "StatementKind": {
2177
+ "type": "enum",
2178
+ "value_list": [
2179
+ "Regular",
2180
+ "Saft"
2181
+ ]
2182
+ },
2183
+ "schedule::Priority": "u8",
2184
+ "GrandpaEquivocation": {
2185
+ "type": "enum",
2186
+ "type_mapping": [
2187
+ [
2188
+ "Prevote",
2189
+ "GrandpaEquivocationValue"
2190
+ ],
2191
+ [
2192
+ "Precommit",
2193
+ "GrandpaEquivocationValue"
2194
+ ]
2195
+ ]
2196
+ },
2197
+ "GrandpaPrevote": {
2198
+ "type": "struct",
2199
+ "type_mapping": [
2200
+ [
2201
+ "targetHash",
2202
+ "Hash"
2203
+ ],
2204
+ [
2205
+ "targetNumber",
2206
+ "BlockNumber"
2207
+ ]
2208
+ ]
2209
+ },
2210
+ "Equivocation": "GrandpaEquivocation",
2211
+ "EquivocationProof": {
2212
+ "type": "struct",
2213
+ "type_mapping": [
2214
+ [
2215
+ "setId",
2216
+ "SetId"
2217
+ ],
2218
+ [
2219
+ "equivocation",
2220
+ "Equivocation"
2221
+ ]
2222
+ ]
2223
+ },
2224
+ "ProxyType": {
2225
+ "type": "enum",
2226
+ "value_list": [
2227
+ "Any",
2228
+ "NonTransfer",
2229
+ "Governance",
2230
+ "Staking"
2231
+ ]
2232
+ },
2233
+ "BalanceStatus": {
2234
+ "type": "enum",
2235
+ "value_list": [
2236
+ "Free",
2237
+ "Reserved"
2238
+ ]
2239
+ },
2240
+ "Status": "BalanceStatus",
2241
+ "EcdsaSignature": "[u8; 65]",
2242
+ "Ed25519Signature": "H512",
2243
+ "Sr25519Signature": "H512",
2244
+ "MultiSignature": {
2245
+ "type": "enum",
2246
+ "type_mapping": [
2247
+ [
2248
+ "Ed25519",
2249
+ "Ed25519Signature"
2250
+ ],
2251
+ [
2252
+ "Sr25519",
2253
+ "Sr25519Signature"
2254
+ ],
2255
+ [
2256
+ "Ecdsa",
2257
+ "EcdsaSignature"
2258
+ ]
2259
+ ]
2260
+ },
2261
+ "schedule::period<blocknumber>": "(BlockNumber, u32)",
2262
+ "OpaqueCall": "OpaqueCall",
2263
+ "AuthorityId": "AccountId",
2264
+ "RawVRFOutput": "[u8; 32]",
2265
+ "BlockAttestations": {
2266
+ "type": "struct",
2267
+ "type_mapping": [
2268
+ [
2269
+ "receipt",
2270
+ "CandidateReceipt"
2271
+ ],
2272
+ [
2273
+ "valid",
2274
+ "Vec<AccountId>"
2275
+ ],
2276
+ [
2277
+ "invalid",
2278
+ "Vec<AccountId>"
2279
+ ]
2280
+ ]
2281
+ },
2282
+ "IncludedBlocks": {
2283
+ "type": "struct",
2284
+ "type_mapping": [
2285
+ [
2286
+ "actualNumber",
2287
+ "BlockNumber"
2288
+ ],
2289
+ [
2290
+ "session",
2291
+ "SessionIndex"
2292
+ ],
2293
+ [
2294
+ "randomSeed",
2295
+ "H256"
2296
+ ],
2297
+ [
2298
+ "activeParachains",
2299
+ "Vec<ParaId>"
2300
+ ],
2301
+ [
2302
+ "paraBlocks",
2303
+ "Vec<Hash>"
2304
+ ]
2305
+ ]
2306
+ },
2307
+ "HeartbeatTo244": {
2308
+ "type": "struct",
2309
+ "type_mapping": [
2310
+ [
2311
+ "blockNumber",
2312
+ "BlockNumber"
2313
+ ],
2314
+ [
2315
+ "networkState",
2316
+ "OpaqueNetworkState"
2317
+ ],
2318
+ [
2319
+ "sessionIndex",
2320
+ "SessionIndex"
2321
+ ],
2322
+ [
2323
+ "authorityIndex",
2324
+ "AuthIndex"
2325
+ ]
2326
+ ]
2327
+ },
2328
+ "OpaqueMultiaddr": "Bytes",
2329
+ "OpaquePeerId": "Bytes",
2330
+ "OpaqueNetworkState": {
2331
+ "type": "struct",
2332
+ "type_mapping": [
2333
+ [
2334
+ "peerId",
2335
+ "OpaquePeerId"
2336
+ ],
2337
+ [
2338
+ "externalAddresses",
2339
+ "Vec<OpaqueMultiaddr>"
2340
+ ]
2341
+ ]
2342
+ },
2343
+ "ProposalIndex": "u32",
2344
+ "VotesTo230": {
2345
+ "type": "struct",
2346
+ "type_mapping": [
2347
+ [
2348
+ "index",
2349
+ "ProposalIndex"
2350
+ ],
2351
+ [
2352
+ "threshold",
2353
+ "MemberCount"
2354
+ ],
2355
+ [
2356
+ "ayes",
2357
+ "Vec<AccountId>"
2358
+ ],
2359
+ [
2360
+ "nays",
2361
+ "Vec<AccountId>"
2362
+ ]
2363
+ ]
2364
+ },
2365
+ "Votes": {
2366
+ "type": "struct",
2367
+ "type_mapping": [
2368
+ [
2369
+ "index",
2370
+ "ProposalIndex"
2371
+ ],
2372
+ [
2373
+ "threshold",
2374
+ "MemberCount"
2375
+ ],
2376
+ [
2377
+ "ayes",
2378
+ "Vec<AccountId>"
2379
+ ],
2380
+ [
2381
+ "nays",
2382
+ "Vec<AccountId>"
2383
+ ],
2384
+ [
2385
+ "end",
2386
+ "BlockNumber"
2387
+ ]
2388
+ ]
2389
+ },
2390
+ "RuntimeDispatchInfo": {
2391
+ "type": "struct",
2392
+ "type_mapping": [
2393
+ [
2394
+ "weight",
2395
+ "Weight"
2396
+ ],
2397
+ [
2398
+ "class",
2399
+ "DispatchClass"
2400
+ ],
2401
+ [
2402
+ "partialFee",
2403
+ "Balance"
2404
+ ]
2405
+ ]
2406
+ },
2407
+ "AliveContractInfo": {
2408
+ "type": "struct",
2409
+ "type_mapping": [
2410
+ [
2411
+ "trieId",
2412
+ "TrieId"
2413
+ ],
2414
+ [
2415
+ "storageSize",
2416
+ "u32"
2417
+ ],
2418
+ [
2419
+ "codeHash",
2420
+ "CodeHash"
2421
+ ],
2422
+ [
2423
+ "rentAllowance",
2424
+ "Balance"
2425
+ ],
2426
+ [
2427
+ "deductBlock",
2428
+ "BlockNumber"
2429
+ ],
2430
+ [
2431
+ "lastWrite",
2432
+ "Option<BlockNumber>"
2433
+ ]
2434
+ ]
2435
+ },
2436
+ "CodeHash": "Hash",
2437
+ "ContractCallRequest": {
2438
+ "type": "struct",
2439
+ "type_mapping": [
2440
+ [
2441
+ "origin",
2442
+ "AccountId"
2443
+ ],
2444
+ [
2445
+ "dest",
2446
+ "AccountId"
2447
+ ],
2448
+ [
2449
+ "value",
2450
+ "Balance"
2451
+ ],
2452
+ [
2453
+ "gasLimit",
2454
+ "u64"
2455
+ ],
2456
+ [
2457
+ "inputData",
2458
+ "Bytes"
2459
+ ]
2460
+ ]
2461
+ },
2462
+ "ContractExecResultSuccess": {
2463
+ "type": "struct",
2464
+ "type_mapping": [
2465
+ [
2466
+ "flags",
2467
+ "u32"
2468
+ ],
2469
+ [
2470
+ "data",
2471
+ "Vec<u8>"
2472
+ ],
2473
+ [
2474
+ "gasConsumed",
2475
+ "u64"
2476
+ ]
2477
+ ]
2478
+ },
2479
+ "ContractExecResult": {
2480
+ "type": "enum",
2481
+ "type_mapping": [
2482
+ [
2483
+ "Success",
2484
+ "ContractExecResultSuccess"
2485
+ ],
2486
+ [
2487
+ "Error",
2488
+ "Null"
2489
+ ]
2490
+ ]
2491
+ },
2492
+ "ContractStorageKey": "[u8; 32]",
2493
+ "PrefabWasmModule": {
2494
+ "type": "struct",
2495
+ "type_mapping": [
2496
+ [
2497
+ "scheduleVersion",
2498
+ "Compact<u32>"
2499
+ ],
2500
+ [
2501
+ "initial",
2502
+ "Compact<u32>"
2503
+ ],
2504
+ [
2505
+ "maximum",
2506
+ "Compact<u32>"
2507
+ ],
2508
+ [
2509
+ "_reserved",
2510
+ "PrefabWasmModuleReserved"
2511
+ ],
2512
+ [
2513
+ "code",
2514
+ "Bytes"
2515
+ ]
2516
+ ]
2517
+ },
2518
+ "PrefabWasmModuleReserved": "Option<Null>",
2519
+ "ScheduleTo212": {
2520
+ "type": "struct",
2521
+ "type_mapping": [
2522
+ [
2523
+ "version",
2524
+ "u32"
2525
+ ],
2526
+ [
2527
+ "putCodePerByteCost",
2528
+ "Gas"
2529
+ ],
2530
+ [
2531
+ "growMemCost",
2532
+ "Gas"
2533
+ ],
2534
+ [
2535
+ "regularOpCost",
2536
+ "Gas"
2537
+ ],
2538
+ [
2539
+ "returnDataPerByteCost",
2540
+ "Gas"
2541
+ ],
2542
+ [
2543
+ "eventDataPerByteCost",
2544
+ "Gas"
2545
+ ],
2546
+ [
2547
+ "eventPerTopicCost",
2548
+ "Gas"
2549
+ ],
2550
+ [
2551
+ "eventBaseCost",
2552
+ "Gas"
2553
+ ],
2554
+ [
2555
+ "sandboxDataReadCost",
2556
+ "Gas"
2557
+ ],
2558
+ [
2559
+ "sandboxDataWriteCost",
2560
+ "Gas"
2561
+ ],
2562
+ [
2563
+ "maxEventTopics",
2564
+ "u32"
2565
+ ],
2566
+ [
2567
+ "maxStackHeight",
2568
+ "u32"
2569
+ ],
2570
+ [
2571
+ "maxMemoryPages",
2572
+ "u32"
2573
+ ],
2574
+ [
2575
+ "enablePrintln",
2576
+ "bool"
2577
+ ],
2578
+ [
2579
+ "maxSubjectLen",
2580
+ "u32"
2581
+ ]
2582
+ ]
2583
+ },
2584
+ "SeedOf": "Hash",
2585
+ "TombstoneContractInfo": "Hash",
2586
+ "ExtrinsicOrHash": {
2587
+ "type": "enum",
2588
+ "type_mapping": [
2589
+ [
2590
+ "Hash",
2591
+ "Hash"
2592
+ ],
2593
+ [
2594
+ "Extrinsic",
2595
+ "Bytes"
2596
+ ]
2597
+ ]
2598
+ },
2599
+ "ExtrinsicStatus": {
2600
+ "type": "enum",
2601
+ "type_mapping": [
2602
+ [
2603
+ "Future",
2604
+ "Null"
2605
+ ],
2606
+ [
2607
+ "Ready",
2608
+ "Null"
2609
+ ],
2610
+ [
2611
+ "Broadcast",
2612
+ "Vec<Text>"
2613
+ ],
2614
+ [
2615
+ "InBlock",
2616
+ "Hash"
2617
+ ],
2618
+ [
2619
+ "Retracted",
2620
+ "Hash"
2621
+ ],
2622
+ [
2623
+ "FinalityTimeout",
2624
+ "Hash"
2625
+ ],
2626
+ [
2627
+ "Finalized",
2628
+ "Hash"
2629
+ ],
2630
+ [
2631
+ "Usurped",
2632
+ "Hash"
2633
+ ],
2634
+ [
2635
+ "Dropped",
2636
+ "Null"
2637
+ ],
2638
+ [
2639
+ "Invalid",
2640
+ "Null"
2641
+ ]
2642
+ ]
2643
+ },
2644
+ "StorageKey": "Bytes",
2645
+ "PrefixedStorageKey": "StorageKey",
2646
+ "AccountIndex": "GenericAccountIndex",
2647
+ "Address": "GenericAddress",
2648
+ "AssetId": "u32",
2649
+ "Justification": "Bytes",
2650
+ "StorageData": "Bytes",
2651
+ "KeyValue": {
2652
+ "type": "struct",
2653
+ "type_mapping": [
2654
+ [
2655
+ "key",
2656
+ "StorageKey"
2657
+ ],
2658
+ [
2659
+ "value",
2660
+ "StorageData"
2661
+ ]
2662
+ ]
2663
+ },
2664
+ "KeyTypeId": "u32",
2665
+ "LookupSource": "Address",
2666
+ "LookupTarget": "AccountId",
2667
+ "Perbill": "u32",
2668
+ "Permill": "u32",
2669
+ "Perquintill": "u64",
2670
+ "Phantom": "Null",
2671
+ "SignedBlock": {
2672
+ "type": "struct",
2673
+ "type_mapping": [
2674
+ [
2675
+ "block",
2676
+ "Block"
2677
+ ],
2678
+ [
2679
+ "justification",
2680
+ "Justification"
2681
+ ]
2682
+ ]
2683
+ },
2684
+ "ValidatorId": "AccountId",
2685
+ "PreRuntime": "(ConsensusEngineId, Bytes)",
2686
+ "SealV0": "(u64, Signature)",
2687
+ "Seal": "(ConsensusEngineId, Bytes)",
2688
+ "Consensus": "(ConsensusEngineId, Bytes)",
2689
+ "Period": "(BlockNumber, u32)",
2690
+ "Priority": "u8",
2691
+ "SchedulePeriod": "Period",
2692
+ "SchedulePriority": "Priority",
2693
+ "Scheduled": {
2694
+ "type": "struct",
2695
+ "type_mapping": [
2696
+ [
2697
+ "maybeId",
2698
+ "Option<Bytes>"
2699
+ ],
2700
+ [
2701
+ "priority",
2702
+ "SchedulePriority"
2703
+ ],
2704
+ [
2705
+ "call",
2706
+ "Call"
2707
+ ],
2708
+ [
2709
+ "maybePeriodic",
2710
+ "Option<SchedulePeriod>"
2711
+ ]
2712
+ ]
2713
+ },
2714
+ "SocietyJudgement": {
2715
+ "type": "enum",
2716
+ "value_list": [
2717
+ "Rebid",
2718
+ "Reject",
2719
+ "Approve"
2720
+ ]
2721
+ },
2722
+ "SocietyVote": {
2723
+ "type": "enum",
2724
+ "value_list": [
2725
+ "Skeptic",
2726
+ "Reject",
2727
+ "Approve"
2728
+ ]
2729
+ },
2730
+ "BlockHash": "Hash",
2731
+ "UncleEntryItem": {
2732
+ "type": "enum",
2733
+ "type_mapping": [
2734
+ [
2735
+ "InclusionHeight",
2736
+ "BlockNumber"
2737
+ ],
2738
+ [
2739
+ "Uncle",
2740
+ "(Hash, Option<AccountId>)"
2741
+ ]
2742
+ ]
2743
+ },
2744
+ "ApiId": "[u8; 8]",
2745
+ "KeyValueOption": "(StorageKey, Option<StorageData>)",
2746
+ "ReadProof": {
2747
+ "type": "struct",
2748
+ "type_mapping": [
2749
+ [
2750
+ "at",
2751
+ "Hash"
2752
+ ],
2753
+ [
2754
+ "proof",
2755
+ "Vec<Bytes>"
2756
+ ]
2757
+ ]
2758
+ },
2759
+ "RuntimeVersionApi": "(ApiId, u32)",
2760
+ "RuntimeVersion": {
2761
+ "type": "struct",
2762
+ "type_mapping": [
2763
+ [
2764
+ "specName",
2765
+ "Text"
2766
+ ],
2767
+ [
2768
+ "implName",
2769
+ "Text"
2770
+ ],
2771
+ [
2772
+ "authoringVersion",
2773
+ "u32"
2774
+ ],
2775
+ [
2776
+ "specVersion",
2777
+ "u32"
2778
+ ],
2779
+ [
2780
+ "implVersion",
2781
+ "u32"
2782
+ ],
2783
+ [
2784
+ "apis",
2785
+ "Vec<RuntimeVersionApi>"
2786
+ ],
2787
+ [
2788
+ "transactionVersion",
2789
+ "u32"
2790
+ ]
2791
+ ]
2792
+ },
2793
+ "StorageChangeSet": {
2794
+ "type": "struct",
2795
+ "type_mapping": [
2796
+ [
2797
+ "block",
2798
+ "Hash"
2799
+ ],
2800
+ [
2801
+ "changes",
2802
+ "Vec<KeyValueOption>"
2803
+ ]
2804
+ ]
2805
+ },
2806
+ "GrandpaEquivocationProof": {
2807
+ "type": "struct",
2808
+ "type_mapping": [
2809
+ [
2810
+ "setId",
2811
+ "SetId"
2812
+ ],
2813
+ [
2814
+ "equivocation",
2815
+ "GrandpaEquivocation"
2816
+ ]
2817
+ ]
2818
+ },
2819
+ "GrandpaEquivocationValue": {
2820
+ "type": "struct",
2821
+ "type_mapping": [
2822
+ [
2823
+ "roundNumber",
2824
+ "u64"
2825
+ ],
2826
+ [
2827
+ "identity",
2828
+ "AuthorityId"
2829
+ ],
2830
+ [
2831
+ "first",
2832
+ "(GrandpaPrevote, AuthoritySignature)"
2833
+ ],
2834
+ [
2835
+ "second",
2836
+ "(GrandpaPrevote, AuthoritySignature)"
2837
+ ]
2838
+ ]
2839
+ },
2840
+ "PendingPause": {
2841
+ "type": "struct",
2842
+ "type_mapping": [
2843
+ [
2844
+ "scheduledAt",
2845
+ "BlockNumber"
2846
+ ],
2847
+ [
2848
+ "delay",
2849
+ "BlockNumber"
2850
+ ]
2851
+ ]
2852
+ },
2853
+ "PendingResume": {
2854
+ "type": "struct",
2855
+ "type_mapping": [
2856
+ [
2857
+ "scheduledAt",
2858
+ "BlockNumber"
2859
+ ],
2860
+ [
2861
+ "delay",
2862
+ "BlockNumber"
2863
+ ]
2864
+ ]
2865
+ },
2866
+ "Precommits": {
2867
+ "type": "struct",
2868
+ "type_mapping": [
2869
+ [
2870
+ "currentWeight",
2871
+ "u32"
2872
+ ],
2873
+ [
2874
+ "missing",
2875
+ "BTreeSet<AuthorityId>"
2876
+ ]
2877
+ ]
2878
+ },
2879
+ "Prevotes": {
2880
+ "type": "struct",
2881
+ "type_mapping": [
2882
+ [
2883
+ "currentWeight",
2884
+ "u32"
2885
+ ],
2886
+ [
2887
+ "missing",
2888
+ "BTreeSet<AuthorityId>"
2889
+ ]
2890
+ ]
2891
+ },
2892
+ "ReportedRoundStates": {
2893
+ "type": "struct",
2894
+ "type_mapping": [
2895
+ [
2896
+ "setId",
2897
+ "u32"
2898
+ ],
2899
+ [
2900
+ "best",
2901
+ "RoundState"
2902
+ ],
2903
+ [
2904
+ "background",
2905
+ "Vec<RoundState>"
2906
+ ]
2907
+ ]
2908
+ },
2909
+ "RoundState": {
2910
+ "type": "struct",
2911
+ "type_mapping": [
2912
+ [
2913
+ "round",
2914
+ "u32"
2915
+ ],
2916
+ [
2917
+ "totalWeight",
2918
+ "u32"
2919
+ ],
2920
+ [
2921
+ "thresholdWeight",
2922
+ "u32"
2923
+ ],
2924
+ [
2925
+ "prevotes",
2926
+ "Prevotes"
2927
+ ],
2928
+ [
2929
+ "precommits",
2930
+ "Precommits"
2931
+ ]
2932
+ ]
2933
+ },
2934
+ "StoredPendingChange": {
2935
+ "type": "struct",
2936
+ "type_mapping": [
2937
+ [
2938
+ "scheduledAt",
2939
+ "BlockNumber"
2940
+ ],
2941
+ [
2942
+ "delay",
2943
+ "BlockNumber"
2944
+ ],
2945
+ [
2946
+ "nextAuthorities",
2947
+ "AuthorityList"
2948
+ ]
2949
+ ]
2950
+ },
2951
+ "StoredState": {
2952
+ "type": "enum",
2953
+ "type_mapping": [
2954
+ [
2955
+ "Live",
2956
+ "Null"
2957
+ ],
2958
+ [
2959
+ "PendingPause",
2960
+ "PendingPause"
2961
+ ],
2962
+ [
2963
+ "Paused",
2964
+ "Null"
2965
+ ],
2966
+ [
2967
+ "PendingResume",
2968
+ "PendingResume"
2969
+ ]
2970
+ ]
2971
+ },
2972
+ "AccountInfo": {
2973
+ "type": "struct",
2974
+ "type_mapping": [
2975
+ [
2976
+ "nonce",
2977
+ "Index"
2978
+ ],
2979
+ [
2980
+ "refcount",
2981
+ "RefCount"
2982
+ ],
2983
+ [
2984
+ "data",
2985
+ "AccountData"
2986
+ ]
2987
+ ]
2988
+ },
2989
+ "ChainProperties": {
2990
+ "type": "struct",
2991
+ "type_mapping": [
2992
+ [
2993
+ "ss58Format",
2994
+ "Option<u8>"
2995
+ ],
2996
+ [
2997
+ "tokenDecimals",
2998
+ "Option<u32>"
2999
+ ],
3000
+ [
3001
+ "tokenSymbol",
3002
+ "Option<Text>"
3003
+ ]
3004
+ ]
3005
+ },
3006
+ "ChainType": {
3007
+ "type": "enum",
3008
+ "type_mapping": [
3009
+ [
3010
+ "Development",
3011
+ "Null"
3012
+ ],
3013
+ [
3014
+ "Local",
3015
+ "Null"
3016
+ ],
3017
+ [
3018
+ "Live",
3019
+ "Null"
3020
+ ],
3021
+ [
3022
+ "Custom",
3023
+ "Text"
3024
+ ]
3025
+ ]
3026
+ },
3027
+ "DispatchErrorTo198": {
3028
+ "type": "struct",
3029
+ "type_mapping": [
3030
+ [
3031
+ "module",
3032
+ "Option<u8>"
3033
+ ],
3034
+ [
3035
+ "error",
3036
+ "u8"
3037
+ ]
3038
+ ]
3039
+ },
3040
+ "DispatchInfoTo190": {
3041
+ "type": "struct",
3042
+ "type_mapping": [
3043
+ [
3044
+ "weight",
3045
+ "Weight"
3046
+ ],
3047
+ [
3048
+ "class",
3049
+ "DispatchClass"
3050
+ ]
3051
+ ]
3052
+ },
3053
+ "DispatchInfoTo244": {
3054
+ "type": "struct",
3055
+ "type_mapping": [
3056
+ [
3057
+ "weight",
3058
+ "Weight"
3059
+ ],
3060
+ [
3061
+ "class",
3062
+ "DispatchClass"
3063
+ ],
3064
+ [
3065
+ "paysFee",
3066
+ "bool"
3067
+ ]
3068
+ ]
3069
+ },
3070
+ "DispatchResultOf": "DispatchResult",
3071
+ "Event": "GenericEvent",
3072
+ "EventId": "[u8; 2]",
3073
+ "EventRecord": "EventRecord",
3074
+ "EventRecordTo76": {
3075
+ "type": "struct",
3076
+ "type_mapping": [
3077
+ [
3078
+ "phase",
3079
+ "Phase"
3080
+ ],
3081
+ [
3082
+ "event",
3083
+ "Event"
3084
+ ]
3085
+ ]
3086
+ },
3087
+ "Health": {
3088
+ "type": "struct",
3089
+ "type_mapping": [
3090
+ [
3091
+ "peers",
3092
+ "u64"
3093
+ ],
3094
+ [
3095
+ "isSyncing",
3096
+ "bool"
3097
+ ],
3098
+ [
3099
+ "shouldHavePeers",
3100
+ "bool"
3101
+ ]
3102
+ ]
3103
+ },
3104
+ "InvalidTransaction": {
3105
+ "type": "enum",
3106
+ "type_mapping": [
3107
+ [
3108
+ "Call",
3109
+ "Null"
3110
+ ],
3111
+ [
3112
+ "Payment",
3113
+ "Null"
3114
+ ],
3115
+ [
3116
+ "Future",
3117
+ "Null"
3118
+ ],
3119
+ [
3120
+ "Stale",
3121
+ "Null"
3122
+ ],
3123
+ [
3124
+ "BadProof",
3125
+ "Null"
3126
+ ],
3127
+ [
3128
+ "AncientBirthBlock",
3129
+ "Null"
3130
+ ],
3131
+ [
3132
+ "ExhaustsResources",
3133
+ "Null"
3134
+ ],
3135
+ [
3136
+ "Custom",
3137
+ "u8"
3138
+ ],
3139
+ [
3140
+ "BadMandatory",
3141
+ "Null"
3142
+ ],
3143
+ [
3144
+ "MandatoryDispatch",
3145
+ "Null"
3146
+ ]
3147
+ ]
3148
+ },
3149
+ "Key": "Bytes",
3150
+ "NetworkState": {
3151
+ "type": "struct",
3152
+ "type_mapping": [
3153
+ [
3154
+ "peerId",
3155
+ "Text"
3156
+ ],
3157
+ [
3158
+ "listenedAddresses",
3159
+ "Vec<Text>"
3160
+ ],
3161
+ [
3162
+ "externalAddresses",
3163
+ "Vec<Text>"
3164
+ ],
3165
+ [
3166
+ "connectedPeers",
3167
+ "HashMap<Text, Peer>"
3168
+ ],
3169
+ [
3170
+ "notConnectedPeers",
3171
+ "HashMap<Text, NotConnectedPeer>"
3172
+ ],
3173
+ [
3174
+ "averageDownloadPerSec",
3175
+ "u64"
3176
+ ],
3177
+ [
3178
+ "averageUploadPerSec",
3179
+ "u64"
3180
+ ],
3181
+ [
3182
+ "peerset",
3183
+ "NetworkStatePeerset"
3184
+ ]
3185
+ ]
3186
+ },
3187
+ "NetworkStatePeerset": {
3188
+ "type": "struct",
3189
+ "type_mapping": [
3190
+ [
3191
+ "messageQueue",
3192
+ "u64"
3193
+ ],
3194
+ [
3195
+ "nodes",
3196
+ "HashMap<Text, NetworkStatePeersetInfo>"
3197
+ ]
3198
+ ]
3199
+ },
3200
+ "NetworkStatePeersetInfo": {
3201
+ "type": "struct",
3202
+ "type_mapping": [
3203
+ [
3204
+ "connected",
3205
+ "bool"
3206
+ ],
3207
+ [
3208
+ "reputation",
3209
+ "i32"
3210
+ ]
3211
+ ]
3212
+ },
3213
+ "NodeRole": {
3214
+ "type": "enum",
3215
+ "type_mapping": [
3216
+ [
3217
+ "Full",
3218
+ "Null"
3219
+ ],
3220
+ [
3221
+ "LightClient",
3222
+ "Null"
3223
+ ],
3224
+ [
3225
+ "Authority",
3226
+ "Null"
3227
+ ],
3228
+ [
3229
+ "UnknownRole",
3230
+ "u8"
3231
+ ]
3232
+ ]
3233
+ },
3234
+ "NotConnectedPeer": {
3235
+ "type": "struct",
3236
+ "type_mapping": [
3237
+ [
3238
+ "knownAddresses",
3239
+ "Vec<Text>"
3240
+ ],
3241
+ [
3242
+ "latestPingTime",
3243
+ "Option<PeerPing>"
3244
+ ],
3245
+ [
3246
+ "versionString",
3247
+ "Option<Text>"
3248
+ ]
3249
+ ]
3250
+ },
3251
+ "Peer": {
3252
+ "type": "struct",
3253
+ "type_mapping": [
3254
+ [
3255
+ "enabled",
3256
+ "bool"
3257
+ ],
3258
+ [
3259
+ "endpoint",
3260
+ "PeerEndpoint"
3261
+ ],
3262
+ [
3263
+ "knownAddresses",
3264
+ "Vec<Text>"
3265
+ ],
3266
+ [
3267
+ "latestPingTime",
3268
+ "PeerPing"
3269
+ ],
3270
+ [
3271
+ "open",
3272
+ "bool"
3273
+ ],
3274
+ [
3275
+ "versionString",
3276
+ "Text"
3277
+ ]
3278
+ ]
3279
+ },
3280
+ "PeerEndpoint": {
3281
+ "type": "struct",
3282
+ "type_mapping": [
3283
+ [
3284
+ "listening",
3285
+ "PeerEndpointAddr"
3286
+ ]
3287
+ ]
3288
+ },
3289
+ "PeerEndpointAddr": {
3290
+ "type": "struct",
3291
+ "type_mapping": [
3292
+ [
3293
+ "_alias",
3294
+ {
3295
+ "localAddr": "local_addr",
3296
+ "sendBackAddr": "send_back_addr"
3297
+ }
3298
+ ],
3299
+ [
3300
+ "localAddr",
3301
+ "Text"
3302
+ ],
3303
+ [
3304
+ "sendBackAddr",
3305
+ "Text"
3306
+ ]
3307
+ ]
3308
+ },
3309
+ "PeerPing": {
3310
+ "type": "struct",
3311
+ "type_mapping": [
3312
+ [
3313
+ "nanos",
3314
+ "u64"
3315
+ ],
3316
+ [
3317
+ "secs",
3318
+ "u64"
3319
+ ]
3320
+ ]
3321
+ },
3322
+ "PeerInfo": {
3323
+ "type": "struct",
3324
+ "type_mapping": [
3325
+ [
3326
+ "peerId",
3327
+ "Text"
3328
+ ],
3329
+ [
3330
+ "roles",
3331
+ "Text"
3332
+ ],
3333
+ [
3334
+ "protocolVersion",
3335
+ "u32"
3336
+ ],
3337
+ [
3338
+ "bestHash",
3339
+ "Hash"
3340
+ ],
3341
+ [
3342
+ "bestNumber",
3343
+ "BlockNumber"
3344
+ ]
3345
+ ]
3346
+ },
3347
+ "TransactionValidityError": {
3348
+ "type": "enum",
3349
+ "type_mapping": [
3350
+ [
3351
+ "Invalid",
3352
+ "InvalidTransaction"
3353
+ ],
3354
+ [
3355
+ "Unknown",
3356
+ "UnknownTransaction"
3357
+ ]
3358
+ ]
3359
+ },
3360
+ "UnknownTransaction": {
3361
+ "type": "enum",
3362
+ "type_mapping": [
3363
+ [
3364
+ "CannotLookup",
3365
+ "Null"
3366
+ ],
3367
+ [
3368
+ "NoUnsignedValidator",
3369
+ "Null"
3370
+ ],
3371
+ [
3372
+ "Custom",
3373
+ "u8"
3374
+ ]
3375
+ ]
3376
+ },
3377
+ "WeightToFeeCoefficient": {
3378
+ "type": "struct",
3379
+ "type_mapping": [
3380
+ [
3381
+ "coeffInteger",
3382
+ "Balance"
3383
+ ],
3384
+ [
3385
+ "coeffFrac",
3386
+ "Perbill"
3387
+ ],
3388
+ [
3389
+ "negative",
3390
+ "bool"
3391
+ ],
3392
+ [
3393
+ "degree",
3394
+ "u8"
3395
+ ]
3396
+ ]
3397
+ },
3398
+ "EraIndex": "u32",
3399
+ "EraRewards": {
3400
+ "type": "struct",
3401
+ "type_mapping": [
3402
+ [
3403
+ "total",
3404
+ "u32"
3405
+ ],
3406
+ [
3407
+ "rewards",
3408
+ "Vec<u32>"
3409
+ ]
3410
+ ]
3411
+ },
3412
+ "Exposure": {
3413
+ "type": "struct",
3414
+ "type_mapping": [
3415
+ [
3416
+ "total",
3417
+ "Compact<Balance>"
3418
+ ],
3419
+ [
3420
+ "own",
3421
+ "Compact<Balance>"
3422
+ ],
3423
+ [
3424
+ "others",
3425
+ "Vec<IndividualExposure>"
3426
+ ]
3427
+ ]
3428
+ },
3429
+ "IndividualExposure": {
3430
+ "type": "struct",
3431
+ "type_mapping": [
3432
+ [
3433
+ "who",
3434
+ "AccountId"
3435
+ ],
3436
+ [
3437
+ "value",
3438
+ "Compact<Balance>"
3439
+ ]
3440
+ ]
3441
+ },
3442
+ "KeyType": "AccountId",
3443
+ "Points": "u32",
3444
+ "SlashJournalEntry": {
3445
+ "type": "struct",
3446
+ "type_mapping": [
3447
+ [
3448
+ "who",
3449
+ "AccountId"
3450
+ ],
3451
+ [
3452
+ "amount",
3453
+ "Balance"
3454
+ ],
3455
+ [
3456
+ "ownSlash",
3457
+ "Balance"
3458
+ ]
3459
+ ]
3460
+ },
3461
+ "SlashingSpansTo204": {
3462
+ "type": "struct",
3463
+ "type_mapping": [
3464
+ [
3465
+ "spanIndex",
3466
+ "SpanIndex"
3467
+ ],
3468
+ [
3469
+ "lastStart",
3470
+ "EraIndex"
3471
+ ],
3472
+ [
3473
+ "prior",
3474
+ "Vec<EraIndex>"
3475
+ ]
3476
+ ]
3477
+ },
3478
+ "StakingLedgerTo223": {
3479
+ "type": "struct",
3480
+ "type_mapping": [
3481
+ [
3482
+ "stash",
3483
+ "AccountId"
3484
+ ],
3485
+ [
3486
+ "total",
3487
+ "Compact<Balance>"
3488
+ ],
3489
+ [
3490
+ "active",
3491
+ "Compact<Balance>"
3492
+ ],
3493
+ [
3494
+ "unlocking",
3495
+ "Vec<UnlockChunk>"
3496
+ ]
3497
+ ]
3498
+ },
3499
+ "StakingLedgerTo240": {
3500
+ "type": "struct",
3501
+ "type_mapping": [
3502
+ [
3503
+ "stash",
3504
+ "AccountId"
3505
+ ],
3506
+ [
3507
+ "total",
3508
+ "Compact<Balance>"
3509
+ ],
3510
+ [
3511
+ "active",
3512
+ "Compact<Balance>"
3513
+ ],
3514
+ [
3515
+ "unlocking",
3516
+ "Vec<UnlockChunk>"
3517
+ ],
3518
+ [
3519
+ "lastReward",
3520
+ "Option<EraIndex>"
3521
+ ]
3522
+ ]
3523
+ },
3524
+ "StakingLedger": {
3525
+ "type": "struct",
3526
+ "type_mapping": [
3527
+ [
3528
+ "stash",
3529
+ "AccountId"
3530
+ ],
3531
+ [
3532
+ "total",
3533
+ "Compact<Balance>"
3534
+ ],
3535
+ [
3536
+ "active",
3537
+ "Compact<Balance>"
3538
+ ],
3539
+ [
3540
+ "unlocking",
3541
+ "Vec<UnlockChunk>"
3542
+ ],
3543
+ [
3544
+ "claimedRewards",
3545
+ "Vec<EraIndex>"
3546
+ ]
3547
+ ]
3548
+ },
3549
+ "UnappliedSlash": {
3550
+ "type": "struct",
3551
+ "type_mapping": [
3552
+ [
3553
+ "validator",
3554
+ "AccountId"
3555
+ ],
3556
+ [
3557
+ "own",
3558
+ "Balance"
3559
+ ],
3560
+ [
3561
+ "others",
3562
+ "Vec<UnappliedSlashOther>"
3563
+ ],
3564
+ [
3565
+ "reporters",
3566
+ "Vec<AccountId>"
3567
+ ],
3568
+ [
3569
+ "payout",
3570
+ "Balance"
3571
+ ]
3572
+ ]
3573
+ },
3574
+ "UnlockChunk": {
3575
+ "type": "struct",
3576
+ "type_mapping": [
3577
+ [
3578
+ "value",
3579
+ "Compact<Balance>"
3580
+ ],
3581
+ [
3582
+ "era",
3583
+ "Compact<BlockNumber>"
3584
+ ]
3585
+ ]
3586
+ },
3587
+ "ValidatorPrefsTo196": {
3588
+ "type": "struct",
3589
+ "type_mapping": [
3590
+ [
3591
+ "validatorPayment",
3592
+ "Compact<Balance>"
3593
+ ]
3594
+ ]
3595
+ },
3596
+ "ValidatorPrefsTo145": {
3597
+ "type": "struct",
3598
+ "type_mapping": [
3599
+ [
3600
+ "unstakeThreshold",
3601
+ "Compact<u32>"
3602
+ ],
3603
+ [
3604
+ "validatorPayment",
3605
+ "Compact<Balance>"
3606
+ ]
3607
+ ]
3608
+ },
3609
+ "BalanceLockTo212": {
3610
+ "type": "struct",
3611
+ "type_mapping": [
3612
+ [
3613
+ "id",
3614
+ "LockIdentifier"
3615
+ ],
3616
+ [
3617
+ "amount",
3618
+ "Balance"
3619
+ ],
3620
+ [
3621
+ "until",
3622
+ "BlockNumber"
3623
+ ],
3624
+ [
3625
+ "reasons",
3626
+ "WithdrawReasons"
3627
+ ]
3628
+ ]
3629
+ },
3630
+ "VestingSchedule": {
3631
+ "type": "struct",
3632
+ "type_mapping": [
3633
+ [
3634
+ "offset",
3635
+ "Balance"
3636
+ ],
3637
+ [
3638
+ "perBlock",
3639
+ "Balance"
3640
+ ],
3641
+ [
3642
+ "startingBlock",
3643
+ "BlockNumber"
3644
+ ]
3645
+ ]
3646
+ },
3647
+ "Account": {
3648
+ "type": "struct",
3649
+ "type_mapping": [
3650
+ [
3651
+ "nonce",
3652
+ "U256"
3653
+ ],
3654
+ [
3655
+ "balance",
3656
+ "U256"
3657
+ ]
3658
+ ]
3659
+ },
3660
+ "Log": {
3661
+ "type": "struct",
3662
+ "type_mapping": [
3663
+ [
3664
+ "address",
3665
+ "H160"
3666
+ ],
3667
+ [
3668
+ "topics",
3669
+ "Vec<H256>"
3670
+ ],
3671
+ [
3672
+ "data",
3673
+ "Bytes"
3674
+ ]
3675
+ ]
3676
+ },
3677
+ "Vicinity": {
3678
+ "type": "struct",
3679
+ "type_mapping": [
3680
+ [
3681
+ "gasPrice",
3682
+ "U256"
3683
+ ],
3684
+ [
3685
+ "origin",
3686
+ "H160"
3687
+ ]
3688
+ ]
3689
+ },
3690
+ "StorageKind": {
3691
+ "type": "enum",
3692
+ "value_list": [
3693
+ "__UNUSED",
3694
+ "PERSISTENT",
3695
+ "LOCAL"
3696
+ ]
3697
+ },
3698
+ "OpenTipTo225": {
3699
+ "type": "struct",
3700
+ "type_mapping": [
3701
+ [
3702
+ "reason",
3703
+ "Hash"
3704
+ ],
3705
+ [
3706
+ "who",
3707
+ "AccountId"
3708
+ ],
3709
+ [
3710
+ "finder",
3711
+ "Option<OpenTipFinderTo225>"
3712
+ ],
3713
+ [
3714
+ "closes",
3715
+ "Option<BlockNumber>"
3716
+ ],
3717
+ [
3718
+ "tips",
3719
+ "Vec<OpenTipTip>"
3720
+ ]
3721
+ ]
3722
+ },
3723
+ "OpenTipFinderTo225": "(AccountId, Balance)",
3724
+ "TreasuryProposal": {
3725
+ "type": "struct",
3726
+ "type_mapping": [
3727
+ [
3728
+ "proposer",
3729
+ "AccountId"
3730
+ ],
3731
+ [
3732
+ "value",
3733
+ "Balance"
3734
+ ],
3735
+ [
3736
+ "beneficiary",
3737
+ "AccountId"
3738
+ ],
3739
+ [
3740
+ "bond",
3741
+ "Balance"
3742
+ ]
3743
+ ]
3744
+ },
3745
+ "BabeAuthorityWeight": "u64",
3746
+ "BabeBlockWeight": "u32",
3747
+ "equivocationproof<header>": "BabeEquivocationProof",
3748
+ "BabeEquivocationProof": {
3749
+ "type": "struct",
3750
+ "type_mapping": [
3751
+ [
3752
+ "offender",
3753
+ "AuthorityId"
3754
+ ],
3755
+ [
3756
+ "slotNumber",
3757
+ "SlotNumber"
3758
+ ],
3759
+ [
3760
+ "firstHeader",
3761
+ "Header"
3762
+ ],
3763
+ [
3764
+ "secondHeader",
3765
+ "Header"
3766
+ ]
3767
+ ]
3768
+ },
3769
+ "BabeWeight": "u64",
3770
+ "EpochAuthorship": {
3771
+ "type": "struct",
3772
+ "type_mapping": [
3773
+ [
3774
+ "primary",
3775
+ "Vec<u64>"
3776
+ ],
3777
+ [
3778
+ "secondary",
3779
+ "Vec<u64>"
3780
+ ]
3781
+ ]
3782
+ },
3783
+ "RawBabePreDigestTo159": {
3784
+ "type": "enum",
3785
+ "type_mapping": [
3786
+ [
3787
+ "Primary",
3788
+ "RawBabePreDigestPrimaryTo159"
3789
+ ],
3790
+ [
3791
+ "Secondary",
3792
+ "RawBabePreDigestSecondaryTo159"
3793
+ ]
3794
+ ]
3795
+ },
3796
+ "RawBabePreDigestPrimaryTo159": {
3797
+ "type": "struct",
3798
+ "type_mapping": [
3799
+ [
3800
+ "authorityIndex",
3801
+ "u32"
3802
+ ],
3803
+ [
3804
+ "slotNumber",
3805
+ "SlotNumber"
3806
+ ],
3807
+ [
3808
+ "weight",
3809
+ "BabeBlockWeight"
3810
+ ],
3811
+ [
3812
+ "vrfOutput",
3813
+ "VrfOutput"
3814
+ ],
3815
+ [
3816
+ "vrfProof",
3817
+ "VrfProof"
3818
+ ]
3819
+ ]
3820
+ },
3821
+ "RawBabePreDigestSecondaryTo159": {
3822
+ "type": "struct",
3823
+ "type_mapping": [
3824
+ [
3825
+ "authorityIndex",
3826
+ "u32"
3827
+ ],
3828
+ [
3829
+ "slotNumber",
3830
+ "SlotNumber"
3831
+ ],
3832
+ [
3833
+ "weight",
3834
+ "BabeBlockWeight"
3835
+ ]
3836
+ ]
3837
+ },
3838
+ "RawBabePreDigestCompat": {
3839
+ "type": "enum",
3840
+ "type_mapping": [
3841
+ [
3842
+ "Zero",
3843
+ "u32"
3844
+ ],
3845
+ [
3846
+ "One",
3847
+ "u32"
3848
+ ],
3849
+ [
3850
+ "Two",
3851
+ "u32"
3852
+ ],
3853
+ [
3854
+ "Three",
3855
+ "u32"
3856
+ ]
3857
+ ]
3858
+ },
3859
+ "VrfOutput": "[u8; 32]",
3860
+ "RpcMethods": {
3861
+ "type": "struct",
3862
+ "type_mapping": [
3863
+ [
3864
+ "version",
3865
+ "u32"
3866
+ ],
3867
+ [
3868
+ "methods",
3869
+ "Vec<Text>"
3870
+ ]
3871
+ ]
3872
+ },
3873
+ "CreatedBlock": {
3874
+ "type": "struct",
3875
+ "type_mapping": [
3876
+ [
3877
+ "hash",
3878
+ "BlockHash"
3879
+ ],
3880
+ [
3881
+ "aux",
3882
+ "ImportedAux"
3883
+ ]
3884
+ ]
3885
+ },
3886
+ "ImportedAux": {
3887
+ "type": "struct",
3888
+ "type_mapping": [
3889
+ [
3890
+ "headerOnly",
3891
+ "bool"
3892
+ ],
3893
+ [
3894
+ "clearJustificationRequests",
3895
+ "bool"
3896
+ ],
3897
+ [
3898
+ "needsJustification",
3899
+ "bool"
3900
+ ],
3901
+ [
3902
+ "badJustification",
3903
+ "bool"
3904
+ ],
3905
+ [
3906
+ "needsFinalityProof",
3907
+ "bool"
3908
+ ],
3909
+ [
3910
+ "isNewBest",
3911
+ "bool"
3912
+ ]
3913
+ ]
3914
+ },
3915
+ "Conviction": {
3916
+ "type": "enum",
3917
+ "value_list": [
3918
+ "None",
3919
+ "Locked1x",
3920
+ "Locked2x",
3921
+ "Locked3x",
3922
+ "Locked4x",
3923
+ "Locked5x",
3924
+ "Locked6x"
3925
+ ]
3926
+ },
3927
+ "PropIndex": "u32",
3928
+ "Proposal": "Call",
3929
+ "ReferendumIndex": "u32",
3930
+ "ReferendumInfoTo239": {
3931
+ "type": "struct",
3932
+ "type_mapping": [
3933
+ [
3934
+ "end",
3935
+ "BlockNumber"
3936
+ ],
3937
+ [
3938
+ "proposalHash",
3939
+ "Hash"
3940
+ ],
3941
+ [
3942
+ "threshold",
3943
+ "VoteThreshold"
3944
+ ],
3945
+ [
3946
+ "delay",
3947
+ "BlockNumber"
3948
+ ]
3949
+ ]
3950
+ },
3951
+ "ApprovalFlag": "u32",
3952
+ "SetIndex": "u32",
3953
+ "Vote": "GenericVote",
3954
+ "VoteIndex": "u32",
3955
+ "VoterInfo": {
3956
+ "type": "struct",
3957
+ "type_mapping": [
3958
+ [
3959
+ "lastActive",
3960
+ "VoteIndex"
3961
+ ],
3962
+ [
3963
+ "lastWin",
3964
+ "VoteIndex"
3965
+ ],
3966
+ [
3967
+ "pot",
3968
+ "Balance"
3969
+ ],
3970
+ [
3971
+ "stake",
3972
+ "Balance"
3973
+ ]
3974
+ ]
3975
+ },
3976
+ "VoteThreshold": {
3977
+ "type": "enum",
3978
+ "value_list": [
3979
+ "Super majority approval",
3980
+ "Super majority rejection",
3981
+ "Simple majority"
3982
+ ]
3983
+ },
3984
+ "EthereumAddress": "H160",
3985
+ "AbridgedCandidateReceipt": {
3986
+ "type": "struct",
3987
+ "type_mapping": [
3988
+ [
3989
+ "parachainIndex",
3990
+ "ParaId"
3991
+ ],
3992
+ [
3993
+ "relayParent",
3994
+ "Hash"
3995
+ ],
3996
+ [
3997
+ "headData",
3998
+ "HeadData"
3999
+ ],
4000
+ [
4001
+ "collator",
4002
+ "CollatorId"
4003
+ ],
4004
+ [
4005
+ "signature",
4006
+ "CollatorSignature"
4007
+ ],
4008
+ [
4009
+ "povBlockHash",
4010
+ "Hash"
4011
+ ],
4012
+ [
4013
+ "commitments",
4014
+ "CandidateCommitments"
4015
+ ]
4016
+ ]
4017
+ },
4018
+ "Bidder": {
4019
+ "type": "enum",
4020
+ "type_mapping": [
4021
+ [
4022
+ "New",
4023
+ "NewBidder"
4024
+ ],
4025
+ [
4026
+ "Existing",
4027
+ "ParaId"
4028
+ ]
4029
+ ]
4030
+ },
4031
+ "CandidateCommitments": {
4032
+ "type": "struct",
4033
+ "type_mapping": [
4034
+ [
4035
+ "fees",
4036
+ "Balance"
4037
+ ],
4038
+ [
4039
+ "upwardMessages",
4040
+ "Vec<UpwardMessage>"
4041
+ ],
4042
+ [
4043
+ "erasureRoot",
4044
+ "Hash"
4045
+ ],
4046
+ [
4047
+ "newValidationCode",
4048
+ "Option<ValidationCode>"
4049
+ ],
4050
+ [
4051
+ "processedDownwardMessages",
4052
+ "u32"
4053
+ ]
4054
+ ]
4055
+ },
4056
+ "DownwardMessage": {
4057
+ "type": "enum",
4058
+ "type_mapping": [
4059
+ [
4060
+ "TransferInto",
4061
+ "(AccountId, Balance, Remark)"
4062
+ ],
4063
+ [
4064
+ "Opaque",
4065
+ "Vec<u8>"
4066
+ ]
4067
+ ]
4068
+ },
4069
+ "GlobalValidationSchedule": {
4070
+ "type": "struct",
4071
+ "type_mapping": [
4072
+ [
4073
+ "maxCodeSize",
4074
+ "u32"
4075
+ ],
4076
+ [
4077
+ "maxHeadDataSize",
4078
+ "u32"
4079
+ ],
4080
+ [
4081
+ "blockNumber",
4082
+ "BlockNumber"
4083
+ ]
4084
+ ]
4085
+ },
4086
+ "HeadData": "Bytes",
4087
+ "LocalValidationData": {
4088
+ "type": "struct",
4089
+ "type_mapping": [
4090
+ [
4091
+ "parentHead",
4092
+ "HeadData"
4093
+ ],
4094
+ [
4095
+ "balance",
4096
+ "Balance"
4097
+ ],
4098
+ [
4099
+ "codeUpgradeAllowed",
4100
+ "Option<BlockNumber>"
4101
+ ]
4102
+ ]
4103
+ },
4104
+ "ParachainDispatchOrigin": {
4105
+ "type": "enum",
4106
+ "value_list": [
4107
+ "Signed",
4108
+ "Parachain",
4109
+ "Root"
4110
+ ]
4111
+ },
4112
+ "RelayChainBlockNumber": "BlockNumber",
4113
+ "Remark": "[u8; 32]",
4114
+ "Retriable": {
4115
+ "type": "enum",
4116
+ "type_mapping": [
4117
+ [
4118
+ "Never",
4119
+ "Null"
4120
+ ],
4121
+ [
4122
+ "WithRetries",
4123
+ "u32"
4124
+ ]
4125
+ ]
4126
+ },
4127
+ "Scheduling": {
4128
+ "type": "enum",
4129
+ "value_list": [
4130
+ "Always",
4131
+ "Dynamic"
4132
+ ]
4133
+ },
4134
+ "UpwardMessage": {
4135
+ "type": "struct",
4136
+ "type_mapping": [
4137
+ [
4138
+ "origin",
4139
+ "ParachainDispatchOrigin"
4140
+ ],
4141
+ [
4142
+ "data",
4143
+ "Vec<u8>"
4144
+ ]
4145
+ ]
4146
+ },
4147
+ "AssetOptions": {
4148
+ "type": "struct",
4149
+ "type_mapping": [
4150
+ [
4151
+ "initalIssuance",
4152
+ "Compact<Balance>"
4153
+ ],
4154
+ [
4155
+ "permissions",
4156
+ "PermissionLatest"
4157
+ ]
4158
+ ]
4159
+ },
4160
+ "Owner": {
4161
+ "type": "enum",
4162
+ "type_mapping": [
4163
+ [
4164
+ "None",
4165
+ "Null"
4166
+ ],
4167
+ [
4168
+ "Address",
4169
+ "AccountId"
4170
+ ]
4171
+ ]
4172
+ },
4173
+ "PermissionsV1": {
4174
+ "type": "struct",
4175
+ "type_mapping": [
4176
+ [
4177
+ "update",
4178
+ "Owner"
4179
+ ],
4180
+ [
4181
+ "mint",
4182
+ "Owner"
4183
+ ],
4184
+ [
4185
+ "burn",
4186
+ "Owner"
4187
+ ]
4188
+ ]
4189
+ },
4190
+ "PermissionVersions": {
4191
+ "type": "enum",
4192
+ "type_mapping": [
4193
+ [
4194
+ "V1",
4195
+ "PermissionsV1"
4196
+ ]
4197
+ ]
4198
+ },
4199
+ "PermissionLatest": "PermissionsV1",
4200
+ "Approvals": "[bool; 4]",
4201
+ "ContractExecResultSuccessTo255": {
4202
+ "type": "struct",
4203
+ "type_mapping": [
4204
+ [
4205
+ "status",
4206
+ "u8"
4207
+ ],
4208
+ [
4209
+ "data",
4210
+ "Raw"
4211
+ ]
4212
+ ]
4213
+ },
4214
+ "ContractExecResultTo255": {
4215
+ "type": "enum",
4216
+ "type_mapping": [
4217
+ [
4218
+ "Success",
4219
+ "ContractExecResultSuccessTo255"
4220
+ ],
4221
+ [
4222
+ "Error",
4223
+ "Null"
4224
+ ]
4225
+ ]
4226
+ },
4227
+ "AccountStatus": {
4228
+ "type": "struct",
4229
+ "type_mapping": [
4230
+ [
4231
+ "validity",
4232
+ "AccountValidity"
4233
+ ],
4234
+ [
4235
+ "freeBalance",
4236
+ "Balance"
4237
+ ],
4238
+ [
4239
+ "lockedBalance",
4240
+ "Balance"
4241
+ ],
4242
+ [
4243
+ "signature",
4244
+ "Vec<u8>"
4245
+ ],
4246
+ [
4247
+ "vat",
4248
+ "Permill"
4249
+ ]
4250
+ ]
4251
+ },
4252
+ "AccountValidity": {
4253
+ "type": "enum",
4254
+ "value_list": [
4255
+ "Invalid",
4256
+ "Initiated",
4257
+ "Pending",
4258
+ "ValidLow",
4259
+ "ValidHigh",
4260
+ "Completed"
989
4261
  ]
990
4262
  }
991
4263
  }