UNPKG

@ethsub/sol

Version:
37 lines (33 loc) 831 B
/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { IBridge, IBridgeInterface } from "../IBridge"; const _abi = [ { inputs: [], name: "_domainID", outputs: [ { internalType: "uint8", name: "", type: "uint8", }, ], stateMutability: "nonpayable", type: "function", }, ]; export class IBridge__factory { static readonly abi = _abi; static createInterface(): IBridgeInterface { return new utils.Interface(_abi) as IBridgeInterface; } static connect( address: string, signerOrProvider: Signer | Provider ): IBridge { return new Contract(address, _abi, signerOrProvider) as IBridge; } }