/// <summary> /// Gets account delegates fee from a given address asynchronously. /// </summary> /// <returns>AccountDelegatesFeeResponse with delegates fee</returns> public async Task<FeeResponse> GetAccountDelegatesFeeAsync(AccountRequest acc) { _url.Path = Constants.ApiGetAccountDelegatesFee; _url.Query = acc.ToQuery(); var response = await _client.GetJsonAsync<FeeResponse>(_url.ToString()); ResetPath(); return response; }