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
24 changes: 23 additions & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
"stride.json",
"xion.json",
"snapshots.json",
"stablecoins.json"
"stablecoins.json",
"neutron.json"
],
"codeLanguages": [
"curl",
Expand Down Expand Up @@ -408,6 +409,27 @@
]
}
]
},
{
"groupName": "Neutron",
"subpages": [
{
"groupName": "DEX",
"subpages": [
"reference/neutron/get-dex-pairs",
"reference/neutron/get-dex-liquidity",
"reference/neutron/get-dex-price",
"reference/neutron/get-dex-trades",
"reference/neutron/get-dex-swap-volume"
]
},
{
"groupName": "Trading",
"subpages": [
"reference/neutron/get-trading-volume"
]
}
]
}
]
}
Expand Down
8 changes: 8 additions & 0 deletions docs/reference/neutron/get-dex-liquidity.endpoint.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
route: GET /dex/liquidity/{denom0}/{denom1}
---

{/* Don't change the file name or the metadata in this file */}
import PriceTag from "@site/src/components/PriceTag";

<PriceTag price={5}/>
8 changes: 8 additions & 0 deletions docs/reference/neutron/get-dex-pairs.endpoint.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
route: GET /dex/pairs
---

{/* Don't change the file name or the metadata in this file */}
import PriceTag from "@site/src/components/PriceTag";

<PriceTag price={5}/>
8 changes: 8 additions & 0 deletions docs/reference/neutron/get-dex-price.endpoint.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
route: GET /dex/price/{denom0}/{denom1}
---

{/* Don't change the file name or the metadata in this file */}
import PriceTag from "@site/src/components/PriceTag";

<PriceTag price={5}/>
8 changes: 8 additions & 0 deletions docs/reference/neutron/get-dex-swap-volume.endpoint.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
route: GET /dex/swap-volume/{denom0}/{denom1}
---

{/* Don't change the file name or the metadata in this file */}
import PriceTag from "@site/src/components/PriceTag";

<PriceTag price={5}/>
8 changes: 8 additions & 0 deletions docs/reference/neutron/get-dex-trades.endpoint.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
route: GET /dex/trades/{denom0}/{denom1}
---

{/* Don't change the file name or the metadata in this file */}
import PriceTag from "@site/src/components/PriceTag";

<PriceTag price={5}/>
8 changes: 8 additions & 0 deletions docs/reference/neutron/get-trading-volume.endpoint.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
route: GET /trading/volume
---

{/* Don't change the file name or the metadata in this file */}
import PriceTag from "@site/src/components/PriceTag";

<PriceTag price={5}/>
556 changes: 556 additions & 0 deletions openAPI/neutron.json

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions scripts/src/api-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@ export const apiConfig: ApiSection[] = [
oasFile: "https://api-docs.numia.xyz/xion/openapi.json",
title: "Xion",
},
{
name: "neutron",
categoryName: "Advanced APIs",
oasFile: "https://api-docs.numia.xyz/neutron/openapi.json",
title: "Neutron",
},
{
name: "snapshots",
categoryName: "Tools",
Expand Down