Skip to content

Commit

Permalink
feat: use ts
Browse files Browse the repository at this point in the history
  • Loading branch information
nachomazzara committed Jun 10, 2021
1 parent 612e43d commit cd9d49f
Show file tree
Hide file tree
Showing 7 changed files with 5,348 additions and 3,192 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ cache
artifacts
.zos.session
zos.local.json
.env
10 changes: 8 additions & 2 deletions hardhat.config.js → hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@ require('babel-register')
require('babel-polyfill')
require('dotenv').config()

require('@nomiclabs/hardhat-truffle5')
require('@nomiclabs/hardhat-web3')
import '@nomiclabs/hardhat-truffle5'
import '@nomiclabs/hardhat-ethers'
import '@nomiclabs/hardhat-etherscan'
import 'decentraland-contract-plugins/dist/src/mana/tasks/load-mana'
import '@nomiclabs/hardhat-web3'

import { getDeployParams } from './scripts/utils'

module.exports = {
defaultNetwork: 'hardhat',
Expand Down Expand Up @@ -31,6 +36,7 @@ module.exports = {
gas: 10000000,
network_id: '*', // eslint-disable-line camelcase
},
deploy: getDeployParams(),
},
gasReporter: {
chainId: 1,
Expand Down
Loading

0 comments on commit cd9d49f

Please sign in to comment.