/// <summary>Poll to see if the the beacon node is syncing.</summary> /// <returns>Request successful</returns> public async Task <Response> SyncingAsync() { Response response = new Response(); response.Is_syncing = await _beaconNode.GetIsSyncingAsync(); response.Sync_status = new SyncingStatus(); //response.Sync_status.Current_slot = return(response); }