Git Product home page Git Product logo

zen's Introduction

Zen 2.0.22

What is Horizen?

A globally accessible and anonymous blockchain for censorship-resistant communications and economic activity.

Upgrading from 2.0.11 source

To upgrade from any version prior to 2.0.14, you will have to re-clone the repository, the HorizenOfficial/zen repository was replaced by a new repository based on Zcash upstream with a different commit history. Merging/pulling is not possible without issues. Assuming your current repository is stored at ~/zen, do the following to upgrade:

# if you don't want to keep the old src around
rm -r ~/zen
# or if you do want to keep it
mv ~/zen ~/zen_archived
git clone https://github.com/HorizenOfficial/zen.git
cd ~/zen

Now continue with building from source.

Building from source

  1. Get dependencies:
    1. Debian
    sudo apt-get install \
          build-essential pkg-config libc6-dev m4 g++-multilib \
          autoconf libtool ncurses-dev unzip git python \
          zlib1g-dev bsdmainutils automake curl
    
    1. Centos 7:
    sudo yum group install 'Development Tools'
    sudo yum install \
    autoconf libtool unzip git python \
    curl automake gcc gcc-c++ patch \
    glibc-static libstdc++-static
    
    Please execute the below commands in order.
    sudo yum install centos-release-scl-rh
    sudo yum install devtoolset-3-gcc devtoolset-3-gcc-c++
    sudo update-alternatives --install /usr/bin/gcc-4.9 gcc-4.9 /opt/rh/devtoolset-3/root/usr/bin/gcc 10
    sudo update-alternatives --install /usr/bin/g++-4.9 g++-4.9 /opt/rh/devtoolset-3/root/usr/bin/g++ 10
    scl enable devtoolset-3 bash
    
    1. Windows
    sudo apt-get install \
        build-essential pkg-config libc6-dev m4 g++-multilib \
        autoconf libtool ncurses-dev unzip git python \
        zlib1g-dev wget bsdmainutils automake mingw-w64
    
    1. Arm
    sudo apt-get install \
        build-essential pkg-config libc6-dev m4 g++-multilib-arm-linux-gnueabihf \
        autoconf libtool ncurses-dev unzip git python \
        zlib1g-dev curl bsdmainutils automake cmake cargo
    
  • Install for Linux
git clone https://github.com/HorizenOfficial/zen.git
cd zen
# Build
./zcutil/build.sh -j$(nproc)
# fetch key
./zcutil/fetch-params.sh
# Run
./src/zend
  • Install for Mac OS (using clang)
Read and follow the README.md at https://github.com/HorizenOfficial/zencash-apple

https://github.com/HorizenOfficial/zencash-apple

  • Install for Windows (Cross-Compiled, building on Windows is not supported yet)
export HOST=x86_64-w64-mingw32
./zcutil/build.sh -j$(nproc)
  • Install for aarch64(ARM64)
mkdir -p ~/bin
cd ~/bin
ln -s /usr/bin/ar aarch64-unknown-linux-gnu-ar
ln -s /usr/bin/g++ aarch64-unknown-linux-gnu-g++
ln -s /usr/bin/gcc aarch64-unknown-linux-gnu-gcc
ln -s /usr/bin/nm aarch64-unknown-linux-gnu-nm
ln -s /usr/bin/ranlib aarch64-unknown-linux-gnu-ranlib
ln -s /usr/bin/strip aarch64-unknown-linux-gnu-strip
PATH=$PATH:~/bin
cd ~/zen/
export HOST=aarch64-unknown-linux
./zcutil/build.sh -j$(nproc)

Running Regression Tests

  1. Get dependencies:
    1. Debian
    sudo apt-get install \
          python python-dev python-pip python-setuptools \
          python-wheel python-wheel-common python-zmq
    sudo pip install --upgrade pyblake2
    
    1. MacOS
    brew install python@2
    sudo pip install --upgrade pyblake2 pyzmq
    
  2. Start test suite
    if [[ "$OSTYPE" == "darwin"* ]]; then
      TEST_ARGS="btest gtest sec-hard no-dot-so util-test secp256k1 libsnark univalue rpc --rpc-extended --rpc-exclude=rpcbind_test.py"
    else
      TEST_ARGS="--rpc-extended"
    fi
    export HOST=$(gcc -dumpmachine)
    ./zcutil/fetch-params.sh
    ./qa/zcash/full_test_suite.py ${TEST_ARGS}
    

Instructions to redeem pre-block 110,000 ZCL

  1. Linux: Copy and paste your wallet.dat from ~/.zclassic/ to ~/.zen. That's it!

  2. Windows: Copy and paste your wallet.dat from %APPDATA%/Zclassic/ to %APPDATA%/Zen. That's it!

About

Zen is a platform for secure communications and for deniable economic activity. Horizen is an evolution of the Zclassic codebase aimed at primarily enabling intriniscally secure communications and resilient networking.

This software is the Horizen client. It downloads and stores the entire history of Horizen 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.

Security Warnings

See important security warnings in doc/security-warnings.md.

Horizen is unfinished and highly experimental. Use at your own risk.

Where do I begin?

  • The easiest way to get started is to download one of the available GUI wallets from horizen.global

Need Help?

  • Many guides and tutorials are available at Horizen Discord for help and more information.

Want to participate in development?

  • Code review is welcome!

Participation in the Horizen project is subject to a Code of Conduct.

License

For license information see the file COPYING.

zen's People

Contributors

ageis avatar alsala avatar bitcartel avatar codeshark avatar cozz avatar cronicc avatar daira avatar defuse avatar ebfull avatar fanquake avatar franckdg avatar gavinandresen avatar gmaxwell avatar jonasschnelli avatar jtimon avatar laanwj avatar luke-jr avatar marcool94 avatar muggenhor avatar non-github-bitcoin avatar paveljanik avatar petertodd avatar pierstab avatar rebroad avatar sdaftuar avatar sipa avatar str4d avatar thebluematt avatar theuni avatar zkbot avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.