@talken/talkenkit 2.3.13 → 2.3.14
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/index.js
CHANGED
|
@@ -3064,7 +3064,7 @@ function setRainbowKitVersion({ version }) {
|
|
|
3064
3064
|
}
|
|
3065
3065
|
function useFingerprint() {
|
|
3066
3066
|
const fingerprint = useCallback4(() => {
|
|
3067
|
-
setRainbowKitVersion({ version: "2.3.
|
|
3067
|
+
setRainbowKitVersion({ version: "2.3.14" });
|
|
3068
3068
|
}, []);
|
|
3069
3069
|
useEffect11(() => {
|
|
3070
3070
|
fingerprint();
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import {
|
|
3
|
+
BitcoinApi
|
|
4
|
+
} from "./chunk-QKUFFUM5.js";
|
|
5
|
+
import {
|
|
6
|
+
WalletApi
|
|
7
|
+
} from "./chunk-JW4RQLJT.js";
|
|
8
|
+
import {
|
|
9
|
+
AuthApi
|
|
10
|
+
} from "./chunk-YEHCPL4R.js";
|
|
11
|
+
import {
|
|
12
|
+
SigningApi
|
|
13
|
+
} from "./chunk-V3XKL7AD.js";
|
|
14
|
+
import {
|
|
15
|
+
SolanaApi
|
|
16
|
+
} from "./chunk-HGI3FA2A.js";
|
|
17
|
+
import {
|
|
18
|
+
TransactionApi
|
|
19
|
+
} from "./chunk-ISAMATTH.js";
|
|
20
|
+
|
|
21
|
+
// src/wallets/walletConnectors/abcWallet/api/index.ts
|
|
22
|
+
var AbcWaasApiClient = class {
|
|
23
|
+
constructor(config) {
|
|
24
|
+
this.auth = new AuthApi(config);
|
|
25
|
+
this.wallet = new WalletApi(config);
|
|
26
|
+
this.transaction = new TransactionApi(config);
|
|
27
|
+
this.signing = new SigningApi(config);
|
|
28
|
+
this.solana = new SolanaApi(config);
|
|
29
|
+
this.bitcoin = new BitcoinApi(config);
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if user is authenticated
|
|
33
|
+
*/
|
|
34
|
+
isAuthenticated() {
|
|
35
|
+
return this.auth.isAuthenticated();
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Check if access token is expired
|
|
39
|
+
*/
|
|
40
|
+
isTokenExpired() {
|
|
41
|
+
return this.auth.isTokenExpired();
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Get current access token
|
|
45
|
+
*/
|
|
46
|
+
getAccessToken() {
|
|
47
|
+
return this.auth.getAccessToken();
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Logout (clear tokens)
|
|
51
|
+
*/
|
|
52
|
+
async logout() {
|
|
53
|
+
await this.auth.logout();
|
|
54
|
+
}
|
|
55
|
+
};
|
|
56
|
+
function createAbcWaasApiClient(config) {
|
|
57
|
+
return new AbcWaasApiClient(config);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export {
|
|
61
|
+
AbcWaasApiClient,
|
|
62
|
+
createAbcWaasApiClient
|
|
63
|
+
};
|
|
@@ -76,12 +76,12 @@ import {
|
|
|
76
76
|
import {
|
|
77
77
|
ramperWallet
|
|
78
78
|
} from "./chunk-OX3PQBV2.js";
|
|
79
|
-
import {
|
|
80
|
-
roninWallet
|
|
81
|
-
} from "./chunk-DSTY7YNG.js";
|
|
82
79
|
import {
|
|
83
80
|
safeWallet
|
|
84
81
|
} from "./chunk-Z2QCE6O6.js";
|
|
82
|
+
import {
|
|
83
|
+
roninWallet
|
|
84
|
+
} from "./chunk-DSTY7YNG.js";
|
|
85
85
|
import {
|
|
86
86
|
magicEdenWallet
|
|
87
87
|
} from "./chunk-WB7EEKPS.js";
|
|
@@ -106,15 +106,15 @@ import {
|
|
|
106
106
|
import {
|
|
107
107
|
oneInchWallet
|
|
108
108
|
} from "./chunk-OJT577AY.js";
|
|
109
|
+
import {
|
|
110
|
+
imTokenWallet
|
|
111
|
+
} from "./chunk-EHE2536P.js";
|
|
109
112
|
import {
|
|
110
113
|
injectedWallet
|
|
111
114
|
} from "./chunk-GDGRUMZB.js";
|
|
112
115
|
import {
|
|
113
116
|
iopayWallet
|
|
114
117
|
} from "./chunk-A2XAHJNR.js";
|
|
115
|
-
import {
|
|
116
|
-
foxWallet
|
|
117
|
-
} from "./chunk-E4UMOJTY.js";
|
|
118
118
|
import {
|
|
119
119
|
kaiaWallet
|
|
120
120
|
} from "./chunk-KE6RMEB7.js";
|
|
@@ -130,18 +130,21 @@ import {
|
|
|
130
130
|
import {
|
|
131
131
|
ledgerWallet
|
|
132
132
|
} from "./chunk-BF3VSNPL.js";
|
|
133
|
+
import {
|
|
134
|
+
coreWallet
|
|
135
|
+
} from "./chunk-I6ONK6DO.js";
|
|
133
136
|
import {
|
|
134
137
|
dawnWallet
|
|
135
138
|
} from "./chunk-YMP3W2MO.js";
|
|
136
139
|
import {
|
|
137
140
|
desigWallet
|
|
138
141
|
} from "./chunk-DVXPOWEC.js";
|
|
139
|
-
import {
|
|
140
|
-
compassWallet
|
|
141
|
-
} from "./chunk-3OO564GS.js";
|
|
142
142
|
import {
|
|
143
143
|
enkryptWallet
|
|
144
144
|
} from "./chunk-5QHPQU7J.js";
|
|
145
|
+
import {
|
|
146
|
+
foxWallet
|
|
147
|
+
} from "./chunk-E4UMOJTY.js";
|
|
145
148
|
import {
|
|
146
149
|
frameWallet
|
|
147
150
|
} from "./chunk-CP45RGL4.js";
|
|
@@ -151,9 +154,6 @@ import {
|
|
|
151
154
|
import {
|
|
152
155
|
gateWallet
|
|
153
156
|
} from "./chunk-PKSDTWUF.js";
|
|
154
|
-
import {
|
|
155
|
-
imTokenWallet
|
|
156
|
-
} from "./chunk-EHE2536P.js";
|
|
157
157
|
import {
|
|
158
158
|
bitverseWallet
|
|
159
159
|
} from "./chunk-6HCSSBZY.js";
|
|
@@ -176,17 +176,17 @@ import {
|
|
|
176
176
|
coinbaseWallet
|
|
177
177
|
} from "./chunk-PNEDRY6O.js";
|
|
178
178
|
import {
|
|
179
|
-
|
|
180
|
-
} from "./chunk-
|
|
179
|
+
compassWallet
|
|
180
|
+
} from "./chunk-3OO564GS.js";
|
|
181
|
+
import {
|
|
182
|
+
berasigWallet
|
|
183
|
+
} from "./chunk-UZWMFUJU.js";
|
|
181
184
|
import {
|
|
182
185
|
argentWallet
|
|
183
186
|
} from "./chunk-XT2WYPN5.js";
|
|
184
187
|
import {
|
|
185
188
|
bestWallet
|
|
186
189
|
} from "./chunk-OPAPBEA5.js";
|
|
187
|
-
import {
|
|
188
|
-
berasigWallet
|
|
189
|
-
} from "./chunk-UZWMFUJU.js";
|
|
190
190
|
import {
|
|
191
191
|
bifrostWallet
|
|
192
192
|
} from "./chunk-WXXI4WBF.js";
|