2204cf762c | ||
---|---|---|
src | ||
.gitignore | ||
Cargo.toml | ||
LICENSE | ||
README.md | ||
compile | ||
compile_debug |
README.md
Hydrabadger
An experimental peer-to-peer client using the Honey Badger Byzantine Fault Tolerant consensus algorithm.
Usage
Compile
-
git clone -b android git@github.com:poanetwork/hydrabadger.git
-
cd hydrabadger
-
set needs environments
export ANDROID_HOME=/Users/$USER/Library/Android/sdk
export NDK_HOME=$ANDROID_HOME/ndk-bundle
and etc
- make standalone NDK
${NDK_HOME}/build/tools/make_standalone_toolchain.py --api 26 --arch arm64 --install-dir NDK/arm64
${NDK_HOME}/build/tools/make_standalone_toolchain.py --api 26 --arch arm --install-dir NDK/arm
${NDK_HOME}/build/tools/make_standalone_toolchain.py --api 26 --arch x86 --install-dir NDK/x86
- set environment to NDK compilers and linkers
export PATH=$PATH:<project path>/NDK/arm64/bin/
export PATH=$PATH:<project path>/NDK/arm/bin/
export PATH=$PATH:<project path>/NDK/x86/bin/
- make cargo-config.toml
[target.aarch64-linux-android]
ar = "<project path>/NDK/arm64/bin/aarch64-linux-android-ar"
linker = "<project path>/NDK/arm64/bin/aarch64-linux-android-clang"
[target.armv7-linux-androideabi]
ar = "<project path>/NDK/arm/bin/arm-linux-androideabi-ar"
linker = "<project path>/NDK/arm/bin/arm-linux-androideabi-clang"
[target.i686-linux-android]
ar = "<project path>/NDK/x86/bin/i686-linux-android-ar"
linker = "<project path>/NDK/x86/bin/i686-linux-android-clang"'
- need copy this config file to our .cargo directory like this:
cp cargo-config.toml ~/.cargo/config
7.1. rustup target add aarch64-linux-android armv7-linux-androideabi i686-linux-android
./compile
It may also be necessary for the reed-solomon-erasure package to change the branch to dev
Current State
Network initialization node addition, transaction generation, consensus, and batch outputs are all generally working. Batch outputs for each epoch are printed to the log.
Overall the client is fragile and doesn't handle deviation from simple usage very well yet.
Unimplemented
- Many edge cases and exceptions: disconnects, reconnects, etc.
- Connecting to a network which is in the process of key generation causes the entire network to fail. For now, wait until the network starts outputting batches before connecting additional peer nodes.
- Error handling is atrocious, most errors are simply printed to the log.
- Usage as a library is still a work in progress as the API settles.
- Much, much more...
License
This project is licensed under the GNU Lesser General Public License v3.0. See the LICENSE file for details.