From d520ff81758496213b9d60b5d37d0ad15503c57c Mon Sep 17 00:00:00 2001 From: "Jonathan \"Duke\" Leto" Date: Sat, 27 Apr 2019 07:32:16 -0700 Subject: [PATCH] Hushify our readme --- README.md | 195 +++++----------------------------------------- doc/hush/hush.png | Bin 0 -> 5345 bytes 2 files changed, 19 insertions(+), 176 deletions(-) create mode 100644 doc/hush/hush.png diff --git a/README.md b/README.md index 6c0002ba4..df5286eb9 100644 --- a/README.md +++ b/README.md @@ -1,190 +1,33 @@ -[![Build Status](https://travis-ci.org/KomodoPlatform/komodo.svg?branch=dev)](https://travis-ci.org/KomodoPlatform/komodo) ---- -![Komodo Logo](https://i.imgur.com/vIwVtqv.png "Komodo Logo") +# HUSH 3 +## What is HUSH? -## Komodo +![Logo](doc/hush/hush.png "Logo") -This is the official Komodo sourcecode repository based on https://github.com/jl777/komodo. +HUSH (formerly Zdash) is a code fork of [ZCash](https://z.cash/) which has it's own genesis block. +Based on Bitcoin's code, it intends to offer a far higher standard of privacy +through a sophisticated zero-knowledge proving scheme that preserves +confidentiality of transaction metadata. -## Development Resources +This software is the HUSH node and command-line client. It downloads and stores the entire history +of HUSH transactions; depending on the speed of your computer and network +connection, the synchronization process could take a day or more once the +blockchain has reached a significant size. -- Komodo Website: [https://komodoplatform.com](https://komodoplatform.com/) -- Komodo Blockexplorer: [https://kmdexplorer.io](https://kmdexplorer.io/) -- Komodo Discord: [https://komodoplatform.com/discord](https://komodoplatform.com/discord) -- Forum: [https://forum.komodoplatform.com](https://forum.komodoplatform.com/) -- Mail: [info@komodoplatform.com](mailto:info@komodoplatform.com) -- Support: [https://support.komodoplatform.com/support/home](https://support.komodoplatform.com/support/home) -- Knowledgebase & How-to: [https://support.komodoplatform.com/en/support/solutions](https://support.komodoplatform.com/en/support/solutions) -- API references & Dev Documentation: [https://docs.komodoplatform.com](https://docs.komodoplatform.com/) -- Blog: [https://blog.komodoplatform.com](https://blog.komodoplatform.com/) -- Whitepaper: [Komodo Whitepaper](https://komodoplatform.com/whitepaper) -- Komodo Platform public material: [Komodo Platform public material](https://docs.google.com/document/d/1AbhWrtagu4vYdkl-vsWz-HSNyNvK-W-ZasHCqe7CZy0) +**HUSH is unfinished and highly experimental.** Use at your own risk! -## List of Komodo Platform Technologies +## Discord -- Delayed Proof of Work (dPoW) - Additional security layer and Komodos own consensus algorithm -- zk-SNARKs - Komodo Platform's privacy technology for shielded transactions -- Tokens/Assets Technology - create "colored coins" on the Komodo Platform and use them as a layer for securites -- Reward API - Komodo CC technology for securities -- CC - Crypto Conditions to realize "smart contract" logic on top of the Komodo Platform -- Jumblr - Decentralized tumbler for KMD and other cryptocurrencies -- Assetchains - Create your own Blockchain that inherits all Komodo Platform functionalities and blockchain interoperability -- Pegged Assets - Chains that maintain a peg to fiat currencies -- Peerchains - Scalability solution where sibling chains form a network of blockchains -- More in depth covered [here](https://docs.google.com/document/d/1AbhWrtagu4vYdkl-vsWz-HSNyNvK-W-ZasHCqe7CZy0) -- Also note you receive 5% Active User Reward on your balance. -[See this article for more details](https://support.komodoplatform.com/en/support/solutions/articles/29000024515-how-to-claim-the-kmd-active-user-reward-in-agama) +Please feel free to join us on Discord at https://myhush.org/discord +There are many channels, some you might enjoy are #general, #support and #mining. -## Tech Specification -- Max Supply: 200 million KMD -- Block Time: 1m 2s -- Block Reward: 3 KMD -- Mining Algorithm: Equihash +Installing +---------- -## About this Project -Komodo is based on Zcash and has been extended by our innovative consensus algorithm called dPoW which utilizes Bitcoin's hashrate to store Komodo blockchain information into the Bitcoin blockchain. Other new and native Komodo features are the privacy technology called JUMBLR, our assetchain capabilities (one click plug and play blockchain solutions) and a set of financial decentralization and interoperability technologies. More details are available under https://komodoplatform.com/ and https://blog.komodoplatform.com. +See [INSTALL.md](https://github.com/MyHush/hush/blob/master/INSTALL.md). -## Getting started - -### Dependencies - -```shell -#The following packages are needed: -sudo apt-get install build-essential pkg-config libc6-dev m4 g++-multilib autoconf libtool ncurses-dev unzip git python python-zmq zlib1g-dev wget libcurl4-gnutls-dev bsdmainutils automake curl -``` - -### Build Komodo - -This software is based on zcash and considered experimental and is continously undergoing heavy development. - -The dev branch is considered the bleeding edge codebase while the master-branch is considered tested (unit tests, runtime tests, functionality). At no point of time do the Komodo Platform developers take any responsbility for any damage out of the usage of this software. -Komodo builds for all operating systems out of the same codebase. Follow the OS specific instructions from below. - -#### Linux -```shell -git clone https://github.com/komodoplatform/komodo --branch master --single-branch -cd komodo -./zcutil/fetch-params.sh -# -j8 = using 8 threads for the compilation - replace 8 with number of threads you want to use -./zcutil/build.sh -j8 -#This can take some time. -``` - - -#### OSX -Ensure you have [brew](https://brew.sh) and Command Line Tools installed. -```shell -# Install brew -/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" -# Install Xcode, opens a pop-up window to install CLT without installing the entire Xcode package -xcode-select --install -# Update brew and install dependencies -brew update -brew upgrade -brew tap discoteq/discoteq; brew install flock -brew install autoconf autogen automake -brew install gcc@6 -brew install binutils -brew install protobuf -brew install coreutils -brew install wget -# Clone the Komodo repo -git clone https://github.com/komodoplatform/komodo --branch master --single-branch -# Change master branch to other branch you wish to compile -cd komodo -./zcutil/fetch-params.sh -# -j8 = using 8 threads for the compilation - replace 8 with number of threads you want to use -./zcutil/build-mac.sh -j8 -# This can take some time. -``` - -#### Windows -Use a debian cross-compilation setup with mingw for windows and run: -```shell -sudo apt-get install build-essential pkg-config libc6-dev m4 g++-multilib autoconf libtool ncurses-dev unzip git python python-zmq zlib1g-dev wget libcurl4-gnutls-dev bsdmainutils automake curl cmake mingw-w64 -curl https://sh.rustup.rs -sSf | sh -source $HOME/.cargo/env -rustup target add x86_64-pc-windows-gnu -git clone https://github.com/jl777/komodo --branch master --single-branch -cd komodo -./zcutil/fetch-params.sh -# -j8 = using 8 threads for the compilation - replace 8 with number of threads you want to use -./zcutil/build-win.sh -j8 -#This can take some time. -``` -**komodo is experimental and a work-in-progress.** Use at your own risk. - -To reset the Komodo blockchain change into the *~/.komodo* data directory and delete the corresponding files by running `rm -rf blocks chainstate debug.log komodostate db.log` - -#### Create komodo.conf - -Create a komodo.conf file: - -``` -mkdir ~/.komodo -cd ~/.komodo -touch komodo.conf - -#Add the following lines to the komodo.conf file: -rpcuser=yourrpcusername -rpcpassword=yoursecurerpcpassword -rpcbind=127.0.0.1 -txindex=1 -addnode=5.9.102.210 -addnode=78.47.196.146 -addnode=178.63.69.164 -addnode=88.198.65.74 -addnode=5.9.122.241 -addnode=144.76.94.38 -addnode=89.248.166.91 -``` -### Create your own Blockchain based on Komodo - -Komodo allows anyone to create a runtime fork which represents an independent Blockchain. Below are the detailed instructions: -Setup two independent servers with at least 1 server having a static IP and build komodod on those servers. - -#### On server 1 (with static IP) run: -```shell -./komodod -ac_name=name_of_your_chain -ac_supply=100000 -bind=ip_of_server_1 & -``` - -#### On server 2 run: -```shell -./komodod -ac_name=name_of_your_chain -ac_supply=100000 -addnode=ip_of_server_1 -gen & -``` - -**Komodo is based on Zcash which is unfinished and highly experimental.** Use at your own risk. License ------- -For license information see the file [COPYING](COPYING). - -**NOTE TO EXCHANGES:** -https://bitcointalk.org/index.php?topic=1605144.msg17732151#msg17732151 -There is a small chance that an outbound transaction will give an error due to mismatched values in wallet calculations. There is a -exchange option that you can run komodod with, but make sure to have the entire transaction history under the same -exchange mode. Otherwise you will get wallet conflicts. - -**To change modes:** -a) backup all privkeys (launch komodod with `-exportdir=` and `dumpwallet`) -b) start a totally new sync including `wallet.dat`, launch with same `exportdir` -c) stop it before it gets too far and import all the privkeys from a) using `komodo-cli importwallet filename` -d) resume sync till it gets to chaintip - -For example: -```shell -./komodod -exportdir=/tmp & -./komodo-cli dumpwallet example -./komodo-cli stop -mv ~/.komodo ~/.komodo.old && mkdir ~/.komodo && cp ~/.komodo.old/komodo.conf ~/.komodo.old/peers.dat ~/.komodo -./komodod -exchange -exportdir=/tmp & -./komodo-cli importwallet /tmp/example -``` ---- - - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +For license information see the file [COPYING](COPYING). diff --git a/doc/hush/hush.png b/doc/hush/hush.png new file mode 100644 index 0000000000000000000000000000000000000000..2ff1f6b3cb4c35c2573c813bd33983674f2eeb39 GIT binary patch literal 5345 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 literal 0 HcmV?d00001