mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
17 lines
357 B
TypeScript
17 lines
357 B
TypeScript
|
import * as HDWalletProvider from "truffle-hdwallet-provider"
|
||
|
import Config from "../models/Config"
|
||
|
import * as config from "./config/config.json"
|
||
|
|
||
|
if (false) {
|
||
|
const seedphrase = "xxx"
|
||
|
|
||
|
// @ts-ignore
|
||
|
config.web3Provider = new HDWalletProvider(
|
||
|
seedphrase,
|
||
|
config.nodeUri,
|
||
|
0, 10,
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default config as Config
|