@etherspot/contracts
Version:
Etherspot Solidity contracts
36 lines (35 loc) • 1.03 kB
TypeScript
import { Signer } from "ethers";
import { Provider } from "@ethersproject/providers";
import type { AccessControl, AccessControlInterface } from "../AccessControl";
export declare class AccessControl__factory {
static readonly abi: ({
anonymous: boolean;
inputs: {
indexed: boolean;
internalType: string;
name: string;
type: string;
}[];
name: string;
type: string;
outputs?: undefined;
stateMutability?: undefined;
} | {
inputs: {
internalType: string;
name: string;
type: string;
}[];
name: string;
outputs: {
internalType: string;
name: string;
type: string;
}[];
stateMutability: string;
type: string;
anonymous?: undefined;
})[];
static createInterface(): AccessControlInterface;
static connect(address: string, signerOrProvider: Signer | Provider): AccessControl;
}