add tests

This commit is contained in:
Ayush Acharjya
2024-10-26 12:55:31 +01:00
parent 80c67218fc
commit 7971c47875
12 changed files with 1682 additions and 1855 deletions

View File

@@ -1,15 +1,14 @@
import { HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-toolbox";
import "@nomiclabs/hardhat-ethers";
import { HardhatUserConfig } from 'hardhat/config';
import '@nomiclabs/hardhat-waffle';
import '@nomiclabs/hardhat-ethers';
const config: HardhatUserConfig = {
solidity: "0.8.19",
paths: {
sources: "./contracts",
tests: "./test",
cache: "./cache",
artifacts: "./artifacts"
solidity: '0.8.17',
networks: {
hardhat: {
chainId: 1337,
},
},
};
export default config;
export default config;