└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # Blockmarket Desktop Public (DEPRECATED - DO NOT RUN) 2 | 3 | This is the public issue and release space for [Blockchain Foundry's](http://blockchainfoundry.co) Blockmarket product. Blockmarket's source code is proprietary but this repository serves as a location for issue tracking and releases for Blockmarket Desktop binaries. 4 | 5 | Blockmarket is intended to be a complete replacement for all of the [Syscoin QT Wallet's](http://syscoin.org) consumer facing functionality outside of masternode-functions. 6 | 7 | ### **Blockmarket Desktop Status**: 3.2.0 | [Download 3.2.0](https://github.com/syscoin/blockmarket-desktop-public/releases/tag/3.2.0) 8 | 9 | # Help By Reporting Issues 10 | If you run into a bug, problem, or are which you feel could be improved please [check to see if the issue has already been reported](https://github.com/syscoin/blockmarket-desktop-public/issues), if it has not please [log a new issue](https://github.com/syscoin/blockmarket-desktop-public/issues/new). 11 | 12 | 13 | # Blockmarket Offer JSON Spec 14 | Blockmarket stores offer data as a HTML-entity encoded JSON object within the offer.description field in the following format: 15 | 16 | ```javascript 17 | interface OfferDescription { 18 | description: string; 19 | images: string[]; 20 | } 21 | ``` 22 | 23 | # SHA-256 checksums 24 | 25 | Releases will be published with SHA-256 checksum string. 26 | Here is how to get or check the checksums of a downloaded file. 27 | 28 | **macOs** 29 | 30 | SHA-256: `openssl sha -sha256 Blockmarket-3.2.0.dmg` 31 | 32 | or 33 | 34 | SHA-256: `shasum -a 256 Blockmarket-3.2.0.dmg` 35 | 36 | **Windows** 37 | 38 | SHA-256: `certUtil -hashfile Blockmarket Setup 3.2.0.exe sha256` 39 | 40 | --------------------------------------------------------------------------------