UNPKG
@agixbt/elizascraper
Version:
latest (1.0.1)
1.0.1
1.0.0
Awesome Scraper for eliza, scrape docs, tweets, and tokens
@agixbt/elizascraper
/
dist
/
lib
/
token.d.ts
12 lines
(11 loc)
•
326 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
declare
class
TokenTracker
{
private
coingeckoService;
private
pool;
constructor
(
apiKey
:
string
);
updateTokenData
(
currency
:
string
,
category
:
string
):
Promise
<{
success
:
boolean
;
count
:
number
; }>;
getLatestTokenData
(
symbol
?:
string
):
Promise
<
any
>;
close
():
Promise
<
void
>; }