Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GSW-593] feat: Change swap router key generation #236

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class SwapRouterRepositoryImpl implements SwapRouterRepository {
const swapRouter = new SwapRouter(pools);
const estimatedRoutes = swapRouter.estimateSwapRoute(inputTokenPath, outputTokenPath, BigInt(tokenAmount), exactType);

const routesQuery = makeRoutesQuery(estimatedRoutes);
const routesQuery = makeRoutesQuery(estimatedRoutes, inputToken.path);
const quotes = estimatedRoutes.map(route => route.quote).join(",");
const param = makeABCIParams("DrySwapRoute", [
inputTokenPath,
Expand Down Expand Up @@ -86,7 +86,7 @@ export class SwapRouterRepositoryImpl implements SwapRouterRepository {
estimatedRoutes,
tokenAmountLimit
} = request;
const routesQuery = makeRoutesQuery(estimatedRoutes);
const routesQuery = makeRoutesQuery(estimatedRoutes, inputToken.path);
const quotes = estimatedRoutes.map(route => route.quote).join(",");
const response = await this.walletClient.sendTransaction({
messages: [
Expand Down
149 changes: 149 additions & 0 deletions packages/web/src/utils/swap-route-utils.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
import { EstimatedRoute } from "@gnoswap-labs/swap-router";
import { makeRoutesQuery } from "./swap-route-utils";

const estimatedRoutes: EstimatedRoute[] = [
{
routeKey:
"gno.land/r/bar:gno.land/r/baz:500*POOL*gno.land/r/baz:gno.land/r/qux:500",
pools: [
{
poolPath: "gno.land/r/bar:gno.land/r/baz:500",
tokenAPath: "gno.land/r/bar",
tokenBPath: "gno.land/r/baz",
fee: 500,
tokenABalance: 49660n,
tokenBBalance: 99999n,
tickSpacing: 10,
maxLiquidityPerTick: 103951672670308,
price: 1.1912357939484004,
sqrtPriceX96: 112428146980036105194050682880n,
tick: 6999,
feeProtocol: 0,
tokenAProtocolFee: 0,
tokenBProtocolFee: 0,
liquidity: 740557n,
ticks: [5000, 9000],
tickBitmaps: {},
positions: [
{
liquidity: 740557n,
owner: "g1htpxzv2dkplvzg50nd8fswrneaxmdpwn459thx",
tickLower: 5000,
tickUpper: 9000,
tokenAOwed: 0n,
tokenBOwed: 0n,
},
],
},
{
poolPath: "gno.land/r/baz:gno.land/r/qux:500",
tokenAPath: "gno.land/r/baz",
tokenBPath: "gno.land/r/qux",
fee: 500,
tokenABalance: 49660n,
tokenBBalance: 99999n,
tickSpacing: 10,
maxLiquidityPerTick: 103951672670308,
price: 1.1912357939484004,
sqrtPriceX96: 112428146980036105194050682880n,
tick: 6999,
feeProtocol: 0,
tokenAProtocolFee: 0,
tokenBProtocolFee: 0,
liquidity: 740557n,
ticks: [5000, 9000],
tickBitmaps: {},
positions: [
{
liquidity: 740557n,
owner: "g1htpxzv2dkplvzg50nd8fswrneaxmdpwn459thx",
tickLower: 5000,
tickUpper: 9000,
tokenAOwed: 0n,
tokenBOwed: 0n,
},
],
},
],
quote: 95,
amountIn: 9500n,
amountOut: 36480n,
},
{
routeKey:
"gno.land/r/bar:gno.land/r/foo:500*POOL*gno.land/r/foo:gno.land/r/qux:500",
pools: [
{
poolPath: "gno.land/r/bar:gno.land/r/foo:500",
tokenAPath: "gno.land/r/bar",
tokenBPath: "gno.land/r/foo",
fee: 500,
tokenABalance: 1839n,
tokenBBalance: 4999n,
tickSpacing: 10,
maxLiquidityPerTick: 103951672670308,
price: 1.2840093675402746,
sqrtPriceX96: 130621891405341616875390369792n,
tick: 9999,
feeProtocol: 0,
tokenAProtocolFee: 0,
tokenBProtocolFee: 0,
liquidity: 31870n,
ticks: [8000, 12000],
tickBitmaps: {},
positions: [
{
liquidity: 31870n,
owner: "g1htpxzv2dkplvzg50nd8fswrneaxmdpwn459thx",
tickLower: 8000,
tickUpper: 12000,
tokenAOwed: 0n,
tokenBOwed: 0n,
},
],
},
{
poolPath: "gno.land/r/foo:gno.land/r/qux:500",
tokenAPath: "gno.land/r/foo",
tokenBPath: "gno.land/r/qux",
fee: 500,
tokenABalance: 1839n,
tokenBBalance: 4999n,
tickSpacing: 10,
maxLiquidityPerTick: 103951672670308,
price: 1.2840093675402746,
sqrtPriceX96: 130621891405341616875390369792n,
tick: 9999,
feeProtocol: 0,
tokenAProtocolFee: 0,
tokenBProtocolFee: 0,
liquidity: 31870n,
ticks: [8000, 12000],
tickBitmaps: {},
positions: [
{
liquidity: 31870n,
owner: "g1htpxzv2dkplvzg50nd8fswrneaxmdpwn459thx",
tickLower: 8000,
tickUpper: 12000,
tokenAOwed: 0n,
tokenBOwed: 0n,
},
],
},
],
quote: 5,
amountIn: 500n,
amountOut: 3360n,
},
];

describe("make swap route query", () => {
test("2 routes and 2 pools", async () => {
const routeKey = makeRoutesQuery(estimatedRoutes, "gno.land/r/bar");

expect(routeKey).toBe(
"gno.land/r/bar:gno.land/r/baz:500*POOL*gno.land/r/baz:gno.land/r/qux:500,gno.land/r/bar:gno.land/r/foo:500*POOL*gno.land/r/foo:gno.land/r/qux:500",
);
});
});
16 changes: 14 additions & 2 deletions packages/web/src/utils/swap-route-utils.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
import { EstimatedRoute } from "@gnoswap-labs/swap-router";

export function makeRoutesQuery(routes: EstimatedRoute[]) {
export function makeRoutesQuery(routes: EstimatedRoute[], fromPath: string) {
const POOL_DIVIDER = "*POOL*";
return routes
.map(route => route.pools.map(pool => pool.poolPath).join(POOL_DIVIDER))
.map(route => {
let curreentFromPath = fromPath;
return route.pools
.map(pool => {
const { tokenAPath, tokenBPath, fee } = pool;
const ordered = curreentFromPath === tokenAPath;
const inputTokenPath = ordered ? tokenAPath : tokenBPath;
const outputTokenPath = ordered ? tokenBPath : tokenAPath;
curreentFromPath = outputTokenPath;
return `${inputTokenPath}:${outputTokenPath}:${fee}`;
})
.join(POOL_DIVIDER);
})
.join(",");
}