watcher-ts/packages/erc20-watcher/hardhat.config.ts
Ashwin Phatak 4f8f1d8cd7
Update code for log_cids change in vdb core (#243)
* Remove fields no longer present in schema.

* Refactor code to work with log_cids change in eth-server.

* Refactor process event to save events from logs.

* Use constants for erc20 event names.

* Implement watch blocks in erc20-watcher similar to uni-watcher.

* Moved common methods to util.

* Implement eventsInRange query in erc20-watcher.

* Filter unknown event in database query.

* Change dependencies version to be same in all packages.

Co-authored-by: nabarun <nabarun@deepstacksoft.com>
2021-09-21 16:43:55 +05:30

30 lines
597 B
TypeScript

//
// Copyright 2021 Vulcanize, Inc.
//
import '@nomiclabs/hardhat-waffle';
import './test/tasks/token-deploy';
import './test/tasks/token-transfer';
import './test/tasks/token-approve';
import './test/tasks/token-transfer-from';
import './test/tasks/block-latest';
// 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://dapptools:8545'
}
},
paths: {
sources: './test/contracts'
}
};