1
0
mirror of https://github.com/oceanprotocol/ocean.js.git synced 2024-11-26 20:39:05 +01:00

add configuration script for the tests

This commit is contained in:
Miquel A. Cabot 2022-03-16 13:05:05 +01:00
parent 896211b93f
commit 1a3c20bfbc

30
test/config.ts Normal file
View File

@ -0,0 +1,30 @@
import Web3 from 'web3'
import fs from 'fs'
import { homedir } from 'os'
import {
ConfigHelper,
configHelperNetworks,
LoggerInstance,
LogLevel
} from '../src/utils'
LoggerInstance.setLevel(LogLevel.Error)
// by default, we connect with development network
export const web3 = new Web3(process.env.NODE_URI || configHelperNetworks[1].nodeUri)
export const getTestConfig = async (web3: Web3) => {
return new ConfigHelper().getConfig(await web3.eth.getChainId())
}
export const getAddresses = () => {
const data = JSON.parse(
// eslint-disable-next-line security/detect-non-literal-fs-filename
fs.readFileSync(
process.env.ADDRESS_FILE ||
`${homedir}/.ocean/ocean-contracts/artifacts/address.json`,
'utf8'
)
)
return data.development
}