UNPKG

randomness-js

Version:

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

27 lines (26 loc) 1.6 kB
import { ContractFactory, ContractTransactionResponse } from "ethers"; import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers"; import type { NonPayableOverrides } from "../common"; import type { FeistelShuffleOptimised, FeistelShuffleOptimisedInterface } from "../FeistelShuffleOptimised"; type FeistelShuffleOptimisedConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>; export declare class FeistelShuffleOptimised__factory extends ContractFactory { constructor(...args: FeistelShuffleOptimisedConstructorParams); getDeployTransaction(overrides?: NonPayableOverrides & { from?: string; }): Promise<ContractDeployTransaction>; deploy(overrides?: NonPayableOverrides & { from?: string; }): Promise<FeistelShuffleOptimised & { deploymentTransaction(): ContractTransactionResponse; }>; connect(runner: ContractRunner | null): FeistelShuffleOptimised__factory; static readonly bytecode = "0x60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220624590d60a22b990aba43efd8a9178cd2e6eccccdd63e7b7a29c3b0f2b3335cd64736f6c634300081c0033"; static readonly abi: readonly [{ readonly type: "error"; readonly name: "InvalidInputs"; readonly inputs: readonly []; }]; static createInterface(): FeistelShuffleOptimisedInterface; static connect(address: string, runner?: ContractRunner | null): FeistelShuffleOptimised; } export {};