coinkey icon indicating copy to clipboard operation
coinkey copied to clipboard

JavaScript component for private keys, public keys, and addresess for crypto currencies such as Bitcoin, Litecoin, and Dogecoin

Results 7 coinkey issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/24811345/38077787-b89de7b0-336c-11e8-9895-e68eddbc2b37.png) I follow adove, but it does'nt work. I test the publicAddress in the site: https://live.blockcypher.com/btc-testnet/, So I change like bellow, And this time the publicAddress is correct. ![image](https://user-images.githubusercontent.com/24811345/38078039-94e9e5c0-336d-11e8-80e3-085b9a9d2040.png)

Current code in Readme.md throws error. Updated code is correct. Pending github issue: https://github.com/cryptocoinjs/coinkey/issues/8

Hello I'm trying to create WIF's for multiple cryptocurrencies. I've created private key and public address to receive btc. But how can I generate a large amount of public addresses...

``` var CoinKey = require('coinkey') var privateKeyHex = "1184cd2cdd640ca42cfc3a091c51d549b2f016d454b2774019c2b2d2e08529fd" // Bitcoin Address var key = new CoinKey(new Buffer(**privatKeyHex**, 'hex')) console.log(key.publicAddress) // => 16UjcYNBG9GTK4uq2f7yYEbuifqCzoLMGS ``` "privatKeyHex" must be "privateKeyHex"

Implement a new method that returns a function that creates a CoinKey instance with specified versions. For example: ``` js CoinKey.createFactory = function(versions) { return function(privateKey) { return new CoinKey(privateKey,...

How do I verify a signature If I only have the signature, hash and public key (the public key is in string address format) one side of my application does...

I have the idea of using this project. Do you have types defined for Typescript? thanks