Matias Alejo Garcia
5437d5e5e2
rm bundle from gitignore
11 years ago
Ryan X. Charles
566f5384db
Merge pull request #340 from ryanxcharles/feature/hierarchical-key
Rename BIP32 -> HierarchicalKey, deprecate BIP32
11 years ago
Ryan X. Charles
c038abc8e7
rename BIP32 -> HierarchicalKey, deprecate BIP32
Sounds better.
11 years ago
Ryan X. Charles
e06ee71cb5
Merge pull request #336 from ralphtheninja/master
build browser/bundle.js in prepublish step
11 years ago
Matias Alejo Garcia
67c4f900d2
Merge pull request #339 from rapodaca/master
Minor TransactionBuilder doc fixes
11 years ago
Rich Apodaca
8489b50c32
Fixed TransactionBuilder docs
11 years ago
Manuel Aráoz
27b60c9e3f
Merge pull request #338 from matiu/bug/snippet
fix snippet
11 years ago
Matias Alejo Garcia
bd91d17f57
fix snippet
11 years ago
lms
b2cd391bf0
build browser/bundle.js in prepublish step
11 years ago
Ryan X. Charles
982548f3e3
Merge pull request #320 from olalonde/armory
Armory style key derivation from (chain code, public key)
11 years ago
olalonde
0c6a0c61d3
Armory: removed unused buffertools dependency
11 years ago
olalonde
e06e556ca3
Eckey: renamed multiply to multiplyUncompressed for consistency
11 years ago
olalonde
7d33078736
Eckey: removed garbage comments
11 years ago
olalonde
59ee476b96
Armory: use native multiplication in node and javascript implementation in browser
11 years ago
olalonde
b5c1a7d387
Eckey: implemented point multiplication
11 years ago
olalonde
af942f9b06
Armory: added tests
11 years ago
olalonde
7800128b9b
Armory: from master public key
11 years ago
olalonde
708b59eb3e
Armory: fixed bug.. extra lines considered as real input
11 years ago
olalonde
b26dd77911
Armory: added to bitcore.js, build.js and browser example
11 years ago
olalonde
f647af50b7
Fixed browser exception caused by lib/Curve.js
11 years ago
olalonde
da71cdf62d
Armory: added descriptive log in examples/Armory.js
11 years ago
olalonde
fa211f98bb
Armory: cleaned up example
11 years ago
olalonde
468ebddc1e
Implemented Armory initializing from seed
11 years ago
olalonde
0e1948b8f3
Implemented Armory style key derivation from chain code and public key (WIP)
11 years ago
olalonde
e2655f553d
Added EC Point multiplication to browser/Point.js
11 years ago
Ryan X. Charles
5f064cddec
Merge pull request #330 from olalonde/fix/329
Use browser field in package.json instead of process.verions tests
11 years ago
olalonde
78ae388553
Replace process.versions tests by browserify's package.json browser field. Fixes #329
11 years ago
Ryan X. Charles
52f7185add
Merge pull request #328 from maraoz/add/contributing
add contributing.md
11 years ago
Manuel Araoz
ad8b7618e7
add contributing.mdwq
11 years ago
Manuel Aráoz
69d66d073e
Merge pull request #323 from cimm/remove_unused_script_multisig_example
Script is not used in this example
11 years ago
Simon Schoeters
8c8e41bf29
Script is not used in this example
11 years ago
Ryan X. Charles
527c49a11d
remove unused chai dependency
11 years ago
Ryan X. Charles
b7d41ab246
Merge pull request #321 from ryanxcharles/feature/remove-eval
Remove eval
11 years ago
Ryan X. Charles
d3a4cfa333
remove eval
eval is unsafe, and the way it was being used in Script and Script interpreter
was not a good enough reason. This commit removes both uses of eval, then
replaces all uses of OP_XXX with Opcode.map.OP_XXX since there's no reason for
those constants to be global.
11 years ago
Ryan X. Charles
0e04026d87
Merge pull request #314 from matiu/feature/docs02
Feature/docs02
11 years ago
Matias Alejo Garcia
536db27da3
add docs to Address class
11 years ago
Ryan X. Charles
566b74863a
Merge pull request #313 from JahPowerBit/master
[#312 ] remove test from ignore in bower.json
11 years ago
JahPowerBit
19e5aaecca
[ #312 ] remove test from ignore in bower.json
11 years ago
Ryan X. Charles
d190067fe6
up to version 0.1.18
Critical bug fix - generating k was insecure:
https://github.com/bitpay/bitcore/pull/309
11 years ago
Ryan X. Charles
ad3446168a
Merge pull request #310 from ryanxcharles/feature/signature-sanity-tests
Signature and Private Key sanity tests
11 years ago
Ryan X. Charles
46271de06e
add some basic sanity tests for signatures and key generation
Signing a message with ECDSA involves using a random number, and this means
that two signatures should never be the same. This commit adds some basic tests
to Key.signSync and Message.sign to make sure this is the case. Also, a new
bitcore.Key should never have the same private key twice. This commit also adds
a basic test to make sure that is the case.
11 years ago
Matias Alejo Garcia
f0155a5297
docs in Txbuilder
11 years ago
Ryan X. Charles
1f49286b2a
Merge pull request #309 from ryanxcharles/bug/signing
iterate array correctly so that random number is actually used in signing
11 years ago
Ryan X. Charles
b1f34d4015
iterate array correctly so that random number is actually used in signing
11 years ago
Ryan X. Charles
d413b5f43a
up version to 0.1.17
11 years ago
Ryan X. Charles
cf641d093e
Merge pull request #307 from matiu/feature/bower
add bower json
11 years ago
Matias Alejo Garcia
4bad5f6e71
add bower json
11 years ago
Manuel Aráoz
3b396fb360
Merge pull request #306 from ryanxcharles/bug/base58-bignum
fix bignum issue
11 years ago
Ryan X. Charles
405ea0bf6f
fix bignum issue
In the browser, sometimes the config for bignum wasn't being set up if (somehow
... still not sure how this is possible) you use bitcore without using
require('bitcore'). This would by pass the code that set the config for bignum.
Solution is to put the config for bignum in bignum itself (in the browser).
This fixes, in particular, an issue with base58 where it was depending on
bignum having the proper config.
Also I add the base58 tests to run in the browser which they weren't
previously.
And finally I add a small test for Bignum in the browser that makes sure the
config is set properly.
11 years ago
Ryan X. Charles
c7218ea2fc
Merge pull request #305 from maraoz/refactor/improve-BIP32
Refactor/improve bip32 and add test
11 years ago