mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
14 lines
434 B
TypeScript
14 lines
434 B
TypeScript
import { Config, LogLevel } from "../src/models/Config"
|
|
import { LoggerInstance } from "../src/utils"
|
|
|
|
LoggerInstance.setLevel(LogLevel.Error)
|
|
|
|
export default {
|
|
aquariusUri: "http://localhost:5000",
|
|
brizoUri: "http://localhost:3000",
|
|
nodeUri: `http://localhost:${process.env.ETH_PORT || 8545}`,
|
|
parityUri: "http://localhost:9545",
|
|
secretStoreUri: "http://localhost:12001",
|
|
verbose: LogLevel.Error,
|
|
} as Config
|