bigchaindb/bigchaindb
Tim Gates 0961aa6b26
docs: fix simple typo, neeeded -> needed (#2717)
There is a small typo in bigchaindb/lib.py, tests/tendermint/test_lib.py.

Should read `needed` rather than `neeeded`.
2021-12-06 14:11:29 +01:00
..
backend Replace headers (#2683) 2020-04-06 11:52:18 +02:00
commands Replace headers (#2683) 2020-04-06 11:52:18 +02:00
common owners_before error message correction (#2698) 2020-08-12 12:32:33 +00:00
elections Replace headers (#2683) 2020-04-06 11:52:18 +02:00
migrations Implement crash recovery for elections. (#2566) 2018-09-28 12:32:45 +02:00
upsert_validator Replace headers (#2683) 2020-04-06 11:52:18 +02:00
web Remove @asyncio.coroutine decorators 2020-09-29 12:17:46 +00:00
README.md Replace headers (#2683) 2020-04-06 11:52:18 +02:00
__init__.py Replace headers (#2683) 2020-04-06 11:52:18 +02:00
config_utils.py Import ABC from collections.abc (#2704) 2020-07-22 08:51:58 +00:00
core.py [WIP] Documentation re-org (#2694) 2020-05-18 20:22:26 +07:00
events.py Replace headers (#2683) 2020-04-06 11:52:18 +02:00
exceptions.py Replace headers (#2683) 2020-04-06 11:52:18 +02:00
fastquery.py Replace headers (#2683) 2020-04-06 11:52:18 +02:00
lib.py docs: fix simple typo, neeeded -> needed (#2717) 2021-12-06 14:11:29 +01:00
log.py Replace headers (#2683) 2020-04-06 11:52:18 +02:00
models.py Replace headers (#2683) 2020-04-06 11:52:18 +02:00
parallel_validation.py Replace headers (#2683) 2020-04-06 11:52:18 +02:00
start.py Version bump 2020-09-29 12:17:46 +00:00
tendermint_utils.py Replace headers (#2683) 2020-04-06 11:52:18 +02:00
utils.py Replace headers (#2683) 2020-04-06 11:52:18 +02:00
validation.py Replace headers (#2683) 2020-04-06 11:52:18 +02:00
version.py Version bump 2020-09-29 12:17:46 +00:00

README.md

Overview

A high-level description of the files and subdirectories of BigchainDB.

Files

lib.py

The BigchainDB class is defined here. Most node-level operations and database interactions are found in this file. This is the place to start if you are interested in implementing a server API, since many of these class methods concern BigchainDB interacting with the outside world.

models.py

Block, Transaction, and Asset classes are defined here. The classes mirror the block and transaction structure from the documentation, but also include methods for validation and signing.

validation.py

Base class for validation methods (verification of votes, blocks, and transactions). The actual logic is mostly found in transaction and block models, defined in models.py.

processes.py

Entry point for the BigchainDB process, after initialization. All subprocesses are started here: processes to handle new blocks, votes, etc.

config_utils.py

Methods for managing the configuration, including loading configuration files, automatically generating the configuration, and keeping the configuration consistent across BigchainDB instances.

Folders

commands

Contains code for the CLI for BigchainDB.

db

Code for building the database connection, creating indexes, and other database setup tasks.