Skip to content

Commit

Permalink
docs: fix misconfigured urls
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-bisonai committed Oct 10, 2024
1 parent 364e39a commit e7e395f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions datamaxi/datamaxi/cex_candle.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def get(
`GET /api/v1/cex/candle`
<https://docs.datamaxiplus.com/rest/cex-candle/candle>
<https://docs.datamaxiplus.com/rest/cex/candle/data>
Args:
exchange (str): Exchange name
Expand Down Expand Up @@ -121,7 +121,7 @@ def exchanges(self, market: str = "spot") -> List[str]:
`GET /api/v1/cex/candle/exchanges`
<https://docs.datamaxiplus.com/rest/cex-candle/exchanges>
<https://docs.datamaxiplus.com/rest/cex/candle/exchanges>
Args:
market (str): Market type (spot/futures)
Expand All @@ -145,7 +145,7 @@ def symbols(self, exchange: str = None, market: str = None) -> List[Dict]:
`GET /api/v1/cex/candle/symbols`
<https://docs.datamaxiplus.com/rest/cex-candle/symbols>
<https://docs.datamaxiplus.com/rest/cex/candle/symbols>
Args:
exchange (str): Exchange name
Expand Down Expand Up @@ -173,7 +173,7 @@ def intervals(self, exchange: str, market: str = "spot") -> List[str]:
`GET /api/v1/candle/intervals`
<https://docs.datamaxiplus.com/rest/cex-candle/intervals>
<https://docs.datamaxiplus.com/rest/cex/candle/intervals>
Args:
exchange (str): Exchange name
Expand Down
10 changes: 5 additions & 5 deletions datamaxi/datamaxi/dex_candle.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def get(
`GET /api/v1/dex/candle`
<https://docs.datamaxiplus.com/rest/dex-candle/candle>
<https://docs.datamaxiplus.com/rest/dex/candle/data>
Args:
chain (str): Chain name
Expand Down Expand Up @@ -117,7 +117,7 @@ def chains(self) -> List[str]:
`GET /api/v1/dex/candle/chains`
<https://docs.datamaxiplus.com/rest/dex-candle/chains>
<https://docs.datamaxiplus.com/rest/dex/candle/chains>
Returns:
List of supported chains
Expand All @@ -133,7 +133,7 @@ def exchanges(self) -> List[str]:
`GET /api/v1/dex/candle/exchanges`
<https://docs.datamaxiplus.com/rest/dex-candle/exchanges>
<https://docs.datamaxiplus.com/rest/dex/candle/exchanges>
Returns:
List of supported exchanges
Expand All @@ -149,7 +149,7 @@ def pools(self, exchange: str = None, chain: str = None) -> List[Dict]:
`GET /api/v1/dex/candle/pools`
<https://docs.datamaxiplus.com/rest/dex-candle/poolsx>
<https://docs.datamaxiplus.com/rest/dex/candle/pools>
Args:
exchange (str): Exchange name
Expand All @@ -174,7 +174,7 @@ def intervals(self) -> List[str]:
`GET /api/v1/dex/candle/intervals`
<https://docs.datamaxiplus.com/rest/dex-candle/intervals>
<https://docs.datamaxiplus.com/rest/dex/candle/intervals>
Returns:
List of supported intervals
Expand Down
8 changes: 4 additions & 4 deletions datamaxi/datamaxi/dex_trade.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def get(
`GET /api/v1/dex/trade`
<https://docs.datamaxiplus.com/rest/dex-trade/trade>
<https://docs.datamaxiplus.com/rest/dex/trade/data>
Args:
chain (str): Chain name
Expand Down Expand Up @@ -111,7 +111,7 @@ def chains(self) -> List[str]:
`GET /api/v1/dex/trade/chains`
<https://docs.datamaxiplus.com/rest/dex-trade/chains>
<https://docs.datamaxiplus.com/rest/dex/trade/chains>
Returns:
List of supported chains
Expand All @@ -127,7 +127,7 @@ def exchanges(self) -> List[str]:
`GET /api/v1/dex/trade/exchanges`
<https://docs.datamaxiplus.com/rest/dex-trade/exchanges>
<https://docs.datamaxiplus.com/rest/dex/trade/exchanges>
Returns:
List of supported exchanges
Expand All @@ -142,7 +142,7 @@ def pools(self, exchange: str = None, chain: str = None) -> List[Dict]:
`GET /api/v1/dex/trade/pools`
<https://docs.datamaxiplus.com/rest/dex-trade/pools>
<https://docs.datamaxiplus.com/rest/dex/trade/pools>
Args:
exchange (str): Exchange name
Expand Down

0 comments on commit e7e395f

Please sign in to comment.