diff --git a/catalyst/constants.py b/catalyst/constants.py index 2bac11c2..3369e412 100644 --- a/catalyst/constants.py +++ b/catalyst/constants.py @@ -28,18 +28,18 @@ AUTH_SERVER = 'https://data.enigma.co' ETH_REMOTE_NODE = 'https://rinkeby.infura.io/' MARKETPLACE_CONTRACT = 'https://raw.githubusercontent.com/enigmampc/' \ - 'catalyst/rinkeby/catalyst/marketplace/' \ + 'catalyst/master/catalyst/marketplace/' \ 'contract_marketplace_address.txt' MARKETPLACE_CONTRACT_ABI = 'https://raw.githubusercontent.com/enigmampc/' \ - 'catalyst/rinkeby/catalyst/marketplace/' \ + 'catalyst/master/catalyst/marketplace/' \ 'contract_marketplace_abi.json' # TODO: switch to mainnet ENIGMA_CONTRACT = 'https://raw.githubusercontent.com/enigmampc/' \ - 'catalyst/rinkeby/catalyst/marketplace/' \ + 'catalyst/master/catalyst/marketplace/' \ 'contract_enigma_address.txt' ENIGMA_CONTRACT_ABI = 'https://raw.githubusercontent.com/enigmampc/' \ - 'catalyst/rinkeby/catalyst/marketplace/' \ + 'catalyst/master/catalyst/marketplace/' \ 'contract_enigma_abi.json' diff --git a/docs/source/releases.rst b/docs/source/releases.rst index e49ef423..dc8a0e8a 100644 --- a/docs/source/releases.rst +++ b/docs/source/releases.rst @@ -2,6 +2,43 @@ Release Notes ============= +Version 0.5.4 +^^^^^^^^^^^^^ +**Release Date**: 2018-03-14 + +Build +~~~~~ +- Switched Data Marketplace from Ropstein testnet to Rinkeby testnet after + incorporating changes resulting from the marketplace contract audit +- Several usability improvements of the Data Marketplace that make the + `--dataset` parameter optional. If it is not included in the command line, + will list available datasets, and let you choose interactively. + +Bug Fixes +~~~~~~~~~ +- Fix Binance requirement of symbol to be included in the cancelled order + :issue:`204` +- Fix `notenoughcasherror` when an open order is filled minutes later + :issue:`237` +- Properly handle of empty candles received from exchanges :issue:`236` +- Added a function to reduce open orders amount from calculated target/amount + for target orders :issue:`243` +- Fix missing file in live trading mode on date change :issue:`252`, + :issue:`253` +- Upgraded Data Marketplace to Web3==4.0.0b11, which was breaking some + functionality from prior version 4.0.0b7 :issue:`257` +- Always request more data to avoid empty bars and always give the exact bar + number :issue:`260` + +Documentation +~~~~~~~~~~~~~ +- PyCharm documentation :issue:`195` +- Added TA-Lib troubleshooting instructions +- Added instructions on how to create a Conda environment for Python 3.6, and + updated Visual C++ instructions for Windows and Python 3 +- Linking example algorithms in the documentation to their sources + + Version 0.5.3 ^^^^^^^^^^^^^ **Release Date**: 2018-02-09