mirror of
https://github.com/0xShay/ticketchain.git
synced 2026-01-10 20:53:24 +00:00
15 lines
272 B
TypeScript
15 lines
272 B
TypeScript
import { HardhatUserConfig } from 'hardhat/config';
|
|
import '@nomiclabs/hardhat-waffle';
|
|
import '@nomiclabs/hardhat-ethers';
|
|
|
|
const config: HardhatUserConfig = {
|
|
solidity: '0.8.17',
|
|
networks: {
|
|
hardhat: {
|
|
chainId: 1337,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|