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
2 changes: 1 addition & 1 deletion 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.30.0",
"packageManager": "pnpm@10.30.2",
"scripts": {
"dev": "turbo run dev",
"build": "NODE_OPTIONS='--max-old-space-size=8192' turbo run build",
Expand Down
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.20260219.0",
"@cloudflare/workers-types": "^4.20260303.0",
"@types/react": "^18.3.28",
"jest-image-snapshot": "^6.5.1",
"tsx": "4.20.4",
Expand Down
1,015 changes: 515 additions & 500 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@graphprotocol/contracts": "^7.3.0",
"@pinax/graph-networks-registry": "^0.7.1",
"@react-hookz/web": "^25.2.0",
"@readme/httpsnippet": "^11.0.0",
"@readme/httpsnippet": "^11.1.0",
"@readme/openapi-parser": "^4.1.2",
"fetch-har": "^11.1.1",
"hast": "^1.0.0",
Expand All @@ -34,7 +34,7 @@
"mdast-util-mdx-jsx": "^3.2.0",
"mdast-util-to-hast": "^13.2.1",
"mixpanel-browser": "^2.74.0",
"motion": "^12.34.2",
"motion": "^12.34.3",
"next": "^14.2.35",
"next-seo": "^6.8.0",
"next-sitemap": "^4.2.3",
Expand All @@ -55,15 +55,15 @@
},
"devDependencies": {
"@types/hast": "^3.0.4",
"@types/lodash": "^4.17.23",
"@types/lodash": "^4.17.24",
"@types/mdast": "^4.0.4",
"@types/mixpanel-browser": "^2.66.0",
"@types/node": "^22.19.11",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@types/vfile": "^4.0.0",
"autoprefixer": "^10.4.24",
"fast-xml-parser": "^5.3.6",
"fast-xml-parser": "^5.3.7",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.19",
"tsup": "^8.5.1",
Expand Down
1 change: 0 additions & 1 deletion website/route-lockfile.txt
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@
/en/supported-networks/tempo-moderato/
/en/supported-networks/tron-evm/
/en/supported-networks/tron/
/en/supported-networks/ultra/
/en/supported-networks/unichain-testnet/
/en/supported-networks/unichain/
/en/supported-networks/vana-moksha/
Expand Down
2 changes: 1 addition & 1 deletion website/src/layout/templates/openApi/aside.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ function TemplateOpenApiAsideContent(props: ComponentProps<'div'>) {

const snippets = objectFromEntries(
objectKeys(snippetLanguages).map((language) => {
let code = (snippet.convert(language) || [])[0] ?? ''
let code = snippet.convert(language)[0] || ''
// Unencode placeholders potentially present in the URL
for (const placeholder of [
...Object.values(PLACEHOLDERS),
Expand Down
12 changes: 4 additions & 8 deletions website/src/pages/en/token-api/endpoints/pricing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,14 @@ sidebarTitle: Pricing
| Query parameters: 10 items returned, batch size 1 | Query parameters: 100 items returned, batch size 25 | Query parameters: 500 items returned, batch size 50 | Custom items returned and batch size |
| Rate limit: 200/min | Rate limit: 500/min | Rate limit: 1000/min | Custom rate limit |
| Time parameters: 4h, 1d, 1w intervals | Time parameters: 1h, 4h, 1d, 1w intervals | Time parameters: 1h, 4h, 1d, 1w intervals | Time parameters: 1h, 4h, 1d, 1w intervals |
| Time interval window: 168 bars | Time interval window: 2160 bars | Time interval window: Full | Time interval window: Full |
| Historical price data: Full availability | Historical price data: Full availability | Historical price data: Full availability | Historical price data: Full availability |
| No additional queries allowed outside of free tier | Pay-as-you-go once included usage is exceeded | Pay-as-you-go once included usage is exceeded | SLAs + Engineering Support |

## Time Intervals and Parameters (\*)
## Time Intervals and Parameters

1. The **time interval window** is calculated as: **`bars × interval`**.
- **Example**: The Free plan provides 168 bars with a 4h interval: 168 × 4h = 28 days of data.
2. **Full historical data** is available on all plans.
3. **Pagination** is still required to fetch all results. Users won't receive more data than the plan's total bar limit.
- **Example**: The Free plan allows 168 bars and a 10-result limit per query, so you'll need 17 queries to retrieve all pages.
4. You can use **`start_time`** and **`end_time`** to move your time window across history.
1. **Full historical data** is available on all plans.
2. **Pagination** is still required to fetch all results.
3. You can use **`start_time`** and **`end_time`** to move your time window across history.
- **Example**: `start_time=2025-01-01`, `end_time=2025-01-28`, and `interval=4h` (Free plan) will return 28 days of data for that range.

## Token Endpoints - $15/mil queries
Expand Down