Skip to content
Open
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
1 change: 0 additions & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,6 @@
"reference/osmosis/get-pools-liquidity-over-time",
"reference/osmosis/get-pools-depth-current",
"reference/osmosis/get-pools-depth-over-time",
"reference/osmosis/get-pools-depth-over-time-daily",
"reference/osmosis/get-pools-apr",
"reference/osmosis/get-pools-apr-range",
"reference/osmosis/get-cl-pools-position-apr",
Expand Down

This file was deleted.

133 changes: 0 additions & 133 deletions openAPI/osmosis.json
Original file line number Diff line number Diff line change
Expand Up @@ -1922,139 +1922,6 @@
"summary": "Get Pools Depth Over Time"
}
},
"/pools/depth/{pool_id}/over_time_daily": {
"get": {
"operationId": "getPoolsDepthOverTimeDaily",
"tags": [],
"sidebar": "pools",
"servers": [
{
"url": "https://osmosis.numia.xyz"
},
{
"url": "https://osmosis-testnet.numia.xyz"
}
],
"attributes": {
"x-sidebar": "pools"
},
"parameters": [
{
"schema": {
"type": "string"
},
"required": true,
"name": "pool_id",
"in": "path"
},
{
"schema": {
"type": "string",
"enum": [
"10",
"5",
"2",
"1",
"0.1"
]
},
"required": true,
"name": "percent",
"in": "query"
},
{
"schema": {
"type": "string"
},
"required": true,
"name": "start_date",
"in": "query"
},
{
"schema": {
"type": "string"
},
"required": false,
"name": "end_date",
"in": "query"
}
],
"responses": {
"200": {
"description": "Status: 200",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"hour": {
"type": "string",
"description": "Date in the format YYYY-MM-DD HH:MM:SS"
},
"base_sell_depth": {
"type": "object",
"properties": {
"token_denom": {
"type": "string"
},
"token_amount": {
"type": "number"
},
"usd_amount": {
"type": "number"
},
"depth": {
"type": "number"
}
},
"required": [
"token_denom",
"token_amount",
"usd_amount",
"depth"
]
},
"quote_sell_depth": {
"type": "object",
"properties": {
"token_denom": {
"type": "string"
},
"token_amount": {
"type": "number"
},
"usd_amount": {
"type": "number"
},
"depth": {
"type": "number"
}
},
"required": [
"token_denom",
"token_amount",
"usd_amount",
"depth"
]
}
},
"required": [
"hour",
"base_sell_depth",
"quote_sell_depth"
]
}
}
}
}
}
},
"description": "import PriceTag from \"@site/src/components/PriceTag\";\n\n<PriceTag price={5}/>",
"summary": "Get Pools Depth Over Time Daily"
}
},
"/apr": {
"get": {
"operationId": "getApr",
Expand Down