Features
- Adds a new method to get fees via [a new endpoint](https://docs.bitvavo.com/#tag/Account-endpoints/paths/~1account~1fees/get)
Call the following method to access the fees:
py
from python_bitvavo_api.bitvavo import Bitvavo
bitvavo = Bitvavo('<APIKEY>', '<APISECRET>')
response = bitvavo.fees()
You can also pass a market to get fees for that specific market:
py
from python_bitvavo_api.bitvavo import Bitvavo
bitvavo = Bitvavo('<APIKEY>', '<APISECRET>')
response = bitvavo.fees(market = 'BTC-EUR')
Fixes
- Fixes and issue with waiting for the WebSocket connection to be authenticated