mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-20 04:46:20 +00:00
nikugogoi
ba6b996e65
* Deploy example contract in graph-node * Add auth token in docker build for github packages * Add steps for running tests in CI
21 lines
371 B
TypeScript
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'
|
|
}
|
|
};
|