@@ -61,11 +61,18 @@ export class FctAttestationCorrectnessCanonical extends Message<FctAttestationCo
6161 votesMax = 0 ;
6262
6363 /**
64- * The number of actual votes for the block
64+ * The number of votes for the block proposed in the current slot
6565 *
66- * @generated from field: google.protobuf.UInt32Value votes_actual = 18;
66+ * @generated from field: google.protobuf.UInt32Value votes_head = 18;
6767 */
68- votesActual ?: number ;
68+ votesHead ?: number ;
69+
70+ /**
71+ * The number of votes for any blocks proposed in previous slots
72+ *
73+ * @generated from field: google.protobuf.UInt32Value votes_other = 19;
74+ */
75+ votesOther ?: number ;
6976
7077 constructor ( data ?: PartialMessage < FctAttestationCorrectnessCanonical > ) {
7178 super ( ) ;
@@ -82,7 +89,8 @@ export class FctAttestationCorrectnessCanonical extends Message<FctAttestationCo
8289 { no : 15 , name : "epoch_start_date_time" , kind : "scalar" , T : 13 /* ScalarType.UINT32 */ } ,
8390 { no : 16 , name : "block_root" , kind : "message" , T : StringValue } ,
8491 { no : 17 , name : "votes_max" , kind : "scalar" , T : 13 /* ScalarType.UINT32 */ } ,
85- { no : 18 , name : "votes_actual" , kind : "message" , T : UInt32Value } ,
92+ { no : 18 , name : "votes_head" , kind : "message" , T : UInt32Value } ,
93+ { no : 19 , name : "votes_other" , kind : "message" , T : UInt32Value } ,
8694 ] ) ;
8795
8896 static fromBinary ( bytes : Uint8Array , options ?: Partial < BinaryReadOptions > ) : FctAttestationCorrectnessCanonical {
@@ -158,26 +166,33 @@ export class ListFctAttestationCorrectnessCanonicalRequest extends Message<ListF
158166 votesMax ?: UInt32Filter ;
159167
160168 /**
161- * Filter by votes_actual (optional)
169+ * Filter by votes_head (optional)
170+ *
171+ * @generated from field: cbt.NullableUInt32Filter votes_head = 8;
172+ */
173+ votesHead ?: NullableUInt32Filter ;
174+
175+ /**
176+ * Filter by votes_other (optional)
162177 *
163- * @generated from field: cbt.NullableUInt32Filter votes_actual = 8 ;
178+ * @generated from field: cbt.NullableUInt32Filter votes_other = 9 ;
164179 */
165- votesActual ?: NullableUInt32Filter ;
180+ votesOther ?: NullableUInt32Filter ;
166181
167182 /**
168183 * The maximum number of fct_attestation_correctness_canonical to return.
169184 * If unspecified, at most 100 items will be returned.
170- * The maximum value is 1000 ; values above 1000 will be coerced to 1000 .
185+ * The maximum value is 10000 ; values above 10000 will be coerced to 10000 .
171186 *
172- * @generated from field: int32 page_size = 9 ;
187+ * @generated from field: int32 page_size = 10 ;
173188 */
174189 pageSize = 0 ;
175190
176191 /**
177192 * A page token, received from a previous `ListFctAttestationCorrectnessCanonical` call.
178193 * Provide this to retrieve the subsequent page.
179194 *
180- * @generated from field: string page_token = 10 ;
195+ * @generated from field: string page_token = 11 ;
181196 */
182197 pageToken = "" ;
183198
@@ -186,7 +201,7 @@ export class ListFctAttestationCorrectnessCanonicalRequest extends Message<ListF
186201 * Example: "foo,bar" or "foo desc,bar" for descending order on foo.
187202 * If unspecified, results will be returned in the default order.
188203 *
189- * @generated from field: string order_by = 11 ;
204+ * @generated from field: string order_by = 12 ;
190205 */
191206 orderBy = "" ;
192207
@@ -205,10 +220,11 @@ export class ListFctAttestationCorrectnessCanonicalRequest extends Message<ListF
205220 { no : 5 , name : "epoch_start_date_time" , kind : "message" , T : UInt32Filter } ,
206221 { no : 6 , name : "block_root" , kind : "message" , T : NullableStringFilter } ,
207222 { no : 7 , name : "votes_max" , kind : "message" , T : UInt32Filter } ,
208- { no : 8 , name : "votes_actual" , kind : "message" , T : NullableUInt32Filter } ,
209- { no : 9 , name : "page_size" , kind : "scalar" , T : 5 /* ScalarType.INT32 */ } ,
210- { no : 10 , name : "page_token" , kind : "scalar" , T : 9 /* ScalarType.STRING */ } ,
211- { no : 11 , name : "order_by" , kind : "scalar" , T : 9 /* ScalarType.STRING */ } ,
223+ { no : 8 , name : "votes_head" , kind : "message" , T : NullableUInt32Filter } ,
224+ { no : 9 , name : "votes_other" , kind : "message" , T : NullableUInt32Filter } ,
225+ { no : 10 , name : "page_size" , kind : "scalar" , T : 5 /* ScalarType.INT32 */ } ,
226+ { no : 11 , name : "page_token" , kind : "scalar" , T : 9 /* ScalarType.STRING */ } ,
227+ { no : 12 , name : "order_by" , kind : "scalar" , T : 9 /* ScalarType.STRING */ } ,
212228 ] ) ;
213229
214230 static fromBinary ( bytes : Uint8Array , options ?: Partial < BinaryReadOptions > ) : ListFctAttestationCorrectnessCanonicalRequest {
0 commit comments