@etherspot/contracts
Version:
Etherspot Solidity contracts
37 lines (33 loc) • 854 B
text/typescript
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
import { Contract, Signer, utils } from "ethers";
import { Provider } from "@ethersproject/providers";
import type { Controlled, ControlledInterface } from "../Controlled";
const _abi = [
{
inputs: [],
name: "controller",
outputs: [
{
internalType: "address",
name: "",
type: "address",
},
],
stateMutability: "view",
type: "function",
},
];
export class Controlled__factory {
static readonly abi = _abi;
static createInterface(): ControlledInterface {
return new utils.Interface(_abi) as ControlledInterface;
}
static connect(
address: string,
signerOrProvider: Signer | Provider
): Controlled {
return new Contract(address, _abi, signerOrProvider) as Controlled;
}
}