@hwlt/era-connect 0.5.0 → 0.5.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 +6 -4
- package/package.json +11 -3
package/README.md
CHANGED
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Air-gapped **ERA hardware wallet** integration for software wallets: account
|
|
4
4
|
linking and transaction signing over animated QR codes (BC-UR / Keystone-compatible
|
|
5
|
-
registry), for **EVM, Bitcoin
|
|
5
|
+
registry), for **every chain the device ships** — EVM (all networks), Bitcoin
|
|
6
|
+
(+ Litecoin, Dogecoin, Dash, Bitcoin Cash), Solana, Tron, TON, Cardano, Sui,
|
|
7
|
+
Cosmos (~35 zones) and XRP.
|
|
6
8
|
|
|
7
9
|
- **Headless.** You render the QR and own the camera; the SDK owns every byte
|
|
8
10
|
of the protocol. Works in React Native, Expo, browsers, extensions and Node.
|
|
@@ -66,15 +68,15 @@ verifyEvmSignature({ signData: rlpBytes, dataType: 1,
|
|
|
66
68
|
|
|
67
69
|
## Chain support
|
|
68
70
|
|
|
69
|
-
The ERA device is multichain
|
|
70
|
-
|
|
71
|
+
The ERA device is multichain, and the SDK ships a dedicated module for every
|
|
72
|
+
chain family the current firmware supports.
|
|
71
73
|
|
|
72
74
|
**Dedicated modules:**
|
|
73
75
|
|
|
74
76
|
| Chain | Sign transaction | Sign message | Subpath |
|
|
75
77
|
|---|---|---|---|
|
|
76
78
|
| EVM (all chains) | `eth-sign-request` | personal_sign / EIP-712 | `@hwlt/era-connect/evm` |
|
|
77
|
-
| Bitcoin | `crypto-psbt` (PSBT v0) | legacy P2PKH
|
|
79
|
+
| Bitcoin | `crypto-psbt` (PSBT v0) | BIP-44/49/84 on firmware 2.1.0+ (Taproot refused); legacy P2PKH on older | `@hwlt/era-connect/btc` |
|
|
78
80
|
| Solana | `sol-sign-request` | off-chain messages | `@hwlt/era-connect/solana` |
|
|
79
81
|
| Tron | structured envelope (any contract via `rawData`) | UTF-8 in `rawData` | `@hwlt/era-connect/tron` |
|
|
80
82
|
| TON | `ton-sign-request` (BoC root-hash signing) | TON Connect proof | `@hwlt/era-connect/ton` |
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hwlt/era-connect",
|
|
3
|
-
"version": "0.5.
|
|
4
|
-
"description": "ERA hardware wallet SDK: air-gapped UR/QR account linking and transaction signing for EVM, Bitcoin, Solana and
|
|
3
|
+
"version": "0.5.2",
|
|
4
|
+
"description": "ERA hardware wallet SDK: air-gapped UR/QR account linking and transaction signing for EVM, Bitcoin (+ LTC/DOGE/DASH/BCH), Solana, Tron, TON, Cardano, Sui, Cosmos and XRP",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"era-wallet",
|
|
7
7
|
"hardware-wallet",
|
|
@@ -14,7 +14,15 @@
|
|
|
14
14
|
"bitcoin",
|
|
15
15
|
"ethereum",
|
|
16
16
|
"solana",
|
|
17
|
-
"tron"
|
|
17
|
+
"tron",
|
|
18
|
+
"ton",
|
|
19
|
+
"cardano",
|
|
20
|
+
"sui",
|
|
21
|
+
"cosmos",
|
|
22
|
+
"xrp",
|
|
23
|
+
"bitcoin-cash",
|
|
24
|
+
"litecoin",
|
|
25
|
+
"dogecoin"
|
|
18
26
|
],
|
|
19
27
|
"license": "Apache-2.0",
|
|
20
28
|
"repository": {
|