Releases: dougdellolio/coinbasepro-csharp
Releases · dougdellolio/coinbasepro-csharp
v1.0.51
- Expose missing
IProfilesService
andILimitsService
fromICoinbaseProClient
(@fooberichu150) - Fix incorrectly named StablecoinConversion properties when requesting conversions
v1.0.50
- Removed
ProductType
andCurrency
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 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
Deposit
detail 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
Status
channel to the Websocket feed (https://docs.pro.coinbase.com/#the-status-channel)
v1.0.47
- Updated
Match
object properties to match API (@nicbavetta)
v1.0.46
- Fixed ability to call service methods without authenticator for public APIs
- Added new
LimitsService
toCoinbaseProClient
v1.0.45
- Added ability to specify time component when requesting Deposits and Withdrawals
- Updated README to include
ChangeChannels
functionality onWebsocket
object
v1.0.44
- Added
Fee
andSubtotal
fields to the Transfer model in theWithdrawalsService
- Added
Last
andVolume_30Day
toProductsStats
response in theProductsService
- Added missing
IFeesService
to theICoinbaseProClient
- Changed
CoinbaseWithdrawalId
fromGuid
tostring
to 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