Skip to content

Releases: dougdellolio/coinbasepro-csharp

v1.0.51

04 Apr 14:14
Compare
Choose a tag to compare
  • Expose missing IProfilesService and ILimitsService from ICoinbaseProClient (@fooberichu150)
  • Fix incorrectly named StablecoinConversion properties when requesting conversions

v1.0.50

25 Mar 13:04
Compare
Choose a tag to compare
  • 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")

v1.0.49

18 Mar 12:44
Compare
Choose a tag to compare
  • Added product pair/currency support for the following:
    • Cardano (ADA) - ADA-USD, ADA-BTC, ADA-EUR, ADA-GBP

v1.0.48

11 Mar 15:09
Compare
Choose a tag to compare
  • Updated Deposit detail fields to match API models
  • Added the ability to get single currency by Id GetCurrencyByIdAsync(Currency currency) to the CurrenciesService
  • Added product pair/currency support for the following:
    • Polygon (MATIC) - MATIC-USD, MATIC-EUR, MATIC-GBP, MATIC-BTC
    • SKALE (SKL) - SKL-USD, SKL-BTC, SKL-EUR, SKL-GBP
    • SushiSwap (SUSHI) - SUSHI-USD, SUSHI-BTC, SUSHI-EUR, SUSHI-ETH, SUSHI-GBP
  • Added the Status channel to the Websocket feed (https://docs.pro.coinbase.com/#the-status-channel)

v1.0.47

07 Feb 16:02
Compare
Choose a tag to compare
  • Updated Match object properties to match API (@nicbavetta)

v1.0.46

05 Feb 16:17
Compare
Choose a tag to compare
  • Fixed ability to call service methods without authenticator for public APIs
  • Added new LimitsService to CoinbaseProClient

v1.0.45

04 Feb 14:15
Compare
Choose a tag to compare
  • Added ability to specify time component when requesting Deposits and Withdrawals
  • Updated README to include ChangeChannels functionality on Websocket object

v1.0.44

17 Jan 15:31
Compare
Choose a tag to compare
  • Added Fee and Subtotal fields to the Transfer model in the WithdrawalsService
  • Added Last and Volume_30Day to ProductsStats response in the ProductsService
  • Added missing IFeesService to the ICoinbaseProClient
  • Changed CoinbaseWithdrawalId from Guid to string to fix Json Deserialization errors

v1.0.43

29 Dec 16:03
Compare
Choose a tag to compare
  • Added the following functionality to the DepositsService
    • GetAllDeposits(profileId, before, after, limit)
    • GetDepositById(transferId)
    • GenerateCryptoDepositAddressAsync(string coinbaseAccountId)

v1.0.42

19 Dec 01:38
Compare
Choose a tag to compare
  • Added product pair/currency support for the following:
    • The Graph (GRT) - GRT-USD, GRT-BTC, GRT-EUR, GRT-GBP
    • Aave (AAVE) - AAVE-USD, AAVE-BTC, AAVE-EUR, AAVE-GBP
    • Bancor (BNT) - BNT-USD, BNT-BTC, BNT-EUR, BNT-GBP
    • Synthetix (SNX) - SNX-USD, SNX-BTC, SNX-EUR, SNX-GBP
  • Added GetSingleProductAsync(productId) to ProductsService