Skip to content

Commit fe21ff7

Browse files
committed
chore: change slippage calcuation in right swap
1 parent da6ea4a commit fe21ff7

File tree

1 file changed

+4
-3
lines changed
  • spec/app/ics-101-interchain-liquidity

1 file changed

+4
-3
lines changed

spec/app/ics-101-interchain-liquidity/README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1184,26 +1184,27 @@ function swap(msg: MsgSwapRequest): MsgSwapResponse {
11841184
const amm = new InterchainMarketMaker(pool);
11851185

11861186
let tokenOut: sdk.Coin | undefined;
1187+
let tokenIn: sdk.Coin | undefined;
11871188
let msgType: SwapMessageType;
1189+
let expected:number
11881190

11891191
switch (msg.swapType) {
11901192
case "LEFT":
11911193
msgType = "LEFT_SWAP";
11921194
tokenOut = amm.leftSwap(msg.tokenIn, msg.tokenOut.denom);
1195+
expected = msg.tokenOut.amount * (1 - msg.slippage);
11931196
break;
11941197
case "RIGHT":
11951198
msgType = "RIGHT_SWAP";
11961199
tokenOut = amm.rightSwap(msg.tokenIn, msg.tokenOut);
1200+
expected = msg.tokenIn.amount * (1 - msg.slippage);
11971201
break;
11981202
default:
11991203
abortTransactionUnless(false);
12001204
}
12011205

12021206

12031207
abortTransactionUnless(tokenOut?.amount? <= 0);
1204-
1205-
const expected = msg.tokenOut.amount * (1 - msg.slippage);
1206-
12071208
abortTransactionUnless(tokenOut?.amount?.gte(expected));
12081209

12091210
const lockErr = store.lockTokens(pool.counterPartyPort, pool.counterPartyChannel, msg.sender, msg.tokenIn);

0 commit comments

Comments
 (0)