Releases: dougdellolio/coinbasepro-csharp
Releases · dougdellolio/coinbasepro-csharp
Release list
v1.0.51
- Expose missing
IProfilesServiceandILimitsServicefromICoinbaseProClient(@fooberichu150) - Fix incorrectly named StablecoinConversion properties when requesting conversions
v1.0.50
- Removed
ProductTypeandCurrencyenums 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 callingProductsService.GetAllProductsAsync()orCurrenciesService.GetAllCurrenciesAsync()- Before:
await coinbaseProClient.ProductsService.GetProductOrderBookAsync(ProductType.BtcUsd)
- After:
await coinbaseProClient.ProductsService.GetProductOrderBookAsync("BTC-USD")
v1.0.49
- Added product pair/currency support for the following:
- Cardano (ADA) - ADA-USD, ADA-BTC, ADA-EUR, ADA-GBP
v1.0.48
- Updated
Depositdetail fields to match API models - Added the ability to get single currency by Id
GetCurrencyByIdAsync(Currency currency)to theCurrenciesService - 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
Statuschannel to the Websocket feed (https://docs.pro.coinbase.com/#the-status-channel)
v1.0.47
- Updated
Matchobject properties to match API (@nicbavetta)
v1.0.46
- Fixed ability to call service methods without authenticator for public APIs
- Added new
LimitsServicetoCoinbaseProClient
v1.0.45
- Added ability to specify time component when requesting Deposits and Withdrawals
- Updated README to include
ChangeChannelsfunctionality onWebsocketobject
v1.0.44
- Added
FeeandSubtotalfields to the Transfer model in theWithdrawalsService - Added
LastandVolume_30DaytoProductsStatsresponse in theProductsService - Added missing
IFeesServiceto theICoinbaseProClient - Changed
CoinbaseWithdrawalIdfromGuidtostringto fix Json Deserialization errors
v1.0.43
- Added the following functionality to the DepositsService
- GetAllDeposits(profileId, before, after, limit)
- GetDepositById(transferId)
- GenerateCryptoDepositAddressAsync(string coinbaseAccountId)
v1.0.42
- 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