binance / binance-connector-dotnet

Lightweight connector for integration with Binance API
MIT License
207 stars 69 forks source link

Documentation: How I can use the repo to find All Coins' Information? #27

Closed zydjohnHotmail closed 2 years ago

zydjohnHotmail commented 2 years ago

Description

Hello: I want to find all coin’s information as described in API document, the HTTP Get URL is like this: GET /sapi/v1/capital/config/getall (HMAC SHA256)

But I can’t find any code example on how to get the information. I can use NUGET Binance.Spot Version 1.8.0 package to get account balance, since there is some code example.

But how I can do this with the repo? Please provide some code examples (C# on Windows 10) Thanks,

2pd commented 2 years ago

https://github.com/binance/binance-connector-dotnet/blob/master/Examples/CSharp/Wallet/AllCoinsInformation_Example.cs

zydjohnHotmail commented 2 years ago

Thanks!