Commit fae4e29b authored by Liam Horne's avatar Liam Horne

fix: revert hardhat type usage

parent b9d38478
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
import { Contract } from 'ethers' import { Contract } from 'ethers'
import { Provider } from '@ethersproject/abstract-provider' import { Provider } from '@ethersproject/abstract-provider'
import { Signer } from '@ethersproject/abstract-signer' import { Signer } from '@ethersproject/abstract-signer'
import { HardhatRuntimeEnvironment } from 'hardhat/types'
export const registerAddress = async ({ export const registerAddress = async ({
hre, hre,
...@@ -51,7 +50,7 @@ export const deployAndRegister = async ({ ...@@ -51,7 +50,7 @@ export const deployAndRegister = async ({
args, args,
contract, contract,
}: { }: {
hre: HardhatRuntimeEnvironment hre: any
name: string name: string
args: any[] args: any[]
contract?: string contract?: string
...@@ -78,7 +77,7 @@ export const deployAndRegister = async ({ ...@@ -78,7 +77,7 @@ export const deployAndRegister = async ({
} }
export const getDeployedContract = async ( export const getDeployedContract = async (
hre: HardhatRuntimeEnvironment, hre: any,
name: string, name: string,
options: { options: {
iface?: string 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