mirror of
https://github.com/cerc-io/watcher-ts
synced 2025-01-24 12:09:06 +00:00
194d079d5e
* Script to init pool. * Watch pool initialize event.
24 lines
561 B
TypeScript
24 lines
561 B
TypeScript
import 'dotenv/config';
|
|
import { HardhatUserConfig } from "hardhat/config";
|
|
import "@nomiclabs/hardhat-waffle";
|
|
|
|
import './tasks/accounts';
|
|
import './tasks/deploy-factory';
|
|
import './tasks/deploy-token';
|
|
import './tasks/create-pool';
|
|
import './tasks/initialize-pool';
|
|
|
|
const config: HardhatUserConfig = {
|
|
solidity: "0.8.0",
|
|
networks: {
|
|
private: {
|
|
url: process.env.ETH_RPC_URL
|
|
}
|
|
},
|
|
defaultNetwork: 'private'
|
|
};
|
|
|
|
// You need to export an object to set up your config
|
|
// Go to https://hardhat.org/config/ to learn more
|
|
export default config;
|