mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-19 20:36:19 +00:00
a9d411c6df
* Smoke test for uni-info-watcher and refactor token deployment code. * Test for Token entity after PoolCreated event. * Test for Pool entity after PoolCreated event. * Tests for entities after InitializeEvent. Co-authored-by: prathamesh0 <prathamesh.musale0@gmail.com>
19 lines
313 B
TypeScript
19 lines
313 B
TypeScript
import { HardhatUserConfig } from 'hardhat/config';
|
|
import '@nomiclabs/hardhat-waffle';
|
|
|
|
const config: HardhatUserConfig = {
|
|
defaultNetwork: 'localhost',
|
|
solidity: {
|
|
compilers: [
|
|
{
|
|
version: '0.7.6'
|
|
}
|
|
]
|
|
},
|
|
paths: {
|
|
sources: './test/contracts'
|
|
}
|
|
};
|
|
|
|
export default config;
|