@pendle/core-v2 0.6.2 → 0.6.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.
@@ -50,18 +50,18 @@ contract RouterStatic is IPRouterStatic {
50
50
  function removeLiquidityStatic(address market, uint256 lpToRemove)
51
51
  external
52
52
  view
53
- returns (uint256 netScpyut, uint256 netPtOut)
53
+ returns (uint256 netScyOut, uint256 netPtOut)
54
54
  {
55
55
  MarketState memory state = IPMarket(market).readState(false);
56
- (netScpyut, netPtOut) = state.removeLiquidity(lpToRemove, false);
56
+ (netScyOut, netPtOut) = state.removeLiquidity(lpToRemove, false);
57
57
  }
58
58
 
59
59
  function swapPtForScyStatic(address market, uint256 exactPtIn)
60
60
  external
61
- returns (uint256 netScpyut, uint256 netScyFee)
61
+ returns (uint256 netScyOut, uint256 netScyFee)
62
62
  {
63
63
  MarketState memory state = IPMarket(market).readState(false);
64
- (netScpyut, netScyFee) = state.swapExactPtForScy(
64
+ (netScyOut, netScyFee) = state.swapExactPtForScy(
65
65
  scyIndex(market),
66
66
  exactPtIn,
67
67
  block.timestamp,
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@pendle/core-v2",
3
3
  "description": "Core smart contracts of Pendle Protocol.",
4
4
  "license": "BUSL-1.1",
5
- "version": "0.6.2",
5
+ "version": "0.6.3",
6
6
  "homepage": "https://pendle.finance",
7
7
  "keywords": [
8
8
  "pendle",