github.com/aakash4dev/cometbft@v0.38.2/docs/README.md (about)

     1  ---
     2  title: CometBFT Documentation
     3  description: CometBFT is a blockchain application platform.
     4  footer:
     5    newsletter: false
     6  ---
     7  
     8  # CometBFT
     9  
    10  Welcome to the CometBFT documentation!
    11  
    12  CometBFT is a blockchain application platform; it provides the equivalent
    13  of a web-server, database, and supporting libraries for blockchain applications
    14  written in any programming language. Like a web-server serving web applications,
    15  CometBFT serves blockchain applications.
    16  
    17  More formally, CometBFT performs Byzantine Fault Tolerant (BFT)
    18  State Machine Replication (SMR) for arbitrary deterministic, finite state machines.
    19  For more background, see [What is CometBFT?](introduction/README.md#what-is-cometbft.md).
    20  
    21  To get started quickly with an example application, see the [quick start guide](guides/quick-start.md).
    22  
    23  To learn about application development on CometBFT, see the [Application Blockchain Interface](https://github.com/aakash4dev/cometbft/tree/main/spec/abci).
    24  
    25  For more details on using CometBFT, see the respective documentation for
    26  [CometBFT internals](core/), [benchmarking and monitoring](tools/), and [network deployments](networks/).
    27  
    28  ## Contribute
    29  
    30  To recommend a change to the documentation, please submit a PR. Each major
    31  release's documentation is housed on the corresponding release branch, e.g. for
    32  the v0.34 release series, the documentation is housed on the `v0.34.x` branch.
    33  
    34  When submitting changes that affect all releases, please start by submitting a
    35  PR to the docs on `main` - this will be backported to the relevant release
    36  branches. If a change is exclusively relevant to a specific release, please
    37  target that release branch with your PR.
    38  
    39  Changes to the documentation will be reviewed by the team and, if accepted and
    40  merged, published to <https://docs.cometbft.com> for the respective version(s).
    41  
    42  The build process for the documentation is housed in the [CometBFT documentation
    43  repository](https://github.com/aakash4dev/cometbft-docs).