mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-19 20:36:19 +00:00
4fb0d95135
* Implement watcher for Lighthouse StorageRequest event. * Add smoke test for lighthouse watcher. * Add fileCost as value to Lighthouse store call. Co-authored-by: nabarun <nabarun@deepstacksoft.com>
15 lines
287 B
TypeScript
15 lines
287 B
TypeScript
import { HardhatUserConfig } from 'hardhat/config';
|
|
|
|
import './tasks/lighthouse-deploy';
|
|
import './tasks/lighthouse-store';
|
|
|
|
const config: HardhatUserConfig = {
|
|
defaultNetwork: 'localhost',
|
|
solidity: '0.7.3',
|
|
paths: {
|
|
sources: './test/contracts'
|
|
}
|
|
};
|
|
|
|
export default config;
|