Skip to content

Commit

Permalink
Merge branch 'main' into release/v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hu55a1n1 committed Oct 16, 2024
2 parents db58e40 + 05163c3 commit da9f063
Show file tree
Hide file tree
Showing 11 changed files with 416 additions and 303 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Quartz provides developers three main tools:
- a rust library (`quartz-enclave-core`) for building blockchain constrained SGX enclaves
- a cli tool (`quartz`) for connecting the contract and the enclave.

This repo contains an example, [`transfers`](/apps/transfers), which combines these
This repo contains an example, [`transfers`](/examples/transfers), which combines these
tools into a working private transfers application, complete with a Keplr-based
frontend.

Expand Down Expand Up @@ -127,9 +127,9 @@ The repo contains some additional utilities for supporting Quartz development:
* [quartz-cw-prover](crates/utils/cw-prover) - Retrieve a merkle-proof for CosmWasm state
* [quartz-tm-prover](crates/utils/tm-prover) - Generate light client and merkle proofs for CosmWasm storage in a format that Quartz
understands
* [quartz-cw-client](crates/utils/quartz-cw-client) - Rust client for wasmd
* [quartz-cw-client](crates/utils/cw-client) - Rust client for wasmd
style blockchains
* [quartz-print-fmspc](crates/utils/quartz-print-fmspc) - Print the FMSPC, a
* [quartz-print-fmspc](crates/utils/print-fmspc) - Print the FMSPC, a
description of the SGX processor family/model etc.


Expand Down
2 changes: 1 addition & 1 deletion crates/utils/cw-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
cw-client = { path = "../packages/cw-client" }
cw-client = { path = "crates/utils/cw-client", default-features = false }
```

## Usage
Expand Down
2 changes: 2 additions & 0 deletions docker/enclave-sgx/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Quartz Enclave Build/Run Image for SGX

> NOTE - As of v0.1 release, this dockerfile is out of date and does not work.
This folder contains the basis for a multi-stage Docker image that:

1. Builds the enclave
Expand Down
2 changes: 1 addition & 1 deletion docs/building_apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,5 @@ The enclave code can then produce a remote attestation of the result, and
optionally a zero-knowledge proof (ZKP) of execution.


[transfers_app]: /apps/transfers
[transfers_app]: /examples/transfers
[how_it_works]: /docs/how_it_works.md
Loading

0 comments on commit da9f063

Please sign in to comment.