mirror of
https://github.com/cerc-io/watcher-ts
synced 2025-01-09 04:48:05 +00:00
Nabarun Gogoi
9e53b1a498
* Dependency patch updates * Minor update @apollo/client 3.3.19 -> 3.7.10 * Minor update @nomiclabs/hardhat-ethers 2.0.2 -> 2.2.2 * Minor update @openzeppelin/contracts 4.3.2 -> 4.8.2 * Minor update @types/chai 4.2.19 -> 4.3.4 * Minor update decimal 10.3.1 -> 10.4.3 * Minor update @graphql-tools/utils 9.1.1 -> 9.2.1 * Minor update @graphql, graphql-ws, graphql-request * Minor update yargs * Minor update @types/node * Minor update graph-ts * Minor updates graphql-tools, multiaddr * Update dependencies with minor updates * Minor updates to eslint and related dependencies * Update solidity compiler version for erc721-watcher * Fix ESLint indent rule --------- Co-authored-by: Dhruv Srivastava <dhruvdhs.ds@gmail.com>
30 lines
576 B
TypeScript
30 lines
576 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.1',
|
|
networks: {
|
|
docker: {
|
|
url: process.env.ETH_RPC_URL
|
|
}
|
|
},
|
|
paths: {
|
|
sources: './test/contracts'
|
|
}
|
|
};
|