@@ -50969,7 +50969,8 @@ public override void Write(EndOfEpochData value, BigEndianStream stream) {
5096950969/// by one at every epoch change.
5097050970/// </param>
5097150971/// <param name="start_timestamp">
50972- /// The epoch's starting timestamp.
50972+ /// The epoch's starting timestamp. RFC3339 in UTC with format:
50973+ /// YYYY-MM-DDTHH:MM:SS.mmmZ
5097350974/// </param>
5097450975/// <param name="fund_inflow">
5097550976/// The storage fees paid for transactions executed during the epoch.
@@ -51002,7 +51003,7 @@ public override void Write(EndOfEpochData value, BigEndianStream stream) {
5100251003/// </param>
5100351004/// <param name="end_timestamp">
5100451005/// The epoch's ending timestamp. Note that this is available only on epochs
51005- /// that have ended.
51006+ /// that have ended. RFC3339 in UTC with format: YYYY-MM-DDTHH:MM:SS.mmmZ
5100651007/// </param>
5100751008/// <param name="system_state_version">
5100851009/// The value of the `version` field of `0x5`, the
@@ -51040,9 +51041,10 @@ public record Epoch (
5104051041 /// </summary>
5104151042 ulong @epochId,
5104251043 /// <summary>
51043- /// The epoch's starting timestamp.
51044+ /// The epoch's starting timestamp. RFC3339 in UTC with format:
51045+ /// YYYY-MM-DDTHH:MM:SS.mmmZ
5104451046 /// </summary>
51045- ulong @startTimestamp,
51047+ string @startTimestamp,
5104651048 /// <summary>
5104751049 /// The storage fees paid for transactions executed during the epoch.
5104851050 /// </summary>
@@ -51081,9 +51083,9 @@ public record Epoch (
5108151083 string? @referenceGasPrice = null,
5108251084 /// <summary>
5108351085 /// The epoch's ending timestamp. Note that this is available only on epochs
51084- /// that have ended.
51086+ /// that have ended. RFC3339 in UTC with format: YYYY-MM-DDTHH:MM:SS.mmmZ
5108551087 /// </summary>
51086- ulong ? @endTimestamp = null,
51088+ string ? @endTimestamp = null,
5108751089 /// <summary>
5108851090 /// The value of the `version` field of `0x5`, the
5108951091 /// `0x3::iota::IotaSystemState` object. This version changes whenever
@@ -51149,8 +51151,8 @@ public override Epoch Read(BigEndianStream stream) {
5114951151 @netInflow: FfiConverterOptionalString.INSTANCE.Read(stream),
5115051152 @protocolConfigs: FfiConverterOptionalTypeProtocolConfigs.INSTANCE.Read(stream),
5115151153 @referenceGasPrice: FfiConverterOptionalString.INSTANCE.Read(stream),
51152- @startTimestamp: FfiConverterUInt64 .INSTANCE.Read(stream),
51153- @endTimestamp: FfiConverterOptionalUInt64 .INSTANCE.Read(stream),
51154+ @startTimestamp: FfiConverterString .INSTANCE.Read(stream),
51155+ @endTimestamp: FfiConverterOptionalString .INSTANCE.Read(stream),
5115451156 @systemStateVersion: FfiConverterOptionalUInt64.INSTANCE.Read(stream),
5115551157 @totalCheckpoints: FfiConverterOptionalUInt64.INSTANCE.Read(stream),
5115651158 @totalGasFees: FfiConverterOptionalString.INSTANCE.Read(stream),
@@ -51170,8 +51172,8 @@ public override int AllocationSize(Epoch value) {
5117051172 + FfiConverterOptionalString.INSTANCE.AllocationSize(value.@netInflow)
5117151173 + FfiConverterOptionalTypeProtocolConfigs.INSTANCE.AllocationSize(value.@protocolConfigs)
5117251174 + FfiConverterOptionalString.INSTANCE.AllocationSize(value.@referenceGasPrice)
51173- + FfiConverterUInt64 .INSTANCE.AllocationSize(value.@startTimestamp)
51174- + FfiConverterOptionalUInt64 .INSTANCE.AllocationSize(value.@endTimestamp)
51175+ + FfiConverterString .INSTANCE.AllocationSize(value.@startTimestamp)
51176+ + FfiConverterOptionalString .INSTANCE.AllocationSize(value.@endTimestamp)
5117551177 + FfiConverterOptionalUInt64.INSTANCE.AllocationSize(value.@systemStateVersion)
5117651178 + FfiConverterOptionalUInt64.INSTANCE.AllocationSize(value.@totalCheckpoints)
5117751179 + FfiConverterOptionalString.INSTANCE.AllocationSize(value.@totalGasFees)
@@ -51189,8 +51191,8 @@ public override void Write(Epoch value, BigEndianStream stream) {
5118951191 FfiConverterOptionalString.INSTANCE.Write(value.@netInflow, stream);
5119051192 FfiConverterOptionalTypeProtocolConfigs.INSTANCE.Write(value.@protocolConfigs, stream);
5119151193 FfiConverterOptionalString.INSTANCE.Write(value.@referenceGasPrice, stream);
51192- FfiConverterUInt64 .INSTANCE.Write(value.@startTimestamp, stream);
51193- FfiConverterOptionalUInt64 .INSTANCE.Write(value.@endTimestamp, stream);
51194+ FfiConverterString .INSTANCE.Write(value.@startTimestamp, stream);
51195+ FfiConverterOptionalString .INSTANCE.Write(value.@endTimestamp, stream);
5119451196 FfiConverterOptionalUInt64.INSTANCE.Write(value.@systemStateVersion, stream);
5119551197 FfiConverterOptionalUInt64.INSTANCE.Write(value.@totalCheckpoints, stream);
5119651198 FfiConverterOptionalString.INSTANCE.Write(value.@totalGasFees, stream);
0 commit comments