forked from reserve-protocol/rtokens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
37 lines (37 loc) · 780 Bytes
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
declare const rtokens: {
[chainId: number]: {
[tokenAddress: string]: {
address: string;
name: string;
symbol: string;
decimals: number;
logo?: string;
about?: string;
website?: string;
governance?: {
voting?: string;
discussion?: string;
};
support?: {
email?: string;
url?: string;
};
social?: {
blog?: string;
chat?: string;
facebook?: string;
forum?: string;
github?: string;
gitter?: string;
instagram?: string;
linkedin?: string;
reddit?: string;
slack?: string;
telegram?: string;
twitter?: string;
youtube?: string;
};
};
};
};
export = rtokens;