UNPKG

@vaimee/my3sec-contracts

Version:

A set of contracts that implements the My3Sec protocol

26 lines (25 loc) 1.37 kB
import { Signer, ContractFactory, Overrides } from "ethers"; import type { Provider, TransactionRequest } from "@ethersproject/providers"; import type { PromiseOrValue } from "../../../../common"; import type { Errors, ErrorsInterface } from "../../../../contracts/common/libraries/Errors"; type ErrorsConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>; export declare class Errors__factory extends ContractFactory { constructor(...args: ErrorsConstructorParams); deploy(overrides?: Overrides & { from?: PromiseOrValue<string>; }): Promise<Errors>; getDeployTransaction(overrides?: Overrides & { from?: PromiseOrValue<string>; }): TransactionRequest; attach(address: string): Errors; connect(signer: Signer): Errors__factory; static readonly bytecode = "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220b0887ccc709af9f7d78a1ba8ae528b9a5d057e317752ef0fd872c4e21652598d64736f6c63430008110033"; static readonly abi: { inputs: never[]; name: string; type: string; }[]; static createInterface(): ErrorsInterface; static connect(address: string, signerOrProvider: Signer | Provider): Errors; } export {};