coinkey
coinkey copied to clipboard
JavaScript component for private keys, public keys, and addresess for crypto currencies such as Bitcoin, Litecoin, and Dogecoin
 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. 
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