forked from bitfinexcom/bitfinex-api-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
77 lines (60 loc) · 2.15 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
1.1.9
- Implemented PULSE endpoints (rest)
- Updated pyee and changed deprecated class EventEmitter() -> AsyncIOEventEmitter() to make it work with all Python 3.X versions
- Implemented Foreign exchange rate endpoint (rest)
- Implemented Market average price endpoint (rest)
- Implemented Generate invoice endpoint (rest)
- Implemented Keep funding endpoint (rest)
- Implemented Cancel order multi endpoint (rest)
- Implemented Public Stats endpoint (rest)
- Implemented Order Multi OP endpoint (rest)
- Implemented Public Tickers History (rest)
- Implemented Public Funding Stats (rest)
- Updated dependencies in setup.py
1.1.8
- Adds support for websocket events pu, pn and pu
1.1.7
- Adds rest.get_ledgers
1.1.6
- Adds 'new_ticker' websocket event stream
- Adds 'ws.stop' function to kill all websocket connections
- Fixes Position modal loading from raw array
1.1.5
- Fixes 100% CPU utilization bug with the generic_websocket event emitter thread
1.1.4
- Locks mutex when sending websocket messages
- Fix py3.8 stricter linting errors
1.1.3
- Adds ability to specify channel_filter in client
1.1.2
- Adds aff_code to WS and Rest submit order functions
1.1.1
- Rework README with new bfx templates
- Generate /docs/rest_v2.md
- Generate /docs/ws_v2.md
- Update comments for doc generation
- Allow only python3 installs in setup.py
1.1.0
- Adds rest.submit_funding_offer
- Adds rest.submit_cancel_funding_offer
- Adds rest.submit_wallet_transfer
- Adds rest.get_wallet_deposit_address
- Adds rest.create_wallet_deposit_address
- Adds rest.submit_wallet_withdraw
- Adds rest.submit_order
- Adds rest.submit_cancel_order
- Adds rest.submit_update_order
- Updates websocket notification event to use Notfication model object
1.0.1
- Added ws event `status_update`
- Added rest function `get_derivative_status`
- Added rest function `get_derivative_statuses`
- Added rest function `set_derivative_collateral`
- Added channel support `status`
- Added create_event_emitter as override in generic_websocket
for custom event emitters
1.0.0
- Removal of camel-casing file naming and git duplicates
i.e bfx.client instead of bfx.Client
0.0.1
- Added change-log and PR/Issue templates