@vaimee/my3sec-contracts
Version:
A set of contracts that implements the My3Sec protocol
25 lines (24 loc) • 809 B
TypeScript
import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { HubControllable, HubControllableInterface } from "../../../../contracts/common/access/HubControllable";
export declare class HubControllable__factory {
static readonly abi: ({
inputs: never[];
name: string;
type: string;
outputs?: undefined;
stateMutability?: undefined;
} | {
inputs: never[];
name: string;
outputs: {
internalType: string;
name: string;
type: string;
}[];
stateMutability: string;
type: string;
})[];
static createInterface(): HubControllableInterface;
static connect(address: string, signerOrProvider: Signer | Provider): HubControllable;
}