@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.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
|
-
|
|
3862
|
-
|
|
3863
|
-
|
|
3864
|
-
|
|
3865
|
-
});
|
|
3866
|
-
}
|
|
3861
|
+
activeCollaterals.push({
|
|
3862
|
+
address,
|
|
3863
|
+
collateral
|
|
3864
|
+
});
|
|
3867
3865
|
}
|
|
3868
3866
|
return activeCollaterals;
|
|
3869
3867
|
});
|