@lavarage/sdk 6.7.2 → 6.7.3
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 +4 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -6
- package/dist/index.mjs.map +1 -1
- package/evm.ts +6 -6
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3815,12 +3815,10 @@ function getOffersEvm(provider, tokenHolderContractAddress, collateralAddresses)
|
|
|
3815
3815
|
const activeCollaterals = [];
|
|
3816
3816
|
for (const address of collateralAddresses) {
|
|
3817
3817
|
const collateral = yield contract.collateralMapping(address);
|
|
3818
|
-
|
|
3819
|
-
|
|
3820
|
-
|
|
3821
|
-
|
|
3822
|
-
});
|
|
3823
|
-
}
|
|
3818
|
+
activeCollaterals.push({
|
|
3819
|
+
address,
|
|
3820
|
+
collateral
|
|
3821
|
+
});
|
|
3824
3822
|
}
|
|
3825
3823
|
return activeCollaterals;
|
|
3826
3824
|
});
|