@vaimee/my3sec-contracts
Version:
A set of contracts that implements the My3Sec protocol
52 lines (51 loc) • 1.49 kB
TypeScript
import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { IOrganization, IOrganizationInterface } from "../../../../contracts/common/interfaces/IOrganization";
export declare class IOrganization__factory {
static readonly abi: ({
inputs: ({
internalType: string;
name: string;
type: string;
components?: undefined;
} | {
components: {
internalType: string;
name: string;
type: string;
}[];
internalType: string;
name: string;
type: string;
})[];
name: string;
outputs: {
internalType: string;
name: string;
type: string;
}[];
stateMutability: string;
type: string;
} | {
inputs: {
internalType: string;
name: string;
type: string;
}[];
name: string;
outputs: {
components: {
internalType: string;
name: string;
type: string;
}[];
internalType: string;
name: string;
type: string;
}[];
stateMutability: string;
type: string;
})[];
static createInterface(): IOrganizationInterface;
static connect(address: string, signerOrProvider: Signer | Provider): IOrganization;
}