@smartledger/bsv 3.3.4 → 3.4.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.
Files changed (43) hide show
  1. package/CHANGELOG.md +30 -21
  2. package/README.md +169 -40
  3. package/anchor-entry.js +1 -0
  4. package/bin/cli.js +349 -0
  5. package/bsv-covenant.min.js +5 -5
  6. package/bsv-gdaf.min.js +6 -6
  7. package/bsv-ltp.min.js +6 -6
  8. package/bsv-smartcontract.min.js +9 -9
  9. package/bsv.bundle.js +5 -5
  10. package/bsv.min.js +8 -8
  11. package/build/webpack.anchor.config.js +21 -0
  12. package/build/webpack.didweb.config.js +21 -0
  13. package/build/webpack.statuslist.config.js +22 -0
  14. package/build/webpack.vcjwt.config.js +21 -0
  15. package/demos/README.md +1 -1
  16. package/demos/browser-test.html +1208 -0
  17. package/demos/smart_contract_demo.html +1 -1
  18. package/demos/smart_contract_demo.js +1 -1
  19. package/demos/web3keys.html +3 -3
  20. package/didweb-entry.js +1 -0
  21. package/docs/DOCUMENTATION_REVIEW_REPORT.md +11 -11
  22. package/docs/FIX_CREATEHMAC_ISSUE.md +1 -1
  23. package/docs/MODULE_REFERENCE_COMPLETE.md +28 -28
  24. package/docs/SMARTLEDGER_BSV_USAGE_ANSWERS.md +4 -4
  25. package/docs/SMARTLEDGER_BSV_USAGE_EXAMPLES.js +2 -2
  26. package/docs/SMARTLEDGER_BSV_USAGE_GUIDE.md +3 -3
  27. package/docs/SMART_CONTRACT_DEVELOPMENT_GUIDE.md +1 -1
  28. package/docs/advanced/UTXO_MANAGER_GUIDE.md +2 -2
  29. package/docs/getting-started/INSTALLATION.md +25 -25
  30. package/docs/getting-started/QUICK_START.md +7 -7
  31. package/docs/migration/FROM_BSV_1_5_6.md +5 -5
  32. package/docs/technical/roadmap.md +3 -3
  33. package/index.js +35 -0
  34. package/lib/anchor/index.js +102 -0
  35. package/lib/browser-utxo-manager-es5.js +316 -0
  36. package/lib/browser-utxo-manager.js +533 -0
  37. package/lib/didweb/index.js +177 -0
  38. package/lib/statuslist/index.js +164 -0
  39. package/lib/vcjwt/index.js +189 -0
  40. package/package.json +13 -5
  41. package/statuslist-entry.js +1 -0
  42. package/tests/browser-compatibility/test-cdn-vs-local.html +2 -2
  43. package/vcjwt-entry.js +1 -0
@@ -0,0 +1,21 @@
1
+ var path = require('path')
2
+
3
+ module.exports = {
4
+ target: 'web',
5
+ mode: 'production',
6
+ entry: './anchor-entry.js',
7
+ output: {
8
+ path: path.resolve(__dirname, '..'),
9
+ filename: 'bsv-anchor.min.js',
10
+ library: 'bsvAnchor',
11
+ libraryTarget: 'umd'
12
+ },
13
+ node: {
14
+ crypto: true,
15
+ stream: true,
16
+ buffer: true
17
+ },
18
+ node: {
19
+ Buffer: true
20
+ }
21
+ }
@@ -0,0 +1,21 @@
1
+ var path = require('path')
2
+
3
+ module.exports = {
4
+ target: 'web',
5
+ mode: 'production',
6
+ entry: './didweb-entry.js',
7
+ output: {
8
+ path: path.resolve(__dirname, '..'),
9
+ filename: 'bsv-didweb.min.js',
10
+ library: 'bsvDidWeb',
11
+ libraryTarget: 'umd'
12
+ },
13
+ node: {
14
+ crypto: true,
15
+ stream: true,
16
+ buffer: true
17
+ },
18
+ node: {
19
+ Buffer: true
20
+ }
21
+ }
@@ -0,0 +1,22 @@
1
+ var path = require('path')
2
+
3
+ module.exports = {
4
+ target: 'web',
5
+ mode: 'production',
6
+ entry: './statuslist-entry.js',
7
+ output: {
8
+ path: path.resolve(__dirname, '..'),
9
+ filename: 'bsv-statuslist.min.js',
10
+ library: 'bsvStatusList',
11
+ libraryTarget: 'umd'
12
+ },
13
+ node: {
14
+ crypto: true,
15
+ stream: true,
16
+ buffer: true,
17
+ zlib: true
18
+ },
19
+ node: {
20
+ Buffer: true
21
+ }
22
+ }
@@ -0,0 +1,21 @@
1
+ var path = require('path')
2
+
3
+ module.exports = {
4
+ target: 'web',
5
+ mode: 'production',
6
+ entry: './vcjwt-entry.js',
7
+ output: {
8
+ path: path.resolve(__dirname, '..'),
9
+ filename: 'bsv-vcjwt.min.js',
10
+ library: 'bsvVcJwt',
11
+ libraryTarget: 'umd'
12
+ },
13
+ node: {
14
+ crypto: true,
15
+ stream: true,
16
+ buffer: true
17
+ },
18
+ node: {
19
+ Buffer: true
20
+ }
21
+ }
package/demos/README.md CHANGED
@@ -182,7 +182,7 @@ Both demos showcase the complete SmartLedger-BSV functionality:
182
182
  ---
183
183
 
184
184
  **Created by:** SmartLedger-BSV Development Team
185
- **Version:** v3.3.3
185
+ **Version:** v3.3.4
186
186
  **Last Updated:** October 30, 2025
187
187
 
188
188
  *Both demos provide identical functionality - choose the interface that works best for your workflow!* 🎉