Commit Graph

124 Commits

Author SHA1 Message Date
Ryan X. Charles
0251d467c4 update bn.js to latest version
...and correspondingly get rid of Number->String conversion

See: https://github.com/indutny/bn.js/issues/17
2014-07-15 11:25:18 -07:00
Ryan X. Charles
98bf58463e remove cryptojs dependency from util
...use hash.js, which is already required by elliptic
2014-07-10 16:22:42 -07:00
Ryan X. Charles
15d4328b35 use elliptic in Point in the browser instead of cryptojs 2014-07-10 16:21:08 -07:00
Ryan X. Charles
c8fe404402 replace bignumber.js with bn.js 2014-07-10 16:20:13 -07:00
Manuel Araoz
98d2445a6e bump version 2014-07-10 17:19:04 -03:00
Manuel Araoz
cd7eae8359 remove soop inheritance system 2014-07-10 11:46:44 -03:00
Ryan X. Charles
c93419a750 up version to 0.1.26 2014-07-07 20:55:21 -07:00
Ryan X. Charles
91dd9fcb1e Merge remote-tracking branch 'yangit/examples'
Conflicts:
	package.json
2014-07-07 16:22:42 -07:00
Ryan X. Charles
41a687cd36 up version to 0.1.25 2014-07-07 09:51:21 -07: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
yangit
11b391820d Added gulp task to concat /examples/*.js into ./examples.md 2014-06-25 22:30:29 +08: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
yangit
a3d945f0f1 Removed duplicate dependency declaration. 2014-06-20 13:50:43 +08:00
Ryan X. Charles
c94d278958 up version to 0.1.24 2014-06-12 15:09:09 -07:00
Ryan X. Charles
6aef44e98a up version to 0.1.23 2014-06-06 11:52:44 -07:00
Ryan X. Charles
1e97ab8c6d move devDependencies to dependencies to fix install issue 2014-06-06 09:24:04 -07:00
Ryan X. Charles
c488268a3c update version to 0.1.22 2014-06-06 08:37:42 -07:00
Ryan X. Charles
2dac2b1f47 Merge pull request #362 from ryanxcharles/feature/ECIES
add ECIES support
2014-06-05 20:31:08 -07:00
Manuel Araoz
f2fc616cc9 add coveralls 2014-06-05 16:43:07 -03:00
Ryan X. Charles
410cd503c8 remove unused commander dependency 2014-06-04 18:57:15 -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
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
Ryan X. Charles
23f3d139dc v0.1.19 2014-05-13 13:30:46 -04:00
lms
b2cd391bf0 build browser/bundle.js in prepublish step 2014-05-08 11:30:11 +02:00
olalonde
78ae388553 Replace process.versions tests by browserify's package.json browser field. Fixes #329 2014-05-07 14:14:10 +08:00
Ryan X. Charles
d190067fe6 up to version 0.1.18
Critical bug fix - generating k was insecure:

https://github.com/bitpay/bitcore/pull/309
2014-05-02 08:52:32 -04:00
Ryan X. Charles
d413b5f43a up version to 0.1.17 2014-04-29 18:50:15 -04:00
Ryan X. Charles
7f348ca0bd Move BigNumber to internal
...no longer relies on Manuel's repo hostig a version of "bignum" that actually
contained bignumber.js. This moves bignumber.js internally and removes bignum
from the browser build process. Also adds a bitcore.Bignum that links to the
right thing. In node, browser.Bignum is require('bignum'). And in the browser,
bitcore.Bignum is is now Bignumber.js (same as before ... except bignumber.js
is now inside bitcore).
2014-04-28 18:00:59 -04:00
Gordon Hall
bf1b4bdcc7 replace extend with underscore and use it's version of extend from within PeerManager 2014-04-28 12:23:56 -04:00
Ryan X. Charles
33415983be up version to 0.1.16 ... to sync up npm and github 2014-04-25 15:18:31 -03:00
Ryan X. Charles
9af3501f04 up version to 0.1.15 2014-04-25 15:07:38 -03:00
Ryan X. Charles
0b7c52615f up version to 0.1.13
New things:
* Statistical tests for RNG
* New SecureRandom class that does the right thing on all platforms
* Peer discovery
* Signature sorting in TransactionBuilder
* BIP32 speed improvements
* Electrum-style public key derivation
* Refactor node/browser code
* Message signing/verification the bitcoin way
* Address.fromScriptPubKey
2014-04-24 11:51:23 -03:00
Manuel Araoz
aadc01e5a1 fix async dep 2014-04-22 12:26:57 -03:00
Ryan X. Charles
3267925ebf Merge remote-tracking branch 'gordonwritescode/feature/peer-discovery' 2014-04-20 19:50:34 -03:00
Ryan X. Charles
0235324bed update version to 0.1.12
Major updates since last version:
* SOCKS5 support
* Move classes to ./lib
* Message signing/verification
* Many minor updates
2014-04-20 10:25:01 -03:00
Gordon Hall
6e8589e9b3 add extend dependency, use to extend defaults with config in PeerManager instead of overwiting all 2014-04-19 10:44:55 -04:00
Ryan X. Charles
da7fede2c0 Merge remote-tracking branch 'gordonwritescode/feature/tor' 2014-04-17 14:47:58 -03:00
Manuel Araoz
5e636f6b9c add explicit node-gyp execution 2014-04-15 10:36:23 -03:00
Gordon Hall
7b9e2e7b49 remove duplicate dependency 2014-04-11 14:12:00 -04:00
Gordon Hall
3ba4352f7f merged in upstream changes, resolved conflict in package.json, add test for SOCKS5 Connection instantiation 2014-04-11 14:01:55 -04:00
Gordon Hall
e53a2341c3 updated connection tests 2014-04-11 13:56:37 -04:00
Ryan X. Charles
9e02860fd9 use "=" for dependencies to ensure exactly equal version
...so that things don't break when projects change.
2014-04-10 16:36:50 -03:00
Manuel Araoz
124a2ed8af dummy commit to test testling integration 2014-04-10 12:10:34 -03:00
Gordon Hall
529d26e052 add missing comma to package.json deps 2014-04-09 11:49:46 -04:00
Manuel Araoz
72a44154d4 fix testling config 2014-04-09 12:38:25 -03:00
Gordon Hall
7a0ac6c590 resolved merge 2014-04-09 10:49:07 -04:00