@btc-vision/wallet-sdk 2.0.0 → 2.0.2

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/README.md CHANGED
@@ -1,24 +1,79 @@
1
- # UniSat Wallet SDK
1
+ # OP_NET - Wallet SDK
2
2
 
3
- ## Getting started
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)
4
9
 
5
- This repo uses a yarn workspace. To get started, run:
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
6
30
 
7
31
  ```shell
8
- # install
9
- yarn install
32
+ npm i @btc-vision/wallet-sdk
33
+ ```
34
+
35
+ ### Documentation
10
36
 
11
- # build
12
- yarn build
37
+ Documentation is available at [docs.opnet.org](https://docs.opnet.org)
13
38
 
14
- # test
15
- yarn test
39
+ #### Development
40
+
41
+ 1. Clone the repository:
42
+
43
+ ```bash
44
+ git clone https://github.com/btc-vision/wallet-sdk.git
16
45
  ```
17
46
 
18
- ## Usage
47
+ 2. Navigate to the repository directory:
19
48
 
20
- ```shell
49
+ ```bash
50
+ cd wallet-sdk
51
+ ```
52
+
53
+ 3. Install the required dependencies:
54
+
55
+ ```bash
56
+ npm i
57
+ ```
21
58
 
22
- yarn add @unisat/wallet-sdk
59
+ 4. Build the project:
23
60
 
61
+ ```bash
62
+ npm run build
24
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.