@bsv/sdk 1.0.14 → 1.0.15

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,6 +1,6 @@
1
1
  # BSV SDK
2
2
 
3
- BSV BLOCKCHAIN | Standard Development Kit for JavaScript and TypeScript
3
+ BSV BLOCKCHAIN | Software Development Kit for JavaScript and TypeScript
4
4
 
5
5
  Welcome to the BSV Blockchain Libraries Project, the comprehensive TypeScript SDK designed to provide an updated and unified layer for developing scalable applications on the BSV Blockchain. This SDK addresses the limitations of previous tools by offering a fresh, peer-to-peer approach, adhering to SPV, and ensuring privacy and scalability.
6
6
 
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@bsv/sdk",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "type": "commonjs",
5
- "description": "BSV Blockchain Standard Development Kit",
5
+ "description": "BSV Blockchain Software Development Kit",
6
6
  "files": [
7
7
  "dist",
8
8
  "src",
package/mod.ts ADDED
@@ -0,0 +1,8 @@
1
+ export * from "./src/primitives/index.js"
2
+ export * from "./src/script/index.js"
3
+ export * from "./src/script/templates/index.js"
4
+ export * from "./src/transaction/index.js"
5
+ export * from "./src/transaction/fee-models/index.js"
6
+ export * from "./src/transaction/broadcasters/index.js"
7
+ export * from "./src/messages/index.js"
8
+ export * from "./src/compat/index.js"
package/package.json CHANGED
@@ -1,15 +1,17 @@
1
1
  {
2
2
  "name": "@bsv/sdk",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "type": "module",
5
- "description": "BSV Blockchain Standard Development Kit",
5
+ "description": "BSV Blockchain Software Development Kit",
6
6
  "main": "dist/cjs/mod.js",
7
7
  "module": "dist/esm/mod.js",
8
8
  "types": "dist/types/mod.d.ts",
9
9
  "files": [
10
10
  "dist",
11
11
  "src",
12
- "docs"
12
+ "docs",
13
+ "mod.ts",
14
+ "LICENSE.txt"
13
15
  ],
14
16
  "exports": {
15
17
  ".": {