Skip to content

Commit 50ace6d

Browse files
committed
Add veritas verifier
1 parent 03b95de commit 50ace6d

12 files changed

+919
-77
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
target
22
.idea
3-
.DS_store
3+
.DS_store
4+
.zone

Cargo.lock

+136-69
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[workspace]
22

33
resolver = "2"
4-
members = [ "client", "protocol", "testutil", "wallet"]
4+
members = [ "client", "protocol", "veritas", "testutil", "wallet"]

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ spaced --chain testnet4 --bitcoin-rpc-user testnet4 --bitcoin-rpc-password testn
6666

6767
## Project Structure
6868

69-
| Package | Requires std | Description |
70-
|----------|------------------|------------------------------------------------|
71-
| node | Yes | Daemon and wallet service |
72-
| wallet | Yes (no-std WIP) | wallet library for building spaces transactions|
73-
| protocol | No | Protocol consensus library |
74-
69+
| Package | Requires std | Description |
70+
|----------|-----------------|-------------------------------------------------------------------------------------------------|
71+
| client | Yes | Bitcoin consensus client and wallet service |
72+
| wallet | Yes (no-std WIP) | Wallet library for building spaces transactions |
73+
| protocol | No | Protocol consensus library |
74+
| veritas | No | Stateless verifier library for mobile and other resource constrained devices with wasm support. |
7575

7676
## License
7777

veritas/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pkg

0 commit comments

Comments
 (0)