Skip to content

Commit

Permalink
fix: revert hardhat type usage
Browse files Browse the repository at this point in the history
  • Loading branch information
snario committed Apr 14, 2021
1 parent b9d3847 commit fae4e29
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions packages/contracts/src/hardhat-deploy-ethers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import { Contract } from 'ethers'
import { Provider } from '@ethersproject/abstract-provider'
import { Signer } from '@ethersproject/abstract-signer'
import { HardhatRuntimeEnvironment } from 'hardhat/types'

export const registerAddress = async ({
hre,
Expand Down Expand Up @@ -51,7 +50,7 @@ export const deployAndRegister = async ({
args,
contract,
}: {
hre: HardhatRuntimeEnvironment
hre: any
name: string
args: any[]
contract?: string
Expand All @@ -78,7 +77,7 @@ export const deployAndRegister = async ({
}

export const getDeployedContract = async (
hre: HardhatRuntimeEnvironment,
hre: any,
name: string,
options: {
iface?: string
Expand Down

0 comments on commit fae4e29

Please sign in to comment.