This repository has been archived by the owner on Nov 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Use alias instead of public key bytes - Define compression, encryption, and signature algorithms - Define public and private key formats - Add KeyShare for transfering keys to other devices - Add Thresholds for different chains
- Loading branch information
1 parent
e9eb570
commit 824efbc
Showing
2 changed files
with
110 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,21 @@ | ||
BC | ||
=== | ||
|
||
This project defines the data structures of a blockchain as protocol buffers (https://developers.google.com/protocol-buffers/), allowing implementations in C, C++, Go, Java, and/or Python. | ||
This project defines the data structures of a blockchain as protocol buffers (https://developers.google.com/protocol-buffers/), allowing implementations in C, C++, C#, Dart, Go, Java, and/or Python. | ||
|
||
Build | ||
===== | ||
|
||
./build.sh --c_out=<c-output> | ||
|
||
./build.sh --cpp_out=<cpp-output> | ||
|
||
./build.sh --csharp_out=<csharp-output> | ||
|
||
./build.sh --dart_out=<dart-output> | ||
|
||
./build.sh --go_out=<go-output> | ||
|
||
./build.sh --javalite_out=<java-output> | ||
|
||
./build.sh --python_out=<python-output> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters