@merkl/api 0.20.55 → 0.20.56
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,6 +50,7 @@ export const UniswapController = new Elysia({
|
|
50
50
|
}, {
|
51
51
|
detail: {
|
52
52
|
description: "Get Uniswap V4 pools by chain",
|
53
|
+
hide: true,
|
53
54
|
},
|
54
55
|
})
|
55
56
|
.get("pools/:chainId", async ({ params }) => {
|
@@ -62,6 +63,9 @@ export const UniswapController = new Elysia({
|
|
62
63
|
},
|
63
64
|
response: t.Record(t.String(), // poolId
|
64
65
|
UniswapV4PoolDto),
|
66
|
+
detail: {
|
67
|
+
hide: true,
|
68
|
+
},
|
65
69
|
})
|
66
70
|
.get("/:poolId", async ({ params }) => {
|
67
71
|
return Object.values(await CacheService.wrap(TTLPresets.DAY_1, UniswapService.getUniswapV4Pools))
|
@@ -70,6 +74,9 @@ export const UniswapController = new Elysia({
|
|
70
74
|
}, {
|
71
75
|
params: Bytes32Dto,
|
72
76
|
response: t.Array(UniswapV4PoolDto),
|
77
|
+
detail: {
|
78
|
+
hide: true,
|
79
|
+
},
|
73
80
|
})
|
74
81
|
.post("/update", async () => {
|
75
82
|
await CacheService.set(TTLPresets.DAY_1, UniswapService.getUniswapV4Pools);
|