-
Notifications
You must be signed in to change notification settings - Fork 57
Zsa WIP #356
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Zsa WIP #356
Changes from all commits
Commits
Show all changes
65 commits
Select commit
Hold shift + click to select a range
0d7ecad
Circleci project setup (#1)
PaulLaux 58158f5
Added NoteType to Notes
PaulLaux 48779d5
reformated file
PaulLaux 430e047
updated `derive` for NoteType
PaulLaux f8cb133
added note_type to value commit derivation
PaulLaux d337f82
rustfmt
PaulLaux 0d656aa
updated ci config
PaulLaux bae15b7
updated ci config
PaulLaux 100b644
updated ci config
PaulLaux 91466fe
updated derive for note_type
PaulLaux 7d1a606
added test for arb note_type
PaulLaux 6a10f45
added test for `native` note type
PaulLaux 9644241
zsa-note-encryption: introduce AssetType and encode and decode it in …
8bdbf3f
zsa-note-encryption: extend the size of compact notes to include asse…
69f0ea4
fixed clippy warrnings
PaulLaux c4d9eea
rustfmt
PaulLaux 9b83fa5
zsa-note-encryption: document parsing requirement
826378a
zsa-note-encryption: revert support of ZSA compact action
50ce4e2
zsa_value: add NoteType method is_native
b04468c
Merge branch 'zsa-note-encryption' into zsa-value-and-encryption
9a7d76c
zsa-note-encryption: remove dependency on changes in the other crate
94626af
zsa-note-encryption: extract memo of ZSA notes
1f11f1d
zsa-note-encryption: tests (zcash_test_vectors 77c73492)
1a6658d
zsa-note-encryption: simplify roundtrip test
66f040f
zsa-note-encryption: more test vectors (zcash_test_vectors c10da464)
ce91df1
Circleci project setup (#1)
PaulLaux 769f2f7
issuer keys implementation (#5)
daniben31 8a6f599
Added NoteType to Notes (#2)
PaulLaux 3a6ed1e
Merge branch 'zsa1' into zsa-note-encryption
PaulLaux 33a205b
Circleci project setup (#1)
PaulLaux 71565ee
issuer keys implementation (#5)
daniben31 5ae5107
Added NoteType to Notes (#2)
PaulLaux 48d65ee
added note_type to builder
PaulLaux 60a17a2
Merge branch 'zsa1' into zsa-builder
PaulLaux ac71bc7
ZSA note encryption in Orchard crate (#3)
naure c8d3557
minor update
PaulLaux 45bf2d6
Merge branch 'zsa1' into zsa-builder
PaulLaux 93f0244
rustfmt
PaulLaux b86a5e0
removed comment
PaulLaux d15600c
added IssueAction
PaulLaux 95079aa
updated issue
PaulLaux c7a8783
updated issuance
PaulLaux ca0935e
fmt
PaulLaux f014f85
added add_recipent to `IssueBundle`
PaulLaux b20a3e1
added test
PaulLaux aca6c71
added tests
PaulLaux d3ad5e1
added prepare
PaulLaux 3ebec5f
added sign and verify
PaulLaux 0ec7e01
moved authorization from issueAction to IssueBundle and test cleanup
PaulLaux ecf6013
moved ik to IssueBundle
PaulLaux 51a5fe4
fmt
PaulLaux e83aa54
added NoteValue::unsplittable Error for asset_desc size
PaulLaux 97d8d8a
added verify_issue_bundle
PaulLaux a6567f4
removed prop_test for issue
PaulLaux 72680af
added sighash to setup params
PaulLaux 3f58b7c
added test
PaulLaux 75e9447
verify_issue_bundle now returns the same HashSet it got as a param
PaulLaux 5aa18e5
added issue_bundle_verify_with_finalize and
PaulLaux 8e447a7
added some comments
PaulLaux 3902f75
updated docs
PaulLaux 29808bd
Zsa builder (#4)
PaulLaux 46085d7
Issuance tests and Issue commitments. (#17)
alexeykoren 9b804a1
minor cleanup
PaulLaux 727dc81
minor cleanup2
PaulLaux f96b591
Merge branch 'zsa1' into zsa1-issue2
PaulLaux File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| # Use the latest 2.1 version of CircleCI pipeline process engine. | ||
| # See: https://circleci.com/docs/2.0/configuration-reference | ||
| version: 2.1 | ||
|
|
||
| orbs: | ||
| slack: circleci/slack@4.1 | ||
|
|
||
| # Define a job to be invoked later in a workflow. | ||
| # See: https://circleci.com/docs/2.0/configuration-reference/#jobs | ||
| jobs: | ||
| cargo-test: | ||
| # Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub. | ||
| # See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor | ||
| docker: | ||
| - image: cimg/rust:1.59.0 | ||
| # Add steps to the job | ||
| # See: https://circleci.com/docs/2.0/configuration-reference/#steps | ||
| steps: | ||
| - checkout | ||
| - run: | ||
| name: "cargo test" | ||
| command: | | ||
| sudo apt update && sudo apt-get install libfontconfig libfontconfig1-dev libfreetype6-dev; | ||
| cargo version; | ||
| cargo test --all --all-features; | ||
| - slack/notify: | ||
| event: fail | ||
| template: basic_fail_1 | ||
| - slack/notify: | ||
| event: pass | ||
| template: basic_success_1 | ||
|
|
||
|
|
||
| # Invoke jobs via workflows | ||
| # See: https://circleci.com/docs/2.0/configuration-reference/#workflows | ||
| workflows: | ||
| build-and-test: | ||
| jobs: | ||
| - cargo-test: | ||
| context: CI-Orchard-slack |
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -2,3 +2,6 @@ | |
| **/*.rs.bk | ||
| Cargo.lock | ||
| .vscode | ||
| .idea | ||
| action-circuit-layout.png | ||
| proptest-regressions/*.txt | ||
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.