watcher-ts/packages/solidity-mapper/hardhat.config.ts
Ashwin Phatak b243025ca8
Test cases in solidity-mapper for contract, fixed-size byte arrays and enum types (#26)
* Add tests for getStorageInfo and getEventNameTopics.

* Lint solidity-mapper package code.

* Add test for contract type.

* Add test for fixed size byte arrays.

* Add test for Enum types.

* Add tests for variables packed together and using single slot.

* Fix comments in test contracts.

Co-authored-by: nikugogoi <95nikass@gmail.com>
2021-06-02 11:23:33 +05:30

42 lines
1.1 KiB
TypeScript

import { task, HardhatUserConfig } from 'hardhat/config';
import '@nomiclabs/hardhat-waffle';
// This is a sample Hardhat task. To learn how to create your own go to
// https://hardhat.org/guides/create-task.html
task('accounts', 'Prints the list of accounts', async (args, hre) => {
const accounts = await hre.ethers.getSigners();
for (const account of accounts) {
console.log(account.address);
}
});
// You need to export an object to set up your config
// Go to https://hardhat.org/config/ to learn more
const config: HardhatUserConfig = {
solidity: {
version: '0.7.3',
settings: {
outputSelection: {
'*': {
'*': [
'abi', 'storageLayout',
'metadata', 'evm.bytecode', // Enable the metadata and bytecode outputs of every single contract.
'evm.bytecode.sourceMap' // Enable the source map output of every single contract.
],
'': [
'ast' // Enable the AST output of every single file.
]
}
}
}
},
paths: {
sources: './test/contracts',
tests: './src'
}
};
export default config;