|
434 | 434 | "type_mapping": [
|
435 | 435 | ["value", "Null"],
|
436 | 436 | ["value", "RawBabePreDigestPrimary"],
|
437 |
| - ["value", "RawBabePreDigestSecondary"] |
| 437 | + ["value", "RawBabePreDigestSecondaryPlain"], |
| 438 | + ["value", "RawBabePreDigestSecondaryVRF"] |
438 | 439 | ]
|
439 | 440 | },
|
440 | 441 | "RawBabePreDigestPrimary": {
|
|
446 | 447 | ["vrfProof", "VrfProof"]
|
447 | 448 | ]
|
448 | 449 | },
|
449 |
| - "RawBabePreDigestSecondary": { |
| 450 | + "RawBabePreDigestSecondaryPlain": { |
450 | 451 | "type": "struct",
|
451 | 452 | "type_mapping": [
|
452 | 453 | ["authorityIndex", "u32"],
|
453 | 454 | ["slotNumber", "SlotNumber"]
|
454 | 455 | ]
|
455 | 456 | },
|
| 457 | + "RawBabePreDigestSecondaryVRF": { |
| 458 | + "type": "struct", |
| 459 | + "type_mapping": [ |
| 460 | + ["authorityIndex", "u32"], |
| 461 | + ["slotNumber", "SlotNumber"], |
| 462 | + ["vrfOutput", "VrfData"], |
| 463 | + ["vrfProof", "VrfProof"] |
| 464 | + ] |
| 465 | + }, |
456 | 466 | "ReferendumInfo<BlockNumber, Proposal>": {
|
457 | 467 | "type": "struct",
|
458 | 468 | "type_mapping": [
|
|
1017 | 1027 | ["read", "Weight"],
|
1018 | 1028 | ["write", "Weight"]
|
1019 | 1029 | ]
|
| 1030 | + }, |
| 1031 | + "Renouncing": { |
| 1032 | + "type": "enum", |
| 1033 | + "type_mapping": [ |
| 1034 | + ["Member", "Null"], |
| 1035 | + ["RunnerUp", "Null"], |
| 1036 | + ["Candidate", "Compact<u32>"] |
| 1037 | + ] |
| 1038 | + }, |
| 1039 | + "ExtrinsicsWeight": { |
| 1040 | + "type": "struct", |
| 1041 | + "type_mapping": [ |
| 1042 | + ["normal", "Weight"], |
| 1043 | + ["operational", "Weight"] |
| 1044 | + ] |
| 1045 | + }, |
| 1046 | + "ValidatorCount": "u32", |
| 1047 | + "KeyOwnerProof": { |
| 1048 | + "type": "struct", |
| 1049 | + "type_mapping": [ |
| 1050 | + ["session", "SessionIndex"], |
| 1051 | + ["trieNodes", "Vec<Bytes>"], |
| 1052 | + ["validatorCount", "ValidatorCount"] |
| 1053 | + ] |
| 1054 | + }, |
| 1055 | + "DefunctVoter": { |
| 1056 | + "type": "struct", |
| 1057 | + "type_mapping": [ |
| 1058 | + ["who", "AccountId"], |
| 1059 | + ["voteCount", "Compact<u32>"], |
| 1060 | + ["candidateCount", "Compact<u32>"] |
| 1061 | + ] |
| 1062 | + }, |
| 1063 | + "ElectionSize": { |
| 1064 | + "type": "struct", |
| 1065 | + "type_mapping": [ |
| 1066 | + ["validators", "ValidatorIndex"], |
| 1067 | + ["nominators", "NominatorIndex"] |
| 1068 | + ] |
| 1069 | + }, |
| 1070 | + "AllowedSlots": { |
| 1071 | + "type": "enum", |
| 1072 | + "value_list": [ |
| 1073 | + "PrimarySlots", |
| 1074 | + "PrimaryAndSecondaryPlainSlots", |
| 1075 | + "PrimaryAndSecondaryVRFSlots" |
| 1076 | + ] |
| 1077 | + }, |
| 1078 | + "NextConfigDescriptorV1": { |
| 1079 | + "type": "struct", |
| 1080 | + "type_mapping": [ |
| 1081 | + ["c", "(u64, u64)"], |
| 1082 | + ["allowedSlots", "AllowedSlots"] |
| 1083 | + ] |
| 1084 | + }, |
| 1085 | + "NextConfigDescriptor": { |
| 1086 | + "type": "enum", |
| 1087 | + "type_mapping": [ |
| 1088 | + ["V0", "Null"], |
| 1089 | + ["V1", "NextConfigDescriptorV1"] |
| 1090 | + ] |
| 1091 | + }, |
| 1092 | + "StatementKind": { |
| 1093 | + "type": "enum", |
| 1094 | + "value_list": [ |
| 1095 | + "Regular", |
| 1096 | + "Saft" |
| 1097 | + ] |
| 1098 | + }, |
| 1099 | + "schedule::Priority": "u8", |
| 1100 | + "GrandpaEquivocation": { |
| 1101 | + "type": "struct", |
| 1102 | + "type_mapping": [ |
| 1103 | + ["roundNumber", "u64"], |
| 1104 | + ["identity", "AuthorityId"], |
| 1105 | + ["first", "(GrandpaPrevote, AuthoritySignature)"], |
| 1106 | + ["second", "(GrandpaPrevote, AuthoritySignature)"] |
| 1107 | + ] |
| 1108 | + }, |
| 1109 | + "GrandpaPrevote": { |
| 1110 | + "type": "struct", |
| 1111 | + "type_mapping": [ |
| 1112 | + ["targetHash", "Hash"], |
| 1113 | + ["targetNumber", "BlockNumber"] |
| 1114 | + ] |
| 1115 | + }, |
| 1116 | + "Equivocation": { |
| 1117 | + "type": "enum", |
| 1118 | + "type_mapping": [ |
| 1119 | + ["Prevote", "GrandpaEquivocation"], |
| 1120 | + ["Precommit", "GrandpaEquivocation"] |
| 1121 | + ] |
| 1122 | + }, |
| 1123 | + "EquivocationProof": { |
| 1124 | + "type": "struct", |
| 1125 | + "type_mapping": [ |
| 1126 | + ["setId", "SetId"], |
| 1127 | + ["equivocation", "Equivocation"] |
| 1128 | + ] |
1020 | 1129 | }
|
1021 | 1130 | }
|
1022 | 1131 | }
|
0 commit comments