@funkit/connect 9.0.2 → 9.0.3
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/CHANGELOG.md +10 -0
- package/dist/components/Dialog/DialogContent.css.d.ts +1 -0
- package/dist/index.css +5 -1
- package/dist/index.js +158 -270
- package/dist/modals/CheckoutModal/SwappedIframe/SwappedIframe.d.ts +1 -1
- package/dist/providers/FunkitConfigContext.d.ts +0 -5
- package/dist/utils/flags/config.d.ts +8 -1
- package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.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/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 +52 -52
- 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/zerionWallet/zerionWallet.js +2 -2
- package/package.json +3 -3
- package/dist/wallets/walletConnectors/{chunk-6YO27XOM.js → chunk-3Y2GG3PM.js} +3 -3
- package/dist/wallets/walletConnectors/{chunk-HETS3KKI.js → chunk-3YCR2ZB4.js} +3 -3
- package/dist/wallets/walletConnectors/{chunk-HOPH3TQ3.js → chunk-C4RP2DNH.js} +3 -3
- package/dist/wallets/walletConnectors/{chunk-IICWJWGZ.js → chunk-CBI3SGOC.js} +3 -3
- package/dist/wallets/walletConnectors/{chunk-GVOQTORD.js → chunk-CMLFDRCP.js} +3 -3
- package/dist/wallets/walletConnectors/{chunk-LI6QY2B5.js → chunk-COX3VEDR.js} +3 -3
- package/dist/wallets/walletConnectors/{chunk-EKJHJFRN.js → chunk-CT3QPTAU.js} +3 -3
- package/dist/wallets/walletConnectors/{chunk-7OARWILZ.js → chunk-DWMUM4F6.js} +3 -3
- package/dist/wallets/walletConnectors/{chunk-CJJT7LMT.js → chunk-FDVJHNLL.js} +3 -3
- package/dist/wallets/walletConnectors/{chunk-6UCI7GM6.js → chunk-I7K6LUZR.js} +3 -3
- package/dist/wallets/walletConnectors/{chunk-XBLHZICW.js → chunk-N3UJMC3V.js} +3 -3
- package/dist/wallets/walletConnectors/{chunk-4C7ER452.js → chunk-NEK7T3IC.js} +3 -3
- package/dist/wallets/walletConnectors/{chunk-PKMAPNN6.js → chunk-RLLTYOWT.js} +3 -3
- package/dist/wallets/walletConnectors/{chunk-GH4M6FTK.js → chunk-TIT5F32X.js} +3 -3
- package/dist/wallets/walletConnectors/{chunk-TTHM3WUR.js → chunk-UPUDLUBT.js} +3 -3
- package/dist/wallets/walletConnectors/{chunk-53VYSPXK.js → chunk-UVMMPRDM.js} +3 -3
- package/dist/wallets/walletConnectors/{chunk-GSHSWVEG.js → chunk-UVYZSGIX.js} +3 -3
- package/dist/wallets/walletConnectors/{chunk-KO56HCTI.js → chunk-ZMRIQOR5.js} +3 -3
|
@@ -12,5 +12,5 @@ export type SwappedIframeNext = {
|
|
|
12
12
|
success?: boolean;
|
|
13
13
|
};
|
|
14
14
|
export declare const SwappedIframeInfo: ModalStepInfo<FunCheckoutStep.SWAPPED_IFRAME>;
|
|
15
|
-
declare function SwappedIframe({ modalState, onNext, onBack, onClose, }: ModalStepComponentProps<FunCheckoutStep.SWAPPED_IFRAME>): React.JSX.Element
|
|
15
|
+
declare function SwappedIframe({ modalState, onNext, onBack, onClose, }: ModalStepComponentProps<FunCheckoutStep.SWAPPED_IFRAME>): React.JSX.Element;
|
|
16
16
|
export default SwappedIframe;
|
|
@@ -141,11 +141,6 @@ export interface FunkitUiCustomizationsConfig {
|
|
|
141
141
|
isSecondaryTokenSymbolVisible?: boolean;
|
|
142
142
|
/** Whether to navigate directly on asset click, rather than having to select then click Continue - defaults to false */
|
|
143
143
|
navigateOnAssetClick?: boolean;
|
|
144
|
-
/**
|
|
145
|
-
* Whether to show target asset selection menu if dynamicTargetAssetCandidates exist - defaults to false
|
|
146
|
-
* @deprecated use sourceChangeScreen.showTargetAssetSelection instead
|
|
147
|
-
*/
|
|
148
|
-
showTargetAssetSelection?: boolean;
|
|
149
144
|
/** Function that returns a custom React component to render before other UIs in the select asset screen */
|
|
150
145
|
customTopComponent?: () => ReactNode;
|
|
151
146
|
};
|
|
@@ -59,7 +59,14 @@ export declare const flagConfig: {
|
|
|
59
59
|
readonly if_any: [{
|
|
60
60
|
readonly key: "apiKey";
|
|
61
61
|
readonly type: "isAnyOf";
|
|
62
|
-
readonly values: ["Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6"
|
|
62
|
+
readonly values: ["Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6"];
|
|
63
|
+
}];
|
|
64
|
+
readonly value: string;
|
|
65
|
+
}, {
|
|
66
|
+
readonly if_any: [{
|
|
67
|
+
readonly key: "apiKey";
|
|
68
|
+
readonly type: "isAnyOf";
|
|
69
|
+
readonly values: ["i6e1I8cfX625TTwRJlD2DshKyAoaUtO8aeoaR4i2"];
|
|
63
70
|
}];
|
|
64
71
|
readonly value: string;
|
|
65
72
|
}, {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
bifrostWallet
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-MAPXJUOO.js";
|
|
4
|
+
} from "../chunk-CT3QPTAU.js";
|
|
6
5
|
import "../chunk-BAVE62IL.js";
|
|
6
|
+
import "../chunk-MAPXJUOO.js";
|
|
7
7
|
import "../chunk-KV4HGYM3.js";
|
|
8
8
|
export {
|
|
9
9
|
bifrostWallet
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
bitgetWallet
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-MAPXJUOO.js";
|
|
4
|
+
} from "../chunk-C4RP2DNH.js";
|
|
6
5
|
import "../chunk-BAVE62IL.js";
|
|
6
|
+
import "../chunk-MAPXJUOO.js";
|
|
7
7
|
import "../chunk-KV4HGYM3.js";
|
|
8
8
|
export {
|
|
9
9
|
bitgetWallet
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
bybitWallet
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-MAPXJUOO.js";
|
|
4
|
+
} from "../chunk-I7K6LUZR.js";
|
|
6
5
|
import "../chunk-BAVE62IL.js";
|
|
6
|
+
import "../chunk-MAPXJUOO.js";
|
|
7
7
|
import "../chunk-KV4HGYM3.js";
|
|
8
8
|
export {
|
|
9
9
|
bybitWallet
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
coin98Wallet
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-MAPXJUOO.js";
|
|
4
|
+
} from "../chunk-3Y2GG3PM.js";
|
|
6
5
|
import "../chunk-BAVE62IL.js";
|
|
6
|
+
import "../chunk-MAPXJUOO.js";
|
|
7
7
|
import "../chunk-KV4HGYM3.js";
|
|
8
8
|
export {
|
|
9
9
|
coin98Wallet
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
frontierWallet
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-MAPXJUOO.js";
|
|
4
|
+
} from "../chunk-FDVJHNLL.js";
|
|
6
5
|
import "../chunk-BAVE62IL.js";
|
|
6
|
+
import "../chunk-MAPXJUOO.js";
|
|
7
7
|
import "../chunk-KV4HGYM3.js";
|
|
8
8
|
export {
|
|
9
9
|
frontierWallet
|
|
@@ -1,46 +1,43 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
zerionWallet
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-UPUDLUBT.js";
|
|
5
5
|
import {
|
|
6
|
-
|
|
7
|
-
} from "./chunk-
|
|
6
|
+
kresusWallet
|
|
7
|
+
} from "./chunk-G4V5B6YC.js";
|
|
8
8
|
import {
|
|
9
9
|
talismanWallet
|
|
10
10
|
} from "./chunk-6MFOL6EB.js";
|
|
11
11
|
import {
|
|
12
12
|
tokenPocketWallet
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-NEK7T3IC.js";
|
|
14
14
|
import {
|
|
15
15
|
tokenaryWallet
|
|
16
16
|
} from "./chunk-34LO6Q7A.js";
|
|
17
17
|
import {
|
|
18
18
|
trustWallet
|
|
19
|
-
} from "./chunk-
|
|
20
|
-
import {
|
|
21
|
-
subWallet
|
|
22
|
-
} from "./chunk-XBLHZICW.js";
|
|
19
|
+
} from "./chunk-ZMRIQOR5.js";
|
|
23
20
|
import {
|
|
24
21
|
uniswapWallet
|
|
25
22
|
} from "./chunk-NHLG5PVD.js";
|
|
26
23
|
import {
|
|
27
24
|
walletConnectWallet
|
|
28
25
|
} from "./chunk-J34FG3W4.js";
|
|
26
|
+
import {
|
|
27
|
+
xdefiWallet
|
|
28
|
+
} from "./chunk-O7RSASRH.js";
|
|
29
29
|
import {
|
|
30
30
|
zealWallet
|
|
31
31
|
} from "./chunk-HE2LMIPD.js";
|
|
32
|
-
import {
|
|
33
|
-
rabbyWallet
|
|
34
|
-
} from "./chunk-WFNPWKU3.js";
|
|
35
32
|
import {
|
|
36
33
|
rainbowWallet
|
|
37
|
-
} from "./chunk-
|
|
34
|
+
} from "./chunk-UVYZSGIX.js";
|
|
38
35
|
import {
|
|
39
36
|
ramperWallet
|
|
40
37
|
} from "./chunk-R4S234FL.js";
|
|
41
38
|
import {
|
|
42
39
|
roninWallet
|
|
43
|
-
} from "./chunk-
|
|
40
|
+
} from "./chunk-RLLTYOWT.js";
|
|
44
41
|
import {
|
|
45
42
|
safeWallet
|
|
46
43
|
} from "./chunk-YKVWTGU7.js";
|
|
@@ -49,91 +46,94 @@ import {
|
|
|
49
46
|
} from "./chunk-4R4AARTG.js";
|
|
50
47
|
import {
|
|
51
48
|
safepalWallet
|
|
52
|
-
} from "./chunk-
|
|
49
|
+
} from "./chunk-CBI3SGOC.js";
|
|
50
|
+
import {
|
|
51
|
+
subWallet
|
|
52
|
+
} from "./chunk-N3UJMC3V.js";
|
|
53
53
|
import {
|
|
54
54
|
tahoWallet
|
|
55
55
|
} from "./chunk-4BMUFNMT.js";
|
|
56
56
|
import {
|
|
57
57
|
mewWallet
|
|
58
58
|
} from "./chunk-HKVDCVCG.js";
|
|
59
|
-
import {
|
|
60
|
-
metaMaskWallet
|
|
61
|
-
} from "./chunk-HETS3KKI.js";
|
|
62
59
|
import {
|
|
63
60
|
oktoWallet
|
|
64
61
|
} from "./chunk-BVX22N7L.js";
|
|
65
62
|
import {
|
|
66
63
|
okxWallet
|
|
67
|
-
} from "./chunk-
|
|
64
|
+
} from "./chunk-COX3VEDR.js";
|
|
65
|
+
import {
|
|
66
|
+
omniWallet
|
|
67
|
+
} from "./chunk-INNF7G5X.js";
|
|
68
68
|
import {
|
|
69
69
|
oneInchWallet
|
|
70
70
|
} from "./chunk-RVWLP4IM.js";
|
|
71
71
|
import {
|
|
72
72
|
oneKeyWallet
|
|
73
73
|
} from "./chunk-HE5J5T7X.js";
|
|
74
|
-
import {
|
|
75
|
-
omniWallet
|
|
76
|
-
} from "./chunk-INNF7G5X.js";
|
|
77
74
|
import {
|
|
78
75
|
phantomWallet
|
|
79
76
|
} from "./chunk-XMNVOYSJ.js";
|
|
80
77
|
import {
|
|
81
|
-
|
|
82
|
-
} from "./chunk-
|
|
78
|
+
rabbyWallet
|
|
79
|
+
} from "./chunk-WFNPWKU3.js";
|
|
80
|
+
import {
|
|
81
|
+
dawnWallet
|
|
82
|
+
} from "./chunk-TFVCCI2D.js";
|
|
83
|
+
import {
|
|
84
|
+
frontierWallet
|
|
85
|
+
} from "./chunk-FDVJHNLL.js";
|
|
83
86
|
import {
|
|
84
87
|
frameWallet
|
|
85
88
|
} from "./chunk-WDTNOIMF.js";
|
|
86
89
|
import {
|
|
87
|
-
|
|
88
|
-
} from "./chunk-
|
|
90
|
+
gateWallet
|
|
91
|
+
} from "./chunk-DWMUM4F6.js";
|
|
89
92
|
import {
|
|
90
93
|
imTokenWallet
|
|
91
94
|
} from "./chunk-IUVO4IN3.js";
|
|
92
|
-
import {
|
|
93
|
-
gateWallet
|
|
94
|
-
} from "./chunk-7OARWILZ.js";
|
|
95
95
|
import {
|
|
96
96
|
injectedWallet
|
|
97
97
|
} from "./chunk-W6MXINYY.js";
|
|
98
|
-
import {
|
|
99
|
-
kresusWallet
|
|
100
|
-
} from "./chunk-G4V5B6YC.js";
|
|
101
98
|
import {
|
|
102
99
|
ledgerWallet
|
|
103
100
|
} from "./chunk-WKCCLGHJ.js";
|
|
104
101
|
import {
|
|
105
|
-
|
|
106
|
-
} from "./chunk-
|
|
107
|
-
import {
|
|
108
|
-
bloomWallet
|
|
109
|
-
} from "./chunk-UB2SSFH7.js";
|
|
102
|
+
metaMaskWallet
|
|
103
|
+
} from "./chunk-3YCR2ZB4.js";
|
|
110
104
|
import {
|
|
111
105
|
coin98Wallet
|
|
112
|
-
} from "./chunk-
|
|
106
|
+
} from "./chunk-3Y2GG3PM.js";
|
|
113
107
|
import {
|
|
114
|
-
|
|
115
|
-
} from "./chunk-
|
|
116
|
-
import {
|
|
117
|
-
dawnWallet
|
|
118
|
-
} from "./chunk-TFVCCI2D.js";
|
|
119
|
-
import {
|
|
120
|
-
desigWallet
|
|
121
|
-
} from "./chunk-JYVLYSH3.js";
|
|
108
|
+
clvWallet
|
|
109
|
+
} from "./chunk-CMLFDRCP.js";
|
|
122
110
|
import {
|
|
123
111
|
coinbaseWallet
|
|
124
112
|
} from "./chunk-RZXMOPIV.js";
|
|
113
|
+
import {
|
|
114
|
+
braveWallet
|
|
115
|
+
} from "./chunk-ZRNBHLUU.js";
|
|
116
|
+
import {
|
|
117
|
+
coreWallet
|
|
118
|
+
} from "./chunk-TIT5F32X.js";
|
|
125
119
|
import {
|
|
126
120
|
enkryptWallet
|
|
127
121
|
} from "./chunk-W6TXXLCO.js";
|
|
128
122
|
import {
|
|
129
|
-
|
|
130
|
-
} from "./chunk-
|
|
123
|
+
desigWallet
|
|
124
|
+
} from "./chunk-JYVLYSH3.js";
|
|
125
|
+
import {
|
|
126
|
+
foxWallet
|
|
127
|
+
} from "./chunk-UVMMPRDM.js";
|
|
131
128
|
import {
|
|
132
129
|
argentWallet
|
|
133
130
|
} from "./chunk-VUOAIUZE.js";
|
|
134
131
|
import {
|
|
135
132
|
bitgetWallet
|
|
136
|
-
} from "./chunk-
|
|
133
|
+
} from "./chunk-C4RP2DNH.js";
|
|
134
|
+
import {
|
|
135
|
+
bifrostWallet
|
|
136
|
+
} from "./chunk-CT3QPTAU.js";
|
|
137
137
|
import {
|
|
138
138
|
bitskiWallet
|
|
139
139
|
} from "./chunk-A7FNGC4A.js";
|
|
@@ -141,13 +141,13 @@ import {
|
|
|
141
141
|
bitverseWallet
|
|
142
142
|
} from "./chunk-GROWFRGP.js";
|
|
143
143
|
import {
|
|
144
|
-
|
|
145
|
-
} from "./chunk-
|
|
144
|
+
bloomWallet
|
|
145
|
+
} from "./chunk-UB2SSFH7.js";
|
|
146
146
|
import {
|
|
147
147
|
bybitWallet
|
|
148
|
-
} from "./chunk-
|
|
149
|
-
import "./chunk-MAPXJUOO.js";
|
|
148
|
+
} from "./chunk-I7K6LUZR.js";
|
|
150
149
|
import "./chunk-BAVE62IL.js";
|
|
150
|
+
import "./chunk-MAPXJUOO.js";
|
|
151
151
|
import "./chunk-KV4HGYM3.js";
|
|
152
152
|
export {
|
|
153
153
|
argentWallet,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
metaMaskWallet
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-MAPXJUOO.js";
|
|
4
|
+
} from "../chunk-3YCR2ZB4.js";
|
|
6
5
|
import "../chunk-BAVE62IL.js";
|
|
6
|
+
import "../chunk-MAPXJUOO.js";
|
|
7
7
|
import "../chunk-KV4HGYM3.js";
|
|
8
8
|
export {
|
|
9
9
|
metaMaskWallet
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
rainbowWallet
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-MAPXJUOO.js";
|
|
4
|
+
} from "../chunk-UVYZSGIX.js";
|
|
6
5
|
import "../chunk-BAVE62IL.js";
|
|
6
|
+
import "../chunk-MAPXJUOO.js";
|
|
7
7
|
import "../chunk-KV4HGYM3.js";
|
|
8
8
|
export {
|
|
9
9
|
rainbowWallet
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
roninWallet
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-MAPXJUOO.js";
|
|
4
|
+
} from "../chunk-RLLTYOWT.js";
|
|
6
5
|
import "../chunk-BAVE62IL.js";
|
|
6
|
+
import "../chunk-MAPXJUOO.js";
|
|
7
7
|
import "../chunk-KV4HGYM3.js";
|
|
8
8
|
export {
|
|
9
9
|
roninWallet
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
safepalWallet
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-MAPXJUOO.js";
|
|
4
|
+
} from "../chunk-CBI3SGOC.js";
|
|
6
5
|
import "../chunk-BAVE62IL.js";
|
|
6
|
+
import "../chunk-MAPXJUOO.js";
|
|
7
7
|
import "../chunk-KV4HGYM3.js";
|
|
8
8
|
export {
|
|
9
9
|
safepalWallet
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
tokenPocketWallet
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-MAPXJUOO.js";
|
|
4
|
+
} from "../chunk-NEK7T3IC.js";
|
|
6
5
|
import "../chunk-BAVE62IL.js";
|
|
6
|
+
import "../chunk-MAPXJUOO.js";
|
|
7
7
|
import "../chunk-KV4HGYM3.js";
|
|
8
8
|
export {
|
|
9
9
|
tokenPocketWallet
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
trustWallet
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-MAPXJUOO.js";
|
|
4
|
+
} from "../chunk-ZMRIQOR5.js";
|
|
6
5
|
import "../chunk-BAVE62IL.js";
|
|
6
|
+
import "../chunk-MAPXJUOO.js";
|
|
7
7
|
import "../chunk-KV4HGYM3.js";
|
|
8
8
|
export {
|
|
9
9
|
trustWallet
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
zerionWallet
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-MAPXJUOO.js";
|
|
4
|
+
} from "../chunk-UPUDLUBT.js";
|
|
6
5
|
import "../chunk-BAVE62IL.js";
|
|
6
|
+
import "../chunk-MAPXJUOO.js";
|
|
7
7
|
import "../chunk-KV4HGYM3.js";
|
|
8
8
|
export {
|
|
9
9
|
zerionWallet
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@funkit/connect",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.3",
|
|
4
4
|
"description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -104,8 +104,8 @@
|
|
|
104
104
|
"uuid": "^9.0.1",
|
|
105
105
|
"@funkit/api-base": "2.3.2",
|
|
106
106
|
"@funkit/chains": "1.1.0",
|
|
107
|
-
"@funkit/
|
|
108
|
-
"@funkit/
|
|
107
|
+
"@funkit/fun-relay": "2.6.3",
|
|
108
|
+
"@funkit/utils": "1.2.3"
|
|
109
109
|
},
|
|
110
110
|
"repository": {
|
|
111
111
|
"type": "git",
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
getWalletConnectConnector
|
|
4
|
-
} from "./chunk-MAPXJUOO.js";
|
|
5
2
|
import {
|
|
6
3
|
getInjectedConnector,
|
|
7
4
|
hasInjectedProvider
|
|
8
5
|
} from "./chunk-BAVE62IL.js";
|
|
6
|
+
import {
|
|
7
|
+
getWalletConnectConnector
|
|
8
|
+
} from "./chunk-MAPXJUOO.js";
|
|
9
9
|
|
|
10
10
|
// src/wallets/walletConnectors/coin98Wallet/coin98Wallet.ts
|
|
11
11
|
var coin98Wallet = ({
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
getWalletConnectConnector
|
|
4
|
-
} from "./chunk-MAPXJUOO.js";
|
|
5
2
|
import {
|
|
6
3
|
getInjectedConnector,
|
|
7
4
|
hasInjectedProvider
|
|
8
5
|
} from "./chunk-BAVE62IL.js";
|
|
6
|
+
import {
|
|
7
|
+
getWalletConnectConnector
|
|
8
|
+
} from "./chunk-MAPXJUOO.js";
|
|
9
9
|
|
|
10
10
|
// src/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.ts
|
|
11
11
|
import { isAndroid, isIOS } from "@funkit/utils";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
getWalletConnectConnector
|
|
4
|
-
} from "./chunk-MAPXJUOO.js";
|
|
5
2
|
import {
|
|
6
3
|
getInjectedConnector,
|
|
7
4
|
hasInjectedProvider
|
|
8
5
|
} from "./chunk-BAVE62IL.js";
|
|
6
|
+
import {
|
|
7
|
+
getWalletConnectConnector
|
|
8
|
+
} from "./chunk-MAPXJUOO.js";
|
|
9
9
|
|
|
10
10
|
// src/wallets/walletConnectors/bitgetWallet/bitgetWallet.ts
|
|
11
11
|
import { isAndroid } from "@funkit/utils";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
getWalletConnectConnector
|
|
4
|
-
} from "./chunk-MAPXJUOO.js";
|
|
5
2
|
import {
|
|
6
3
|
getInjectedConnector,
|
|
7
4
|
hasInjectedProvider
|
|
8
5
|
} from "./chunk-BAVE62IL.js";
|
|
6
|
+
import {
|
|
7
|
+
getWalletConnectConnector
|
|
8
|
+
} from "./chunk-MAPXJUOO.js";
|
|
9
9
|
|
|
10
10
|
// src/wallets/walletConnectors/safepalWallet/safepalWallet.ts
|
|
11
11
|
var safepalWallet = ({
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
getWalletConnectConnector
|
|
4
|
-
} from "./chunk-MAPXJUOO.js";
|
|
5
2
|
import {
|
|
6
3
|
getInjectedConnector,
|
|
7
4
|
hasInjectedProvider
|
|
8
5
|
} from "./chunk-BAVE62IL.js";
|
|
6
|
+
import {
|
|
7
|
+
getWalletConnectConnector
|
|
8
|
+
} from "./chunk-MAPXJUOO.js";
|
|
9
9
|
|
|
10
10
|
// src/wallets/walletConnectors/clvWallet/clvWallet.ts
|
|
11
11
|
var clvWallet = ({
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
getWalletConnectConnector
|
|
4
|
-
} from "./chunk-MAPXJUOO.js";
|
|
5
2
|
import {
|
|
6
3
|
getInjectedConnector,
|
|
7
4
|
hasInjectedProvider
|
|
8
5
|
} from "./chunk-BAVE62IL.js";
|
|
6
|
+
import {
|
|
7
|
+
getWalletConnectConnector
|
|
8
|
+
} from "./chunk-MAPXJUOO.js";
|
|
9
9
|
|
|
10
10
|
// src/wallets/walletConnectors/okxWallet/okxWallet.ts
|
|
11
11
|
import { isAndroid } from "@funkit/utils";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
getWalletConnectConnector
|
|
4
|
-
} from "./chunk-MAPXJUOO.js";
|
|
5
2
|
import {
|
|
6
3
|
getInjectedConnector,
|
|
7
4
|
hasInjectedProvider
|
|
8
5
|
} from "./chunk-BAVE62IL.js";
|
|
6
|
+
import {
|
|
7
|
+
getWalletConnectConnector
|
|
8
|
+
} from "./chunk-MAPXJUOO.js";
|
|
9
9
|
|
|
10
10
|
// src/wallets/walletConnectors/bifrostWallet/bifrostWallet.ts
|
|
11
11
|
import { isAndroid } from "@funkit/utils";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
getWalletConnectConnector
|
|
4
|
-
} from "./chunk-MAPXJUOO.js";
|
|
5
2
|
import {
|
|
6
3
|
getInjectedConnector,
|
|
7
4
|
hasInjectedProvider
|
|
8
5
|
} from "./chunk-BAVE62IL.js";
|
|
6
|
+
import {
|
|
7
|
+
getWalletConnectConnector
|
|
8
|
+
} from "./chunk-MAPXJUOO.js";
|
|
9
9
|
|
|
10
10
|
// src/wallets/walletConnectors/gateWallet/gateWallet.ts
|
|
11
11
|
import { isAndroid } from "@funkit/utils";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
getWalletConnectConnector
|
|
4
|
-
} from "./chunk-MAPXJUOO.js";
|
|
5
2
|
import {
|
|
6
3
|
getInjectedConnector,
|
|
7
4
|
hasInjectedProvider
|
|
8
5
|
} from "./chunk-BAVE62IL.js";
|
|
6
|
+
import {
|
|
7
|
+
getWalletConnectConnector
|
|
8
|
+
} from "./chunk-MAPXJUOO.js";
|
|
9
9
|
|
|
10
10
|
// src/wallets/walletConnectors/frontierWallet/frontierWallet.ts
|
|
11
11
|
import { isAndroid } from "@funkit/utils";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
getWalletConnectConnector
|
|
4
|
-
} from "./chunk-MAPXJUOO.js";
|
|
5
2
|
import {
|
|
6
3
|
getInjectedConnector,
|
|
7
4
|
hasInjectedProvider
|
|
8
5
|
} from "./chunk-BAVE62IL.js";
|
|
6
|
+
import {
|
|
7
|
+
getWalletConnectConnector
|
|
8
|
+
} from "./chunk-MAPXJUOO.js";
|
|
9
9
|
|
|
10
10
|
// src/wallets/walletConnectors/bybitWallet/bybitWallet.ts
|
|
11
11
|
var bybitWallet = ({
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
getWalletConnectConnector
|
|
4
|
-
} from "./chunk-MAPXJUOO.js";
|
|
5
2
|
import {
|
|
6
3
|
getInjectedConnector,
|
|
7
4
|
hasInjectedProvider
|
|
8
5
|
} from "./chunk-BAVE62IL.js";
|
|
6
|
+
import {
|
|
7
|
+
getWalletConnectConnector
|
|
8
|
+
} from "./chunk-MAPXJUOO.js";
|
|
9
9
|
|
|
10
10
|
// src/wallets/walletConnectors/subWallet/subWallet.ts
|
|
11
11
|
var subWallet = ({
|