watcher-ts/packages/erc721-watcher/hardhat.config.ts
nikugogoi 5a0d844d7f
Use stack-orchestrator for erc721-watcher demo (#132)
* Use stack-orchestrator for erc721-watcher demo

* Run all services in stack-orchestrator with auto mining of blocks

* Add step to check docker-compose version
2022-06-22 17:01:05 +05:30

30 lines
571 B
TypeScript

//
// Copyright 2022 Vulcanize, Inc.
//
import '@nomiclabs/hardhat-waffle';
import './test/tasks/nft-deploy';
import './test/tasks/nft-mint';
import './test/tasks/nft-transfer';
import './test/tasks/block-latest';
import './test/tasks/account';
// 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',
networks: {
docker: {
url: 'http://geth:8545'
}
},
paths: {
sources: './test/contracts'
}
};