2021-08-27 12:17:23 +00:00
|
|
|
//
|
|
|
|
// Copyright 2021 Vulcanize, Inc.
|
|
|
|
//
|
|
|
|
|
|
|
|
import '@nomiclabs/hardhat-waffle';
|
|
|
|
|
|
|
|
import './test/tasks/token-deploy';
|
|
|
|
import './test/tasks/token-transfer';
|
2021-09-21 11:13:55 +00:00
|
|
|
import './test/tasks/token-approve';
|
|
|
|
import './test/tasks/token-transfer-from';
|
2021-08-27 12:17:23 +00:00
|
|
|
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'
|
|
|
|
}
|
|
|
|
};
|