watcher-ts/packages/erc721-watcher/hardhat.config.ts
prathamesh0 a834250259
Update demo hardhat configs to use env variable for eth endpoint (#277)
* Use an env variable for eth RPC endpoint in hardhat config

* Add a task to get main account address in erc20 watcher
2022-12-21 17:59:31 +05:30

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.0',
networks: {
docker: {
url: process.env.ETH_RPC_URL
}
},
paths: {
sources: './test/contracts'
}
};