mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-07 07:56:12 +00:00
Added support for IOptions injection, allowing options to be read from IConfiguration Small refactor on client options internals Updated HttpClient to be static field to be
26 lines
455 B
JSON
26 lines
455 B
JSON
{
|
|
"ExchangeApiOptions": {
|
|
"ApiCredentials": {
|
|
"Key": "APIKEY",
|
|
"Secret": "SECRET"
|
|
},
|
|
"Environment": {
|
|
"name": "live"
|
|
},
|
|
"Rest":{
|
|
"RequestTimeout": "00:00:20",
|
|
"CachingEnabled": true,
|
|
"OutputOriginalData": true,
|
|
"Proxy": {
|
|
"Host": "https://127.0.0.1",
|
|
"Port": 8080,
|
|
"Login": "User",
|
|
"Password": "Pass"
|
|
}
|
|
},
|
|
"Socket":{
|
|
"RequestTimeout": "00:00:05",
|
|
"SocketSubscriptionsCombineTarget": 15
|
|
}
|
|
}
|
|
} |