Commit Graph

43 Commits

Author SHA1 Message Date
Ryan X. Charles 82ce08b893 version 0.1.35 2014-08-13 12:58:24 -04:00
Yemel Jardi b361bfe1d0 Skip BIP39 tests on Travis 2014-08-12 11:21:59 -03:00
Yemel Jardi ea22f1361f Add validation of required arguments for future use 2014-08-11 17:57:28 -03:00
Yemel Jardi ac525f226c Add BIP21 implementation 2014-08-11 17:57:28 -03:00
Manuel Araoz 895046cc32 fix browser tests 2014-08-04 15:52:57 -03:00
Manuel Araoz e44b2480aa add AuthMessage and fix browser tests 2014-08-04 15:52:56 -03:00
Christopher Jeffrey 6415f29fb9 paypro: misc example changes. 2014-08-01 16:11:41 -07:00
Ryan X. Charles 01c48ff8cd v0.1.34 2014-07-25 14:18:39 -07:00
Ryan X. Charles 078d85ea19 v0.1.33 2014-07-24 17:16:27 -07:00
Manuel Araoz b0c39f2ef5 remove only from test 2014-07-24 18:01:14 -03:00
Manuel Araoz b222550dd0 add Transaction#getReceivingAddresses and send 2014-07-24 18:01:14 -03:00
Manuel Araoz 002b4acc7f update bundle 2014-07-24 17:45:11 -03:00
Manuel Araoz f8d7d1da9d add Transaction#getReceivingAddresses and send 2014-07-24 17:44:56 -03:00
Matias Alejo Garcia 15c55e560a support uncompressed pub keys also 2014-07-23 19:49:42 -03:00
Matias Alejo Garcia 733835dc7c removes unused / obsolete class "Sign.js" 2014-07-23 18:11:27 -03:00
Ryan X. Charles b1722484a9 v0.1.32 2014-07-18 12:18:49 -07:00
Ryan X. Charles 3bed2e0da2 v0.1.31 2014-07-17 16:53:05 -07:00
Ryan X. Charles b8b500e109 up version to 0.1.30 2014-07-16 17:07:54 -07:00
Ryan X. Charles 2db98e1982 0.1.29: make bundle backwards-compatible with 0.1.25
npm doesn't play well with the symlink bitcore-latest.js. Instead, put the
latest main bundle in bundle.js (which is what it used to be called) so
packages like Copay can use the latest bundle just like how they used to.
2014-07-16 14:57:04 -07:00
Manuel Araoz fcde4e84ad add new bundles and symbolic link 2014-07-04 15:15:35 -03:00
Ryan X. Charles 0bea06f785 add BIP70 protobuf features in new PayPro lib file
...and add to the "main" bundle, but not the "all" bundle, since it adds
hundreds of kilobytes to the bundle.
2014-07-02 11:39:21 -07:00
Ryan X. Charles ad5e83f9ff Merge branch 'bip39'
Conflicts:
	browser/bundle.js
2014-06-20 19:35:24 -07:00
Ryan X. Charles 4a59418c82 add concept of "main" bundle and remove BIP39
Some features of bitcore will be too large to be included in the browser bundle
by default. Since BIP39 pretty much requires the giant list of words to be
used, I am excluding it by default. The ability to exclude some features by
default will become useful with some particularly large features to come,
particularly BIP70.
2014-06-20 19:31:01 -07:00
Ryan X. Charles 54c8e04738 remove unbuilding c code, and ...
* Remove c code that didn't compile on my machine
* Replace with sjcl code
* Minor modifications to mnemonic interface more bitcoreish
2014-06-20 19:09:21 -07:00
Ryan X. Charles 83aada8648 Merge pull request #379 from ryanxcharles/feature/address-throw-error
throw error when using invalid length hash in Address constructor
2014-06-13 08:17:18 -07:00
Ryan X. Charles c94d278958 up version to 0.1.24 2014-06-12 15:09:09 -07:00
Manuel Araoz 0d670ff979 suggestions by ryan 2014-06-12 16:54:59 -03:00
Manuel Araoz b402bbfa6c fixing copay problems 2014-06-12 16:28:00 -03:00
Manuel Araoz 5c11ac3e87 malloc -> calloc, to fix linux version 2014-06-12 13:56:29 -03:00
Manuel Araoz d313ed037e trying to fix 2014-06-12 12:29:51 -03:00
Manuel Araoz a2b8bb0f51 even weirder fix 2014-06-12 12:29:51 -03:00
Ryan X. Charles c2e5a14eed throw error when using invalid length hash in Address
I have often made the error of using a public key rather than the hash of the
public key when creating an address, leading to invalid addresses. I'm sure I'm
not the only one. This commit follows the principle of "fail early, fail often"
and simply throws an error if you try to insert something other than 20 bytes
long when creating an address, which would be the case when using a public key.
This way that common mistake should be reduced.
2014-06-11 18:13:39 -07:00
Ryan X. Charles 338158ca46 fix sjcl issue on npm install
...by including sjcl locally
2014-06-06 11:49:58 -07:00
Ryan X. Charles c488268a3c update version to 0.1.22 2014-06-06 08:37:42 -07:00
Ryan X. Charles 80ccaa8396 rename "rand" to more explanatory "getRandomSeed" 2014-06-05 16:41:47 -07:00
Ryan X. Charles 117eaa4288 remove underscore dependency to decrease bundle size 2014-06-04 18:43:00 -07:00
Ryan X. Charles a242112e66 replace jssha with sjcl - remove jssha dependency 2014-06-04 18:13:32 -07:00
Ryan X. Charles af9fdff3a9 use SJCL AES to get ECIES working in the browser 2014-06-03 19:03:50 -07:00
Ryan X. Charles e963ff3c45 add ECIES support in node - not browser 2014-06-02 20:15:58 -07:00
Matias Alejo Garcia 691fec5342 fix .fromScriptPubKey parsing in some strange Txs 2014-05-25 22:25:12 -03:00
Ryan X. Charles 5594f82398 up version to 0.1.21
...to make sure compiled bundle is absolutely the latest.
2014-05-23 18:12:09 -07:00
Ryan X. Charles 1361bd2939 fix npm install issue and up version
Bitcore in Copay is not being installed correctly due to changes we made
recently in the way bitcore is compiled (it is not compiled on install, but on
prepublish). This adds all the bundles to the repo to fix that issue.
2014-05-23 16:25:39 -07:00
Matias Alejo Garcia 4bd96e72f4 . 2014-05-13 10:46:55 -03:00