UNPKG

randomness-js

Version:

A library for consuming, verifying and using randomness from the dcipher network

31 lines (30 loc) 1.58 kB
import { ContractFactory, ContractTransactionResponse } from "ethers"; import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers"; import type { NonPayableOverrides } from "../common"; import type { Address, AddressInterface } from "../Address"; type AddressConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>; export declare class Address__factory extends ContractFactory { constructor(...args: AddressConstructorParams); getDeployTransaction(overrides?: NonPayableOverrides & { from?: string; }): Promise<ContractDeployTransaction>; deploy(overrides?: NonPayableOverrides & { from?: string; }): Promise<Address & { deploymentTransaction(): ContractTransactionResponse; }>; connect(runner: ContractRunner | null): Address__factory; static readonly bytecode = "0x60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212200acfbc3995302d663c22220f0ee34979d914832d4a0077a1e63efa197f6529b964736f6c634300081c0033"; static readonly abi: readonly [{ readonly type: "error"; readonly name: "AddressEmptyCode"; readonly inputs: readonly [{ readonly name: "target"; readonly type: "address"; readonly internalType: "address"; }]; }]; static createInterface(): AddressInterface; static connect(address: string, runner?: ContractRunner | null): Address; } export {};