Skip to content
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
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "graph-docs",
"private": true,
"version": "1.0.0",
"packageManager": "pnpm@10.33.2",
"packageManager": "pnpm@10.33.4",
"scripts": {
"dev": "turbo run dev",
"build": "NODE_OPTIONS='--max-old-space-size=8192' turbo run build",
Expand All @@ -25,16 +25,18 @@
"eslint": "^8.57.1",
"eslint-plugin-mdx": "^3.7.0",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.7.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"remark-frontmatter": "^5.0.0",
"remark-lint-first-heading-level": "^4.0.1",
"remark-lint-heading-increment": "^4.0.1",
"remark-lint-no-heading-punctuation": "^4.0.1",
"remark-lint-restrict-elements": "workspace:*",
"turbo": "^2.9.6",
"turbo": "^2.9.9",
"typescript": "^5.9.3"
},
"resolutions": {
"@babel/core": "7.26.7"
"@babel/core": "7.26.7",
"@uniswap/sdk-core": "7.12.2",
"@uniswap/v3-sdk": "3.29.2"
}
}
2 changes: 1 addition & 1 deletion packages/og-image/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"yoga-wasm-web": "^0.3.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260423.1",
"@cloudflare/workers-types": "^4.20260507.1",
"@types/react": "^18.3.28",
"jest-image-snapshot": "^6.5.2",
"tsx": "4.20.4",
Expand Down
12,469 changes: 5,473 additions & 6,996 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@
"@types/react-dom": "^18.3.7",
"@types/vfile": "^4.0.0",
"autoprefixer": "^10.5.0",
"fast-xml-parser": "^5.7.1",
"postcss": "^8.5.10",
"fast-xml-parser": "^5.7.3",
"postcss": "^8.5.14",
"tailwindcss": "^3.4.19",
"tsup": "^8.5.1",
"tsx": "4.20.4"
Expand Down
13 changes: 13 additions & 0 deletions website/route-lockfile.txt
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,19 @@
/en/token-api/faq/
/en/token-api/guides/gpt/
/en/token-api/guides/polymarket/
/en/token-api/hyperliquid-markets/activity/
/en/token-api/hyperliquid-markets/dexes/
/en/token-api/hyperliquid-markets/liquidations-ohlc/
/en/token-api/hyperliquid-markets/liquidations/
/en/token-api/hyperliquid-markets/markets/
/en/token-api/hyperliquid-markets/ohlc/
/en/token-api/hyperliquid-markets/oi/
/en/token-api/hyperliquid-platform/platform/
/en/token-api/hyperliquid-users/activity/
/en/token-api/hyperliquid-users/positions/
/en/token-api/hyperliquid-users/users/
/en/token-api/hyperliquid-vaults/depositors/
/en/token-api/hyperliquid-vaults/vaults/
/en/token-api/monitoring/health/
/en/token-api/monitoring/networks/
/en/token-api/monitoring/version/
Expand Down
16 changes: 16 additions & 0 deletions website/src/openApi/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,22 @@ export const APIS: Record<ApiId, ApiConfig> = {
path: '/token-api/polymarket-users',
operationIdPrefixes: ['getV1Polymarket', 'getV1PolymarketUsers'],
},
'Hyperliquid Markets': {
path: '/token-api/hyperliquid-markets',
operationIdPrefixes: ['getV1Hyperliquid', 'getV1HyperliquidMarkets'],
},
'Hyperliquid Platform': {
path: '/token-api/hyperliquid-platform',
operationIdPrefixes: ['getV1Hyperliquid', 'getV1HyperliquidPlatform'],
},
'Hyperliquid Users': {
path: '/token-api/hyperliquid-users',
operationIdPrefixes: ['getV1Hyperliquid', 'getV1HyperliquidUsers'],
},
'Hyperliquid Vaults': {
path: '/token-api/hyperliquid-vaults',
operationIdPrefixes: ['getV1Hyperliquid', 'getV1HyperliquidVaults'],
},
Monitoring: {
path: '/token-api/monitoring',
operationIdPrefixes: ['getV1'],
Expand Down
Loading
Loading