blocklock-js
Version:
A library for encrypting and decrypting data for the future
51 lines (50 loc) • 2.19 kB
TypeScript
import { ContractFactory, ContractTransactionResponse } from "ethers";
import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers";
import type { NonPayableOverrides } from "../common";
import type { Errors, ErrorsInterface } from "../Errors";
type ErrorsConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
export declare class Errors__factory extends ContractFactory {
constructor(...args: ErrorsConstructorParams);
getDeployTransaction(overrides?: NonPayableOverrides & {
from?: string;
}): Promise<ContractDeployTransaction>;
deploy(overrides?: NonPayableOverrides & {
from?: string;
}): Promise<Errors & {
deploymentTransaction(): ContractTransactionResponse;
}>;
connect(runner: ContractRunner | null): Errors__factory;
static readonly bytecode = "0x60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212203296177dc16f2bce254c985cfbc5dc137a6a9f1ff3efdc6d32cfd398258f3c8864736f6c634300081c0033";
static readonly abi: readonly [{
readonly type: "error";
readonly name: "FailedCall";
readonly inputs: readonly [];
}, {
readonly type: "error";
readonly name: "FailedDeployment";
readonly inputs: readonly [];
}, {
readonly type: "error";
readonly name: "InsufficientBalance";
readonly inputs: readonly [{
readonly name: "balance";
readonly type: "uint256";
readonly internalType: "uint256";
}, {
readonly name: "needed";
readonly type: "uint256";
readonly internalType: "uint256";
}];
}, {
readonly type: "error";
readonly name: "MissingPrecompile";
readonly inputs: readonly [{
readonly name: "";
readonly type: "address";
readonly internalType: "address";
}];
}];
static createInterface(): ErrorsInterface;
static connect(address: string, runner?: ContractRunner | null): Errors;
}
export {};