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
434 B
TypeScript
Raw Normal View History

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 {
2018-10-26 10:40:46 +02:00
aquariusUri: "http://localhost:5000",
2018-11-14 15:44:25 +01:00
brizoUri: "http://localhost:3000",
2019-01-11 11:17:42 +01:00
nodeUri: `http://localhost:${process.env.ETH_PORT || 8545}`,
2018-10-25 17:18:33 +02:00
parityUri: "http://localhost:9545",
2018-11-21 10:44:23 +01:00
secretStoreUri: "http://localhost:12001",
2019-03-07 15:52:40 +01:00
verbose: LogLevel.Error,
2018-10-16 14:56:18 +02:00
} as Config