Exemple #1
0
 public async Task <MarketChartRangeByContract> GetMarketChartRangeByContract(string id, string contractAddress, string vsCurrency, string @from, string to)
 {
     return(await GetAsync <MarketChartRangeByContract>(QueryStringService.AppendQueryString(
                                                            ContractApiEndPoints.MarketChartRangeByContractAddress(id, contractAddress), new Dictionary <string, object>
     {
         { "vs_currency", vsCurrency },
         { "from", from },
         { "to", to },
     }
                                                            )));
 }