using Nethereum.Hex.HexTypes; namespace Nethereum.RPC.Eth.DTOs { /// /// Object - The transaction object /// public class SyncingOutput { /// /// Is it syncing? /// public bool IsSyncing { get; set; } /// /// StartingBlock: QUANTITY - The block at which the import started (will only be reset, after the sync reached his /// head) /// public HexBigInteger StartingBlock { get; set; } /// /// CurrentBlock: QUANTITY - The current block, same as eth_blockNumber /// public HexBigInteger CurrentBlock { get; set; } /// /// HighestBlock: QUANTITY - The estimated highest block /// public HexBigInteger HighestBlock { get; set; } } }