/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { IBlockChatCall, IBlockChatCallInterface, } from "../IBlockChatCall"; const _abi = [ { inputs: [ { internalType: "address", name: "sender", type: "address", }, ], name: "blockChatCallBack", outputs: [], stateMutability: "payable", type: "function", }, { inputs: [ { internalType: "address", name: "sender", type: "address", }, { internalType: "bytes32", name: "messageHash", type: "bytes32", }, ], name: "blockChatCallBackHash", outputs: [], stateMutability: "payable", type: "function", }, ]; export class IBlockChatCall__factory { static readonly abi = _abi; static createInterface(): IBlockChatCallInterface { return new utils.Interface(_abi) as IBlockChatCallInterface; } static connect( address: string, signerOrProvider: Signer | Provider ): IBlockChatCall { return new Contract(address, _abi, signerOrProvider) as IBlockChatCall; } }