UNPKG

randomness-js

Version:

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

53 lines (49 loc) 1.16 kB
/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Interface, type ContractRunner } from "ethers"; import type { IOwnable, IOwnableInterface } from "../IOwnable"; const _abi = [ { type: "function", name: "acceptOwnership", inputs: [], outputs: [], stateMutability: "nonpayable", }, { type: "function", name: "owner", inputs: [], outputs: [ { name: "", type: "address", internalType: "address", }, ], stateMutability: "nonpayable", }, { type: "function", name: "transferOwnership", inputs: [ { name: "recipient", type: "address", internalType: "address", }, ], outputs: [], stateMutability: "nonpayable", }, ] as const; export class IOwnable__factory { static readonly abi = _abi; static createInterface(): IOwnableInterface { return new Interface(_abi) as IOwnableInterface; } static connect(address: string, runner?: ContractRunner | null): IOwnable { return new Contract(address, _abi, runner) as unknown as IOwnable; } }