@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.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
- if (collateral.active) {
3819
- activeCollaterals.push({
3820
- address,
3821
- collateral
3822
- });
3823
- }
3818
+ activeCollaterals.push({
3819
+ address,
3820
+ collateral
3821
+ });
3824
3822
  }
3825
3823
  return activeCollaterals;
3826
3824
  });