Skip to content

v1.0.50

Compare
Choose a tag to compare
@dougdellolio dougdellolio released this 25 Mar 13:04
· 5 commits to master since this release
  • Removed ProductType and Currency enums in favor of user supplied product pair strings. This will allow the user to take advantage of newly added currencies immediately without having to update their packages. The full list of available pairs and currencies can be found by calling ProductsService.GetAllProductsAsync() or CurrenciesService.GetAllCurrenciesAsync()
    • Before:
     await coinbaseProClient.ProductsService.GetProductOrderBookAsync(ProductType.BtcUsd)
    • After:
     await coinbaseProClient.ProductsService.GetProductOrderBookAsync("BTC-USD")