Skip to content

Releases: dougdellolio/coinbasepro-csharp

v1.0.51

Choose a tag to compare

@dougdellolio dougdellolio released this 04 Apr 14:14
  • Expose missing IProfilesService and ILimitsService from ICoinbaseProClient (@fooberichu150)
  • Fix incorrectly named StablecoinConversion properties when requesting conversions

v1.0.50

Choose a tag to compare

@dougdellolio dougdellolio released this 25 Mar 13:04
  • 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

Choose a tag to compare

@dougdellolio dougdellolio released this 18 Mar 12:44
  • Added product pair/currency support for the following:
    • Cardano (ADA) - ADA-USD, ADA-BTC, ADA-EUR, ADA-GBP

v1.0.48

Choose a tag to compare

@dougdellolio dougdellolio released this 11 Mar 15:09
  • 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

Choose a tag to compare

@dougdellolio dougdellolio released this 07 Feb 16:02
  • Updated Match object properties to match API (@nicbavetta)

v1.0.46

Choose a tag to compare

@dougdellolio dougdellolio released this 05 Feb 16:17
  • Fixed ability to call service methods without authenticator for public APIs
  • Added new LimitsService to CoinbaseProClient

v1.0.45

Choose a tag to compare

@dougdellolio dougdellolio released this 04 Feb 14:15
  • Added ability to specify time component when requesting Deposits and Withdrawals
  • Updated README to include ChangeChannels functionality on Websocket object

v1.0.44

Choose a tag to compare

@dougdellolio dougdellolio released this 17 Jan 15:31
  • 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

Choose a tag to compare

@dougdellolio dougdellolio released this 29 Dec 16:03
  • Added the following functionality to the DepositsService
    • GetAllDeposits(profileId, before, after, limit)
    • GetDepositById(transferId)
    • GenerateCryptoDepositAddressAsync(string coinbaseAccountId)

v1.0.42

Choose a tag to compare

@dougdellolio dougdellolio released this 19 Dec 01:38
  • 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