UNPKG

@mimicry/kaleidoscope

Version:

Kaleidoscope is an NPM package that conveniently aggregates responses from multiple NFT data providers.

9 lines (7 loc) 296 B
import { Chain } from '../../../../enums'; import { ContractPointer, Value } from '../../../../types'; export abstract class FungibleDataProvider { abstract getBlockchain(_chain: Chain): string; abstract getPrice(_contracts: ContractPointer): Promise<Value>; abstract getName(): string; }