All notable changes to this library will be documented in this file.
The format is based on Keep a Changelog, and this library adheres to Semantic Versioning.
- This release fixes a bug in wallet reorg handling that could result in a crash under certain circumstances.
- This release fixes a bug in scan progress calculation that could result in occasionally reporting scan progress values greater than 100%.
- This release fixes a potential source of corruption in wallet note commitment trees related to incorrect handling of chain reorgs. It includes a database migration that will repair the corrupted database state of any wallet affected by this corner case.
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2650000.json
...
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2672500.json
Testnet
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2800000.json
...
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/3000000.json
- SQLight's
Expression
is no longer a unique identifier, namespace needed to be added as a prefix to it. Buildability solved withSQLight.Expression
instead.
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2637500.json
...
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2647500.json
-
Synchronizer's
evaluateBestOf(endpoints: [], ...) async -> [LightWalletEndpoint]
method takes a list of endpoints and evaluates top k best performant servers. -
TransactionEntity
extended to accessis_shielding
from the DB and provides the value to the clients.
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2620000.json
...
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2635000.json
- This release fixes an error in database migration logic that could cause problems when upgrading certain wallets from versions in the 2.1.x range.
Synchronizer.exchangeRateUSDStream: AnyPublisher<FiatCurrencyResult?, Never>
, which returns the currently-cached USD/ZEC exchange rate, ornil
if it has not yet been fetched.Synchronizer.refreshExchangeRateUSD()
, which refreshes the rate returned bySynchronizer.exchangeRateUSDStream
. Prices are queried over Tor (to hide the wallet's IP address).
- The transaction history is now processed using
transaction data requests
, which are fetched every 1,000 blocks during longer syncs or with each sync loop when a new block is mined.
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2562500.json
...
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2617500.json
The CompactBlockProcessor's state machine got stuck in some cases at the updateChainTip action.
The Compact block processor's state machine has been extended to check whether there are any unmined and unexpired transactions, and it attempts to resubmit such transactions every 5 minutes.
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2542500.json
...
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2560000.json
- Further changes for compatibility with Xcode 15.3 and above.
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2532500.json
...
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2540000.json
- Synchronizer's'
prepare()
method passes even if server is down and not providing chan tip.
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2522500.json
...
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2530000.json
- New API
getMemos(for rawID: Data) -> [Memos]
to load memos for a certain transaction (ZcashTransaction.Overview) defined by its rawID.
- Swiftlint issues have been addressed.
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2475000.json
...
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2520000.json
minimumShieldingConfirmations
set to 1 instead of 10. This should fasten the time it takes to swap transparent funds to shielded ones.
- The backend method proposeShielding checks the pointer for a null value before attempting to construct the Data with it. Without this check, proposeShielding would crash when there were either zero funds to shield or when the amount was less than the threshold defined by the client.
- Updated to
zcash-light-client-ffi
version 0.8.0. This includes a migration to ensure that the default Unified Address for existing wallets contains an Orchard receiver. - This release includes a workaround for build and deployment issues related to a bug in XCode 15.3.
- The database locking mechanism has been changed to use async/await concurrency approach - the DBActor.
- Call of wipe() resets local (in memory) values.
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2450000.json
...
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2472500.json
Testnet
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2780000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2790000.json
- Orchard subtree roots are now fetched alongside Sapling subtree roots.
- Bug in note selection when sending to a transparent recipient.
- Bug in an SQL query that prevented shielding of transparent funds.
New API implemented that allows clients to use a ZIP-321 Payment URI to create transaction.
func fulfillPaymentURI(
_ uri: String,
spendingKey: UnifiedSpendingKey
) async throws -> ZcashTransaction.Overview
Possible errors:
ZcashError.rustProposeTransferFromURI
- Other errors that
sentToAddress
can throw
SDKSynchronizer.latestUTXOs
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2430000.json
...
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2447500.json
Testnet
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2750000.json
...
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2770000.json
- Migrated to
zcash-light-client-ffi 0.6.0
.
- The SDK now generates transactions using ZIP 317 fees,
instead of a fixed fee of 10,000 Zatoshi. Use
Proposal.totalFeeRequired
to check the total fee for a transfer before creating it.
New Synchronizer
APIs that enable constructing a proposal for transferring or
shielding funds, and then creating transactions from a proposal. The intermediate
proposal can be used to determine the required fee, before committing to producing
transactions.
The old Synchronizer.sendToAddress
and Synchronizer.shieldFunds
APIs have been
deprecated, and will be removed in 2.1.0 (which will create multiple transactions
at once for some recipients).
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2402500.json
...
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2427500.json
Testnet
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2690000.json
...
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2740000.json
New API implemented that allows clients to change the mainnet
endpoint. Use func switchTo(endpoint: LightWalletEndpoint) async throws
.
Possible errors:
ZcashError.synchronizerServerSwitch
will perform a check to ensure that it's possible to communicate with the specified lightwalletd server, which may result in an an error. If this check fails, the user should be prompted to check the address, port and verify that theaddress:port
format is respected.- Switching endpoints causes a call to
synchronizer.Start()
, which may throw aZcashError
.
SynchronizerState
cleaned up and changed to provide only AccountBalance
. This struct holds saplingBalance: PoolBalance
which represents shielded balance for both total and spendable. Also holds unshielded: Zatoshi
which represents transparent balance.
WalletBalance
has been removed from the SDK, replaced withAccountBalance
.getTransparentBalance(accountIndex: Int)
, usegetAccountBalance(accountIndex: Int = 0)
insteadgetShieldedBalance(accountIndex: Int)
, usegetAccountBalance(accountIndex: Int = 0)
insteadgetShieldedVerifiedBalance(accountIndex: Int)
, usegetAccountBalance(accountIndex: Int = 0)
instead
shieldedBalance: WalletBalance
has been replaced with accountBalances: AccountBalance
. AccountBalance
provides the same values as shieldedBalance
but adds up a pending changes. Under the hood this calls rust's getWalletSummary
which improved also the syncing initial values of % and balances.
New API implemented that allows clients to change the mainnet
endpoint. Use func switchTo(endpoint: LightWalletEndpoint) async throws
.
Possible errors:
ZcashError.synchronizerServerSwitch
: endpoint fails, check the address, port and format address:port,- Some
ZcashError
related tosynchronizer.Start()
: the switch callsstart()
at the end and that is the only throwing function except the validation.
Adopt zcash-light-client-ffi 0.5.1
. This fixes a serialization problem
broke shielding.
Model.ScanSummary
Model.WalletSummary.{PoolBalance, AccountBalance, WalletSummary}
- The
ZcashError
type has changed.- Added variant
rustGetWalletSummary
- Removed variants:
rustGetVerifiedBalance
(expectrustGetWalletSummary
instead)rustGetScanProgress
(expectrustGetWalletSummary
instead)rustGetBalance
(expectrustGetWalletSummary
instead)
- Added variant
- The performance of
getWalletSummary
andscanBlocks
have been improved.
We focused on performance of the synchronization and found out a root cause in progress reporting. Simple change reduced the synchronization significantly by reporting less frequently. This affect the UX a bit because the % of the sync is updated only every 500 scanned blocks instead of every 100. Proper solution is going to be handled in #1353.
Async block stream grpc calls sometimes fail with unknown error 14, most of the times represented as Transport became inactive
or NIOHTTP2.StreamClosed
. Unless the service is truly down, these errors are usually false positive ones. The SDK was able to recover from this error with the next sync triggered but it takes 10-30s to happen. This delay is unnecessary so we made 2 changes. When these errors are caught the next sync is triggered immediately (at most 3 times) + the error state is not passed to the clients.
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2332500.json
...
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2382500.json
Testnet
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2640000.json
...
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2690000.json
Shielded verified and total balances are logged for every sync of SDKMetrics
.
Mainnet Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2330000.json
Testnet Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2630000.json
The SDKMetrics
logs data using os_log. The public API enableMetrics()
and disableMetrics()
no longer exist. All metrics are automatically logged for every sync run. Extraction of the metrics is up to the client/dev - done by using OSLogStore
.
The sync process is measured and detailed metrics are logged for every sync run. The data are logged using os_log so any client can export it. Verbose logs are under sdkLogs_default
category, default
level. Sync specific logs use error
level.
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2270000.json
...
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2327500.json
Testnet
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2560000.json
...
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2620000.json
The enhancing of the transactions now processes all the blocks suggested by scan ranges. The issue was that when new scan ranges were suggested the value that drives the enhancing range computation wasn't reset, so when higher ranges were processed, the lower ranges were skipped. This fix ensures all transaction data are properly set, as well as fixing eventStream .foundTransaction
reporting.
This is a fix in the rust layer. The amount sent in the transaction was incorrectly reported even though the actual amount was sent properly. Now clients should see the amount they expect to see in the UI.
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2250000.json
...
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2267500.json
Testnet
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2540000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2550000.json
The SDK has some simple logic of retrying when some erros occurs. There were 5 attempts of retry until the SDK stopped the synchronization process completely. (The timer is not restarted after those). That approach led to some annoying UX issue of manually starting the SDKSynchronizer from the client, shifting the responsibility to the devs/clients. This has been changed, the SDK never stops the timer unless synchronizer.stop()
is called.
The .foundTransactions
observed on eventStream worked well during the sync until the rewind was called. That API missed reset of the ActionContext in the CompactBlockProcesser and that led to never observing the same transactions again. This ticket fixed the problem, reset is called in the rewind and new sync passes the transactions to the stream.
The 1000 Zatoshi fee proposed in ZIP-313 is deprecated now and so the minimum is 10k Zatoshi, defined in ZIP-317.
The SDK has been cleaned up from deprecated fee but note, real fee is handled in a rust layer.
The public API NetworkConstants.defaultFee(for: BlockHeight)
has been refactored to NetworkConstants.defaultFee()
.
This release updates ZcashLightClientKit
to implement the Spend-Before-Sync fast
synchronization algorithm.
Updated dependencies:
zcash-light-client-ffi 0.4.0
CompactBlockProcessor
now processes compact blocks from the lightwalletd server with Spend-before-Sync algorithm (i.e. non-linear order). This feature shortens the time after which a wallet's spendable balance can be used.
The levels for logging have been updated according to Log Levels in Swift. (https://www.swift.org/server/guides/libraries/log-levels.html).
There's one naming difference, instead of notice
we use event
. So the order is debug, info, event, warning, error.
Initializer
has now a new parameter called generalStorageURL
. This URL is the location of the directory
where the SDK can store any information it needs. A directory doesn't have to exist. But the SDK must
be able to write to this location after it creates this directory. It is suggested that this directory is
a subdirectory of the Documents
directory. If this information is stored in Documents
then the
system itself won't remove these data.
Synchronizer's prepare(...) public API changed: viewingKeys: [UnifiedFullViewingKey]
has been removed and for walletMode: WalletInitMode
added. WalletInitMode
is an enum with 3 cases: .newWallet, .restoreWallet and
.existingWallet. Use .newWallet
when preparing the SDKSynchronizer for a
brand new wallet that has been generated. Use .restoreWallet
when wallet is
about to be restored from a seed and .existingWallet
for all other scenarios.
latestScannedHeight
and latestScannedTime
have been removed from SynchronizerState
. With multiple algorithms
of syncing the amount of data provided is reduced so it's consistent. Spend before Sync is done in non-linear order
so both Height and Time don't make sense anymore.
latestScannedHeight
andlatestScannedTime
have been removed from the SynchronizerState.- The concept of pending transaction has changed:
func allPendingTransactions()
is no longer available. Usepublic func allTransactions()
instead.
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2057500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2060000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2062500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2065000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2067500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2070000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2072500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2075000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2077500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2080000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2082500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2085000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2087500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2090000.json
Testnet
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2320000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2330000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2340000.json
- [#1037] Empty string memo throws
ZcashError.memoTextInputEndsWithNullBytes
- [#1016] Rebuild download stream periodically while downloading This fixes a memory consumption issue coming from GRPC-Swift.
- [#1019] Memo has trailing garbled text
Initializer
has now a new parameter called generalStorageURL
. This URL is the location of the directory
where the SDK can store any information it needs. A directory doesn't have to exist. But the SDK must
be able to write to this location after it creates this directory. It is suggested that this directory is
a subdirectory of the Documents
directory. If this information is stored in Documents
then the
system itself won't remove these data.
Changes the way unpadded bytes are turned into a UTF-8 Swift String without using cString assuming APIs that would overflow memory and add garbled trailing bytes.
- [#781] This fixes test
testMaxAmountMinusOneSend
by creating two separate tests:- testMaxAmountMinusOneSendFails
- testMaxAmountSend
Also includes new functionality that tracks sent transactions so that users can be notified specifically when they are mined and uses "idea B" of issue #1033.
closes #1033 closes #781
-
WalletTransactionEncoder
now uses aLightWalletService
to submit the encoded transactions. -
Functions returning or receiving
ZcashTransaction.Sent
orZcashTransaction.Received
now will be simplified by returningZcashTransaction.Overview
or be replaced by their Overview counterparts
-
ZcashTransaction.Overview
can be checked for "pending-ness" by calling.isPending(latestHeight:)
latest height must be provided so that minedHeight can be compared with the lastest and thedefaultStaleTolerance
constant. -
TransactionRecipient
is now a public type. -
ZcashTransaction.Output
can be queried to know the inner details of aZcashTransaction.Overview
. It will return an array with all the tracked outputs for that transaction so that they can be shown to users who request them -
ZcashTransaction.Overview.State
is introduced to representconfirmed
,pending
orexpired
states. This State is relative to the current height of the chain that is passed to the functiongetState(for currentHeight: BlockHeight)
.
State should be a transient value and it's not adviced to store it unless
transactions have stale values such as confirmed
or expired
.
-
public func getTransactionOutputs(transaction) async -> [ZcashTransaction.Output]
is added to get the outputs related to the given transaction. You can use this to know every detail of the transaction Overview and show it in a more fine-grained UI. -
TransactionRecipient
is returned ongetRecipients(for:)
.
AccountEntity
calledAccount
is nowDbAccount
ZcashTransaction.Received
andZcashTransaction.Sent
are removed and replaced byOverview
since the notion of Sent and received is not entirely applicable to Zcash transactions where value can be sent and received at the same time. Transactions with negative value will be considered as "sent" but that won't be enforced with a type anymorecancelSpend()
: support for cancel spend was removed since its completion was not guaranteedPendingTransactionEntity
and all of its related components. Pending items are still tracked and visualized by the existing APIs but they are retrieved from theTransactionRepository
instead by returningZcashTransaction.Overview
instead.pendingDbURL
is removed from every place it was required. Its deletion is responsibility of wallet developers.ClearedTransactions
are now justtransactions
.MigrationManager
is deleted. Now all migrations are in charge of the rust welding layer.PendingTransactionDao.swift
is removed.PendingTransactionRepository
protocol is removed.TransactionManagerError
PersistentTransactionManager
OutboundTransactionManager
is deleted and replaced byTransactionEncoder
which now incorporatessubmit(encoded:)
functionalityDatabaseMigrationManager
is remove since it's no longer needed all Database migrations shall be hanlded by the rust layer.ZcashSDK.defaultPendingDbName
along with any sibling membersTransactionRepository
findMemos(for receivedTransaction: ZcashTransaction.Received)
findMemos(for sentTransaction: ZcashTransaction.Sent)
Now the SDK allows for more fine-tuning of its logging behavior. The LoggingPolicy
enum
provides for three options: .default(OSLogger.LogLevel)
wherein the SDK will use its own logger, with the option
to customize the log level by passing an OSLogger.LogLevel
to the enum case.
custom
allows one to pass a custom Logger
implementation for completely customized logging.
Lastly, noLogging
disables logging entirely.
To utilize this new configuration option, pass a loggingPolicy
into the Initializer
. If unspecified, the SDK
will utilize an internal Logger
implementation with an OSLogger.LogLevel
of .debug
The SDK now parallelizes the download and scanning of blocks. If the network connection of the client device is fast enough then the scanning process doesn't have to wait for blocks to be downloaded. This makes the whole sync process faster.
Synchronizer.stop()
method is not async anymore.
Now the SDK uses only one error type - ZcashError
. Each method that throws now throws only ZcashError
.
Each publisher (or stream) that can emit error now emitts only ZcashError
.
Each symbol in ZcashError
enum represents one error. Each error is used only in one place
inside the SDK. Each error has assigned unique error code (ZcashErrorCode
) which can be used in logs.
Mainnet:
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2032500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2035000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2037500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2040000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2042500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2045000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2047500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2050000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2052500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2055000.json
Testnet
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2290000.json
This change drops the file-system cache whenever an error occurs when storing blocks
so that there is not a discontinuity in the cached block range that could cause a
discontinuity error on libzcashlc when calling scan_blocks
. This will have a setback of
at most 100 blocks that would have to be re-downloaded when resuming sync.
This change switches to a new (future) version of the rust crates that will get rid of the sent and received transactions Views in favor of a v_transaction view that will do better accounting of outgoing and incoming funds. Additionally it will support an outputs view for seeing the inner details of transactions enabling the SDKs tell the users the precise movement of value that a tx causes in its multiple possible ways according to the protocol.
the v_tx_outputs view is not yet implemented.
Sent and Received transaction sub-types are kept for compatibility purposes but they are generated from Overviews instead of queried from a specific view.
In the transaction Overview the value represents the whole value transfer for the transaction from the point of view of a given account including fees. This means that the value for a single transaction Overview struct represents the addition or subtraction of ZEC value to the account's balance.
Future updates will give clients the possibility to drill into the inner workings of those value changes in a per-output basis for each transaction.
Also, the field pending_unmined field was added to v_transactions so that wallets can query DataDb for pending but yet unmined txs
This will prepare the field for removing the notion of a "PendingDb" and its nuances.
This is mostly internal change. But it also touches the public API.
KeyDeriving
protocol is changed. And therefore DerivationTool
is changed. deriveUnifiedSpendingKey(seed:accountIndex:)
and
deriveUnifiedFullViewingKey(from:)
methods are now async. DerivationTool
offers alternatives for these methods. Alternatives are using either
closures or Combine.
This is mostly internal change. But it also touches the public API.
These methods previously returned Optional and now those methods return non-optional value and those methods can an throw error:
getSaplingAddress(accountIndex: Int) async throws -> SaplingAddress
func getUnifiedAddress(accountIndex: Int) async throws -> UnifiedAddress
func getTransparentAddress(accountIndex: Int) async throws -> TransparentAddress
These methods are now async:
func getShieldedBalance(accountIndex: Int) async throws -> Zatoshi
func getShieldedVerifiedBalance(accountIndex: Int) async throws -> Zatoshi
Initializer
no longer have methods to get balance. Use SDKSynchronizer
(or it's alternative APIs) to get balance.
Mainnet:
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2012500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2015000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2017500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2020000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2022500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2025000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2027500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2030000.json
Testnet:
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2260000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2270000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2280000.json
Synchronizer:
func getShieldedBalance(accountIndex: Int) -> Int64
func getShieldedVerifiedBalance(accountIndex: Int) -> Int64
use the API retuning Zatoshi instead. If neededzatoshi.amount
would return an Int64 value.
Initializer:
func getBalance(account index: Int = 0) -> Int64
use the API retuning Zatoshi instead. If neededzatoshi.amount
would return an Int64 value.func getVerifiedBalance(account index: Int = 0) -> Int64
use the API retuning Zatoshi instead. If neededzatoshi.amount
would return an Int64 value.
ZcashSDK.NetworkConstants:
func defaultFee(for height: BlockHeight) -> Int64
use the API retuning Zatoshi instead. If neededzatoshi.amount
would return an Int64 value.
ZcashRustBackendWelding:
func getReceivedMemoAsUTF8(dbData:idNote:networkType:) -> String?
UsegetReceivedMemo(dbData:idNote:networkType)
insteadfunc getSentMemoAsUTF8(dbData:idNote:networkType:) -> String?
UsegetSentMemo(dbData:idNote:networkType)
instead
Added ZcashSynchronizerAlias
enum which is used to identify an instance of the SDKSynchronizer
. All the paths
to all resources (databases, filesystem block storage...) are updated automatically inside the SDK according to the
alias. So it's safe to create multiple instances of the SDKSynchronizer
. Each instance must have unique Alias. If
the default
alias is used then the SDK works the same as before this change was introduced.
The SDK now also checks which aliases are used and it prevents situations when two instances of the SDKSynchronizer
has the same alias. Methods prepare()
and wipe()
do checks for used alias. And those methods fail
with InitializerError.aliasAlreadyInUse
if the alias is already used.
If the alias check fails in the prepare()
method then the status of the SDKSynchronizer
isn't switched from unprepared
.
These methods newly throw SynchronizerError.notPrepared
error when the status is unprepared
:
sendToAddress(spendingKey:zatoshi:toAddress:memo:) async throws -> PendingTransactionEntity
shieldFundsspendingKey:memo:shieldingThreshold:) async throws -> PendingTransactionEntity
latestUTXOs(address:) async throws -> [UnspentTransactionOutputEntity]
refreshUTXOs(address:from:) async throws -> RefreshedUTXOs
rewind(policy:) -> AnyPublisher<Void, Error>
Provided file URLs to resources (databases, filesystem block storage...) are now parsed inside the SDK and updated
according to the alias. If some error during this happens then SDKSynchronzer.prepare()
method throws
InitializerError.cantUpdateURLWithAlias
error.
There are two new protocols (ClosureSynchronizer
and CombineSynchronizer
). And there are two new
objects which conform to respective protocols (ClosureSDKSynchronizer
and CombineSDKSynchronizer
). These
new objects offer alternative API for the SDKSynchronizer
. Now the client app can choose which technology
it wants to use to communicate with Zcash SDK and it isn't forced to use async.
These methods in the SDKSynchronizer
are now async:
prepare(with:viewingKeys:walletBirthday:)
start(retry:)
stop()
cancelSpend(transaction:)
- All the variants of the
getMemos(for:)
method. - All the variants fo the
getRecipients(for:)
method. allConfirmedTransactions(from:limit:)
These properties in the SDKSynchronizer
are now async:
pendingTransactions
clearedTransactions
sentTransactions
receivedTransactions
Non async SDKsynchronizer.latestHeight(result:)
were moved to ClosureSDKSynchronizer
.
The SDKSynchronizer
no longer uses NotificationCenter
to send notifications.
Notifications are replaced with Combine
publishers. Check the migrating document and
documentation in the code to get more information.
viewingKeys
andwalletBirthday
are removed fromInitializer
constuctor. These parameters moved toSDKSynchronizer.prepare
function.- Constructor of the
SDKSynchronizer
no longer throws exception. - Any value emitted from
lastState
stream beforeSDKSynchronizer.prepare
is called haslatestScannedHeight
set to 0. Initializer.initialize
function isn't public anymore. To initialize SDK callSDKSynchronizer.prepare
instead.
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2002500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2005000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2007500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2010000.json
Testnet
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2250000.json
No public API changes.
Adds func shouldClearBlockCacheAndUpdateInternalState() -> BlockHeight?
to SyncRanges
so that the compact block processor can advert internal states that are not consistent and
recover from such state.
For concrete examples check out the tests in:
Tests/NetworkTests/CompactBlockProcessorTests.swift
Removed linter binary from repository
SDKSynchronizer.rewind(policy:)
function can be now called anytime. It returns AnyPublisher
which
completes or fails when the rewind is done. For more details read the documentation for this method
in the code.
SDKSynchronizer.wipe()
function can be now called anytime. It returns AnyPublisher
which
completes or fails when the wipe is done. For more details read the documentation for this method
in the code.
synchronizerStopped
notification is now sent after the sync process stops. It's
not sent right when stop()
method is called.
This is only an internal change and doesn't change the behavior of the SDK. Initializer
's
constructor has a new parameter saplingParamsSourceURL
. Use SaplingParamsSourceURL.default
value for this parameter.
This is mostly an internal change. A consequence of this change is that all the notifications
delivered via NotificationCenter
with the prefix blockProcessor
are now gone. If affected
notifications were used in your code use notifications with the prefix synchronizer
now.
These notifications are defined in SDKSynchronizer.swift
.
We remove these documents since they are outdated and we rely on the docs in the code itself.
This is mostly internal change. LightWalletService
is no longer public. If it
is used in your code replace it by using SDKSynchronizer
API.
This updates to GRPC-Swift 1.14.0.
Mainnet:
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1965000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1967500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1970000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1972500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1975000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1977500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1980000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1982500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1985000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1987500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1990000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1992500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1995000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1997500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/2000000.json
Testnet:
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2210000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2220000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2230000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2240000.json
File system based block cache. Compact blocks will now be stored
on the file system. Caller must provide a URL
pointing to the
filesystem root directory where the fsBlock cache is. this directory
is expected to contain a /blocks
sub-directory with the blocks stored
in the convened filename format {height}-{hash}-compactblock
. This directory
must be granted both read and write permissions.
the file system cache will have a "bookkeeping" database that the rust welding layer will use to know the state of the cache and locate the cached compact blocks. This directory can be deleted provided that the Compactblock processor or Synchronizer are not running. Upon deletion caller is responsible for initializing these objects for the cache to be created.
Implementation notes: Users of the SDK will know the path they will provide but must assume no behavior whatsoever or rely on the cached information in any way, since it is an internal state of the SDK. Maintainers might provide no support for problems related to speculative use of the file system cache. If you consider your application needs any other information than the one available through public APIs, please file the corresponding feature request.
Synchronizer.shieldFunds(spendingKey:memo:shieldingThreshold)
shieldingThreshold was added allowing wallets to manage their own shielding policies.
InitializerError.cacheDbMigrationFailed
CacheDb references that were deprecated instead of deleted are pointing out that they should be useful for you to migrate from using cacheDb.
-
ResourceProvider.cacheDbURL
deprecated but left for one release cycle for clients to move away from cacheDb. -
NetworkConstants.defaultCacheDbName
deprecated but left for one release cycle for clients to move away from cacheDb.
Closes https://github.com/zcash/ZcashLightClientKit/issues/443
Closes https://github.com/zcash/ZcashLightClientKit/issues/754
This implements getRecipients()
function which retrieves the possible
recipients from a sent transaction. These can either be addresses or
internal accounts depending on the transaction being a shielding tx
or a regular outgoing transaction.
Other changes:
- Fix version of zcash-light-client-ffi to 0.1.1
- Enhance error reporting on a test make Mock comply with protocol
It wouldn't have been possible to release an SDK without you, pal.
We are moving away from Cocoapods since our main dependencies, SwiftGRPC and SWIFT-NIO are. We don't have much of a choice.
We've been communicating this for a long time. Although, if you really need Cocoapods, please let us know by opening an issue in our repo and we'll talk about it.
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1937500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1940000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1942500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1945000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1947500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1950000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1952500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1955000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1957500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1960000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1962500.json
Testnet
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2180000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2190000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2200000.json
This fixes an issue where the default reorg was 20 blocks rewind instead of 10. The reorg count was incremented before calling the rewind height computing function.
These data types are gone: Transaction
, TransactionEntity
, ConfirmedTransaction
,
ConfirmedTransactionEntity
. And these data types were added: ZcashTransaction.Overview
,
ZcashTransaction.Received
, ZcashTransaction.Sent
.
New data structures are very similar to the old ones. Although there many breaking changes.
The APIs of the SDKSynchronizer
remain unchanged in their behavior. They return different
data types. When adopting this change, you should check which data types are used by methods
of the SDKSynchronizer
in your code and change them accordingly.
New transaction structures no longer have a memo
property. This responds to the fact that
Zcash transactions can have either none or multiple memos. To get memos for the transaction
the SDKSynchronizer
has now new methods to fetch those:
func getMemos(for transaction: ZcashTransaction.Overview) throws -> [Memo]
,func getMemos(for receivedTransaction: ZcashTransaction.Received) throws -> [Memo]
func getMemos(for sentTransaction: ZcashTransaction.Sent) throws -> [Memo]
The CompactBlockProcessor is no longer a public class/API. Any direct access will
end up as a compiler error. Recommended way how to handle things is via SDKSynchronizer
from now on. The Demo app has been updated accordingly as well.
In previous versions, the SDK first downloaded all the blocks and then it scanned all the blocks. This approach requires a lot of disk space. The SDK now behaves differently. It downloads a batch of blocks (100 by default), scans those, and removes those blocks from the disk. And repeats this until all the blocks are processed.
SyncStatus
was changed. .downloading
, .validating
, and .scanning
symbols
were removed. And the .scanning
symbol was added. The removed phases of the sync
process are now reported as one phase.
Notifications were also changed similarly. These notifications were
removed: SDKSynchronizerDownloading
, SDKSyncronizerValidating
, and SDKSyncronizerScanning
.
And the SDKSynchronizerSyncing
notification was added. The added notification replaces
the removed notifications.
This change presents 2 building blocks for the future automated tests, consisting of a new SDKMetrics interface to control flow of the data in the SDK and new performance (unit) test measuring synchronization of 100 mainnet blocks.
Updated checkpoints to the ones present in 0.18.0-beta
Update checkpoints
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1912500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1915000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1917500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1920000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1922500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1925000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1927500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1930000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1932500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1935000.json
Tesnet
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2150000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2160000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2170000.json
updates libzcashlc
to 0.1.1
to fix an error where getting a
transparent balance on an empty database would fail.
This change adds an internal storage test on UserDefaults that tells the SDK where sync was left off when cancelled whatever the reason for it to restart on a later attempt. This fixes some issues around syncing long block ranges in several attempts not enhancing the right transactions because the enhancing phase would only consider the last range scanned. This only fixes the situation where rewinding the SDK would cause the whole database to be cleared instead and syncing to be restarted from scratch (issue [#660]).
- commit
3b7202c
FixtestShieldFunds()
dataset loading issue. (#659)
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1897500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1900000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1902500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1905000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1907500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1910000.json
Testnet
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2140000.json
New Checkpoint for testShieldFunds()
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1631000.json
- [#660] Fix the situation when any rewind causes full rescan
- [#651] Change the rewind behavior. Now if the rewind is used while the sync process is in progress then an exception is thrown.
- [#616] Download Stream generates too many updates on the main thread WARNING: Notifications from SDK are no longer delivered on main thread.
- [#585] Fix RewindRescanTests (#656)
- Cleanup warnings (#655)
- [#637] Make sapling parameter download part of processing blocks (#650)
- [#631] Verify SHA1 correctness of Sapling files after downloading (#643)
- Add benchmarking info to SyncBlocksViewController (#649)
- [#639] Provide an API to estimate TextMemo length limit correctly (#640)
- [#597] Bump up SQLite Swift to 0.14.1 (#638)
- [#488] Delete cache db when sync ends
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1882500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1885000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1887500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1890000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1892500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1895000.json
Testnet
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2120000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2130000.json
- [#321] Validate UA
- [#384] Adopt Type Safe Memos in the FFI and SDK
- [#355] Update lib.rs to lastest librustzcash master
- [#373] Demo App shows ZEC balances in scientific notation
- [#380] One of the initAccountsTable() is dead code (except for tests)
- [#374] XCTest don't load Resources from the module's bundle
- [#375] User can't go twice in a row to SendFundsViewController
- [#490] Rebase long dated PRs on top of the feature branches
- [#510] Change references of Shielded address to Sapling Address
- [#511] Derivation functions should only return a single resul
- [#512] Remove derivation of t-address from pubkey
- [#520] Use UA Test Vector for Recipient Test
- [#544] Change Demo App to use USK and new rolling addresses
- [#602] Improve error logging for InitializerError and RustWeldingError
- [#579] Fix database lock
- [#595] Update Travis to use Xcode 14
- [#592] Fix various tests and deleted some that are not useful anymore
- [#523] Make a CompactBlockProcessor an Actor
- [#593] Fix testSmallDownloadAsync test
- [#577] Fix: reduce batch size when reaching increased load part of the chain
- [#575] make Memo and MemoBytes parameters nullable so they can be omitted when sending to transparent receivers.
- commit
1979e41
Fix pre populated Db to have transactions from darksidewalletd seed - commit
a483537
Ensure that the persisted test database has had migrations applied. - commit
1273d30
Clarify & make regular how migrations are applied. - commit
78856c6
Fix: successive launches of the application fail because the closed range of the migrations to apply would be invalid (lower range > that upper range) - commit
7847a71
Fix incorrect encoding of optional strings in PendingTransaction. - commit
789cf01
Add Fee field to Transaction, ConfirmedTransaction, ReceivedTransactions and Pen dingTransactions. Update Notes DAOs with new fields - commit
849083f
Fix UInt32 conversions to SQL in PendingTransactionDao - commit
fae15ce
Fix sent_notes.to_address column reference. - commit
23f1f5d
Merge pull request #562 from zcash/fix_UnifiedTypecodesTests - commit
30a9c06
Replacedb.run
withdb.execute
to fix migration issues - commit
0fbf90d
Add migration to re-create pending_transactions table with nullable columns. - commit
36932a2
Use PendingTransactionEntity.internalAccount for shielding. - commit
f5d7aa0
Modify PendingTransactionEntity to be able to represent internal shielding tx. - [#561] Fix unified typecodes tests
- [#530] Implement ability to extract available typecodes from UA
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1872500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1875000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1877500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1880000.json
Testnet
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2110000.json
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1852500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1855000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1857500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1860000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1862500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1865000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1867500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1870000.json
Testnet
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2020000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2030000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2040000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2050000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2060000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2070000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2080000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2090000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2100000.json
- update to libzcashlc 0.1.0-beta.3. This fixes an issue spending change notes
- update to libzcashlc 0.1.0-beta.2
- [#602] Improve error logging for InitializerError and RustWeldingError
- [#579] Fix database lock
- [#592] Fix various tests and deleted some that are not useful anymore
- [#581] getTransparentBalanceForAccount error not handled
See MIGRATING.md
- [#597] SDK does not build with SQLite 0.14
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1832500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1835000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1837500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1840000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1842500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1845000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1847500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1850000.json
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1812500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1815000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1817500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1820000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1822500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1825000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1827500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1830000.json
-
[#532] [0.16.x-beta] Download does not stop correctly
Issue Reported:
When the synchronizer is stopped, the processor does not cancel the download correctly. Then when attempting to resume sync, the synchronizer is not on
.stopped
and can't be resumedthis doesn't appear to happen in
master
branch that uses structured concurrency for operations.Fix:
This commit makes sure that the download streamer checks cancelation before processing any block, or getting called back to report progress
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1807500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1810000.json
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1787500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1790000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1792500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1795000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1797500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1800000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1802500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1805000.json
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1775000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1777500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1780000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1782500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1785000.json
Testnet
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2000000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/2010000.json
- [#455] revert queue priority downgrade changes from [#435] (#456)
This reverts queue priority changes from commit
a5d0e447748257d2af5c9101391dd05a5ce929a2
since we detected it might prevent downloads to be scheduled in a timely fashion
Mainnet
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1757500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1760000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1762500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1765000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1767500.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1770000.json
Sources/ZcashLightClientKit/Resources/checkpoints/mainnet/1772500.json
Testnet
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/1980000.json
Sources/ZcashLightClientKit/Resources/checkpoints/testnet/1990000.json
- There's a problem with 0.16.5-beta hash. Re-releasing
-
[#449] Use CompactBlock Streamer download instead of batch downloads (#451) This increases the speed of downloads significantly while reducing the memory footprint.
-
[#435] thread sanitizer issues (#448) Issues related to Thread Sanitizer warnings
-
Adds new Checkpoint for 1755000 on mainnet
- [#444] Syncing Restarts to zero when the wallet is wiped and synced from zero in one go. (#445)
- [#440] Split constants for Download Batches and Scanning Batches (#441)
This change was done to aleviate memory load when downloading large blocks.
Default download batch constant is deprecated in favor of
DefaultDownloadBatch
andDefaultScanningBatch
- [#436] Add checkpoint with a lower interval on mainnet (#437) This adds checkpoint at a 2500 block interval to help reduce scan times on new wallets
-
[#418] "Swift.EncodingError.InvalidValue Encoding an Int64 is not supported" (#430) This fixes Cocoapods clients pointing to SQLite 0.12.2 instead of using 0.13 the former does not support custom encoding of Int64 and makes Zatoshi break
-
[#428] make some helpers publicly accessible (#429)
-
[#422] Make Zatoshi extensions of
NSDecimalNumber
public (#423) -
[#419] Fix Unavailable Transport 14 when attempting to sync (#426) this changes timeout settings and Keepalive changes. Recommended settings for lightwalletd.com are 60000ms singleCallTimeout on
LightWalletEndpoint
-
[#416] Update GRPC to 1.8.2 (#421)
This version changes the way wallet birthdays are handled. WalletBirthday
struct is not longer public and has been renamed to Checkpoint
.
SynchronizerError
has a default LocalizedError
compliance to
help debug errors and display them to the user. This is a workaround
to get rid of cryptic errors that are being reported to maintainers and
are subject to change in future versions.
- [#392] Synchronizer error 8. when syncing. (#413)
- [#398] Make WalletBirthday an internal type (#414)
- [#411] add Fresh checkpoints for release 0.16.0-beta (#412)
- [#406] some BirthdayTests fail for MacOS target (#410)
- [#404] Configure GRPC KeepAlive according to docs (#409)
- [#432] create 0.15.1-beta with SQLite 0.13 this build is a hotfix for cocoapods. which has the wront SQLite dependency It moves it from 0.12.2 to 0.13
** IMPORTANT ** This version no longer supports iOS 12 We've made a decision to make iOS 13 the minimum deployment target in order to adopt and support Structured Concurrency and other important features of the Swift language like Combine.
-
[#363] bump iOS minimum deployment target to iOS 13.0 (#407)
-
[#381] Move Zatoshi and Amount Types to the SDK (#396) This deprecates many methods on
SDKSynchronizer
using Zatoshi for amounts instead ofInt64
. This exposes number formatters that conveniently provide decimal conversion fromZatoshi
to "human-readable" ZEC decimal numbers. -
[#397] Checkpoint format that supports NU5 TreeStates (#399)
WalletBirthday
now have bothsaplingTree
andorchardTree
values. The latter being Optional for checkpoints prior to Orchard activation height. -
[#401] DecodingError when refreshing pending transactions (#402)
-
[#394] Update swift-grpc to 1.8.0 (#395)
- [#388] Integrate libzcashlc 0.0.3 to support v5 transaction parsing on NU5 activation
-
[#326] Load Checkpoint files from bundle. This is great news! now checkpoints are loaded from files on the bundle instead of hardcoding them on source files. This will make updates easier, less error prone, and mostly automatable.
-
PR #356 Adds a caveat to SPM / Xcode integration in Readme
-
[#367] Darksidewalletd for testing
shield_funds
-
[#351] Write a Commit message Section for CONTRIBUTING.md
- [Enhancement] Fix: make BlockProgress
.nullProgress
static property public for ECC Reference Wallet CombineSynchonizer
- [Enhancement] PR #338. Rust-less build. Check for new documentation on how to benefit from this huge change
- [Enhancement] Swift Package Manager Support!
- [Enhancement] Fresh checkpoints
- FIX fixes to Apple Silicon M1 builds
- Fix: add parameter to ensure 10 confs when shielding.
- [Fix] Issue #293 MaxAttemptsReached error surfaces when it's actually dismissable and the wallet is working fine
- [Enhancement] Add test to verify that a checksum invalid t-address fails to validate.
- [Enhancement] Network Agnostic build
- Fix: UNIQUE Constraint bug when coming from background. fixed and logged warning to keep investigating
- [New] latestScannedHeight added to SDKSynchronizer
- CompactBlockProcessor states don't propagate correctly
- target height reporting enhancements
- improve status publishing for SDKSynchronizer
- [FIX] missingStartHeight error when scanning from sapling activation
- Make sapling parameters default url public
- add output files to build phase to avoid CI failures
- fix lint warnings
- Tests
- [Fix] Issue #289 main thread lock when validating the server
- [Fix] info single call times out all the time
- make sure operations cancel in a timely manner
- FigureNextBatchOperation.swift tests
- make range function static
- getInfo service times out too soon
- FIX: processor stalls on reconnection
- Fix warnings
- Replace Status for SyncStatus
- fix tests
- Fix Demo App
- fetch operation does not cancel when the previous operations do
- Fix: operations start when they have been canceled already
- fix progress being > 1
- Synchronizing by phases, preview
- Add fetch UTXO operation to compact block processor
- CompactBlock batch download and stream download operation tests pass.
- [FIX] Fix build for Apple Silicon (M1) #285 by @ealymbaev
- [Enhancement] Rewind API has a
.quick
option
- [New] Shield Funds Feature
- [New] Get Transparent Balance for account
- [New] Z -> T Restore: transactions to transparent addresses are now restored when the user restores from seed or re-scans the wallet
- [New] [Preview] Unified Viewing Key Structure
- [New] Abstractions over Transparent Address and ShieldedAddress
- [FIX]
CompactBlockProcessor
validates LightdInfo from Lightwalletd - [Enhancement] Add BlockTime to SDKSynchronizer updates
- [New] Db Migration for UVKs
- [FIX] Rewind API breaks on quick re-scan
- [Update] 37f2232: Update to gRPC-Swift 1.0.0
- Adds Mainnet and Testnet Checkpoints
- Adds Mainnet Checkpoints
- [critical] Fix #255 #261 outgoing no-change transactions not reported as mined
- [NEW] Rewind API. Allow Wallet developers to rewind synchronizer and (eventually) rescan
- [NEW] Rust Welding 0.0.6 - using rust crates 0.5 and Data Access API
- [NEW] updated Logger API to use StaticString on line and function as many logging libraries do
- [FIX] Mac OS BIG SUR build fixed
- New: added viewing key derivation to Derivation Tool
- Issue #252 - blockheight progress is latest height instead of upperbound of last scanned range
- added new checkpoints for mainnet
- Fix: memo string handling
- Fix: issue #240 reorg not catched because of ARC dealloc
- implement ZIP-313 reducing fees to 1000 zatoshi
- [IMPORTANT] Issue #237 Untie SDKSynchronizer from UIApplication Events
- Fix #236 fix CI problem
- Issue #176 operation gets cancelled when backgrounding
- Issue #136 on https://github.com/zcash/zcash-ios-wallet
- Issue #123 on https://github.com/zcash/zcash-ios-wallet
- PR from @ant013: Forcibly change the state to stopped when the handle cancels any task in OperationQueue
- Checkpoint for Mainnet
- Issue 208 - Improve API method to request transaction history
- Added Found transaction notification to SDK Synchronizer
- Add darksidewalletd tests for foundTransactions notifications
- [CRITICAL] Fix sqlite crate canopy issue. Add a new checkpoint to aid testing
- FIX - UNIQUE constraint violation when an operation failed
- #22 Sapling parameter downloader
- #201 Throw exception when seed can't be provided
- #204 Add DerivationTool to Initializer
- #205 Add IVK initialization capabilities to Initializer
- #206 [community request @esengulov] add extension function to identify inbound v. outbound txs on a client side
- #207 [community request @esengulov] Add extension function for timestamps on transactions
- FIX: transaction details listing duplicate transactions on certain transactions with several outputs and inputs
- added checkpoints
- updated to gRPC-Swift 1.0.0-alpha19
- readme warning on issues with rustc 1.46.0
- improvement on build system to help switch network environment faster
- added new checkpoints for testnet and mainnet
- Updated librustzcash to support Canopy on testnet
- Error handling improvements (breaks API)
- Fixes #158 #132 #134 #135 #133
- update Librustzcash to point to master repo!
- enhance pending transaction handling (#160)
- Added memo demo!
- automation!
- remove MnemonicKit dependency from tests
- Enable heartwood. (#138)
- Update LICENSE
- Switch to MnemonicSwift (#142)
- Issue 136 Null bytes in strings effectively truncate the string from … (#140)
- Fixes issue 136 - expiry height -1 on pending transactions (#139)
- Advanced Re Org tests + Balance tests (#137)
- CI doc mods (#116)
- Update issue templates
- Replace the threat model with the one on readthedocs (#131)
- Add bug report and feature request issue templates
- remove commit lock from podfile
- Canonical empty memo test (#112)
- Memo tests (#111)
- Decrypt transactions. Full wallet restore (#110)
- Updated GRPC dependency to Swift GRPC NIO. this change does not break any public interfaces
- reorg testing (#104)
- Docs - Fix typos and cleanup (#103)
- ZcashRustBackend.decryptAndStoreTransaction()
- Enhance logging on compact block processor
- parameterize helper method with constant
- Reverted -> update librustzcash to commit 52d8b436300724bc4b83aa4a0c659ab34c3dbce7
- testing: fix test crash
- fix: updated sample code where interface changed
- ENHANCEMENT: Retry support + error management
- FIX: processor crashes when lightwalletd has not caught up with latest height
- Better error handing when scanning fails
- [IMPORTANT] update librustzcash to commit 52d8b436300724bc4b83aa4a0c659ab34c3dbce7
- improved docs Move read.me up a directory
- NEW: Integrate logging capabilities
- FIX: account initialization error
- ENHANCEMENT: Mainnet checkpoints (#88)
IMPORTANT: this version contains a critical fix, upgrade to it as soon as possible
- [CRITICAL] Fixed a hardcoded COIN_TYPE on lib.rs
- added mainnet checkpoints
Warning: These changes might break interfaces in your project.
- upgraded to note-spending-v7
- fixed memory leak and blockrange error
- fixed memory cycles and leaks
- Fixed capture blocks retaining references
- fixed bug where compact block processor wouldn't reschedule
- add address validation functionality to Initializer
- Fixes to initializer, added v7 methods, documented API. Fixed compact block processor not initializing correctly upon new wallets.
- use "zip32 compliant" seed on demo app
Changes to createToAddress function to fix issues with paths that have spaces
Synchronizer:
change from computed variables to functions to allow throwing errors to clients