@ape.swap/bonds-sdk 1.0.49 → 1.0.50

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.
@@ -106,7 +106,7 @@ var Bonds = function (_a) {
106
106
  useEffect(function () {
107
107
  axios.get('https://realtime-api.ape.bond/bonds').then(function (response) {
108
108
  var bonds = response.data.bonds.filter(function (x) {
109
- return x.soldOut !== true && x.inactive !== true;
109
+ return x.soldOut !== true && x.inactive !== true && x.discount < 100;
110
110
  });
111
111
  setBondData(bonds);
112
112
  });
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Ape Bond SDK",
4
4
  "author": "Ape Bond",
5
5
  "license": "MIT",
6
- "version": "1.0.49",
6
+ "version": "1.0.50",
7
7
  "main": "dist/index.js",
8
8
  "module": "dist/index.es.js",
9
9
  "types": "dist/index.d.ts",