@arbitrum/sdk
Version:
Typescript library client-side interactions with Arbitrum
32 lines (31 loc) • 970 B
TypeScript
import { Signer } from "ethers";
import { Provider } from "@ethersproject/providers";
import type { UUPSNotUpgradeable, UUPSNotUpgradeableInterface } from "../UUPSNotUpgradeable";
export declare class UUPSNotUpgradeable__factory {
static readonly abi: ({
anonymous: boolean;
inputs: {
indexed: boolean;
internalType: string;
name: string;
type: string;
}[];
name: string;
type: string;
outputs?: undefined;
stateMutability?: undefined;
} | {
inputs: never[];
name: string;
outputs: {
internalType: string;
name: string;
type: string;
}[];
stateMutability: string;
type: string;
anonymous?: undefined;
})[];
static createInterface(): UUPSNotUpgradeableInterface;
static connect(address: string, signerOrProvider: Signer | Provider): UUPSNotUpgradeable;
}