This repository was archived by the owner on Jul 9, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -3,4 +3,6 @@ export HTTP_RPC_PROVIDER_URL=https://forno.celo.org
3
3
export WS_RPC_PROVIDER_URL = wss://forno.celo.org/ws
4
4
export PRICE_SOURCES = $( cat devPriceSourcesConfig.txt)
5
5
export OVERRIDE_INDEX = 1
6
- export OVERRIDE_ORACLE_COUNT = 3
6
+ export OVERRIDE_ORACLE_COUNT = 3
7
+ export API_KEYS = $( cat devApiKeys.txt)
8
+ export MID_AGGREGATION_MAX_EXCHANGE_VOLUME_SHARE = 1
Original file line number Diff line number Diff line change
1
+ ALPHAVANTAGE:1234567
Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ export abstract class BaseExchangeAdapter {
235
235
agent : this . httpsAgent ,
236
236
follow : 20 , // redirect limit
237
237
// max body size in bytes - usually < 10 KB, except for Binance exchangeInfo endpoint which is ~1.4MB
238
- size : megabytesToBytes ( 8 ) ,
238
+ size : megabytesToBytes ( 16 ) ,
239
239
timeout : this . config . apiRequestTimeout , // resets on redirect
240
240
} )
241
241
} catch ( err ) {
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ export class BittrexAdapter extends BaseExchangeAdapter {
7
7
readonly _exchangeName = Exchange . BITTREX
8
8
// Google Trust Services LLC - validity not after: 30/09/2027, 03:00:42 EEST
9
9
readonly _certFingerprint256 =
10
- '97:D4:20:03:E1:32:55:29:46:09:7F:20:EF:95:5F:5B:1C:D5:70:AA:43:72:D7:80:03:3A:65:EF:BE:69:75:8D '
10
+ '16:37:4D:25:0F:40:9A:75:C3:99:05:C3:3E:9F:FF:7D:6D:2C:5E:88:37:79:58:BC:51:7C:97:44:16:96:F4:E0 '
11
11
12
12
private static readonly tokenSymbolMap = BittrexAdapter . standardTokenSymbolMap
13
13
You can’t perform that action at this time.
0 commit comments