Skip to content

Commit

Permalink
docs: add pristine README (#4)
Browse files Browse the repository at this point in the history
copying over README from private repo
  • Loading branch information
JayWhite2357 authored Jun 12, 2024
1 parent 0e6075b commit c5647ba
Show file tree
Hide file tree
Showing 12 changed files with 1,807 additions and 0 deletions.
372 changes: 372 additions & 0 deletions CONTRIBUTING.md

Large diffs are not rendered by default.

70 changes: 70 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
Copyright (C) 2024 Space and Time Labs, Inc.

Cryptographic Open Software License 1.0

This license contains the terms and conditions under which Space
and Time Labs, Inc. ("Space and Time") makes available this
Software. Your use of the Software is subject to these terms and
conditions.

Space and Time grants you ("Licensee") a license to use, modify,
and redistribute the Software, but only (a) for Non-Commercial
Use, or (b) for Commercial Use with the Space and Time Platform
only. You must use the Software only as allowed by applicable
law.

If Licensee makes available a copy of the Software to any third
party, the Software must be subject to the terms of this license
only, and Licensee must provide a copy of this license to that
third party.

If Licensee makes changes or additions to the Software, Licensee
may license those changes or additions under terms of Licensee's
choice, but Licensee cannot change this license for the
Software.

These terms do not allow Licensee to sublicense or transfer any
of Licensee’s rights to anyone else. These terms do not imply
any other licenses not expressly granted in this license.

If Licensee violates any of these terms, or uses the Software in
a way not authorized under this license, the license granted to
Licensee ends immediately.

If Licensee makes, or authorizes any other person to make, any
written claim that the Software, or any other product or service
of Space and Time, infringes or contributes to infringement of
any patent, all rights granted to Licensee under this license
end immediately.

As far as the law allows, the Software is provided AS IS,
without any warranty or condition, and Space and Time will not
be liable to Licensee for any damages arising out of these terms
or the use or nature of the Software, under any kind of legal
claim. If the disclaimer in this paragraph is unenforceable
under applicable law, this license is void.

Terms in this license are used as follows:

The "Software" is any software made available by Space and Time
under this license.

A "Space and Time Product" is any product or service offered by
Space and Time or its affiliates.

"Non-Commercial Use" means personal, academic, scientific, or
research and development use, or evaluating the Software, but
does not include uses where the Software facilitates any
transaction of economic value or supports any system that
provides any economic or commercial value other than on the
Space and Time Platform.

Any use that is not a Non-Commercial Use is a "Commercial Use."

"Space and Time Platform" means the enterprise data platform, or
node operations within a Space and Time decentralized network,
in each case for processing database queries with cryptographic
proofs, that is made available by Space and Time.

To "use" means any use, modification, distribution or other
exploitation of the Software or any part of it.
215 changes: 215 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,215 @@
# Proof of SQL

<p align="center">
<img src="docs/ProofOfSQLBanner.png" alt="Proof of SQL" width="100%"/>
<a href="https://twitter.com/intent/follow?screen_name=spaceandtimedb"><img alt="Twitter" src="https://img.shields.io/twitter/follow/spaceandtimedb.svg?style=social&label=Follow"></a><a href="http://discord.gg/SpaceandTimeDB"><img alt="Discord Server" src="https://img.shields.io/discord/953025874154893342?logo=discord"></a>
</p>


Proof of SQL is a high performance zero knowledge (ZK) prover developed by the [Space and Time](https://www.spaceandtime.io/) team, which cryptographically guarantees SQL queries were computed accurately against untampered data. It targets online latencies while proving computations over entire chain histories, an order of magnitude faster than state-of-the art zkVMs and coprocessors.

As the first sub-second ZK prover, the protocol can execute analytic queries over 100k-row tables in less than a second on a single GPU (see benchmarks below). It can aggregate over millions of rows of indexed data within Ethereum block time on a single NVIDIA T4. The protocol is designed to support both onchain and offchain verification, leveraging a novel commitment scheme which significantly lowers gas fees with onchain verification.

Using Proof of SQL, developers can compute over both onchain and offchain datasets in a trustless manner, proving the result back to their smart contract (or offchain verifier) just-in-time during a transaction to power more sophisticated DeFi protocols with data-driven contracts. Proof of SQL can be integrated into any SQL database (such as [Google BigQuery](https://cloud.google.com/blog/topics/partners/how-space-and-times-proof-of-sql-integrates-with-bigquery)), centralized or decentralized, and is already securing some of the most prominent Web3 apps, financial institutions, and enterprises.

## Contributing

Proof of SQL is in active development, and not all SQL functions are supported yet. Proof of SQL is most powerful as a community-driven project. We hope to foster a large group of contributers that can help maintain, improve, and
use this project to create a trustless and data-driven future. Please create an Issue, file a PR, or reach out via Discord if you want to add a SQL feature,
integrate into another ZK solution, use this in your project, or anything else! Check out our guidelines: [CONTRIBUTING.md](CONTRIBUTING.md).

## For Developers

Get started with Proof of SQL by using the published crate on [crates.io](https://crates.io/) or clone the repo and check out the examples. Check out the following sections of the README:
* [Examples](#examples)
* [Benchmarks](#benchmarks)
* [Supported SQL Syntax](#supported-sql-syntax)
* [Roadmap](#roadmap)
* [Protocol Overview](#protocol-overview)

## Setup

### Prerequisites

* Linux x86_64 (NOTE: Most of the codebase _should_ work for most rust targets. However, proofs are accelerated using NVIDIA GPUs, so other targets would run very slowly and may require modification.)
* NVIDIA GPU & Drivers (Strongly Recommended)
* lld (`sudo apt install lld`)
* clang (`sudo apt install clang`)
* [Rust 1.78.0](https://www.rust-lang.org/tools/install)

<!-- TDDO: add this in when we put it on crates.io
### Setup
To use Proof of SQL, add it as a dependency in your `Cargo.toml` file:
```toml
[dependencies]
proof-of-sql = "x.x.x"
```
Replace `x.x.x` with the version number you want to use. You can now use Proof of SQL in your Rust project. Import the necessary modules using `proof-of-sql::prelude::*` and start using the library's features in your code:
```rust
use proof-of-sql::prelude::*;
fn main() {
// Your code here
}
```
-->

## Examples

Proof of SQL comes with example code demonstrating its usage. You can find the examples in the `crates/proofs/examples` folder. Below are explainations of how to run some of these examples:

### "Hello World" Example

The "Hello World" example demonstrates generating and verifying a proof of the query `SELECT b FROM table WHERE a = 2` for the table:

| a | b |
|------------|-------------|
| 1 | hi |
| 2 | hello |
| 3 | there |
| 2 | world |

#### Run

```bash
cargo run --example hello_world
```

#### Output

```
Warming up GPU... 520.959485ms
Loading data... 3.229767ms
Parsing Query... 1.870256ms
Generating Proof... 467.45371ms
Verifying Proof... 7.106864ms
Valid proof!
Query result: OwnedTable { table: {Identifier { name: "b" }: VarChar(["hello", "world"])} }
```

For a detailed explanation of the example and its implementation, refer to the [README](crates/proofs/examples/hello_world/README.md) and source code in [hello_world/main.rs](crates/proofs/examples/hello_world/main.rs).

### CSV Database Example

The CSV Database example demonstrates an implementation of a simple CSV-backed database with Proof of SQL capabilities.

To install the example:

```bash
cargo install --example posql_db --path crates/proofs #TODO: update once this is published to crates.io
```

For detailed usage instructions and examples of how to create, append to, prove, and verify queries in the CSV-backed database, refer to the [README](crates/proofs/examples/posql_db/README.md) and source code in [posql_db/main.rs](crates/proofs/examples/posql_db/main.rs).

## Benchmarks

Proof of SQL is optimized for speed and efficiency. Here's how it's so fast:

1. We use **native, precomputed commitments** to the data. In other words, when adding data to the database, we compute a "digest" of the data, which effectively "locks in" the data. Instead of using a merkle tree based commitment, like those use in most blockchains, we use the commitment scheme that is inherent to Proof of SQL itself.
2. SQL is conducive to a **natural arithmatization**, meaning that there is very little overhead compared with other proof systems that are designed around instructions/sequential compute. Instead, Proof of SQL is designed from the ground up with data processing and parallelism in mind.
3. We use **GPU acceleration** on the most expensive cryptography in the prover. We use [Blitzar](https://github.com/spaceandtimelabs/blitzar) as our acceleration framework.

### Setup

We run benchmarks using both a machine with multiple NVIDIA A100 GPUs (NC A100 v4-series Azure VM) and a machine with a single NVIDIA T4 GPU (NCasT4_v3-series Azure VM).

To run these benchmarks we first generate a large, randomly-filled table of data such as the following:
<p align="center">

a (BIGINT) | b (BIGINT) | c (VARCHAR)
---|---|---
17717 | -1 | Z
11651 | -3 | W
-9563 | -2 | dS
-6435 | -2 | x
-8338 | -1 | jI
12420 | -2 | DX
11546 | -3 |
18292 | 2 |
6500 | -1 | C
16219 | 2 | D5

</p>

Then, we run the following 3 queries against these data, prove, and verify the results:
* Query #1 - `SELECT b FROM table WHERE a = 0`
* Query #2 - `SELECT * FROM table WHERE ((a = 0) or (b = 1)) and (not (c = 'a'))`
* Query #3 - `SELECT b, SUM(a) as sum_a, COUNT(*) as c FROM table WHERE (c = 'a' OR c = 'b') AND b > 0 GROUP BY b`

An example result for the 3rd query looks like this:

<p align="center">

b | sum_a | c
---|---|---
1 | -45585 | 301
2 | -137574, | 300
3 | -107073 | 282

</p>

### Results

The results are shown in the graphs below for the T4 machine and the A100 machine on all three of the queries listed above. Broadly the results are:

* A query against 100k rows of data can be proven in sub-second time.
* A query against 100 million rows of data can be proven in roughly a minute.
* Verification time is roughly 20ms across the board.

<p align="center"><img src="docs/ProofOfSQLBenchmarks200kT4.svg" alt="Proof Of SQL Benchmarks (200k - T4)" width="50%"/><img src="docs/ProofOfSQLBenchmarks200kA100.svg" alt="Proof Of SQL Benchmarks (200k - A100)" width="50%"/><img src="docs/ProofOfSQLBenchmarks10mT4.svg" alt="Proof Of SQL Benchmarks (10m - T4)" width="50%"/><img src="docs/ProofOfSQLBenchmarks100mA100.svg" alt="Proof Of SQL Benchmarks (100m - A100)" width="50%"/></p>

## Supported SQL Syntax

See the [SQL specification](docs/SQLSyntaxSpecification.md) for more details. Broadly, we support the following with more SQL features being added quickly:

* `SELECT ... WHERE`
* `GROUP BY`
* Comparison operations: `=`, `>=`, `<=`, etc.
* Logical operations: `AND`, `OR`, `NOT`.
* Aggregations: `SUM`, `COUNT`
* Data Types: `BIGINT`, `VARCHAR`, `DECIMAL75`.


## Roadmap

Proof of SQL is in active development. Here are some items that we are currently working on. We are happy to recieve feedback on additional features that the community requests.

* Expanded SQL support - in particular, multi-table queries (like JOIN) and subqueries
* Cluster scale proofs - this means faster proofs over larger tables!
* Solidity (EVM) verifier - for more efficient onchain verification.
* A novel commitment scheme - while we support a variety of commitment schemes, we are developing a commitment scheme specifically for database operations, ensuring lower-gas onchain verification.

We are also currently undergoing robust security audits. Keep this in mind as you use this code.

## Protocol Overview

See the [Space and Time Whitepaper](https://assets-global.website-files.com/642d91209f1e772d3740afa0/658edf3cf26933c4878ec965_whitepaper.pdf) for a more in depth explanation. We will also be adding more technical documentation to this repo soon.

We created this protocol with a few key goals. First, it needs to be super fast for data processing, both for verification and round-trip execution. This requires a design that is built from the ground up, as opposed to using arbitrary zkVMs. Second, we made it very developer-friendly. Using SQL, the most popular data query language, ensures a familiar experience for anyone building data-focused applications, or sophisticated data-driven contracts. Finally, our protocol is designed to handle complex data processing, not just simple serial compute or data retrieval.

In this protocol, there are two main roles: the client sending the query (Verifier) and the database service returning the result (Prover). Of course, the Verifier doesn't always have to send the query; it can be any client, such as a smart contract, a dapp frontend, or a laptop . This setup is crucial for applications with limited compute or storage but still requires a security guarantee that data analytics are correctly executed and the data remains unaltered. The Prover handles heavy computations, while the Verifier is lightweight, suitable for client devices or smart contracts with limited resources.

A key architectural feature is the concept of a commitment, or digest. To ensure data integrity, the Verifier maintains this commitment to detect any tampering. Think of it as a digital fingerprint—a lightweight digest representing the data in the table.

### Data Ingestion

The initial interaction between the Verifier and the Prover involves data ingestion. In this process, when a service or client submits data for database inclusion, it first passes through the Verifier. Here, the Verifier generates (or updates) a commitment containing sufficient information to safeguard against tampering throughout the protocol. Once this commitment is established, the Verifier forwards the data to the database for storage, while retaining the commitment for future reference.

<p align="center"><img src="docs/DataIngestionDiagram.png" alt="Data Ingestion Diagram" width="50%"/></p>

### Query Request

The second interaction involves query requests, where the Verifier seeks data analytics on Prover-held data. When a service, client, or Verifier initiates a query request, it sends the request to the Prover. Here, the Prover parses the query, computes the result, and generates a proof, sent alongside the result to the Verifier, which is maintaining the commitment. The Verifier, armed with the proof and commitment, can verify the Prover's result against the query request.

<p align="center"><img src="docs/QueryRequestDiagram.png" alt="Query Request Diagram" width="50%"/></p>



## License

Proof of SQL is licensed under the Decentralized Open Software License 1.0. Please see the [LICENSE](LICENSE) file for details.
Binary file added docs/DataIngestionDiagram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/ProofOfSQLBanner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit c5647ba

Please sign in to comment.