@asichain/asi-wallet-sdk 0.1.1 → 0.1.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 +4 -3
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -3,9 +3,10 @@
|
|
|
3
3
|
# ASI Chain: Wallet SDK
|
|
4
4
|
|
|
5
5
|
[](https://github.com/asi-alliance/asi-chain-wallet-sdk)
|
|
6
|
-
[](https://github.com/asi-alliance/asi-chain-wallet-sdk/releases)
|
|
7
6
|
[](LICENSE)
|
|
8
7
|
[](https://docs.asichain.io)
|
|
8
|
+
</br>
|
|
9
|
+

|
|
9
10
|
|
|
10
11
|
<h3>TypeScript SDK for wallet management and blockchain interaction on ASI Chain</h3>
|
|
11
12
|
|
|
@@ -52,7 +53,7 @@ ASI Chain Wallet SDK is a lightweight, modular TypeScript library designed to si
|
|
|
52
53
|
## Installation
|
|
53
54
|
|
|
54
55
|
```bash
|
|
55
|
-
npm install asi-wallet-sdk
|
|
56
|
+
npm install @asichain/asi-wallet-sdk
|
|
56
57
|
```
|
|
57
58
|
|
|
58
59
|
---
|
|
@@ -188,7 +189,7 @@ See [AssetsService](docs/SERVICES.md) for full API reference. For amount convers
|
|
|
188
189
|
- **Address Derivation**: keccak256 hash → blake2b checksum → Base58 encoding with [chain prefix](src/utils/constants)
|
|
189
190
|
- **Encryption**: PBKDF2 (100,000 iterations) → AES-GCM via [CryptoService](docs/SERVICES.md)
|
|
190
191
|
- **Mnemonic**: BIP-39 standard (12/24 words) via [MnemonicService](docs/SERVICES.md)
|
|
191
|
-
- **Derivation Path**: BIP-44
|
|
192
|
+
- **Derivation Path**: BIP-44 via [KeyDerivationService](docs/SERVICES.md)
|
|
192
193
|
|
|
193
194
|
---
|
|
194
195
|
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.1.
|
|
2
|
+
"version": "0.1.2",
|
|
3
3
|
"name": "@asichain/asi-wallet-sdk",
|
|
4
4
|
"description": "ASI Wallet SDK",
|
|
5
5
|
"license": "Apache-2.0",
|
|
@@ -8,6 +8,10 @@
|
|
|
8
8
|
"module": "dist/index.esm.js",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
10
10
|
"sideEffects": false,
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/asi-alliance/asi-chain-wallet-sdk"
|
|
14
|
+
},
|
|
11
15
|
"files": [
|
|
12
16
|
"dist",
|
|
13
17
|
"README.md"
|