@mimicry/kaleidoscope
Version:
Kaleidoscope is an NPM package that conveniently aggregates responses from multiple NFT data providers.
8 lines (7 loc) • 316 B
TypeScript
import { Chain } from '../../../../enums';
import { ContractPointer, Value } from '../../../../types';
export declare abstract class FungibleDataProvider {
abstract getBlockchain(_chain: Chain): string;
abstract getPrice(_contracts: ContractPointer): Promise<Value>;
abstract getName(): string;
}