@reflectmoney/stable.ts 1.2.7 → 1.2.8

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.
@@ -276,12 +276,10 @@ class UsdcPlusStablecoin extends Stablecoin_1.Stablecoin {
276
276
  const { supply, decimals } = yield (0, spl_token_1.getMint)(this.connection, this.stablecoinMint, "confirmed");
277
277
  const [{ mint: usdcMint }] = this.collaterals;
278
278
  const { data: [{ price: { expo, price } }] } = yield this.getCollateralPrice(usdcMint);
279
- console.log({ price, expo, supply, EXCHANGE_RATE_PRECISION: constants_1.EXCHANGE_RATE_PRECISION, decimals });
280
279
  const exchangeRate = usdcAmount
281
280
  .mul(new bn_js_1.default(price))
282
281
  .mul(new bn_js_1.default(constants_1.EXCHANGE_RATE_PRECISION)) // gives us exhcnage rate precision
283
282
  .div(new bn_js_1.default(supply.toString())) // price per stablecoin
284
- .div(new bn_js_1.default(10).pow(new bn_js_1.default(decimals))) // cancels out the USDC decimals
285
283
  .div(new bn_js_1.default(10).pow(new bn_js_1.default(expo).abs())); // cancels out the price decimals
286
284
  return exchangeRate.toNumber();
287
285
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reflectmoney/stable.ts",
3
- "version": "1.2.7",
3
+ "version": "1.2.8",
4
4
  "type": "commonjs",
5
5
  "author": "stablecoinjesus @ Palindrome Engineering",
6
6
  "repository": {