randomness-js
Version:
A library for consuming, verifying and using randomness from the dcipher network
11 lines (10 loc) • 388 B
TypeScript
import { type ContractRunner } from "ethers";
import type { Proxy, ProxyInterface } from "../Proxy";
export declare class Proxy__factory {
static readonly abi: readonly [{
readonly type: "fallback";
readonly stateMutability: "payable";
}];
static createInterface(): ProxyInterface;
static connect(address: string, runner?: ContractRunner | null): Proxy;
}