@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 CHANGED
@@ -3858,12 +3858,10 @@ function getOffersEvm(provider, tokenHolderContractAddress, collateralAddresses)
3858
3858
  const activeCollaterals = [];
3859
3859
  for (const address of collateralAddresses) {
3860
3860
  const collateral = yield contract.collateralMapping(address);
3861
- if (collateral.active) {
3862
- activeCollaterals.push({
3863
- address,
3864
- collateral
3865
- });
3866
- }
3861
+ activeCollaterals.push({
3862
+ address,
3863
+ collateral
3864
+ });
3867
3865
  }
3868
3866
  return activeCollaterals;
3869
3867
  });