forked from tornado-packages/tornado-core
9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
|
import type { HardhatUserConfig } from 'hardhat/types';
|
||
|
import '@nomicfoundation/hardhat-toolbox';
|
||
|
import '@nomicfoundation/hardhat-ethers';
|
||
|
|
||
|
const config: HardhatUserConfig = {
|
||
|
solidity: '0.8.28',
|
||
|
};
|
||
|
|
||
|
export default config;
|