randomness-js
Version:
A library for consuming, verifying and using randomness from the dcipher network
24 lines (20 loc) • 613 B
text/typescript
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
import { Contract, Interface, type ContractRunner } from "ethers";
import type { Proxy, ProxyInterface } from "../Proxy";
const _abi = [
{
type: "fallback",
stateMutability: "payable",
},
] as const;
export class Proxy__factory {
static readonly abi = _abi;
static createInterface(): ProxyInterface {
return new Interface(_abi) as ProxyInterface;
}
static connect(address: string, runner?: ContractRunner | null): Proxy {
return new Contract(address, _abi, runner) as unknown as Proxy;
}
}