UNPKG

raiden-ts

Version:

Raiden Light Client Typescript/Javascript SDK

50 lines (46 loc) 1.12 kB
/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { Controllable, ControllableInterface } from "../Controllable"; const _abi = [ { inputs: [ { internalType: "address", name: "new_controller", type: "address", }, ], name: "changeController", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [], name: "controller", outputs: [ { internalType: "address", name: "", type: "address", }, ], stateMutability: "view", type: "function", }, ]; export class Controllable__factory { static readonly abi = _abi; static createInterface(): ControllableInterface { return new utils.Interface(_abi) as ControllableInterface; } static connect( address: string, signerOrProvider: Signer | Provider ): Controllable { return new Contract(address, _abi, signerOrProvider) as Controllable; } }