Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Apr 10, 2024
1 parent cc55241 commit 1619ec8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ The library is targeting both `.NET Standard 2.0` and `.NET Standard 2.1` for op
```csharp
// Get the ETH/USDT ticker via rest request
var restClient = new CoinExRestClient();
var tickerResult = await restClient.SpotApiV2.ExchangeData.GetTickerAsync(new [] { "ETHUSDT" });
var lastPrice = tickerResult.Data.Ticker.LastPrice;
var tickerResult = await restClient.SpotApiV2.ExchangeData.GetTickersAsync(new [] { "ETHUSDT" });
var lastPrice = tickerResult.Data.LastPrice;
```

*Websocket streams*
Expand Down

0 comments on commit 1619ec8

Please sign in to comment.