@btc-vision/wallet-sdk 2.0.13 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,15 +1,15 @@
1
- ISC License
2
-
3
- Copyright (c) 2022 Unisat
4
-
5
- Permission to use, copy, modify, and/or distribute this software for any
6
- purpose with or without fee is hereby granted, provided that the above
7
- copyright notice and this permission notice appear in all copies.
8
-
9
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10
- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11
- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12
- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13
- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14
- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15
- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1
+ ISC License
2
+
3
+ Copyright (c) 2022 Unisat
4
+
5
+ Permission to use, copy, modify, and/or distribute this software for any
6
+ purpose with or without fee is hereby granted, provided that the above
7
+ copyright notice and this permission notice appear in all copies.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
package/README.md CHANGED
@@ -1,79 +1,79 @@
1
- # OP_NET - Wallet SDK
2
-
3
- ![Bitcoin](https://img.shields.io/badge/Bitcoin-000?style=for-the-badge&logo=bitcoin&logoColor=white)
4
- ![TypeScript](https://img.shields.io/badge/TypeScript-007ACC?style=for-the-badge&logo=typescript&logoColor=white)
5
- ![NodeJS](https://img.shields.io/badge/Node%20js-339933?style=for-the-badge&logo=nodedotjs&logoColor=white)
6
- ![NPM](https://img.shields.io/badge/npm-CB3837?style=for-the-badge&logo=npm&logoColor=white)
7
- ![Gulp](https://img.shields.io/badge/GULP-%23CF4647.svg?style=for-the-badge&logo=gulp&logoColor=white)
8
- ![ESLint](https://img.shields.io/badge/ESLint-4B3263?style=for-the-badge&logo=eslint&logoColor=white)
9
-
10
- [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
11
-
12
- ## Introduction
13
-
14
- The OP_NET Wallet SDK provides a complete, type-safe foundation for building Bitcoin wallet applications and browser
15
- extensions. Written in TypeScript from the ground up, this library delivers modern key management with BIP32
16
- hierarchical deterministic derivation, quantum-resistant signer support ready for BIP360, and seamless integration with
17
- the OP_NET ecosystem.
18
-
19
- Built by developers who understand how Bitcoin actually works. No outdated dependencies, no bitcore bloat, just clean
20
- architecture powered by @btc-vision/bitcoin and @btc-vision/transaction.
21
-
22
- ## Getting Started
23
-
24
- ### Prerequisites
25
-
26
- - Node.js version 22.x or higher
27
- - npm (Node Package Manager)
28
-
29
- ### Installation
30
-
31
- ```shell
32
- npm i @btc-vision/wallet-sdk
33
- ```
34
-
35
- ### Documentation
36
-
37
- Documentation is available at [docs.opnet.org](https://docs.opnet.org)
38
-
39
- #### Development
40
-
41
- 1. Clone the repository:
42
-
43
- ```bash
44
- git clone https://github.com/btc-vision/wallet-sdk.git
45
- ```
46
-
47
- 2. Navigate to the repository directory:
48
-
49
- ```bash
50
- cd wallet-sdk
51
- ```
52
-
53
- 3. Install the required dependencies:
54
-
55
- ```bash
56
- npm i
57
- ```
58
-
59
- 4. Build the project:
60
-
61
- ```bash
62
- npm run build
63
- ```
64
-
65
- 5. Run tests:
66
-
67
- ```bash
68
- npm test
69
- ```
70
-
71
- ## Contribution
72
-
73
- Contributions are welcome! Please read through the `CONTRIBUTING.md` file for guidelines on how to submit issues,
74
- feature requests, and pull requests. We appreciate your input and encourage you to help us improve OP_NET.
75
-
76
- ## License
77
-
78
- This project is open source and available under the [MIT License](LICENSE). If you have any suggestions or
79
- contributions, please feel free to submit a pull request.
1
+ # OP_NET - Wallet SDK
2
+
3
+ ![Bitcoin](https://img.shields.io/badge/Bitcoin-000?style=for-the-badge&logo=bitcoin&logoColor=white)
4
+ ![TypeScript](https://img.shields.io/badge/TypeScript-007ACC?style=for-the-badge&logo=typescript&logoColor=white)
5
+ ![NodeJS](https://img.shields.io/badge/Node%20js-339933?style=for-the-badge&logo=nodedotjs&logoColor=white)
6
+ ![NPM](https://img.shields.io/badge/npm-CB3837?style=for-the-badge&logo=npm&logoColor=white)
7
+ ![Gulp](https://img.shields.io/badge/GULP-%23CF4647.svg?style=for-the-badge&logo=gulp&logoColor=white)
8
+ ![ESLint](https://img.shields.io/badge/ESLint-4B3263?style=for-the-badge&logo=eslint&logoColor=white)
9
+
10
+ [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
11
+
12
+ ## Introduction
13
+
14
+ The OP_NET Wallet SDK provides a complete, type-safe foundation for building Bitcoin wallet applications and browser
15
+ extensions. Written in TypeScript from the ground up, this library delivers modern key management with BIP32
16
+ hierarchical deterministic derivation, quantum-resistant signer support ready for BIP360, and seamless integration with
17
+ the OP_NET ecosystem.
18
+
19
+ Built by developers who understand how Bitcoin actually works. No outdated dependencies, no bitcore bloat, just clean
20
+ architecture powered by @btc-vision/bitcoin and @btc-vision/transaction.
21
+
22
+ ## Getting Started
23
+
24
+ ### Prerequisites
25
+
26
+ - Node.js version 22.x or higher
27
+ - npm (Node Package Manager)
28
+
29
+ ### Installation
30
+
31
+ ```shell
32
+ npm i @btc-vision/wallet-sdk
33
+ ```
34
+
35
+ ### Documentation
36
+
37
+ Documentation is available at [docs.opnet.org](https://docs.opnet.org)
38
+
39
+ #### Development
40
+
41
+ 1. Clone the repository:
42
+
43
+ ```bash
44
+ git clone https://github.com/btc-vision/wallet-sdk.git
45
+ ```
46
+
47
+ 2. Navigate to the repository directory:
48
+
49
+ ```bash
50
+ cd wallet-sdk
51
+ ```
52
+
53
+ 3. Install the required dependencies:
54
+
55
+ ```bash
56
+ npm i
57
+ ```
58
+
59
+ 4. Build the project:
60
+
61
+ ```bash
62
+ npm run build
63
+ ```
64
+
65
+ 5. Run tests:
66
+
67
+ ```bash
68
+ npm test
69
+ ```
70
+
71
+ ## Contribution
72
+
73
+ Contributions are welcome! Please read through the `CONTRIBUTING.md` file for guidelines on how to submit issues,
74
+ feature requests, and pull requests. We appreciate your input and encourage you to help us improve OP_NET.
75
+
76
+ ## License
77
+
78
+ This project is open source and available under the [MIT License](LICENSE). If you have any suggestions or
79
+ contributions, please feel free to submit a pull request.