cryptoseed 1.0.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/src/index.js ADDED
@@ -0,0 +1,27 @@
1
+ /**
2
+ * CryptoSeedRecovery - Main Library Entrypoint
3
+ * Exposes programmatic APIs for integration in other NPM packages and applications.
4
+ */
5
+
6
+ const wordlists = require('./lib/wordlists');
7
+ const electrumLegacy = require('./lib/electrum-legacy');
8
+ const typo = require('./lib/typo');
9
+ const addressDeriver = require('./lib/address-deriver');
10
+ const searchEngine = require('./lib/search-engine');
11
+
12
+ module.exports = {
13
+ // Wordlists
14
+ wordlists,
15
+
16
+ // Legacy Electrum v1poetic decoders
17
+ electrumLegacy,
18
+
19
+ // Spelling typo assistance
20
+ typo,
21
+
22
+ // Address derivation (EVM, Bitcoin, Solana, Tron, Stellar, etc.)
23
+ addressDeriver,
24
+
25
+ // Seed recovery search engines
26
+ searchEngine
27
+ };