UNPKG

@aave/protocol-js

Version:

Aave protocol data aggregation tool

6 lines (5 loc) 220 B
import { Provider } from '@ethersproject/providers'; import { Signer, Contract } from 'ethers'; export interface ContractsFactory { connect: (address: string, signerOrProvider: Signer | Provider) => Contract; }