@1delta/data-sdk 0.0.6 → 0.0.7

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/dist/index.js CHANGED
@@ -60,6 +60,7 @@ function initializeLenderData({
60
60
  }
61
61
  var aaveTokens = () => getGlobalData2()?.aaveTokens;
62
62
  var aavePools = () => getGlobalData2()?.aavePools;
63
+ var aaveOracles = () => getGlobalData2()?.aaveOracles;
63
64
  var aaveReserves = () => getGlobalData2()?.aaveReserves;
64
65
  var compoundV3Reserves = () => getGlobalData2()?.compoundV3Reserves;
65
66
  var compoundV2Reserves = () => getGlobalData2()?.compoundV2Reserves;
@@ -70,6 +71,7 @@ var compoundV2Pools = () => getGlobalData2()?.compoundV2Pools;
70
71
  var compoundV2Tokens = () => getGlobalData2()?.compoundV2Tokens;
71
72
  var initConfig = () => getGlobalData2()?.initConfig;
72
73
 
74
+ exports.aaveOracles = aaveOracles;
73
75
  exports.aavePools = aavePools;
74
76
  exports.aaveReserves = aaveReserves;
75
77
  exports.aaveTokens = aaveTokens;
package/dist/index.mjs CHANGED
@@ -58,6 +58,7 @@ function initializeLenderData({
58
58
  }
59
59
  var aaveTokens = () => getGlobalData2()?.aaveTokens;
60
60
  var aavePools = () => getGlobalData2()?.aavePools;
61
+ var aaveOracles = () => getGlobalData2()?.aaveOracles;
61
62
  var aaveReserves = () => getGlobalData2()?.aaveReserves;
62
63
  var compoundV3Reserves = () => getGlobalData2()?.compoundV3Reserves;
63
64
  var compoundV2Reserves = () => getGlobalData2()?.compoundV2Reserves;
@@ -68,4 +69,4 @@ var compoundV2Pools = () => getGlobalData2()?.compoundV2Pools;
68
69
  var compoundV2Tokens = () => getGlobalData2()?.compoundV2Tokens;
69
70
  var initConfig = () => getGlobalData2()?.initConfig;
70
71
 
71
- export { aavePools, aaveReserves, aaveTokens, chains, compoundV2Pools, compoundV2Reserves, compoundV2Tokens, compoundV3BaseData, compoundV3Pools, compoundV3Reserves, initConfig, initializeChainData, initializeLenderData, morphoPools };
72
+ export { aaveOracles, aavePools, aaveReserves, aaveTokens, chains, compoundV2Pools, compoundV2Reserves, compoundV2Tokens, compoundV3BaseData, compoundV3Pools, compoundV3Reserves, initConfig, initializeChainData, initializeLenderData, morphoPools };
package/dist/lending.d.ts CHANGED
@@ -99,6 +99,7 @@ export declare function initializeLenderData({ aaveTokensOverride, aavePoolsOver
99
99
  }): void;
100
100
  export declare const aaveTokens: () => AaveTokensType;
101
101
  export declare const aavePools: () => AavePoolsType;
102
+ export declare const aaveOracles: () => OracleMap;
102
103
  export declare const aaveReserves: () => GeneralReservesMap;
103
104
  export declare const compoundV3Reserves: () => GeneralReservesMap;
104
105
  export declare const compoundV2Reserves: () => GeneralReservesMap;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.0.6",
7
+ "version": "0.0.7",
8
8
  "description": "Hold and initialize lending protocol data across a stack",
9
9
  "files": [
10
10
  "dist"