File tree Expand file tree Collapse file tree 5 files changed +6
-2
lines changed Expand file tree Collapse file tree 5 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ members = [
77resolver = " 2"
88
99[workspace .dependencies ]
10+ alto-client = { version = " 0.0.2" , path = " client" }
1011alto-types = { version = " 0.0.2" , path = " types" }
1112commonware-consensus = { version = " 0.0.40" }
1213commonware-cryptography = { version = " 0.0.40" }
Original file line number Diff line number Diff line change 77## Components
88
99* [ chain] ( ./chain/README.md ) : A minimal blockchain built with the [ Commonware Library] ( https://github.com/commonwarexyz/monorepo ) .
10+ * [ client] ( ./client/README.md ) : Client for interacting with ` alto ` .
1011* [ types] ( ./types/README.md ) : Common types used throughout ` alto ` .
1112
1213## Licensing
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ version = "0.0.2"
44publish = true
55edition = " 2021"
66license = " MIT OR Apache-2.0"
7- description = " Utilities for interacting with alto."
7+ description = " Client for interacting with alto."
88readme = " README.md"
99homepage = " https://alto.commonware.xyz"
1010repository = " https://github.com/commonwarexyz/alto/tree/main/client"
Original file line number Diff line number Diff line change 33[ ![ Crates.io] ( https://img.shields.io/crates/v/alto-client.svg )] ( https://crates.io/crates/alto-client )
44[ ![ Docs.rs] ( https://docs.rs/alto-client/badge.svg )] ( https://docs.rs/alto-client )
55
6- Utilities for interacting with ` alto ` .
6+ Client for interacting with ` alto ` .
77
88## Status
99
Original file line number Diff line number Diff line change 1+ //! Client for interacting with `alto`.
2+
13use commonware_cryptography:: { bls12381, sha256:: Digest } ;
24use commonware_utils:: hex;
35use thiserror:: Error ;
You can’t perform that action at this time.
0 commit comments