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

18 lines
420 B
TypeScript
Raw Normal View History

2019-02-10 20:03:38 +01:00
import * as HDWalletProvider from "truffle-hdwallet-provider"
import { Config } from "../src"
import * as configJson from "./config/config.json"
if (process.env.SEED_WORDS) {
const seedphrase = process.env.SEED_WORDS
// @ts-ignore
configJson.web3Provider = new HDWalletProvider(
seedphrase,
configJson.nodeUri,
0,
2019-03-01 13:24:04 +01:00
5,
2019-02-10 20:03:38 +01:00
)
}
2019-03-01 13:24:04 +01:00
export const config: Config = configJson as any