mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-19 20:36:19 +00:00
4f8f1d8cd7
* 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>
30 lines
597 B
TypeScript
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'
|
|
}
|
|
};
|