GithubHelp home page GithubHelp logo

bitcoin-address-utility's Introduction

This project has two dependencies:

1. the BouncyCastle Crypto library.
2. ThoughtWorks QRCode DLL

Get BouncyCastle from http://www.bouncycastle.org/csharp/  (just the compiled assembly is fine).

bitcoin-address-utility's People

Contributors

casascius avatar enmaku avatar slothbag 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  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

bitcoin-address-utility's Issues

When compiling receive build error

Error 7 'BtcAddress.Forms.KeyCollectionView' does not contain a definition for 'menuStrip1_ItemClicked' and no extension method 'menuStrip1_ItemClicked' accepting a first argument of type 'BtcAddress.Forms.KeyCollectionView' could be found (are you missing a using directive or an assembly reference?) E:\Workspace\Bitcoin-Address-Utility\Forms\KeyCollectionView.Designer.cs 87 107 BtcAddress

Missing Bitcoin

I was wondering if you could please let me know what happened to my Bitcoin

how do i fix this error?

"C:\Users\User\Desktop\Bitcoin-Address-Utility-master\BtcAddress.csproj" (default target) (1) ->
(CoreCompile target) ->
C:\Users\User\Desktop\Bitcoin-Address-Utility-master\Forms\AddSingleAddress.cs(36,17): error CS1520: Method must have
a return type [C:\Users\User\Desktop\Bitcoin-Address-Utility-master\BtcAddress.csproj]
C:\Users\User\Desktop\Bitcoin-Address-Utility-master\Forms\AddSingleAddress.cs(69,17): error CS1520: Method must have
a return type [C:\Users\User\Desktop\Bitcoin-Address-Utility-master\BtcAddress.csproj]

Missing files

The following files are not checked in:
Base58
Base58CheckString
Bip38Base
Bip38Confirmation

You should probably remove your source control settings from the public source.. not much use to anyone else :)

Open in wallet

bitcoin:bc1q2h5kbitcoin:bc1q2h5k7ex2vaxnl9vl8ydfvwtkgam7melv8kk95c?amount=0.002070027ex2vaxnl9vl8ydfvwtkgam7melv8kk95c?amount=0.00207002

Can't compile - no ThoughtWorks QRCode DLL exist

I've found a ThoughtWorks.QRCode.dll but it still cannot find QRCodeEncoder. What prevents you to include correct dependencies so everyone can compile it without trying to figure what additional files (and what version of that file) you have to download to build this stuff. Thanks.

building on mono?

This looks like it's written to be build using the MS toolset. I tried to build this on Linux with "xbuild BtcAddress.csproj" and l and got the following. Any idea how to get this buildable on Linux?

Build FAILED.

Warnings:

/home/tom/co/Bitcoin-Address-Utility/BtcAddress.csproj (default targets) ->
/usr/lib/mono/3.5/Microsoft.Common.targets (ResolveAssemblyReferences target) ->

    /usr/lib/mono/3.5/Microsoft.Common.targets:  warning : Reference 'System.Deployment' not resolved

Errors:

/home/tom/co/Bitcoin-Address-Utility/BtcAddress.csproj (default targets) ->
/usr/lib/mono/3.5/Microsoft.CSharp.targets (CoreCompile target) ->

    Form1.cs(26,2): error CS1519: Unexpected symbol `<<' in class, struct, or interface member declaration
    Form1.cs(28,2): error CS1519: Unexpected symbol `==' in class, struct, or interface member declaration
    Form1.cs(32,20): error CS1519: Unexpected symbol `void' in class, struct, or interface member declaration

     1 Warning(s)
     3 Error(s)

Time Elapsed 00:00:00.5686540

Linux build broken

Errors:

/home/dave/proj/bitcoin/Bitcoin-Address-Utility/BtcAddress.csproj (default targets) ->
/usr/lib/mono/4.0/Microsoft.CSharp.targets (CoreCompile target) ->

    Forms/KeyCollectionView.Designer.cs(87,107): error CS1061: Type `BtcAddress.Forms.KeyCollectionView' does not contain a definition for `menuStrip1_ItemClicked' and no extension method `menuStrip1_ItemClicked' of type `BtcAddress.Forms.KeyCollectionView' could be found (are you missing a using directive or an assembly reference?)

     26 Warning(s)
     1 Error(s)

Time Elapsed 00:00:13.8577320

BytesToUInt32 error - not all code path return a value

public static uint BytesToUInt32(byte[] bytes, int offset)
{
if (bytes == null) throw new ArgumentNullException("bytes");
if ((bytes.Length <= offset + 0 || bytes.Length <= offset + 1 || bytes.Length <= offset + 2) &&
bytes.Length > offset + 3)
return
(uint) bytes[offset + 0] << 24 |
(uint) bytes[offset + 1] << 16 |
(uint) bytes[offset + 2] << 8 |
bytes[offset + 3];
}

BIP38 Confirmation Code Confusion

In section 5.2.2.1 of BIP38 it states that the confirmation code is a Base58Check-encoded concatenation of: "0x64 0x3B 0xF6 0xA8 0x9A + flagbyte + ownerentropy + addresshash + encryptedpointb"

But Model/Bip38KeyPair.cs (~ Line 388) seems to put them in a different order: 0x64 0x3B 0xF6 0xA8 0x9A + flagbyte + addresshash + ownerentropy + encryptedpointb"

Bip38

How to find bip38?
Could anyone please help me.

Software not provide exact private key

Hello there
Anyone have modified version of it because the software keep bringing 6PRP private key instead of it staring with 5
Please some one provide me updated modified version

Wrong private key issues

Anyone have modified version of it because the software keep bringing 6PRP private key instead of it staring with 5
Please some one provide me updated modified version for free
Please anybody give me updated or modified version that gives correct private key for free

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.