mirror of
https://github.com/oceanprotocol/ocean.js.git
synced 2024-11-26 20:39:05 +01:00
14 lines
435 B
TypeScript
14 lines
435 B
TypeScript
import { Config } from '../../src/models/Config'
|
|
import { LoggerInstance, LogLevel } from '../../src/utils'
|
|
|
|
LoggerInstance.setLevel(LogLevel.Error)
|
|
|
|
export default {
|
|
metadataCacheUri: 'http://localhost:5000',
|
|
providerUri: 'http://localhost:8030',
|
|
nodeUri: `http://localhost:${process.env.ETH_PORT || 8545}`,
|
|
parityUri: 'http://localhost:9545',
|
|
secretStoreUri: 'http://localhost:12001',
|
|
verbose: LogLevel.Error
|
|
} as Config
|