watcher-ts/packages/graph-node/hardhat.config.ts
nikugogoi ba6b996e65
Deploy example contract in graph-node (#113)
* Deploy example contract in graph-node

* Add auth token in docker build for github packages

* Add steps for running tests in CI
2022-04-29 15:11:40 +05:30

21 lines
371 B
TypeScript

//
// Copyright 2022 Vulcanize, Inc.
//
import '@nomiclabs/hardhat-waffle';
import './test/tasks/example-deploy';
// You need to export an object to set up your config
// Go to https://hardhat.org/config/ to learn more
/**
* @type import('hardhat/config').HardhatUserConfig
*/
export default {
solidity: '0.8.0',
paths: {
sources: './test/contracts'
}
};