@defisaver/tokens 1.4.32 → 1.4.33

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.
package/README.md CHANGED
@@ -51,7 +51,7 @@
51
51
 
52
52
  #### Defined in
53
53
 
54
- [types.ts:68](https://github.com/DecenterApps/defisaver-tokens/blob/22cb230/src/types.ts#L68)
54
+ [types.ts:70](https://github.com/DecenterApps/defisaver-tokens/blob/22cb230/src/types.ts#L70)
55
55
 
56
56
  ___
57
57
 
@@ -85,9 +85,11 @@ Chain-specific asset info type
85
85
  | `compoundCollateral` | `boolean` |
86
86
  | `decimals` | `number` |
87
87
  | `exchange` | `boolean` |
88
+ | `feedAvailability` | `BoolMapping` |
88
89
  | `icon` | `Function` |
89
90
  | `isStable` | `boolean` |
90
91
  | `name` | `string` |
92
+ | `nativeChainId` | `number` |
91
93
  | `symbol` | `string` |
92
94
  | `underlyingAsset` | `string` |
93
95
  | `yearnCollateral` | `boolean` |
@@ -134,7 +136,7 @@ ___
134
136
 
135
137
  #### Defined in
136
138
 
137
- [types.ts:75](https://github.com/DecenterApps/defisaver-tokens/blob/22cb230/src/types.ts#L75)
139
+ [types.ts:77](https://github.com/DecenterApps/defisaver-tokens/blob/22cb230/src/types.ts#L77)
138
140
 
139
141
  ___
140
142
 
@@ -162,7 +164,7 @@ Maker ilk info type
162
164
 
163
165
  #### Defined in
164
166
 
165
- [types.ts:54](https://github.com/DecenterApps/defisaver-tokens/blob/22cb230/src/types.ts#L54)
167
+ [types.ts:56](https://github.com/DecenterApps/defisaver-tokens/blob/22cb230/src/types.ts#L56)
166
168
 
167
169
  ## Variables
168
170
 
package/esm/types.d.ts CHANGED
@@ -34,6 +34,7 @@ declare type AssetData = {
34
34
  name: string;
35
35
  address: string;
36
36
  addresses: AddressMapping;
37
+ feedAvailability: BoolMapping;
37
38
  decimals: number;
38
39
  icon: Function;
39
40
  underlyingAsset: string;
@@ -42,6 +43,7 @@ declare type AssetData = {
42
43
  aaveCollateral: boolean;
43
44
  yearnCollateral: boolean;
44
45
  isStable: boolean;
46
+ nativeChainId: number;
45
47
  };
46
48
  /**
47
49
  * Maker ilk info type
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defisaver/tokens",
3
- "version": "1.4.32",
3
+ "version": "1.4.33",
4
4
  "description": "Centralized asset data & utility functions",
5
5
  "main": "umd/index.js",
6
6
  "module": "esm/index.js",
package/src/types.ts CHANGED
@@ -38,6 +38,7 @@ type AssetData = {
38
38
  name: string;
39
39
  address: string;
40
40
  addresses: AddressMapping;
41
+ feedAvailability: BoolMapping;
41
42
  decimals: number;
42
43
  icon: Function;
43
44
  underlyingAsset: string;
@@ -46,6 +47,7 @@ type AssetData = {
46
47
  aaveCollateral: boolean;
47
48
  yearnCollateral: boolean;
48
49
  isStable: boolean;
50
+ nativeChainId: number;
49
51
  };
50
52
 
51
53
  /**