Skip to content

Commit

Permalink
Changelog update
Browse files Browse the repository at this point in the history
  • Loading branch information
HonzaR committed Sep 30, 2024
1 parent 604ede8 commit 251aca7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ and this library adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The new `Synchronizer.proposeFulfillingPaymentUri` API has been added. It enables constructing Proposal object from
the given ZIP-321 Uri, and then creating transactions from it.

### Changed
- `Synchronizer.proposeTransfer` throws `TransactionEncoderException.ProposalFromParametersException`
- `Synchronizer.proposeShielding` throws `TransactionEncoderException.ProposalShieldingException`
- `Synchronizer.createProposedTransactions` throws `TransactionEncoderException.TransactionNotCreatedException` and `TransactionEncoderException.TransactionNotFoundException`

## [2.2.4] - 2024-09-16

### Added
Expand Down Expand Up @@ -193,7 +198,6 @@ This release adds several important new features:
transactions.
- `Synchronizer.proposeTransfer`
- `Synchronizer.proposeShielding`
- `Synchronizer.proposeFulfillingPaymentUri`
- `Synchronizer.createProposedTransactions`
- `WalletBalanceFixture` class with mock values that are supposed to be used only for testing purposes
- `Memo.countLength(memoString: String)` to count memo length in bytes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -310,11 +310,14 @@ private fun SendMainContent(
//
// A valid payment request for a payment of 1 ZEC to a single shielded Sapling address, with a
// base64url-encoded memo and a message for display by the wallet:
// zcash:zs15tzaulx5weua5c7l47l4pku2pw9fzwvvnsp4y80jdpul0y3nwn5zp7tmkcclqaca3mdjqjkl7hx?amount=0.0001&memo=VGhpcyBpcyBhIHNpbXBsZSBtZW1vLg&message=Thank%20you%20for%20your%20purchase
// zcash:zs15tzaulx5weua5c7l47l4pku2pw9fzwvvnsp4y80jdpul0y3nwn5zp7tmkcclqaca3mdjqjkl7hx?amount=0.0001
// &memo=VGhpcyBpcyBhIHNpbXBsZSBtZW1vLg&message=Thank%20you%20for%20your%20purchase
//
// A valid payment request with one transparent and one shielded Sapling recipient address, with a
// base64url-encoded Unicode memo for the shielded recipient:
// zcash:?address=t1duiEGg7b39nfQee3XaTY4f5McqfyJKhBi&amount=0.0001&address.1=zs15tzaulx5weua5c7l47l4pku2pw9fzwvvnsp4y80jdpul0y3nwn5zp7tmkcclqaca3mdjqjkl7hx&amount.1=0.0002&memo.1=VGhpcyBpcyBhIHVuaWNvZGUgbWVtbyDinKjwn6aE8J-PhvCfjok
// zcash:?address=t1duiEGg7b39nfQee3XaTY4f5McqfyJKhBi&amount=0.0001
// &address.1=zs15tzaulx5weua5c7l47l4pku2pw9fzwvvnsp4y80jdpul0y3nwn5zp7tmkcclqaca3mdjqjkl7hx
// &amount.1=0.0002&memo.1=VGhpcyBpcyBhIHVuaWNvZGUgbWVtbyDinKjwn6aE8J-PhvCfjok

TextField(
value = zip321String,
Expand Down

0 comments on commit 251aca7

Please sign in to comment.