add test cases

This commit is contained in:
Ayush Acharjya
2024-10-25 18:08:28 +01:00
parent 2a04ee34f1
commit 04ddaab282
170 changed files with 63501 additions and 1048 deletions

14
hardhat.config.ts Normal file
View File

@@ -0,0 +1,14 @@
import { HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-toolbox";
const config: HardhatUserConfig = {
solidity: "0.8.19",
paths: {
sources: "./contracts",
tests: "./test",
cache: "./cache",
artifacts: "./artifacts"
},
};
export default config;