mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-20 04:46:20 +00:00
9a3ac28a5d
* Created a smoke test for uni-watcher. * Added test for createPool. * Added more pool tests. * Using ethers instead of hardhat-ethers in smoke test. Co-authored-by: prathamesh0 <prathamesh.musale0@gmail.com>
22 lines
355 B
TypeScript
22 lines
355 B
TypeScript
import { HardhatUserConfig } from 'hardhat/config';
|
|
import '@nomiclabs/hardhat-waffle';
|
|
|
|
const config: HardhatUserConfig = {
|
|
defaultNetwork: 'localhost',
|
|
solidity: {
|
|
compilers: [
|
|
{
|
|
version: '0.7.6'
|
|
},
|
|
{
|
|
version: '0.5.0'
|
|
}
|
|
]
|
|
},
|
|
paths: {
|
|
sources: './test/contracts'
|
|
}
|
|
};
|
|
|
|
export default config;
|