-
Notifications
You must be signed in to change notification settings - Fork 447
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #104 from bitcoinjs/typescript
v3 (typescript included)
- Loading branch information
Showing
37 changed files
with
17,250 additions
and
1,678 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"singleQuote": true, | ||
"trailingComma": "all" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# 3.0.0 | ||
__added__ | ||
- Added TypeScript support (#104) | ||
- Added support for excluding wordlists from packages (#105) | ||
|
||
__changed__ | ||
- Changed `mnemonicToSeed` to use async, sync version moved to `mnemonicToSeedSync` (#104) | ||
|
||
__removed__ | ||
- Removed explicit hex methods (use `toString('hex')` on the Buffer) (#104) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Check the CONTRIBUTING doc on bitcoinjs-lib for info | ||
|
||
[Contributing to BitcoinJS](https://github.com/bitcoinjs/bitcoinjs-lib/blob/master/CONTRIBUTING.md) | ||
|
||
# TypeScript | ||
|
||
* `npm install` | ||
* Modify TypeScript in ts_src folder | ||
* Run `npm run format` | ||
* Run `npm run lint` and make any necessary changes to remove errors | ||
* Run `npm test` and make sure the tests pass | ||
* Run `git diff` and make sure the diff in the JS files in the src folder match the changes you made to the TS files |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.