@difof/lct
Version:
Lock any ERC20, release in periods!
169 lines (163 loc) • 5.37 kB
TypeScript
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
import { ethers } from "ethers";
import {
FactoryOptions,
HardhatEthersHelpers as HardhatEthersHelpersBase,
} from "@nomiclabs/hardhat-ethers/types";
import * as Contracts from ".";
declare module "hardhat/types/runtime" {
interface HardhatEthersHelpers extends HardhatEthersHelpersBase {
getContractFactory(
name: "AccessControl",
signerOrOptions?: ethers.Signer | FactoryOptions
): Promise<Contracts.AccessControl__factory>;
getContractFactory(
name: "AccessControlEnumerable",
signerOrOptions?: ethers.Signer | FactoryOptions
): Promise<Contracts.AccessControlEnumerable__factory>;
getContractFactory(
name: "IAccessControl",
signerOrOptions?: ethers.Signer | FactoryOptions
): Promise<Contracts.IAccessControl__factory>;
getContractFactory(
name: "IAccessControlEnumerable",
signerOrOptions?: ethers.Signer | FactoryOptions
): Promise<Contracts.IAccessControlEnumerable__factory>;
getContractFactory(
name: "ERC20",
signerOrOptions?: ethers.Signer | FactoryOptions
): Promise<Contracts.ERC20__factory>;
getContractFactory(
name: "IERC20Metadata",
signerOrOptions?: ethers.Signer | FactoryOptions
): Promise<Contracts.IERC20Metadata__factory>;
getContractFactory(
name: "IERC20",
signerOrOptions?: ethers.Signer | FactoryOptions
): Promise<Contracts.IERC20__factory>;
getContractFactory(
name: "ERC165",
signerOrOptions?: ethers.Signer | FactoryOptions
): Promise<Contracts.ERC165__factory>;
getContractFactory(
name: "IERC165",
signerOrOptions?: ethers.Signer | FactoryOptions
): Promise<Contracts.IERC165__factory>;
getContractFactory(
name: "ILinearCliffTimelock",
signerOrOptions?: ethers.Signer | FactoryOptions
): Promise<Contracts.ILinearCliffTimelock__factory>;
getContractFactory(
name: "LinearCliffTimelock",
signerOrOptions?: ethers.Signer | FactoryOptions
): Promise<Contracts.LinearCliffTimelock__factory>;
getContractFactory(
name: "ERC20Token",
signerOrOptions?: ethers.Signer | FactoryOptions
): Promise<Contracts.ERC20Token__factory>;
getContractFactory(
name: "MockTimelock",
signerOrOptions?: ethers.Signer | FactoryOptions
): Promise<Contracts.MockTimelock__factory>;
getContractFactory(
name: "MockTimeContext",
signerOrOptions?: ethers.Signer | FactoryOptions
): Promise<Contracts.MockTimeContext__factory>;
getContractFactory(
name: "TLPublicRegistry",
signerOrOptions?: ethers.Signer | FactoryOptions
): Promise<Contracts.TLPublicRegistry__factory>;
getContractAt(
name: "AccessControl",
address: string,
signer?: ethers.Signer
): Promise<Contracts.AccessControl>;
getContractAt(
name: "AccessControlEnumerable",
address: string,
signer?: ethers.Signer
): Promise<Contracts.AccessControlEnumerable>;
getContractAt(
name: "IAccessControl",
address: string,
signer?: ethers.Signer
): Promise<Contracts.IAccessControl>;
getContractAt(
name: "IAccessControlEnumerable",
address: string,
signer?: ethers.Signer
): Promise<Contracts.IAccessControlEnumerable>;
getContractAt(
name: "ERC20",
address: string,
signer?: ethers.Signer
): Promise<Contracts.ERC20>;
getContractAt(
name: "IERC20Metadata",
address: string,
signer?: ethers.Signer
): Promise<Contracts.IERC20Metadata>;
getContractAt(
name: "IERC20",
address: string,
signer?: ethers.Signer
): Promise<Contracts.IERC20>;
getContractAt(
name: "ERC165",
address: string,
signer?: ethers.Signer
): Promise<Contracts.ERC165>;
getContractAt(
name: "IERC165",
address: string,
signer?: ethers.Signer
): Promise<Contracts.IERC165>;
getContractAt(
name: "ILinearCliffTimelock",
address: string,
signer?: ethers.Signer
): Promise<Contracts.ILinearCliffTimelock>;
getContractAt(
name: "LinearCliffTimelock",
address: string,
signer?: ethers.Signer
): Promise<Contracts.LinearCliffTimelock>;
getContractAt(
name: "ERC20Token",
address: string,
signer?: ethers.Signer
): Promise<Contracts.ERC20Token>;
getContractAt(
name: "MockTimelock",
address: string,
signer?: ethers.Signer
): Promise<Contracts.MockTimelock>;
getContractAt(
name: "MockTimeContext",
address: string,
signer?: ethers.Signer
): Promise<Contracts.MockTimeContext>;
getContractAt(
name: "TLPublicRegistry",
address: string,
signer?: ethers.Signer
): Promise<Contracts.TLPublicRegistry>;
// default types
getContractFactory(
name: string,
signerOrOptions?: ethers.Signer | FactoryOptions
): Promise<ethers.ContractFactory>;
getContractFactory(
abi: any[],
bytecode: ethers.utils.BytesLike,
signer?: ethers.Signer
): Promise<ethers.ContractFactory>;
getContractAt(
nameOrAbi: string | any[],
address: string,
signer?: ethers.Signer
): Promise<ethers.Contract>;
}
}