btc-wallet 0.2.5 → 0.2.7
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +60 -6
- package/dist/components/signModal/index.d.ts +1 -1
- package/dist/config.d.ts +14 -0
- package/dist/context/index.d.ts +0 -2
- package/dist/core/bridgeSupplyUtils.d.ts +10 -0
- package/dist/{components → core}/btcWalletSelectorContext.d.ts +4 -1
- package/dist/{utils → core}/setupBTCWallet.d.ts +1 -1
- package/dist/evmSigner/index.d.ts +2737 -817
- package/dist/index.d.ts +3 -3
- package/dist/index.js +395 -228
- package/dist/index.js.map +4 -4
- package/dist/utils/ethereumUtils.d.ts +1 -4
- package/dist/utils/index.d.ts +0 -5
- package/dist/utils/request.d.ts +11 -0
- package/esm/index.js +391 -218
- package/esm/index.js.map +4 -4
- package/package.json +9 -7
- package/dist/components/hook.d.ts +0 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "btc-wallet",
|
3
|
-
"version": "0.2.
|
3
|
+
"version": "0.2.7",
|
4
4
|
"license": "MIT",
|
5
5
|
"type": "module",
|
6
6
|
"main": "dist/index.js",
|
@@ -47,6 +47,7 @@
|
|
47
47
|
"@particle-network/aa": "^1.5.0",
|
48
48
|
"@particle-network/chains": "*",
|
49
49
|
"@particle-network/wallet": "^1.4.6",
|
50
|
+
"big.js": "^6.2.2",
|
50
51
|
"bitcore-lib": "^10.0.23",
|
51
52
|
"bs58": "^6.0.0",
|
52
53
|
"near-api-js": "^5.0.0",
|
@@ -55,20 +56,18 @@
|
|
55
56
|
"viem": "^2.0.3"
|
56
57
|
},
|
57
58
|
"devDependencies": {
|
59
|
+
"@types/big.js": "^6.2.2",
|
58
60
|
"@types/node": "^20",
|
59
61
|
"@types/react": "^18",
|
60
62
|
"@types/react-dom": "^18",
|
61
|
-
"esbuild-css-modules-plugin": "^3.1.0",
|
62
|
-
"esbuild-sass-plugin": "^2.16.1",
|
63
|
-
"esbuild-scss-modules-plugin": "^1.1.1",
|
64
|
-
"react": "^18",
|
65
|
-
"react-dom": "^18",
|
66
|
-
"sass": "^1.69.7",
|
67
63
|
"@typescript-eslint/eslint-plugin": "^5.26.0",
|
68
64
|
"cssnano": "^6.0.3",
|
69
65
|
"env-cmd": "^10.1.0",
|
70
66
|
"esbuild": "^0.15.18",
|
67
|
+
"esbuild-css-modules-plugin": "^3.1.0",
|
71
68
|
"esbuild-plugin-replace": "^1.4.0",
|
69
|
+
"esbuild-sass-plugin": "^2.16.1",
|
70
|
+
"esbuild-scss-modules-plugin": "^1.1.1",
|
72
71
|
"eslint": "^8",
|
73
72
|
"eslint-config-next": "14.0.3",
|
74
73
|
"eslint-config-prettier": "^9.1.0",
|
@@ -79,6 +78,9 @@
|
|
79
78
|
"prettier": "^3.1.1",
|
80
79
|
"prettier-plugin-organize-imports": "^3.2.4",
|
81
80
|
"prettier-plugin-tailwindcss": "^0.5.11",
|
81
|
+
"react": "^18",
|
82
|
+
"react-dom": "^18",
|
83
|
+
"sass": "^1.69.7",
|
82
84
|
"typescript": "^5",
|
83
85
|
"typescript-plugin-css-modules": "^5.0.2",
|
84
86
|
"vercel": "^33.1.0"
|
@@ -1 +0,0 @@
|
|
1
|
-
export declare function InitContextHook(): null;
|