@talken/talkenkit 2.4.26 → 2.4.29
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/abcWallet-TLGPQAMU.js +161 -0
- package/dist/chunk-MI7TNBED.js +5458 -0
- package/dist/hooks/useEstimateFee.d.ts +21 -0
- package/dist/hooks/useProfile.d.ts +1 -1
- package/dist/index.css +9 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +113 -220
- package/dist/services/AbcAuthService.d.ts +0 -3
- package/dist/wallets/walletConnectors/abcWallet/abcBitcoinProvider.js +1 -1
- package/dist/wallets/walletConnectors/abcWallet/abcConnector.js +2 -2
- package/dist/wallets/walletConnectors/abcWallet/abcSolanaProvider.js +3 -3
- package/dist/wallets/walletConnectors/abcWallet/abcSolanaWalletAdapter.js +1 -1
- package/dist/wallets/walletConnectors/abcWallet/abcTronProvider.d.ts +1 -1
- package/dist/wallets/walletConnectors/abcWallet/abcWallet.js +3 -3
- package/dist/wallets/walletConnectors/abcWallet/api/TalkenApiClient.js +1 -1
- package/dist/wallets/walletConnectors/abcWallet/api/WalletscanApi.d.ts +1 -0
- package/dist/wallets/walletConnectors/abcWallet/api/WalletscanApi.js +3 -1
- package/dist/wallets/walletConnectors/abcWallet/api/index.js +4 -4
- package/dist/wallets/walletConnectors/abcWallet/index.js +8 -8
- package/dist/wallets/walletConnectors/berasigWallet/berasigWallet.js +2 -2
- package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
- package/dist/wallets/walletConnectors/binanceWallet/binanceWallet.js +2 -2
- package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
- package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
- package/dist/wallets/walletConnectors/chunk-3LF7FVL6.js +595 -0
- package/dist/wallets/walletConnectors/chunk-5RDUTGDR.js +54 -0
- package/dist/wallets/walletConnectors/chunk-6HBDJDNH.js +300 -0
- package/dist/wallets/walletConnectors/chunk-BHEVY4QY.js +827 -0
- package/dist/wallets/walletConnectors/chunk-FBJ5H6PM.js +300 -0
- package/dist/wallets/walletConnectors/chunk-IN3HEGZM.js +446 -0
- package/dist/wallets/walletConnectors/chunk-J3YPHDHM.js +827 -0
- package/dist/wallets/walletConnectors/chunk-NULM3THX.js +241 -0
- package/dist/wallets/walletConnectors/chunk-UPYPPBXD.js +1485 -0
- package/dist/wallets/walletConnectors/chunk-VMCIDCO5.js +54 -0
- package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
- package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
- package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
- package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
- package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
- package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
- package/dist/wallets/walletConnectors/index.js +75 -75
- package/dist/wallets/walletConnectors/iopayWallet/iopayWallet.js +2 -2
- package/dist/wallets/walletConnectors/kaiaWallet/kaiaWallet.js +2 -2
- package/dist/wallets/walletConnectors/kaikasWallet/kaikasWallet.js +2 -2
- package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
- package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
- package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
- package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
- package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
- package/dist/wallets/walletConnectors/subWallet/subWallet.js +2 -2
- package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
- package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
- package/dist/wallets/walletConnectors/zealWallet/zealWallet.js +2 -2
- package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import {
|
|
3
|
+
abcConnector
|
|
4
|
+
} from "./chunk-FBJ5H6PM.js";
|
|
5
|
+
import {
|
|
6
|
+
resolveTalkenApiUrl
|
|
7
|
+
} from "./chunk-GFWUFYT2.js";
|
|
8
|
+
import {
|
|
9
|
+
createTalkenApiClient
|
|
10
|
+
} from "./chunk-BHEVY4QY.js";
|
|
11
|
+
import {
|
|
12
|
+
ABC_WALLET_METADATA
|
|
13
|
+
} from "./chunk-DPTDOCWL.js";
|
|
14
|
+
|
|
15
|
+
// src/wallets/walletConnectors/abcWallet/abcWallet.ts
|
|
16
|
+
import { setTalkenApiClient } from "@talken/talkenkit";
|
|
17
|
+
var abcWallet = (specificOptions) => ({ projectId }) => {
|
|
18
|
+
const talkenApiUrl = resolveTalkenApiUrl(specificOptions?.talkenApiUrl);
|
|
19
|
+
const talkenApi = createTalkenApiClient({
|
|
20
|
+
baseUrl: talkenApiUrl,
|
|
21
|
+
debug: specificOptions?.environment === "development"
|
|
22
|
+
});
|
|
23
|
+
setTalkenApiClient(talkenApi);
|
|
24
|
+
const config = {
|
|
25
|
+
talkenApiUrl,
|
|
26
|
+
apiKey: specificOptions?.apiKey,
|
|
27
|
+
plain: specificOptions?.plain || "",
|
|
28
|
+
// Deprecated - not used (secure.ts uses random generation)
|
|
29
|
+
environment: specificOptions?.environment || "development",
|
|
30
|
+
defaultChainId: specificOptions?.defaultChainId,
|
|
31
|
+
defaultSolanaNetwork: specificOptions?.defaultSolanaNetwork,
|
|
32
|
+
defaultBitcoinNetwork: specificOptions?.defaultBitcoinNetwork,
|
|
33
|
+
projectId
|
|
34
|
+
};
|
|
35
|
+
return {
|
|
36
|
+
id: ABC_WALLET_METADATA.id,
|
|
37
|
+
name: ABC_WALLET_METADATA.name,
|
|
38
|
+
rdns: ABC_WALLET_METADATA.rdns,
|
|
39
|
+
iconUrl: async () => (await import("./abcWallet-AYWSIGAG.js")).default,
|
|
40
|
+
iconBackground: ABC_WALLET_METADATA.iconBackground,
|
|
41
|
+
// Embedded wallet - no installation required
|
|
42
|
+
installed: void 0,
|
|
43
|
+
// No download URLs for embedded wallet
|
|
44
|
+
downloadUrls: void 0,
|
|
45
|
+
// Create connector - wrapper function required by Wallet type
|
|
46
|
+
createConnector: (_walletDetails) => abcConnector({ config }),
|
|
47
|
+
// Embedded wallet always available
|
|
48
|
+
hidden: () => false
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export {
|
|
53
|
+
abcWallet
|
|
54
|
+
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
frontierWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-JWO4ZQLK.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-PODFK4OS.js";
|
|
7
6
|
import "../chunk-MBBGZGXF.js";
|
|
7
|
+
import "../chunk-PODFK4OS.js";
|
|
8
8
|
export {
|
|
9
9
|
frontierWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
gateWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-K6UZPSBG.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-PODFK4OS.js";
|
|
7
6
|
import "../chunk-MBBGZGXF.js";
|
|
7
|
+
import "../chunk-PODFK4OS.js";
|
|
8
8
|
export {
|
|
9
9
|
gateWallet
|
|
10
10
|
};
|
|
@@ -1,50 +1,53 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
abcWallet
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import "./chunk-
|
|
4
|
+
} from "./chunk-VMCIDCO5.js";
|
|
5
|
+
import "./chunk-FBJ5H6PM.js";
|
|
6
6
|
import "./chunk-R6ZE7JAZ.js";
|
|
7
7
|
import "./chunk-O4AU63LK.js";
|
|
8
8
|
import "./chunk-OMOYFHBT.js";
|
|
9
9
|
import "./chunk-A66MTFML.js";
|
|
10
10
|
import "./chunk-GFWUFYT2.js";
|
|
11
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-BHEVY4QY.js";
|
|
12
12
|
import "./chunk-4P3SPC44.js";
|
|
13
13
|
import "./chunk-6WF4SXLB.js";
|
|
14
14
|
import "./chunk-DPTDOCWL.js";
|
|
15
15
|
import {
|
|
16
16
|
trustWallet
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-S2PY4MDO.js";
|
|
18
18
|
import {
|
|
19
19
|
uniswapWallet
|
|
20
20
|
} from "./chunk-DLDZUVTB.js";
|
|
21
21
|
import {
|
|
22
22
|
valoraWallet
|
|
23
23
|
} from "./chunk-CVUEWUDI.js";
|
|
24
|
-
import {
|
|
25
|
-
wigwamWallet
|
|
26
|
-
} from "./chunk-EFYKBPOB.js";
|
|
27
24
|
import {
|
|
28
25
|
walletConnectWallet
|
|
29
26
|
} from "./chunk-KU5R3WAJ.js";
|
|
27
|
+
import {
|
|
28
|
+
wigwamWallet
|
|
29
|
+
} from "./chunk-EFYKBPOB.js";
|
|
30
30
|
import {
|
|
31
31
|
xdefiWallet
|
|
32
32
|
} from "./chunk-26RJNF7V.js";
|
|
33
33
|
import {
|
|
34
34
|
zealWallet
|
|
35
|
-
} from "./chunk-
|
|
35
|
+
} from "./chunk-SCOX5RF4.js";
|
|
36
36
|
import {
|
|
37
37
|
zerionWallet
|
|
38
|
-
} from "./chunk-
|
|
38
|
+
} from "./chunk-53IBFGVW.js";
|
|
39
39
|
import {
|
|
40
40
|
safepalWallet
|
|
41
|
-
} from "./chunk-
|
|
41
|
+
} from "./chunk-ATQWOE4J.js";
|
|
42
42
|
import {
|
|
43
43
|
safeheronWallet
|
|
44
44
|
} from "./chunk-PHF4VWKP.js";
|
|
45
45
|
import {
|
|
46
46
|
seifWallet
|
|
47
47
|
} from "./chunk-Y3E6EZ7J.js";
|
|
48
|
+
import {
|
|
49
|
+
subWallet
|
|
50
|
+
} from "./chunk-V7E5KRXJ.js";
|
|
48
51
|
import {
|
|
49
52
|
tahoWallet
|
|
50
53
|
} from "./chunk-UXRQQZ2M.js";
|
|
@@ -53,10 +56,7 @@ import {
|
|
|
53
56
|
} from "./chunk-B4IG5R5M.js";
|
|
54
57
|
import {
|
|
55
58
|
tokenPocketWallet
|
|
56
|
-
} from "./chunk-
|
|
57
|
-
import {
|
|
58
|
-
subWallet
|
|
59
|
-
} from "./chunk-OWSLCYOF.js";
|
|
59
|
+
} from "./chunk-5NM2LK2G.js";
|
|
60
60
|
import {
|
|
61
61
|
tokenaryWallet
|
|
62
62
|
} from "./chunk-U24COF36.js";
|
|
@@ -64,29 +64,32 @@ import {
|
|
|
64
64
|
oneKeyWallet
|
|
65
65
|
} from "./chunk-6UGYPEQE.js";
|
|
66
66
|
import {
|
|
67
|
-
|
|
68
|
-
} from "./chunk-
|
|
67
|
+
paraSwapWallet
|
|
68
|
+
} from "./chunk-FF7ZXD5C.js";
|
|
69
69
|
import {
|
|
70
70
|
phantomWallet
|
|
71
71
|
} from "./chunk-DMQ4RXIY.js";
|
|
72
72
|
import {
|
|
73
73
|
rabbyWallet
|
|
74
74
|
} from "./chunk-3RMYBZQG.js";
|
|
75
|
+
import {
|
|
76
|
+
rainbowWallet
|
|
77
|
+
} from "./chunk-JBVBQUCS.js";
|
|
75
78
|
import {
|
|
76
79
|
roninWallet
|
|
77
|
-
} from "./chunk-
|
|
80
|
+
} from "./chunk-D7U5WEH2.js";
|
|
78
81
|
import {
|
|
79
82
|
ramperWallet
|
|
80
83
|
} from "./chunk-OX3PQBV2.js";
|
|
81
|
-
import {
|
|
82
|
-
rainbowWallet
|
|
83
|
-
} from "./chunk-6C3GUS6I.js";
|
|
84
84
|
import {
|
|
85
85
|
safeWallet
|
|
86
86
|
} from "./chunk-Z2QCE6O6.js";
|
|
87
87
|
import {
|
|
88
|
-
|
|
89
|
-
} from "./chunk-
|
|
88
|
+
ledgerWallet
|
|
89
|
+
} from "./chunk-BF3VSNPL.js";
|
|
90
|
+
import {
|
|
91
|
+
metaMaskWallet
|
|
92
|
+
} from "./chunk-AKLKCDXT.js";
|
|
90
93
|
import {
|
|
91
94
|
mewWallet
|
|
92
95
|
} from "./chunk-ZRY6ILYP.js";
|
|
@@ -96,24 +99,30 @@ import {
|
|
|
96
99
|
import {
|
|
97
100
|
oktoWallet
|
|
98
101
|
} from "./chunk-7SSXG35M.js";
|
|
99
|
-
import {
|
|
100
|
-
foxWallet
|
|
101
|
-
} from "./chunk-E4UMOJTY.js";
|
|
102
102
|
import {
|
|
103
103
|
okxWallet
|
|
104
|
-
} from "./chunk-
|
|
104
|
+
} from "./chunk-Z2E65XSS.js";
|
|
105
|
+
import {
|
|
106
|
+
omniWallet
|
|
107
|
+
} from "./chunk-RGPO7AY3.js";
|
|
105
108
|
import {
|
|
106
109
|
oneInchWallet
|
|
107
110
|
} from "./chunk-OJT577AY.js";
|
|
108
111
|
import {
|
|
109
|
-
|
|
110
|
-
} from "./chunk-
|
|
112
|
+
bloomWallet
|
|
113
|
+
} from "./chunk-3KPCADAF.js";
|
|
111
114
|
import {
|
|
112
115
|
injectedWallet
|
|
113
116
|
} from "./chunk-GDGRUMZB.js";
|
|
117
|
+
import {
|
|
118
|
+
kaiaWallet
|
|
119
|
+
} from "./chunk-C7S72VGD.js";
|
|
114
120
|
import {
|
|
115
121
|
iopayWallet
|
|
116
|
-
} from "./chunk-
|
|
122
|
+
} from "./chunk-2W6UBYKX.js";
|
|
123
|
+
import {
|
|
124
|
+
kaikasWallet
|
|
125
|
+
} from "./chunk-BJYSWRV6.js";
|
|
117
126
|
import {
|
|
118
127
|
krakenWallet
|
|
119
128
|
} from "./chunk-CYOZFCR6.js";
|
|
@@ -121,89 +130,80 @@ import {
|
|
|
121
130
|
kresusWallet
|
|
122
131
|
} from "./chunk-CM3VR7OM.js";
|
|
123
132
|
import {
|
|
124
|
-
|
|
125
|
-
} from "./chunk-
|
|
126
|
-
import {
|
|
127
|
-
ledgerWallet
|
|
128
|
-
} from "./chunk-BF3VSNPL.js";
|
|
129
|
-
import {
|
|
130
|
-
kaiaWallet
|
|
131
|
-
} from "./chunk-KE6RMEB7.js";
|
|
133
|
+
magicEdenWallet
|
|
134
|
+
} from "./chunk-WB7EEKPS.js";
|
|
132
135
|
import {
|
|
133
|
-
|
|
134
|
-
} from "./chunk-
|
|
136
|
+
dawnWallet
|
|
137
|
+
} from "./chunk-YMP3W2MO.js";
|
|
135
138
|
import {
|
|
136
139
|
desigWallet
|
|
137
140
|
} from "./chunk-DVXPOWEC.js";
|
|
138
141
|
import {
|
|
139
|
-
|
|
140
|
-
} from "./chunk-
|
|
142
|
+
enkryptWallet
|
|
143
|
+
} from "./chunk-5QHPQU7J.js";
|
|
144
|
+
import {
|
|
145
|
+
foxWallet
|
|
146
|
+
} from "./chunk-K6GEK4JB.js";
|
|
141
147
|
import {
|
|
142
148
|
frameWallet
|
|
143
149
|
} from "./chunk-CP45RGL4.js";
|
|
144
|
-
import {
|
|
145
|
-
compassWallet
|
|
146
|
-
} from "./chunk-3OO564GS.js";
|
|
147
|
-
import {
|
|
148
|
-
enkryptWallet
|
|
149
|
-
} from "./chunk-5QHPQU7J.js";
|
|
150
150
|
import {
|
|
151
151
|
frontierWallet
|
|
152
|
-
} from "./chunk-
|
|
152
|
+
} from "./chunk-JWO4ZQLK.js";
|
|
153
153
|
import {
|
|
154
154
|
gateWallet
|
|
155
|
-
} from "./chunk-
|
|
155
|
+
} from "./chunk-K6UZPSBG.js";
|
|
156
156
|
import {
|
|
157
157
|
imTokenWallet
|
|
158
158
|
} from "./chunk-EHE2536P.js";
|
|
159
159
|
import {
|
|
160
|
-
|
|
161
|
-
} from "./chunk-
|
|
160
|
+
bitskiWallet
|
|
161
|
+
} from "./chunk-DZB25PZ7.js";
|
|
162
162
|
import {
|
|
163
|
-
|
|
164
|
-
} from "./chunk-
|
|
163
|
+
braveWallet
|
|
164
|
+
} from "./chunk-EYN3CVFM.js";
|
|
165
165
|
import {
|
|
166
166
|
bybitWallet
|
|
167
|
-
} from "./chunk-
|
|
167
|
+
} from "./chunk-WSLFMQIG.js";
|
|
168
168
|
import {
|
|
169
169
|
clvWallet
|
|
170
|
-
} from "./chunk-
|
|
170
|
+
} from "./chunk-3IVTKZ7V.js";
|
|
171
171
|
import {
|
|
172
|
-
|
|
173
|
-
} from "./chunk-
|
|
172
|
+
coin98Wallet
|
|
173
|
+
} from "./chunk-GILMNC3J.js";
|
|
174
174
|
import {
|
|
175
|
-
|
|
176
|
-
} from "./chunk-
|
|
175
|
+
compassWallet
|
|
176
|
+
} from "./chunk-3OO564GS.js";
|
|
177
177
|
import {
|
|
178
|
-
|
|
179
|
-
} from "./chunk-
|
|
178
|
+
coinbaseWallet
|
|
179
|
+
} from "./chunk-PNEDRY6O.js";
|
|
180
180
|
import {
|
|
181
181
|
coreWallet
|
|
182
|
-
} from "./chunk-
|
|
182
|
+
} from "./chunk-FBI7UGNO.js";
|
|
183
183
|
import {
|
|
184
|
-
|
|
185
|
-
} from "./chunk-
|
|
184
|
+
argentWallet
|
|
185
|
+
} from "./chunk-XT2WYPN5.js";
|
|
186
186
|
import {
|
|
187
187
|
bestWallet
|
|
188
188
|
} from "./chunk-OPAPBEA5.js";
|
|
189
|
-
import {
|
|
190
|
-
argentWallet
|
|
191
|
-
} from "./chunk-XT2WYPN5.js";
|
|
192
189
|
import {
|
|
193
190
|
bifrostWallet
|
|
194
|
-
} from "./chunk-
|
|
191
|
+
} from "./chunk-B6DM7J4N.js";
|
|
195
192
|
import {
|
|
196
|
-
|
|
197
|
-
} from "./chunk-
|
|
193
|
+
berasigWallet
|
|
194
|
+
} from "./chunk-KM55XFBI.js";
|
|
198
195
|
import {
|
|
199
196
|
binanceWallet
|
|
200
|
-
} from "./chunk-
|
|
201
|
-
import "./chunk-RETKWSKD.js";
|
|
202
|
-
import "./chunk-PODFK4OS.js";
|
|
197
|
+
} from "./chunk-4T3UOJYR.js";
|
|
203
198
|
import {
|
|
204
|
-
|
|
205
|
-
} from "./chunk-
|
|
199
|
+
bitgetWallet
|
|
200
|
+
} from "./chunk-CULIWWLV.js";
|
|
201
|
+
import "./chunk-RETKWSKD.js";
|
|
206
202
|
import "./chunk-MBBGZGXF.js";
|
|
203
|
+
import {
|
|
204
|
+
bitverseWallet
|
|
205
|
+
} from "./chunk-6HCSSBZY.js";
|
|
206
|
+
import "./chunk-PODFK4OS.js";
|
|
207
207
|
export {
|
|
208
208
|
abcWallet,
|
|
209
209
|
argentWallet,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
iopayWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-2W6UBYKX.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-PODFK4OS.js";
|
|
7
6
|
import "../chunk-MBBGZGXF.js";
|
|
7
|
+
import "../chunk-PODFK4OS.js";
|
|
8
8
|
export {
|
|
9
9
|
iopayWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
metaMaskWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-AKLKCDXT.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-PODFK4OS.js";
|
|
7
6
|
import "../chunk-MBBGZGXF.js";
|
|
7
|
+
import "../chunk-PODFK4OS.js";
|
|
8
8
|
export {
|
|
9
9
|
metaMaskWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
okxWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-Z2E65XSS.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-PODFK4OS.js";
|
|
7
6
|
import "../chunk-MBBGZGXF.js";
|
|
7
|
+
import "../chunk-PODFK4OS.js";
|
|
8
8
|
export {
|
|
9
9
|
okxWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
rainbowWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-JBVBQUCS.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-PODFK4OS.js";
|
|
7
6
|
import "../chunk-MBBGZGXF.js";
|
|
7
|
+
import "../chunk-PODFK4OS.js";
|
|
8
8
|
export {
|
|
9
9
|
rainbowWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
tokenPocketWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-5NM2LK2G.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-PODFK4OS.js";
|
|
7
6
|
import "../chunk-MBBGZGXF.js";
|
|
7
|
+
import "../chunk-PODFK4OS.js";
|
|
8
8
|
export {
|
|
9
9
|
tokenPocketWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
trustWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-S2PY4MDO.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-PODFK4OS.js";
|
|
7
6
|
import "../chunk-MBBGZGXF.js";
|
|
7
|
+
import "../chunk-PODFK4OS.js";
|
|
8
8
|
export {
|
|
9
9
|
trustWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
zerionWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-53IBFGVW.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-PODFK4OS.js";
|
|
7
6
|
import "../chunk-MBBGZGXF.js";
|
|
7
|
+
import "../chunk-PODFK4OS.js";
|
|
8
8
|
export {
|
|
9
9
|
zerionWallet
|
|
10
10
|
};
|