@vaimee/my3sec-contracts
Version:
A set of contracts that implements the My3Sec protocol
58 lines (57 loc) • 1.63 kB
TypeScript
import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { ISkillRegistry, ISkillRegistryInterface } from "../../../../contracts/common/interfaces/ISkillRegistry";
export declare class ISkillRegistry__factory {
static readonly abi: ({
inputs: never[];
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;
} | {
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: never[];
stateMutability: string;
type: string;
})[];
static createInterface(): ISkillRegistryInterface;
static connect(address: string, signerOrProvider: Signer | Provider): ISkillRegistry;
}