hardhat.config.ts 238 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
import { HardhatUserConfig } from 'hardhat/types'

// Hardhat plugins
import '@nomiclabs/hardhat-ethers'
import '@nomiclabs/hardhat-waffle'

const config: HardhatUserConfig = {
  mocha: {
    timeout: 50000,
  },
}

export default config