btc-wallet 0.5.14-beta → 0.5.16-beta
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/config.d.ts +12 -0
- package/dist/core/btcUtils.d.ts +1 -37
- package/dist/core/{setupBTCWallet.d.ts → setupBTCWallet/index.d.ts} +2 -2
- package/dist/core/setupBTCWallet/state.d.ts +16 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +547 -388
- package/dist/index.js.map +4 -4
- package/dist/utils/satoshi.d.ts +49 -0
- package/esm/index.js +547 -388
- package/esm/index.js.map +4 -4
- package/package.json +2 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "btc-wallet",
|
3
|
-
"version": "0.5.
|
3
|
+
"version": "0.5.16-beta",
|
4
4
|
"license": "MIT",
|
5
5
|
"type": "module",
|
6
6
|
"main": "dist/index.js",
|
@@ -41,6 +41,7 @@
|
|
41
41
|
"typegen:watch": "tsc --emitDeclarationOnly --watch"
|
42
42
|
},
|
43
43
|
"dependencies": {
|
44
|
+
"@bitcoinerlab/secp256k1": "^1.2.0",
|
44
45
|
"@ethereumjs/util": "^9.0.1",
|
45
46
|
"@near-js/transactions": "^1.3.0",
|
46
47
|
"@near-js/utils": "^1.0.1",
|