lbry-sdk/lbry/schema
2021-06-22 11:07:58 -04:00
..
types update generated support protobuf with field 2021-06-02 12:05:36 -04:00
__init__.py
attrs.py country jurisdiction added to hub UDP protocol 2021-06-22 11:07:58 -04:00
base.py
claim.py
compat.py
Makefile
mime_types.py
purchase.py
README.md
result.py
support.py add comment property/setter to the signable support class 2021-06-02 12:05:36 -04:00
tags.py
url.py

Schema

Those files are generated from the types repo. If you are modifying/adding a new type, make sure it is cloned in the same root folder as the SDK repo, like:

repos/
    - lbry-sdk/
    - types/

Then, download protoc 3.2.0, add it to your PATH. On linux it is:

cd ~/.local/bin
wget https://github.com/protocolbuffers/protobuf/releases/download/v3.2.0/protoc-3.2.0-linux-x86_64.zip
unzip protoc-3.2.0-linux-x86_64.zip bin/protoc -d..

Finally, make should update everything in place.

Why protoc 3.2.0?

Different/newer versions will generate larger diffs and we need to make sure they are good. In theory, we can just update to latest and it will all work, but it is a good practice to check blockchain data and retro compatibility before bumping versions (if you do, please update this section!).