Commit fae4e29b authored by Liam Horne's avatar Liam Horne

fix: revert hardhat type usage

parent b9d38478
......@@ -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,
......@@ -51,7 +50,7 @@ export const deployAndRegister = async ({
args,
contract,
}: {
hre: HardhatRuntimeEnvironment
hre: any
name: string
args: any[]
contract?: string
......@@ -78,7 +77,7 @@ export const deployAndRegister = async ({
}
export const getDeployedContract = async (
hre: HardhatRuntimeEnvironment,
hre: any,
name: string,
options: {
iface?: string
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment