Skip to content

Commit a6518e0

Browse files
authored
Update Token API (#1102)
* Update dependencies * Update Token API * Build
1 parent 3b999e3 commit a6518e0

27 files changed

Lines changed: 13660 additions & 7158 deletions

File tree

package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "graph-docs",
33
"private": true,
44
"version": "1.0.0",
5-
"packageManager": "pnpm@10.33.2",
5+
"packageManager": "pnpm@10.33.4",
66
"scripts": {
77
"dev": "turbo run dev",
88
"build": "NODE_OPTIONS='--max-old-space-size=8192' turbo run build",
@@ -25,16 +25,18 @@
2525
"eslint": "^8.57.1",
2626
"eslint-plugin-mdx": "^3.7.0",
2727
"prettier": "^3.8.3",
28-
"prettier-plugin-tailwindcss": "^0.7.3",
28+
"prettier-plugin-tailwindcss": "^0.8.0",
2929
"remark-frontmatter": "^5.0.0",
3030
"remark-lint-first-heading-level": "^4.0.1",
3131
"remark-lint-heading-increment": "^4.0.1",
3232
"remark-lint-no-heading-punctuation": "^4.0.1",
3333
"remark-lint-restrict-elements": "workspace:*",
34-
"turbo": "^2.9.6",
34+
"turbo": "^2.9.9",
3535
"typescript": "^5.9.3"
3636
},
3737
"resolutions": {
38-
"@babel/core": "7.26.7"
38+
"@babel/core": "7.26.7",
39+
"@uniswap/sdk-core": "7.12.2",
40+
"@uniswap/v3-sdk": "3.29.2"
3941
}
4042
}

packages/og-image/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"yoga-wasm-web": "^0.3.3"
1717
},
1818
"devDependencies": {
19-
"@cloudflare/workers-types": "^4.20260423.1",
19+
"@cloudflare/workers-types": "^4.20260507.1",
2020
"@types/react": "^18.3.28",
2121
"jest-image-snapshot": "^6.5.2",
2222
"tsx": "4.20.4",

pnpm-lock.yaml

Lines changed: 5473 additions & 6996 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@
6363
"@types/react-dom": "^18.3.7",
6464
"@types/vfile": "^4.0.0",
6565
"autoprefixer": "^10.5.0",
66-
"fast-xml-parser": "^5.7.1",
67-
"postcss": "^8.5.10",
66+
"fast-xml-parser": "^5.7.3",
67+
"postcss": "^8.5.14",
6868
"tailwindcss": "^3.4.19",
6969
"tsup": "^8.5.1",
7070
"tsx": "4.20.4"

website/route-lockfile.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,19 @@
247247
/en/token-api/faq/
248248
/en/token-api/guides/gpt/
249249
/en/token-api/guides/polymarket/
250+
/en/token-api/hyperliquid-markets/activity/
251+
/en/token-api/hyperliquid-markets/dexes/
252+
/en/token-api/hyperliquid-markets/liquidations-ohlc/
253+
/en/token-api/hyperliquid-markets/liquidations/
254+
/en/token-api/hyperliquid-markets/markets/
255+
/en/token-api/hyperliquid-markets/ohlc/
256+
/en/token-api/hyperliquid-markets/oi/
257+
/en/token-api/hyperliquid-platform/platform/
258+
/en/token-api/hyperliquid-users/activity/
259+
/en/token-api/hyperliquid-users/positions/
260+
/en/token-api/hyperliquid-users/users/
261+
/en/token-api/hyperliquid-vaults/depositors/
262+
/en/token-api/hyperliquid-vaults/vaults/
250263
/en/token-api/monitoring/health/
251264
/en/token-api/monitoring/networks/
252265
/en/token-api/monitoring/version/

website/src/openApi/index.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,22 @@ export const APIS: Record<ApiId, ApiConfig> = {
6565
path: '/token-api/polymarket-users',
6666
operationIdPrefixes: ['getV1Polymarket', 'getV1PolymarketUsers'],
6767
},
68+
'Hyperliquid Markets': {
69+
path: '/token-api/hyperliquid-markets',
70+
operationIdPrefixes: ['getV1Hyperliquid', 'getV1HyperliquidMarkets'],
71+
},
72+
'Hyperliquid Platform': {
73+
path: '/token-api/hyperliquid-platform',
74+
operationIdPrefixes: ['getV1Hyperliquid', 'getV1HyperliquidPlatform'],
75+
},
76+
'Hyperliquid Users': {
77+
path: '/token-api/hyperliquid-users',
78+
operationIdPrefixes: ['getV1Hyperliquid', 'getV1HyperliquidUsers'],
79+
},
80+
'Hyperliquid Vaults': {
81+
path: '/token-api/hyperliquid-vaults',
82+
operationIdPrefixes: ['getV1Hyperliquid', 'getV1HyperliquidVaults'],
83+
},
6884
Monitoring: {
6985
path: '/token-api/monitoring',
7086
operationIdPrefixes: ['getV1'],

0 commit comments

Comments
 (0)