UNPKG

@nitin-spheron/desub-js

Version:

Typescript library for working with the decentralised subscription contracts in Spheron

7 lines (6 loc) 253 B
import { Keyed } from '../interfaces'; export default abstract class implements Keyed { [key: string]: any; abstract tokenToUSD(a: string, t: number, k: string): Promise<number>; abstract tokenQuote(t: number, k: string): Promise<number>; }