Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 1.53 KB

README.md

File metadata and controls

44 lines (34 loc) · 1.53 KB

BitcoinJ Wallet Sample

Sample application of using the BitcoinJ SDK (MVP architecture).

When you launch application first time it needs to download peer network, it may takes up to 15 minutes, but it happens only once, so be patiant and drink some tea or coffee meanwhile.

Functionality

Application works with official bitcoin test network (TestNet3) and contains next features:

  • Create wallet
  • Get balance
  • Receive transactions
  • Send transactions
  • Get free test bitcoins
  • Generating your wallet address QR code
  • Scan recipient wallet address QR code

Screenshots

Initializaqtion  Main screen  Get coins Scan QR

Service Information

SDK tutorial https://bitcoinj.github.io/getting-started-java

In build.gradle:

    dependencies {
        compile 'org.bitcoinj:bitcoinj-core:0.14.4'
        
        //Logging
        compile 'org.slf4j:slf4j-api:1.7.12'
        compile 'org.slf4j:slf4j-simple:1.7.12'
    }

Example uses next additinal libraries:

Developers