bigchaindb/bigchaindb
Vanshdeep Singh cbfbfa8fc4 Problem: Public key format not standardized (#2508)
Solution: Add 'type' field to public key so that it can be decoded properly
2018-09-06 16:06:36 +02:00
..
backend Problem: Validation code not optimized (#2490) 2018-09-04 15:30:52 +02:00
commands Problem: Public key format not standardized (#2508) 2018-09-06 16:06:36 +02:00
common Problem: Public key format not standardized (#2508) 2018-09-06 16:06:36 +02:00
upsert_validator Problem: Public key format not standardized (#2508) 2018-09-06 16:06:36 +02:00
web Problem: websocket fails with ELECTION transaction (#2482) 2018-08-27 15:00:02 +02:00
README.md Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
__init__.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
config_utils.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
consensus.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
core.py Problem: Bigchaindb crashes when restarted after init chain (#2519) 2018-09-06 11:27:52 +02:00
event_stream.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
events.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
exceptions.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
fastquery.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
lib.py Problem: The commit mode behaves incorrectly. (#2510) 2018-09-06 15:49:00 +02:00
log.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
models.py Problem: Validation code not optimized (#2490) 2018-09-04 15:30:52 +02:00
start.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
tendermint_utils.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
utils.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02:00
version.py Problem: Source files contain no license info (#2455) 2018-08-16 12:31:32 +02: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.

consensus.py

Base class for consensus 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.