Skip to main content

Chia BIP158 (wraps C++)

Project description

## BIP158

This implements the compact block filter construction in BIP 158. The code is not used anywhere in the Bitcoin Core code base yet. The next step towards BIP 157 support would be to create an indexing module similar to TxIndex that constructs the basic and extended filters for each validated block.

### Install

`bash python3 -m venv env . env/bin/activate pip3 install . `

### Run python tests

`bash python3 tests/simple_test.py `

### Installation steps on a fresh OSX image

Install brew:

ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”

brew install python3 brew install boost

At this point the only error is can’t find boost_thread lib

The issue is the homebrew boost ships libboost_thread-mt libs but doesn’t include plain libboost_thread, so clang can’t find it. Interestingly, homebrew boost does have both plain and -mt files for the libboost_system libraries.

$ find /usr/local/lib/ | grep boost_thread libboost_thread-mt.a libboost_thread-mt.dylib

Solution, with no guarantees that this is “the Right Way to do things”, but appears to work fine for the configure stage:

$ cd /usr/local/lib $ ln -s libboost_thread-mt.a libboost_thread.a $ ln -s libboost_thread-mt.dylib libboost_thread.dylib

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

chiabip158-0.13-cp38-cp38-win_amd64.whl (80.2 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

chiabip158-0.13-cp38-cp38-win32.whl (70.6 kB view hashes)

Uploaded CPython 3.8 Windows x86

chiabip158-0.13-cp38-cp38-manylinux2010_x86_64.whl (2.3 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

chiabip158-0.13-cp38-cp38-manylinux2010_i686.whl (1.7 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

chiabip158-0.13-cp38-cp38-macosx_10_14_x86_64.whl (133.0 kB view hashes)

Uploaded CPython 3.8 macOS 10.14+ x86-64

chiabip158-0.13-cp37-cp37m-win_amd64.whl (80.8 kB view hashes)

Uploaded CPython 3.7m Windows x86-64

chiabip158-0.13-cp37-cp37m-win32.whl (71.5 kB view hashes)

Uploaded CPython 3.7m Windows x86

chiabip158-0.13-cp37-cp37m-manylinux2010_x86_64.whl (2.3 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

chiabip158-0.13-cp37-cp37m-manylinux2010_i686.whl (1.7 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

chiabip158-0.13-cp37-cp37m-macosx_10_14_x86_64.whl (132.0 kB view hashes)

Uploaded CPython 3.7m macOS 10.14+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page