mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-09 17:06:19 +00:00
Update README.md
This commit is contained in:
parent
546539fe8f
commit
715fe378d5
10
README.md
10
README.md
@ -130,10 +130,10 @@ Note that when using a file it can provide credentials for multiple exchanges by
|
||||
````
|
||||
// File content:
|
||||
{
|
||||
"binanceKey": "binanceApiKey",
|
||||
"binanceSecret": "binanceApiSecret",
|
||||
"bittrexKey": "bitrexApiKey",
|
||||
"bittrexSecret": "bittrexApiSecret",
|
||||
"binanceKey": "actualBinanceApiKey",
|
||||
"binanceSecret": "actualBinanceApiSecret",
|
||||
"bittrexKey": "actualBittrexApiKey",
|
||||
"bittrexSecret": "actualBittrexApiSecret",
|
||||
}
|
||||
|
||||
// Loading:
|
||||
@ -145,7 +145,7 @@ using (var stream = File.OpenRead("/path/to/credential-file"))
|
||||
});
|
||||
BittrexClient.SetDefaultOptions(new BittrexClientOptions
|
||||
{
|
||||
ApiCredentials = new ApiCredentials(stream, "BittrexKey", "BittrexSecret")
|
||||
ApiCredentials = new ApiCredentials(stream, "bittrexKey", "bittrexSecret")
|
||||
});
|
||||
}
|
||||
````
|
||||
|
Loading…
x
Reference in New Issue
Block a user