@ember-finance/sdk 1.0.24 → 1.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -20,29 +20,29 @@ export interface RewardToken {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof RewardToken
|
|
22
22
|
*/
|
|
23
|
-
symbol
|
|
23
|
+
symbol: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof RewardToken
|
|
28
28
|
*/
|
|
29
|
-
imgUrl
|
|
29
|
+
imgUrl: string;
|
|
30
30
|
/**
|
|
31
31
|
* The address of the reward token
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof RewardToken
|
|
34
34
|
*/
|
|
35
|
-
address
|
|
35
|
+
address: string;
|
|
36
36
|
/**
|
|
37
37
|
* The name of the reward token
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof RewardToken
|
|
40
40
|
*/
|
|
41
|
-
name
|
|
41
|
+
name: string;
|
|
42
42
|
/**
|
|
43
43
|
* The decimals of the reward token
|
|
44
44
|
* @type {number}
|
|
45
45
|
* @memberof RewardToken
|
|
46
46
|
*/
|
|
47
|
-
decimals
|
|
47
|
+
decimals: number;
|
|
48
48
|
}
|