mirror of
https://github.com/placeholder-soft/storytime.git
synced 2026-04-30 21:41:46 +08:00
10 lines
224 B
TypeScript
10 lines
224 B
TypeScript
import { HardhatUserConfig } from "hardhat/config";
|
|
import "@nomicfoundation/hardhat-toolbox";
|
|
import "@nomicfoundation/hardhat-foundry";
|
|
|
|
const config: HardhatUserConfig = {
|
|
solidity: "0.8.20",
|
|
};
|
|
|
|
export default config;
|