@zubari/sdk 0.1.21 → 0.1.23
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/dist/PayoutsProtocol-BFrXok86.d.ts +181 -0
- package/dist/PayoutsProtocol-Q3wZHcaf.d.mts +181 -0
- package/dist/{WalletManager-wRV8RrnE.d.ts → WalletManager-9bC646Ax.d.ts} +49 -141
- package/dist/{WalletManager-bdFpa_yr.d.mts → WalletManager-B4Ag188W.d.mts} +49 -141
- package/dist/{index-C4wdFOtM.d.mts → index-C4SuAZP4.d.ts} +3 -2
- package/dist/{index-DhluuR9H.d.mts → index-D9vwxETQ.d.mts} +17 -1
- package/dist/{index-DhluuR9H.d.ts → index-D9vwxETQ.d.ts} +17 -1
- package/dist/{index-Cq024jR8.d.ts → index-DkB0ouBN.d.mts} +3 -2
- package/dist/index.d.mts +5 -6
- package/dist/index.d.ts +5 -6
- package/dist/index.js +36 -63
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +30 -57
- package/dist/index.mjs.map +1 -1
- package/dist/protocols/index.d.mts +149 -171
- package/dist/protocols/index.d.ts +149 -171
- package/dist/protocols/index.js +889 -0
- package/dist/protocols/index.js.map +1 -1
- package/dist/protocols/index.mjs +889 -1
- package/dist/protocols/index.mjs.map +1 -1
- package/dist/react/index.d.mts +4 -5
- package/dist/react/index.d.ts +4 -5
- package/dist/react/index.js +29 -60
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +23 -54
- package/dist/react/index.mjs.map +1 -1
- package/dist/services/index.d.mts +1 -1
- package/dist/services/index.d.ts +1 -1
- package/dist/services/index.js +30 -18
- package/dist/services/index.js.map +1 -1
- package/dist/services/index.mjs +24 -12
- package/dist/services/index.mjs.map +1 -1
- package/dist/wallet/index.d.mts +4 -5
- package/dist/wallet/index.d.ts +4 -5
- package/dist/wallet/index.js +36 -63
- package/dist/wallet/index.js.map +1 -1
- package/dist/wallet/index.mjs +30 -57
- package/dist/wallet/index.mjs.map +1 -1
- package/package.json +17 -19
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zubari/sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.23",
|
|
4
4
|
"description": "Multi-chain self-custodial wallet SDK for Web3 creator economy. Supports Ethereum, Bitcoin, TON, TRON, Solana, and Lightning (Spark) from a single BIP-39 seed phrase.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -43,20 +43,6 @@
|
|
|
43
43
|
"LICENSE"
|
|
44
44
|
],
|
|
45
45
|
"sideEffects": false,
|
|
46
|
-
"scripts": {
|
|
47
|
-
"build": "tsup",
|
|
48
|
-
"dev": "tsup --watch",
|
|
49
|
-
"clean": "rm -rf dist .turbo coverage",
|
|
50
|
-
"test": "jest",
|
|
51
|
-
"test:watch": "jest --watch",
|
|
52
|
-
"test:coverage": "jest --coverage",
|
|
53
|
-
"lint": "eslint src --ext .ts,.tsx",
|
|
54
|
-
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
55
|
-
"type-check": "tsc --noEmit",
|
|
56
|
-
"prepublishOnly": "npm run clean && npm run build && npm run test",
|
|
57
|
-
"prepack": "npm run build",
|
|
58
|
-
"release": "npm publish --access public"
|
|
59
|
-
},
|
|
60
46
|
"keywords": [
|
|
61
47
|
"wallet",
|
|
62
48
|
"multi-chain",
|
|
@@ -102,11 +88,11 @@
|
|
|
102
88
|
"node": ">=18.0.0"
|
|
103
89
|
},
|
|
104
90
|
"dependencies": {
|
|
105
|
-
"@noble/hashes": "^
|
|
91
|
+
"@noble/hashes": "^2.0.1",
|
|
106
92
|
"@scure/base": "^2.0.0",
|
|
107
93
|
"@scure/bip32": "^2.0.1",
|
|
108
|
-
"@scure/bip39": "^
|
|
109
|
-
"@zubari/sdk": "^0.1.
|
|
94
|
+
"@scure/bip39": "^2.0.1",
|
|
95
|
+
"@zubari/sdk": "^0.1.22",
|
|
110
96
|
"bs58": "^6.0.0",
|
|
111
97
|
"ed25519-hd-key": "^1.3.0",
|
|
112
98
|
"ethers": "^6.13.0",
|
|
@@ -142,5 +128,17 @@
|
|
|
142
128
|
"react": {
|
|
143
129
|
"optional": true
|
|
144
130
|
}
|
|
131
|
+
},
|
|
132
|
+
"scripts": {
|
|
133
|
+
"build": "tsup",
|
|
134
|
+
"dev": "tsup --watch",
|
|
135
|
+
"clean": "rm -rf dist .turbo coverage",
|
|
136
|
+
"test": "jest",
|
|
137
|
+
"test:watch": "jest --watch",
|
|
138
|
+
"test:coverage": "jest --coverage",
|
|
139
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
140
|
+
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
141
|
+
"type-check": "tsc --noEmit",
|
|
142
|
+
"release": "npm publish --access public"
|
|
145
143
|
}
|
|
146
|
-
}
|
|
144
|
+
}
|