@1delta/margin-fetcher 0.0.128 → 0.0.129
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 +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -21923,7 +21923,7 @@ var fetchMainPrices = async (chainIds, rpcOverrides, lists = {}) => {
|
|
|
21923
21923
|
);
|
|
21924
21924
|
offset += aaveCalls.length;
|
|
21925
21925
|
const uniswapSlice = result.slice(offset, offset + uniswapCalls.length);
|
|
21926
|
-
const uniswapData = parseUniswapV2results(uniswapSlice, chainId,
|
|
21926
|
+
const uniswapData = parseUniswapV2results(uniswapSlice, chainId, aaveData);
|
|
21927
21927
|
offset += uniswapCalls.length;
|
|
21928
21928
|
const uniswapV3Slice = result.slice(offset, offset + uniswapV3Calls.length);
|
|
21929
21929
|
const uniswapV3Data = parseUniswapV3results(
|
|
@@ -21949,7 +21949,7 @@ var fetchMainPrices = async (chainIds, rpcOverrides, lists = {}) => {
|
|
|
21949
21949
|
chainId,
|
|
21950
21950
|
compoundV2Slice,
|
|
21951
21951
|
compoundV2.names,
|
|
21952
|
-
|
|
21952
|
+
aaveData
|
|
21953
21953
|
);
|
|
21954
21954
|
offset += comet.calls.length;
|
|
21955
21955
|
allPrices = {
|