Skip to content

Coinbase API V2/V3 Updates #818

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,835 changes: 687 additions & 1,148 deletions src/ExchangeSharp/API/Exchanges/Coinbase/ExchangeCoinbaseAPI.cs

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
namespace ExchangeSharp
{
public sealed partial class ExchangeCoinbaseAPI
{
private const string ADVFILL = "advanced_trade_fill";
private const string AMOUNT = "amount";
private const string ASKS = "asks";
private const string BIDS = "bids";
private const string BUY = "BUY";
private const string CURRENCY = "currency";
private const string CURSOR = "cursor";
private const string EVENTS = "events";
private const string LEVEL2 = "level2";
private const string MARKETTRADES = "market_trades";
private const string ORDERID = "order_id";
private const string ORDERS = "orders";
private const string PRICE = "price";
private const string PRICEBOOK = "pricebook";
private const string PRICEBOOKS = "pricebooks";
private const string PRICELEVEL = "price_level";
private const string PRODUCTID = "product_id";
private const string PRODUCTS = "products";
private const string SIDE = "side";
private const string SIZE = "size";
private const string STATUS = "status";
private const string SUBSCRIBE = "subscribe";
private const string TICKER = "ticker";
private const string TIME = "time";
private const string TRADEID = "trade_id";
private const string TRADES = "trades";
private const string TYPE = "type";
private const string VALUE = "value";
}
}
31 changes: 0 additions & 31 deletions src/ExchangeSharp/API/Exchanges/Coinbase/Models/CoinbaseTrade.cs

This file was deleted.

31 changes: 0 additions & 31 deletions src/ExchangeSharp/API/Exchanges/Coinbase/Models/Request/Channel.cs

This file was deleted.

This file was deleted.

29 changes: 0 additions & 29 deletions src/ExchangeSharp/API/Exchanges/Coinbase/Models/Response/Level2.cs

This file was deleted.

Loading