Onionr/static-data/default-plugins/wot/wot/__init__.py

12 lines
338 B
Python

# The web of trust is a graph of identities where each edge is a signature
# of a byte representing a trust level and an identity's public key
from typing import TYPE_CHECKING, Set
from .identity import Identity
from .blockprocessing import process_block
# Set of identites within N-distance trust
identities: Set['Identity'] = set()