Skip to content

Commit

Permalink
Update funding rate param (#57)
Browse files Browse the repository at this point in the history
* fix: update wrong param

* feat: update version

* fix: fix candle data param
  • Loading branch information
nick-bisonai authored Sep 19, 2024
1 parent cdfbdde commit 5234ec3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion datamaxi/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.18.0"
__version__ = "0.18.1"
4 changes: 2 additions & 2 deletions datamaxi/datamaxi/candle.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ def get(
"market": market,
"page": page,
"limit": limit,
"fromDateTime": fromDateTime,
"toDateTime": toDateTime,
"from": fromDateTime,
"to": toDateTime,
"sort": sort,
}

Expand Down
4 changes: 2 additions & 2 deletions datamaxi/datamaxi/funding_rate.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ def get(
"symbol": symbol,
"page": page,
"limit": limit,
"fromDateTime": fromDateTime,
"toDateTime": toDateTime,
"from": fromDateTime,
"to": toDateTime,
"sort": sort,
}

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "datamaxi"
version = "0.18.0"
version = "0.18.1"
authors = [
{ name="Bisonai", email="business@bisonai.com" },
]
Expand Down

0 comments on commit 5234ec3

Please sign in to comment.