/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { IOutbox, IOutboxInterface } from "../IOutbox"; const _abi = [ { anonymous: false, inputs: [ { indexed: true, internalType: "bytes32", name: "messageHash", type: "bytes32", }, { indexed: true, internalType: "uint256", name: "leafIndex", type: "uint256", }, { indexed: true, internalType: "uint64", name: "destinationAndNonce", type: "uint64", }, { indexed: false, internalType: "bytes32", name: "committedRoot", type: "bytes32", }, { indexed: false, internalType: "bytes", name: "message", type: "bytes", }, ], name: "Dispatch", type: "event", }, { inputs: [ { internalType: "uint32", name: "_destinationDomain", type: "uint32", }, { internalType: "bytes32", name: "_recipientAddress", type: "bytes32", }, { internalType: "bytes", name: "_messageBody", type: "bytes", }, ], name: "dispatch", outputs: [ { internalType: "bytes32", name: "", type: "bytes32", }, { internalType: "bytes", name: "", type: "bytes", }, ], stateMutability: "nonpayable", type: "function", }, ]; export class IOutbox__factory { static readonly abi = _abi; static createInterface(): IOutboxInterface { return new utils.Interface(_abi) as IOutboxInterface; } static connect( address: string, signerOrProvider: Signer | Provider ): IOutbox { return new Contract(address, _abi, signerOrProvider) as IOutbox; } }