Esenbek Kydyr uulu
Esenbek Kydyr uulu
Hey @cuhte3 , For RegTest you better use [this](https://github.com/horizontalsystems/bitcoin-kit-ios/blob/master/BitcoinKit/Classes/Network/RegTest.swift) class. You don't have to implement `ISyncTransactionApi` and make a checkpoint file because `syncableFromApi ` parameter of RegTest class is `false`....
> `guard let initialSyncApi = initialSyncApi else { throw BuildError.noInitialSyncApi }` Seems like a bug, this network type was not used for a long time. Let's mark this ticket a...
We use checkpoint files generated by our android tool [here](https://github.com/horizontalsystems/bitcoin-kit-android/blob/master/tools/src/main/java/io/horizontalsystems/tools/BuildCheckpoints.kt#L80). But you don't have to have checkpoints file. You can use [full](https://github.com/horizontalsystems/bitcoin-kit-ios/blob/master/BitcoinCore/Classes/Core/BitcoinCore.swift#L341) sync mode which doesn't require any checkpoints
@cuhte3, You have wrong `Block` initialization. [Here](https://github.com/horizontalsystems/bitcoin-kit-android/blob/10d9d2c633d56bd16dba91d0b1a978a7d12ca22e/bitcoincashkit/src/test/kotlin/io/horizontalsystems/Fixtures.kt#L16) is are examples of initializing a `Block` instance from raw hex values.
Discussed with the team and decided to solve this by adding 2 new features: - Cancel the transaction - Accelerate transaction Both will create another transaction using the same inputs,...
This issue must be solved in NFT feature context
Hi @srikanthsrnvs, Unfortunately, it's not possible in this kit. Because this kit is designed to manage all kinds of transactions including ones with non-standard scripts like HTLC locked transactions available...
UX design needed first, considering: - Off-chain orders list. Management of orders (replace, cancel(off-chain), invalidate(on-chain)) - Reflection of pending order amounts on the balance. Ability(or disability) to spend balance which...
Hey @LF4ce , Addresses for inputs (from addresses) are parsed from the public keys or their hashes in those inputs. In your case, inputs are spending SegWit outputs, so they...
Hey @AndroDevcd , Not all the inputs and outputs may be filled with address field. Sometimes it's impossible. For example, if the input being sent is not in our storage,...