Skip to content

Commit 5594501

Browse files
authored
Update Token API (#1042)
1 parent 072b861 commit 5594501

File tree

227 files changed

+8840
-1082
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

227 files changed

+8840
-1082
lines changed

package.json

Lines changed: 3 additions & 3 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.20.0",
5+
"packageManager": "pnpm@10.22.0",
66
"scripts": {
77
"dev": "turbo run dev",
88
"build": "NODE_OPTIONS='--max-old-space-size=8192' turbo run build",
@@ -21,7 +21,7 @@
2121
},
2222
"devDependencies": {
2323
"@edgeandnode/eslint-config": "^2.0.3",
24-
"@types/node": "^22.18.13",
24+
"@types/node": "^22.19.1",
2525
"eslint": "^8.57.1",
2626
"eslint-plugin-mdx": "^3.6.2",
2727
"prettier": "^3.6.2",
@@ -31,7 +31,7 @@
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.5.8",
34+
"turbo": "^2.6.1",
3535
"typescript": "^5.9.3"
3636
},
3737
"resolutions": {

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.20251014.0",
19+
"@cloudflare/workers-types": "^4.20251111.0",
2020
"@types/react": "^18.3.26",
2121
"jest-image-snapshot": "^6.5.1",
2222
"tsx": "4.20.4",

pnpm-lock.yaml

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

website/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
"dependencies": {
2020
"@docsearch/react": "^3.9.0",
2121
"@edgeandnode/common": "^7.0.4",
22-
"@edgeandnode/gds": "^6.7.7",
23-
"@edgeandnode/go": "^10.3.11",
22+
"@edgeandnode/gds": "^6.7.8",
23+
"@edgeandnode/go": "^10.3.12",
2424
"@emotion/react": "^11.14.0",
2525
"@graphprotocol/contracts": "^7.3.0",
2626
"@pinax/graph-networks-registry": "^0.7.1",
27-
"@react-hookz/web": "^25.1.1",
27+
"@react-hookz/web": "^25.2.0",
2828
"@readme/httpsnippet": "^11.0.0",
2929
"@readme/openapi-parser": "^4.1.2",
3030
"fetch-har": "^11.1.1",
@@ -33,7 +33,7 @@
3333
"lodash": "^4.17.21",
3434
"mdast-util-mdx-jsx": "^3.2.0",
3535
"mdast-util-to-hast": "^13.2.0",
36-
"mixpanel-browser": "^2.71.0",
36+
"mixpanel-browser": "^2.71.1",
3737
"motion": "^12.23.24",
3838
"next": "^14.2.33",
3939
"next-seo": "^6.8.0",
@@ -58,12 +58,12 @@
5858
"@types/lodash": "^4.17.20",
5959
"@types/mdast": "^4.0.4",
6060
"@types/mixpanel-browser": "^2.66.0",
61-
"@types/node": "^22.18.13",
61+
"@types/node": "^22.19.1",
6262
"@types/react": "^18.3.26",
6363
"@types/react-dom": "^18.3.7",
6464
"@types/vfile": "^4.0.0",
65-
"autoprefixer": "^10.4.21",
66-
"fast-xml-parser": "^5.3.0",
65+
"autoprefixer": "^10.4.22",
66+
"fast-xml-parser": "^5.3.1",
6767
"postcss": "^8.5.6",
6868
"tailwindcss": "^3.4.18",
6969
"tsup": "^8.5.0",

website/src/openApi/index.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,14 @@ export const APIS: Record<ApiId, ApiConfig> = {
3333
path: '/token-api/svm-dexs',
3434
operationIdPrefixes: ['getV1Svm'],
3535
},
36+
'TVM Tokens': {
37+
path: '/token-api/tvm-tokens',
38+
operationIdPrefixes: ['getV1Tvm'],
39+
},
40+
'TVM DEXs': {
41+
path: '/token-api/tvm-dexs',
42+
operationIdPrefixes: ['getV1Tvm'],
43+
},
3644
Monitoring: {
3745
path: '/token-api/monitoring',
3846
operationIdPrefixes: ['getV1'],

0 commit comments

Comments
 (0)