UNPKG

@descent-protocol/sdk

Version:

A Typescript library for interacting with the Descent Protocol

15 lines (9 loc) 436 B
import { ethers } from 'ethers'; import { DescentClass } from '.'; export type IContract = ethers.Contract; export type ISigner = ethers.JsonRpcSigner | ethers.Wallet; export type IProvider = ethers.Provider | ethers.JsonRpcProvider | ethers.BrowserProvider; export type IDescentClass = DescentClass; export type IContractFactory = ethers.ContractFactory; export type ICollateral = 'USDC'; export type IMode = 'https' | 'browser';