Exemple #1
0
 public async Task <MarketChartByContract> GetMarketChartByContract(string id,
                                                                    string contractAddress, string vsCurrency, string days)
 {
     return(await GetAsync <MarketChartByContract>(QueryStringService.AppendQueryString(
                                                       ContractApiEndPoints.MarketChartByContractAddress(id, contractAddress), new Dictionary <string, object>
     {
         { "vs_currency", vsCurrency },
         { "days", days }
     }
                                                       )));
 }