@lido-sdk/contracts
Version:
This project is being slowly deprecated and may not receive further updates. Check out [modern Lido SDK](https://github.com/lidofinance/lido-ethereum-sdk/pulls) to access latest functionality. It is actively maintained and is built for interacting with Li
46 lines (45 loc) • 1.29 kB
TypeScript
import { Signer } from "ethers";
import { Provider } from "@ethersproject/providers";
import type { Erc20Abi, Erc20AbiInterface } from "../Erc20Abi";
export declare class Erc20Abi__factory {
static readonly abi: ({
constant: boolean;
inputs: {
name: string;
type: string;
}[];
name: string;
outputs: {
name: string;
type: string;
}[];
payable: boolean;
stateMutability: string;
type: string;
anonymous?: undefined;
} | {
payable: boolean;
stateMutability: string;
type: string;
constant?: undefined;
inputs?: undefined;
name?: undefined;
outputs?: undefined;
anonymous?: undefined;
} | {
anonymous: boolean;
inputs: {
indexed: boolean;
name: string;
type: string;
}[];
name: string;
type: string;
constant?: undefined;
outputs?: undefined;
payable?: undefined;
stateMutability?: undefined;
})[];
static createInterface(): Erc20AbiInterface;
static connect(address: string, signerOrProvider: Signer | Provider): Erc20Abi;
}