mirror of
https://github.com/erhant/circomkit.git
synced 2026-04-13 03:00:27 -04:00
9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
import {HardhatUserConfig} from 'hardhat/config';
|
|
import '@nomicfoundation/hardhat-toolbox';
|
|
|
|
const config: HardhatUserConfig = {
|
|
solidity: '0.8.24',
|
|
};
|
|
|
|
export default config;
|