All Projects → Andr3wHur5t → Breadcrumb

Andr3wHur5t / Breadcrumb

Licence: MIT license
Minimalistic Bitcoin toolkit for iOS.

Programming Languages

objective c
16641 projects - #2 most used programming language
c
50402 projects - #5 most used programming language
shell
77523 projects
C++
36643 projects - #6 most used programming language
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Breadcrumb

desktop
CoinApp is a simple to use minimal Cryptocurrency Wallet for Ethereum, ERC20 Tokens, Bitcoin and Litecoin built for Windows, Mac and Linux.
Stars: ✭ 60 (+160.87%)
Mutual labels:  wallet, bitcoin-wallet
ergvein
Multiplatform BTC wallet with client side filters
Stars: ✭ 35 (+52.17%)
Mutual labels:  wallet, bitcoin-wallet
Crypto-Wallet
Open source SHA-512 loginless bitcoin wallet
Stars: ✭ 24 (+4.35%)
Mutual labels:  wallet, bitcoin-wallet
Arcbit Ios
arcbit - iOS bitcoin wallet http://arcbit.io
Stars: ✭ 142 (+517.39%)
Mutual labels:  wallet, bitcoin-wallet
Blixt Wallet
Bitcoin Lightning Wallet with focus on usability and user experience
Stars: ✭ 40 (+73.91%)
Mutual labels:  wallet, bitcoin-wallet
Coinbin
Javascript Bitcoin Wallet. Supports Multisig, Stealth, HD, SegWit, Bech32, Time Locked Addresses, RBF and more!
Stars: ✭ 694 (+2917.39%)
Mutual labels:  wallet, bitcoin-wallet
moonshine
Moonshine is a homebrewed, open-source, non-custodial, Bitcoin wallet for iOS & Android.
Stars: ✭ 56 (+143.48%)
Mutual labels:  wallet, bitcoin-wallet
Arcbit Android
arcbit - Android bitcoin wallet http://arcbit.io
Stars: ✭ 34 (+47.83%)
Mutual labels:  wallet, bitcoin-wallet
Walletwasabi
Open-source, non-custodial, privacy focused Bitcoin wallet for Windows, Linux, and Mac. Built-in Tor, CoinJoin, and coin control features.
Stars: ✭ 1,197 (+5104.35%)
Mutual labels:  wallet, bitcoin-wallet
arcbit-web
arcbit - web wallet http://arcbit.io
Stars: ✭ 31 (+34.78%)
Mutual labels:  wallet, bitcoin-wallet
unity3d-blockchain-wallet
Create wallets and perform transactions on custom ERC20 tokens via Unity3D
Stars: ✭ 33 (+43.48%)
Mutual labels:  wallet
trading-post
💸 Verto's decentralised exchange mediator
Stars: ✭ 18 (-21.74%)
Mutual labels:  wallet
Nault
⚡ The most advanced Nano wallet with focus on security, speed and robustness
Stars: ✭ 228 (+891.3%)
Mutual labels:  wallet
cryptoplease-dart
Dart and Flutter apps and libraries maintained by Espresso Cash (Formerly Crypto Please) team for Solana.
Stars: ✭ 188 (+717.39%)
Mutual labels:  wallet
hexa
Hexa Wallet. A simple bitcoin wallet made to be used with Friends and Family. Lightning. Gifts and more.
Stars: ✭ 85 (+269.57%)
Mutual labels:  wallet
paper-store
Cold store small files on paper as QR codes -- PGP keys, Bitcoin keys, Tox keys or any other small files in general.
Stars: ✭ 28 (+21.74%)
Mutual labels:  bitcoin-wallet
SimpleCoin
A simple cryptocurrency application for educational purposes only.
Stars: ✭ 13 (-43.48%)
Mutual labels:  wallet
bitcoin-transactions
Javascript implementation of the Bitcoin protocol for any Bitcoin based coins, on server and inside browsers, discover and move/manage your coins by yourself: Bitcoin transactions made simple for standard or multisig wallets, segwit and bech32 are supported, create and send by your own your Bitcoin, Bitcoin Cash, Zcash, Litecoin, DOGE, Dash, etc…
Stars: ✭ 97 (+321.74%)
Mutual labels:  wallet
metapay-chrome
A Chrome extension wallet for Stellar that simplifies payment.
Stars: ✭ 21 (-8.7%)
Mutual labels:  wallet
arweave-python-client
This client allows you to integrate your python apps with the Arweave network allowing you to perform wallet operations and transactions
Stars: ✭ 87 (+278.26%)
Mutual labels:  wallet

Breadcrumb

Build Status CocoaPods

Breadcrumb takes away the complexity that you normally encounter when working with other Bitcoin, or Blockchain libraries.

With minimalistic interfaces you can quickly get started working with Bitcoin, and the Blockchain.

Explore the capabilities of the block chain by publishing, and building custom transactions, and scripts.

Making a wallet is so easy you can start sending, and receiving Bitcoin in less than 15 lines of code.

How to get started

Include Breadcrumb.framework, and CommonCrypto.framework into your Xcode project.

Add #import <Breadcrumb/Breadcrumb.h> to one of your applications' source files.

Make a wallet, and start sending Bitcoin.

  NSData *password = [@"password" dataUsingEncoding:NSUTF8StringEncoding];
  BCWallet *wallet = [[BCWallet alloc] initNewWithPassword:password];

  [wallet mnemonicPhraseWithPassword:password
                       usingCallback:^(NSString *mnemonic) { 
  	NSLog(@"Brainwallet Phrase: %@",mnemonic);
  }];
  
  BCAddress *address = [@"3J98t1WpEZ73CNmQviecrnyiWrnqRhWNLy" toBitcoinAddress];
  NSNumber *amount = @20000; // Satoshi
  [wallet send:amount to:address usingPassword:password withCallback:
  ^(NSError *error) { 
       if ( [error isKindOfClass:[NSError class]] )
       		NSLog(@"Transaction Failed: '%@'",error.localizedDescription); 
  }];
                  

License

Breadcrumb is under MIT license, and uses source from Breadwallet (also under MIT)

The MIT License (MIT)

Copyright (c) 2015 Andrew Hurst

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].