@arbitrum/sdk
Version:
Typescript library client-side interactions with Arbitrum
29 lines (28 loc) • 868 B
TypeScript
import { Signer } from "ethers";
import { Provider } from "@ethersproject/providers";
import type { IRollupEventInbox, IRollupEventInboxInterface } from "../IRollupEventInbox";
export declare class IRollupEventInbox__factory {
static readonly abi: ({
inputs: never[];
name: string;
outputs: {
internalType: string;
name: string;
type: string;
}[];
stateMutability: string;
type: string;
} | {
inputs: {
internalType: string;
name: string;
type: string;
}[];
name: string;
outputs: never[];
stateMutability: string;
type: string;
})[];
static createInterface(): IRollupEventInboxInterface;
static connect(address: string, signerOrProvider: Signer | Provider): IRollupEventInbox;
}