Giter Site home page Giter Site logo

horizontalsystems / bitcoin-kit-ios Goto Github PK

View Code? Open in Web Editor NEW
243.0 15.0 72.0 30.19 MB

Comprehensive Bitcoin development library for iOS, implemented on Swift. SPV wallet implementation for Bitcoin, Bitcoin Cash, Litecoin and Dash blockchains. Comprehensive Bitcoin development library for iOS, implemented on Swift. SPV wallet implementation for Bitcoin, Bitcoin Cash, Litecoin and Dash blockchains. Fully compliant with existing standards and BIPs.

Home Page: https://unstoppable.money

License: MIT License

Ruby 0.72% Swift 99.28%
bitcoin bitcoin-wallet swift spv bitcoin-cash ios btc hd-wallet blockchain-wallet p2p

bitcoin-kit-ios's People

Contributors

ant013 avatar ealymbaev avatar esen avatar esengulov avatar mnizhurin avatar rex4539 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

bitcoin-kit-ios's Issues

Some transactions from TestNet are marked as "invalid"

It happens because TransactionExtractor cannot extract any data from a transaction.
It is incorrect behavior, because we should handle all transaction, even if we were not able to extract any "pubic key" or "address" data from it.

PeerGroup Windowed Download

PeerGroup should download blocks by "windows". Window means that it should concurrently download blocks in a range and provide it to app.
Application on the other hand - should request to download blocks by serial windows.

Update WalletKitPrivate class with swift implementation available in BitcoinKit

Currently there are files Crypto/WalletKitPrivate.m and Crypto/WalletKitPrivate.h which are swift implementations of some cryptographic algorithms used in bitcoin. Sometimes we get exceptions in Crypto/WalletKitPrivate.m#43 saying that key variable is NULL.

There's a new swift implementation available in BitcoinKit. Let's try to use them.

Implement Fork Handler

Now HeaderHandler rejects all block headers that are not in its chain.
Instead it should check incoming block headers for the case of fork. If incoming headers are more "valid" than the chain on our database - it should replace it.

Refactor PeerGroup and Peer classes using PeerTask's

  • Create new PeerTask class for abstracting all app related tasks that are performed by Peers.
  • PeerGroup is responsible for creating new PeerTasks and distributing them among ready peers.
  • Also all peers should be assigned as "sync peer" one by one as they are ready.
  • PeerGroup should request header hashes and unsynced block hashes from its delegate in order to be able to create tasks.

Encapsulate all internal models and logic for WalletKit library

  • RealmResults should not be public for transactions and unspent outputs. Simple TransactionInfo structure should be public.
  • balance should be fetched simply through Int value.
  • all changes should be observed via delegate protocol (realm observers and rx subject should not be used)
  • only WalletKit should be public and have public methods.

Update WalletKitPrivate class with swift implementation available in BitcoinKit

Currently there are files Crypto/WalletKitPrivate.m and Crypto/WalletKitPrivate.h which are swift implementations of some cryptographic algorithms used in bitcoin. Sometimes we get exceptions in Crypto/WalletKitPrivate.m#43 saying that key variable is NULL.

There's a new swift implementation available in BitcoinKit. Let's try to use them.

Peer Discovery is stuck if any dns is not responding

When discovering new peers for several dns seeds - if any seed will not respond or respond slowly - all peer discovery process is stuck.
Dns seeds should report their discovery results independently from each other.

Implement resending transactions on app restart.

Transactions are now can be sent only in "real-time". This means that in order for them to be sent successfully we should have started PeerGroup and connected Peers.
We should handle resending transactions when PeerGroup is ready and on app restart as well.

Block Validator is slow

BlockValidator's performance is quite bad. It should be revised and refactored to work faster.

Rethink usage of all DispatchQueue QOS params

Now all sync and handler jobs use DispatchQueues with qos = .background.
This is not quite correct because some tasks require more priority to make syncing of blockchain faster.
Every DispatchQueue in the app should be reviewed and correct qos should be selected.

BloomFilter optimization

Currently, our peers don't send transactions sending our P2PK outputs. Because, there's nothing matching our PKH/PK in their inputs. For this, FilterLoad message has a nFlag attribute. We should set it to 2 in order for peers to automatically update bloom filter with COutPoints of matched P2PK outputs.

This and this(#94 ) tickets gradually pollute the bloom filter. That's why we should track the false positives ratio and clear/reset bloom filter when that ratio raises

Clear database after full sync

After downloading and parsing all transactions - we can remove all transactions that are not related to our wallet. (they were downloaded by bloom filter false positive rate).
After removing transactions we can also remove all blocks that have no transactions, except the blocks that are required for blockchain validation (2016 last blocks usually).

ProgressSyncer should report current sync session progress

Now ProgressSyncer reports progress calculated for all blocks in database (synced/non synced).
For the first sync session it shows correct progress, but for later sync sessions it shows incorrect progress.
We should get the last synced block in database and fetch the last block height from sync peer and calculate progress according to this data.

Process transactions in order

Current transaction parsing logic is developed for parsing them in random order.
After #83 - all blocks (and their transactions) are downloaded in order. So transaction parsing logic can be simplified according top this changes.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.