UNPKG

@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

47 lines (46 loc) 1.35 kB
import { Signer } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { AggregatorAbi, AggregatorAbiInterface } from "../AggregatorAbi"; export declare class AggregatorAbi__factory { static readonly abi: ({ inputs: { internalType: string; name: string; type: string; }[]; stateMutability: string; type: string; anonymous?: undefined; name?: undefined; outputs?: undefined; } | { anonymous: boolean; inputs: { indexed: boolean; internalType: string; name: string; type: string; }[]; name: string; type: string; stateMutability?: undefined; outputs?: undefined; } | { inputs: { internalType: string; name: string; type: string; }[]; name: string; outputs: { internalType: string; name: string; type: string; }[]; stateMutability: string; type: string; anonymous?: undefined; })[]; static createInterface(): AggregatorAbiInterface; static connect(address: string, signerOrProvider: Signer | Provider): AggregatorAbi; }