minimal-xec-wallet 1.0.4 → 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 +2 -3
- package/dist/minimal-xec-wallet.min.js +12 -12
- package/examples/README.md +1 -1
- package/examples/analytics/README.md +279 -0
- package/examples/analytics/advanced-coin-selection-demo.js +472 -0
- package/examples/analytics/dust-attack-detection-demo.js +390 -0
- package/examples/analytics/health-monitoring-demo.js +346 -0
- package/examples/analytics/utxo-classification-demo.js +231 -0
- package/examples/analytics/wallet-optimization-demo.js +475 -0
- package/examples/key-management/derive-addresses.js +12 -6
- package/index.js +985 -0
- package/lib/consolidate-utxos.js +6 -3
- package/lib/utxo-analytics/UtxoClassifier.js +554 -0
- package/lib/utxo-analytics/UtxoHealthMonitor.js +730 -0
- package/lib/utxos.js +539 -62
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -215,15 +215,14 @@ npm run docs
|
|
|
215
215
|
## 🔗 Resources
|
|
216
216
|
|
|
217
217
|
### eCash Ecosystem
|
|
218
|
-
- **[eCash
|
|
218
|
+
- **[eCash](https://e.cash)** - Official eCash website
|
|
219
219
|
- **[CashTab Wallet](https://cashtab.com)** - Reference web wallet
|
|
220
220
|
- **[Block Explorer](https://explorer.e.cash)** - Transaction lookup
|
|
221
221
|
|
|
222
222
|
### Development
|
|
223
223
|
- **[Chronik Indexer](https://chronik.e.cash/)** - Blockchain API
|
|
224
224
|
- **[ecash-lib Documentation](https://www.npmjs.com/package/ecash-lib)** - Core library
|
|
225
|
-
- **[SLP
|
|
226
|
-
- **[ALP Specification](https://github.com/Bitcoin-ABC/bitcoin-abc/blob/master/doc/standards/empp.md)** - ALP token standard
|
|
225
|
+
- **[SLP and ALP tokens](https://github.com/Bitcoin-ABC/bitcoin-abc/tree/master/cashtab/src/token-protocols)** - CashTab token protocols
|
|
227
226
|
|
|
228
227
|
## 📄 License
|
|
229
228
|
|