Skip to content

Commit 6c67748

Browse files
committed
add neutron docs
1 parent 47c024b commit 6c67748

11 files changed

+840
-1
lines changed

config.json

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
"stride.json",
3434
"xion.json",
3535
"snapshots.json",
36-
"stablecoins.json"
36+
"stablecoins.json",
37+
"neutron.json"
3738
],
3839
"codeLanguages": [
3940
"curl",
@@ -408,6 +409,30 @@
408409
]
409410
}
410411
]
412+
},
413+
{
414+
"groupName": "Neutron",
415+
"subpages": [
416+
{
417+
"groupName": "Market",
418+
"subpages": [
419+
"reference/neutron/get-orderbook-slippage",
420+
"reference/neutron/get-orderbook-depth",
421+
"reference/neutron/get-positions-duration-metrics",
422+
"reference/neutron/get-positions-long-short-ratio",
423+
"reference/neutron/get-markets-leverage",
424+
"reference/neutron/get-markets-price",
425+
"reference/neutron/get-markets-collateral",
426+
"reference/neutron/get-markets-unrealized-pnl-ranking"
427+
]
428+
},
429+
{
430+
"groupName": "Megavault",
431+
"subpages": [
432+
"reference/neutron/get-megavault-flow"
433+
]
434+
}
435+
]
411436
}
412437
]
413438
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
route: GET /market/collateral
3+
---
4+
5+
{/* Don't change the file name or the metadata in this file */}
6+
import PriceTag from "@site/src/components/PriceTag";
7+
8+
<PriceTag price={5}/>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
route: GET /market/leverage
3+
---
4+
5+
{/* Don't change the file name or the metadata in this file */}
6+
import PriceTag from "@site/src/components/PriceTag";
7+
8+
<PriceTag price={5}/>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
route: GET /market/price
3+
---
4+
5+
{/* Don't change the file name or the metadata in this file */}
6+
import PriceTag from "@site/src/components/PriceTag";
7+
8+
<PriceTag price={5}/>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
route: GET /market/unrealized_pnl_ranking
3+
---
4+
5+
{/* Don't change the file name or the metadata in this file */}
6+
import PriceTag from "@site/src/components/PriceTag";
7+
8+
<PriceTag price={5}/>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
route: GET /megavault/flow
3+
---
4+
5+
{/* Don't change the file name or the metadata in this file */}
6+
import PriceTag from "@site/src/components/PriceTag";
7+
8+
<PriceTag price={5}/>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
route: GET /market/orderbook/depth
3+
---
4+
5+
{/* Don't change the file name or the metadata in this file */}
6+
import PriceTag from "@site/src/components/PriceTag";
7+
8+
<PriceTag price={5}/>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
route: GET /market/orderbook/slippage
3+
---
4+
5+
{/* Don't change the file name or the metadata in this file */}
6+
import PriceTag from "@site/src/components/PriceTag";
7+
8+
<PriceTag price={5}/>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
route: GET /market/positions/duration_metrics
3+
---
4+
5+
{/* Don't change the file name or the metadata in this file */}
6+
import PriceTag from "@site/src/components/PriceTag";
7+
8+
<PriceTag price={5}/>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
route: GET /market/positions/long_short_ratio
3+
---
4+
5+
{/* Don't change the file name or the metadata in this file */}
6+
import PriceTag from "@site/src/components/PriceTag";
7+
8+
<PriceTag price={5}/>

0 commit comments

Comments
 (0)