Manuel Aráoz
69d66d073e
Merge pull request #323 from cimm/remove_unused_script_multisig_example
...
Script is not used in this example
2014-05-06 09:23:41 -03:00
Simon Schoeters
8c8e41bf29
Script is not used in this example
2014-05-06 12:06:15 +02:00
Ryan X. Charles
527c49a11d
remove unused chai dependency
2014-05-05 11:04:24 -04:00
Ryan X. Charles
b7d41ab246
Merge pull request #321 from ryanxcharles/feature/remove-eval
...
Remove eval
2014-05-05 11:00:49 -04:00
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.
2014-05-05 10:43:24 -04:00
Ryan X. Charles
0e04026d87
Merge pull request #314 from matiu/feature/docs02
...
Feature/docs02
2014-05-05 01:01:20 -04:00
Matias Alejo Garcia
536db27da3
add docs to Address class
2014-05-03 16:52:39 -03:00
Ryan X. Charles
566b74863a
Merge pull request #313 from JahPowerBit/master
...
[#312 ] remove test from ignore in bower.json
2014-05-02 16:05:48 -04:00
JahPowerBit
19e5aaecca
[ #312 ] remove test from ignore in bower.json
2014-05-02 16:26:26 +01: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
ad3446168a
Merge pull request #310 from ryanxcharles/feature/signature-sanity-tests
...
Signature and Private Key sanity tests
2014-05-01 17:32:14 -04:00
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.
2014-05-01 12:27:55 -04:00
Matias Alejo Garcia
f0155a5297
docs in Txbuilder
2014-05-01 11:53:52 -03:00
Ryan X. Charles
1f49286b2a
Merge pull request #309 from ryanxcharles/bug/signing
...
iterate array correctly so that random number is actually used in signing
2014-05-01 10:51:25 -04:00
Ryan X. Charles
b1f34d4015
iterate array correctly so that random number is actually used in signing
2014-05-01 10:09:33 -04:00
Ryan X. Charles
d413b5f43a
up version to 0.1.17
2014-04-29 18:50:15 -04:00
Ryan X. Charles
cf641d093e
Merge pull request #307 from matiu/feature/bower
...
add bower json
2014-04-29 18:37:18 -04:00
Matias Alejo Garcia
4bad5f6e71
add bower json
2014-04-29 19:33:12 -03:00
Manuel Aráoz
3b396fb360
Merge pull request #306 from ryanxcharles/bug/base58-bignum
...
fix bignum issue
2014-04-29 19:12:40 -03:00
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.
2014-04-29 17:59:24 -04:00
Ryan X. Charles
c7218ea2fc
Merge pull request #305 from maraoz/refactor/improve-BIP32
...
Refactor/improve bip32 and add test
2014-04-29 15:00:39 -04:00
Manuel Araoz
e9fa7e36ce
remove alert
2014-04-29 14:45:08 -03:00
Manuel Araoz
ac719345e8
add tests for BIP32
2014-04-29 14:37:37 -03:00
Ryan X. Charles
5d2ac520bd
Merge pull request #304 from maraoz/ignore/docs-folder
...
ignore doc folder
2014-04-29 11:44:06 -04:00
Ryan X. Charles
92271bceeb
Merge pull request #299 from maraoz/feature/address-forKey
...
add Address.forKey convenience method
2014-04-29 11:43:47 -04:00
Manuel Araoz
6cf690afcc
improve BIP32 error message
2014-04-29 12:43:29 -03:00
Manuel Araoz
d42f8065d4
ignore doc folder
2014-04-29 12:31:35 -03:00
Manuel Araoz
ce00b77de0
name change forKey -> fromKey
2014-04-29 11:49:42 -03:00
Manuel Araoz
a1a844c1e6
add Address.forKey convenience method and example vanity address generator
2014-04-29 11:49:42 -03:00
Ryan X. Charles
1959ce953c
Merge pull request #298 from ryanxcharles/feature/bignum
...
Move bignumber.js to internal
2014-04-29 10:47:55 -04:00
Ryan X. Charles
f3604fc470
Merge pull request #303 from matiu/feature/docco-docs1
...
docco documentation
2014-04-29 10:47:44 -04:00
Matias Alejo Garcia
ec2299362c
docco documentation
2014-04-29 11:33:20 -03:00
Ryan X. Charles
0c8a582522
Merge pull request #301 from matiu/bug/firefox
...
fix firefox test
2014-04-29 10:22:15 -04:00
Matias Alejo Garcia
00c639d350
fix firefox test
2014-04-29 10:29:38 -03:00
Ryan X. Charles
fff988da94
add deprecated bitcore.bignum and bitcore.base58
...
(the non-deprecated versions are bitcore.Bignum and bitcore.Base58)
2014-04-28 18:28:32 -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
Ryan X. Charles
177c1748d1
Merge pull request #294 from gordonwritescode/bug/extend
...
replace extend with underscore
2014-04-28 14:47:45 -04:00
Gordon Hall
602c94265b
add test for config extending properly
2014-04-28 12:33:34 -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
3b2bda0745
Merge pull request #292 from manan19/patch-1
...
Update README.md
2014-04-28 07:17:07 -04:00
Ryan X. Charles
40a367993c
Merge pull request #293 from aalness/master
...
RPC not required.
2014-04-27 18:14:06 -04:00
Andy Alness
ec6400a5c1
RPC not required.
2014-04-26 17:46:31 -07:00
Manan Patel
e5d23547c0
Update README.md
...
Updated link to RpcClient.js
2014-04-26 16:54:12 -07: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
0cdb8941d7
Merge tag 'v0.1.15'
...
Conflicts:
package.json
2014-04-25 15:16:41 -03:00
Ryan X. Charles
9af3501f04
up version to 0.1.15
2014-04-25 15:07:38 -03:00
Ryan X. Charles
c7b33eca9a
update key signing to use new SecureRandom
...
...and throw an error if you try to use the old, non-secure random number
generator.
2014-04-25 15:00:51 -03:00
Manuel Aráoz
66b8b6d0ba
Merge pull request #290 from blocktrail/getMultiSigInfo
...
added Script.getMultiSigInfo
2014-04-25 10:14:22 -03:00
Ruben de Vries
4860b8f3c7
updated naming for getMultiSigInfo
2014-04-25 15:02:19 +02:00
Ruben de Vries
e301a14657
added Script.getMultiSigInfo as easy helper to return information about a multisig script
2014-04-25 14:58:44 +02:00