UNPKG

olympus-protocol-connector

Version:

Module made by Olympus Labs for easier access to the Olympus protocol through Javascript/Typescript

14 lines (13 loc) 468 B
import BigNumber from 'bignumber.js'; import { Service } from '../../Service'; import { ABI } from '../../interfaces/Enums'; export declare class ERC721Service extends Service { /** * @deprecated Use method create */ static get(address: string): ERC721Service; static create(address: string): Promise<ERC721Service>; protected constructor(address: string, abi: ABI); totalSupply(): Promise<BigNumber>; getSymbol(): Promise<string>; }