-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Send my bitcoin $to ulliactrevor267@gmail.com #1
Conversation
replace standard with prettier and apply format
Bump to 4.0.3
style: fix glob pattern for prettier
Use regtest-client
Add name attribute to Payments
[WIP] Add PSBT support
Bump to v5.1.0
Fix names (Quick fix)
build: npm audit fix
Check signatures for finalized inputs too
Move lowR to public writable attribute
Update CHANGELOG
Update regtest-client
diff --git a/.gitignore b/.gitignore index 0abc934bd..a6c0ab829 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ -bitcoin.js coverage node_modules +.nyc_output +npm-debug.log diff --git a/.npmignore b/.npmignore deleted file mode 100644 index 74e448642..000000000 --- a/.npmignore +++ /dev/null @@ -1,4 +0,0 @@ -.gitignore -.travis.yml -jshint.json -test/ diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 000000000..e69de29bb diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 000000000..a20502b7f --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,4 @@ +{ + "singleQuote": true, + "trailingComma": "all" +} diff --git a/.travis.yml b/.travis.yml index 26f05da87..bb87738bc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,27 @@ +sudo: false language: node_js +services: + - docker before_install: - - "npm install npm -g" + - if [ $TEST_SUITE = "integration" ]; then + docker pull junderw/bitcoinjs-regtest-server && + docker run -d -p 127.0.0.1:8080:8080 junderw/bitcoinjs-regtest-server && + docker ps -a; + fi node_js: - - "0.11" - - "0.10" + - "8" + - "lts/" +matrix: + include: + - node_js: "lts/" + env: TEST_SUITE=format:ci + - node_js: "lts/" + env: TEST_SUITE=gitdiff:ci + - node_js: "lts/" + env: TEST_SUITE=lint + - node_js: "lts/" + env: TEST_SUITE=coverage env: - - TEST_SUITE=coveralls - - TEST_SUITE=integration - - TEST_SUITE=standard - TEST_SUITE=unit -script: "npm run-script $TEST_SUITE" + - TEST_SUITE=integration APIURL=http://127.0.0.1:8080/1 +script: npm run-script $TEST_SUITE diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..cbb2deafd --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,289 @@ +# 5.1.2 +added +- |
Pull |
Asap