Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Binance.com (not US) plugin #45

Merged
merged 34 commits into from
Aug 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
f63bff5
Fix Dividend Window Adjustment Bug
macanudo527 Jul 18, 2022
dd72538
Fix Double TranId Bug
macanudo527 Jul 18, 2022
999eb98
Extend sleep timer to avoid Too Many Requests Error
macanudo527 Jul 21, 2022
77ee6e2
Fix Throttling Error
macanudo527 Jul 21, 2022
3887856
Fix Dust Asset ID Bug
macanudo527 Jul 24, 2022
34ee5f9
Add Old System of Savings Endpoints
macanudo527 Jul 25, 2022
952a996
Add Old Savings API
macanudo527 Jul 26, 2022
436675b
Add tests for early redemption penalty
macanudo527 Jul 29, 2022
6ba1ed8
Add Old interest API
macanudo527 Aug 1, 2022
cfaa30b
Merge branch 'main' into binance_plugin
eprbell Aug 1, 2022
c596328
Fix pylint issue
macanudo527 Aug 2, 2022
74bae37
Merge branch 'binance_plugin' of github.com:macanudo527/dali-rp2 into…
macanudo527 Aug 2, 2022
bbf2e13
Remove Binance CSV from PR
macanudo527 Aug 3, 2022
1f5f0cf
Fix pylint bugs
macanudo527 Aug 3, 2022
7d5fa69
Merge branch 'eprbell:main' into binance_plugin
macanudo527 Aug 7, 2022
edbe0e0
Merge branch 'eprbell:main' into binance_plugin
macanudo527 Aug 11, 2022
1f3229d
Make changes for merge
macanudo527 Aug 13, 2022
128a186
Merge with main
macanudo527 Aug 13, 2022
450b22d
Add underscore to variables
macanudo527 Aug 13, 2022
07cfb2b
Skip failed transactions, flexible dividend detection
iloveitaly Aug 13, 2022
62559bf
Add raise exceptions for internal errors
macanudo527 Aug 14, 2022
b20b2f5
Merge pull request #4 from iloveitaly/binance-plugin-dividend-fixes
macanudo527 Aug 14, 2022
ac4f3d5
Merge branch 'eprbell:main' into binance_plugin
macanudo527 Aug 14, 2022
74a4e1e
Delete unnecessary comment
macanudo527 Aug 15, 2022
d0d451b
Fix inconsistent returns
macanudo527 Aug 15, 2022
bd004e1
Merge branch 'eprbell:main' into binance_plugin
macanudo527 Aug 18, 2022
20f7f6e
Merge branch 'eprbell:main' into binance_plugin
macanudo527 Aug 18, 2022
daa7e16
Merge main into binance_plugin
macanudo527 Aug 19, 2022
34913f8
Fix minor naming issues
macanudo527 Aug 22, 2022
5557a61
Fix naming issue in tests
macanudo527 Aug 24, 2022
297e29d
Merge branch 'eprbell:main' into binance_plugin
macanudo527 Aug 25, 2022
34c7e64
Capitalize Keywords, disable protected-access
macanudo527 Aug 25, 2022
6fe3c12
Fix private attribute errors
macanudo527 Aug 25, 2022
d89b85e
Merge branch 'main' into binance_plugin
macanudo527 Aug 26, 2022
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
9 changes: 9 additions & 0 deletions mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,11 @@ disallow_any_decorated = False
disallow_any_explicit = False
disallow_any_expr = False

[mypy-dali.plugin.input.rest.binance_com]
disallow_any_decorated = False
disallow_any_explicit = False
disallow_any_expr = False

[mypy-dali.transaction_resolver]
disallow_any_unimported = False
disallow_any_expr = False
Expand All @@ -113,6 +118,10 @@ disallow_any_expr = False
disallow_any_explicit = False
disallow_any_expr = False

[mypy-test_plugin_binance_com]
disallow_any_explicit = False
disallow_any_expr = False

[mypy-test_plugin_ccxt]
disallow_any_explicit = False
disallow_any_expr = False
Loading