https://smock.readthedocs.io/en/latest/getting-started.html
npm install --save-dev @defi-wonderland/smock
// hardhat.config.ts
... // your plugin imports and whatnot go here
const config = {
... // your other hardhat settings go here
solidity: {
... // your other Solidity settings go here
settings: {
outputSelection: {
"*": {
"*": ["storageLayout"]
}
}
}
}
}
export default config