Skip to content

Commit bf631f9

Browse files
committed
Merge branch 'master' of https://github.com/bitpay/bitcore into rm-lodash-imports
2 parents 6444963 + 56468c3 commit bf631f9

File tree

160 files changed

+84974
-69115
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

160 files changed

+84974
-69115
lines changed
Lines changed: 84 additions & 86 deletions
Original file line numberDiff line numberDiff line change
@@ -1,86 +1,84 @@
1-
# Submitting Issues
2-
## Bug Reports
3-
4-
A bug is a _demonstrable problem_ that is caused by the code in the repository.
5-
Good bug reports are extremely helpful - thank you!
6-
7-
Guidelines for bug reports:
8-
9-
1. **Use the GitHub issue search** — Check if the issue has already been
10-
reported. If it already exists, consider leaving a comment with any extra clarifying
11-
details about your situation that might help us narrow in on the nature of the problem.
12-
13-
2. **Check if the issue has already been fixed** — In the event that you don't
14-
have the latest, try to reproduce it using the latest changes in the `master` branch.
15-
16-
3. **Submit a clear and detailed issue** — Please try to be as detailed as possible
17-
in your report. Please include the following:
18-
- Your environment, OS and/or browsers facing the issue
19-
- Steps to reproduce the issue
20-
- Specific errors thrown, stack trace etc.
21-
- The behaviour you expect vs what it's doing
22-
23-
24-
## Feature Requests
25-
26-
Feature requests are welcome. But take a moment to find out whether your idea
27-
fits with the scope and aims of the project. It's up to *you* to make a strong
28-
case to convince the project's developers of the merits of this feature. Please
29-
provide as much detail and context as possible.
30-
31-
32-
# Contributing Code
33-
34-
Good pull requests - patches, improvements, new features - are a fantastic
35-
help. They should remain focused in scope and avoid containing unrelated
36-
commits.
37-
38-
Please adhere to the coding conventions used throughout this monorepo (indentation,
39-
accurate comments, etc.) and any other requirements (such as test coverage).
40-
41-
Follow this process:
42-
43-
1. [Fork](http://help.github.com/fork-a-repo/) the project, clone your fork,
44-
and configure the remotes:
45-
46-
```bash
47-
# Clone your fork of the repo into the current directory
48-
git clone https://github.com/<your-username>/bitcore
49-
# Navigate to the newly cloned directory
50-
cd bitcore
51-
# Assign the original repo to a remote called "upstream"
52-
git remote add upstream https://github.com/bitpay/bitcore
53-
```
54-
55-
2. If you cloned a while ago, get the latest changes from upstream:
56-
57-
```bash
58-
git checkout master
59-
git pull upstream master
60-
```
61-
62-
3. Create a new feature branch (off the `master` branch) to
63-
contain your feature, change, or fix:
64-
65-
```bash
66-
git checkout -b <feature-branch-name>
67-
```
68-
69-
4. Write code and commit your changes in logical chunks.
70-
71-
5. Locally merge (or rebase) the upstream `master` branch into your feature branch:
72-
73-
```bash
74-
git pull [--rebase] upstream master
75-
```
76-
77-
6. Push your feature branch up to your fork:
78-
79-
```bash
80-
git push origin <feature-branch-name>
81-
```
82-
83-
7. [Open a Merge Request](https://help.github.com/articles/using-pull-requests/)
84-
with a clear title and description from your fork to the base repository (bitpay/bitcore - master).
85-
86-
1+
# Submitting Issues
2+
## Bug Reports
3+
4+
A bug is a _demonstrable problem_ that is caused by the code in the repository.
5+
Good bug reports are extremely helpful - thank you!
6+
7+
Guidelines for bug reports:
8+
9+
1. **Use the GitHub issue search** &mdash; Check if the issue has already been
10+
reported. If it already exists, consider leaving a comment with any extra clarifying
11+
details about your situation that might help us narrow in on the nature of the problem.
12+
13+
2. **Check if the issue has already been fixed** &mdash; In the event that you don't
14+
have the latest, try to reproduce it using the latest changes in the `master` branch.
15+
16+
3. **Submit a clear and detailed issue** &mdash; Please try to be as detailed as possible
17+
in your report. Please include the following:
18+
- Your environment, OS and/or browsers facing the issue
19+
- Steps to reproduce the issue
20+
- Specific errors thrown, stack trace etc.
21+
- The behaviour you expect vs what it's doing
22+
23+
24+
## Feature Requests
25+
26+
Feature requests are welcome. But take a moment to find out whether your idea
27+
fits with the scope and aims of the project. It's up to *you* to make a strong
28+
case to convince the project's developers of the merits of this feature. Please
29+
provide as much detail and context as possible.
30+
31+
32+
# Contributing Code
33+
34+
Good pull requests - patches, improvements, new features - are a fantastic
35+
help. They should remain focused in scope and avoid containing unrelated
36+
commits.
37+
38+
Please adhere to the coding conventions used throughout this monorepo (indentation,
39+
accurate comments, etc.) and any other requirements (such as test coverage).
40+
41+
Follow this process:
42+
43+
1. [Fork](http://help.github.com/fork-a-repo/) the project, clone your fork,
44+
and configure the remotes:
45+
46+
```bash
47+
# Clone your fork of the repo into the current directory
48+
git clone https://github.com/<your-username>/bitcore
49+
# Navigate to the newly cloned directory
50+
cd bitcore
51+
# Assign the original repo to a remote called "upstream"
52+
git remote add upstream https://github.com/bitpay/bitcore
53+
```
54+
55+
2. If you cloned a while ago, get the latest changes from upstream:
56+
57+
```bash
58+
git checkout master
59+
git pull upstream master
60+
```
61+
62+
3. Create a new feature branch (off the `master` branch) to
63+
contain your feature, change, or fix:
64+
65+
```bash
66+
git checkout -b <feature-branch-name>
67+
```
68+
69+
4. Write code and commit your changes in logical chunks.
70+
71+
5. Locally merge (or rebase) the upstream `master` branch into your feature branch:
72+
73+
```bash
74+
git pull [--rebase] upstream master
75+
```
76+
77+
6. Push your feature branch up to your fork:
78+
79+
```bash
80+
git push origin <feature-branch-name>
81+
```
82+
83+
7. [Open a Merge Request](https://help.github.com/articles/using-pull-requests/)
84+
with a clear title and description from your fork to the base repository (bitpay/bitcore - master).

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
## Applications
1515

1616
- [Bitcore Node](packages/bitcore-node) - A standardized API to interact with multiple blockchain networks
17-
- [Bitcore Wallet](packages/bitcore-wallet) - A command-line based wallet client
17+
- [Bitcore Wallet](packages/bitcore-wallet) - **DEPRECATED** A command-line based wallet client
1818
- [Bitcore Wallet Client](packages/bitcore-wallet-client) - A client for the wallet service
1919
- [Bitcore Wallet Service](packages/bitcore-wallet-service) - A multisig HD service for wallets
20-
- [Bitpay Wallet](https://github.com/bitpay/wallet) - An easy-to-use, multiplatform, multisignature, secure bitcoin wallet
20+
- [Bitpay Wallet](https://github.com/bitpay/bitpay-app) - An easy-to-use, multiplatform, multisignature, secure wallet for bitcoin, ethereum, and more
2121
- [Insight](packages/insight) - A blockchain explorer web user interface
2222

2323
## Libraries
@@ -35,7 +35,12 @@
3535
## Extras
3636

3737
- [Bitcore Build](packages/bitcore-build) - A helper to add tasks to gulp
38-
- [Bitcore Client](packages/bitcore-client) - A helper to create a wallet using the bitcore-v8 infrastructure
38+
- [Bitcore Client](packages/bitcore-client) - A helper to create a wallet using the bitcore-node infrastructure
39+
40+
41+
## Versioning
42+
43+
This repo follows the even-odd versioning convention. Major versions that are even (e.g. v8.x.x) are `stable` releases, odd are `beta` releases (e.g. v9.x.x). Beta versions may contain breaking changes or major feature additions that are still in testing.
3944

4045
## Contributing
4146

@@ -45,6 +50,6 @@ See [CONTRIBUTING.md](https://github.com/bitpay/bitcore/blob/master/Contributing
4550

4651
Code released under [the MIT license](https://github.com/bitpay/bitcore/blob/master/LICENSE).
4752

48-
Copyright 2013-2023 BitPay, Inc. Bitcore is a trademark maintained by BitPay, Inc.
53+
Copyright 2013-2025 BitPay, Inc. Bitcore is a trademark maintained by BitPay, Inc.
4954

5055
[^1]: The Bitcore P2P Doge library is no longer maintained as all the core functionality is contained in Bitcore P2P

lerna.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
22
"lerna": "2.9.1",
3-
"version": "10.8.10",
4-
"packages": [
5-
"packages/[^insight]*"
6-
]
3+
"version": "10.10.6",
4+
"packages": ["packages/[^insight]*"]
75
}

0 commit comments

Comments
 (0)