1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00
squid-js/test/config.ts

14 lines
433 B
TypeScript
Raw Normal View History

2019-06-20 00:20:09 +02:00
import { Config, LogLevel } from '../src/models/Config'
import { LoggerInstance } from '../src/utils'
LoggerInstance.setLevel(LogLevel.Error)
2018-10-16 14:56:18 +02:00
export default {
2019-06-20 00:20:09 +02:00
aquariusUri: 'http://localhost:5000',
2019-10-31 11:23:41 +01:00
brizoUri: 'http://localhost:8030',
2019-01-11 11:17:42 +01:00
nodeUri: `http://localhost:${process.env.ETH_PORT || 8545}`,
2019-06-20 00:20:09 +02:00
parityUri: 'http://localhost:9545',
secretStoreUri: 'http://localhost:12001',
verbose: LogLevel.Error
2018-10-16 14:56:18 +02:00
} as Config