@funkit/connect 1.0.9 → 1.0.11

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.
Files changed (33) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist/{chunk-SWTU7PBZ.js → chunk-2NNNYGQA.js} +1 -1
  3. package/dist/{chunk-MQTK22MG.js → chunk-JLKS6NET.js} +1 -1
  4. package/dist/{chunk-VP4CAK4A.js → chunk-UK5FXGK3.js} +2 -1
  5. package/dist/components/FunPayments/FunPaymentMoonpayType.d.ts +2 -1
  6. package/dist/components/FunPayments/FunPaymentSetup.d.ts +2 -1
  7. package/dist/components/FunTransactionSummary/FunTransactionSummary.d.ts +1 -2
  8. package/dist/components/FunkitProvider/FunkitCheckoutContext.d.ts +8 -3
  9. package/dist/consts/checkout.d.ts +18 -0
  10. package/dist/hooks/useFunListeners.d.ts +1 -0
  11. package/dist/index.js +129 -58
  12. package/dist/themes/baseTheme.d.ts +2 -1
  13. package/dist/themes/baseTheme.js +1 -1
  14. package/dist/themes/darkTheme.js +2 -2
  15. package/dist/themes/lightTheme.js +2 -2
  16. package/dist/wallets/walletConnectors/chunk-AJKRYTH2.js +92 -0
  17. package/dist/wallets/walletConnectors/chunk-CVGDYGHA.js +60 -0
  18. package/dist/wallets/walletConnectors/chunk-OKZSWAPF.js +60 -0
  19. package/dist/wallets/walletConnectors/chunk-OYKWP3N3.js +60 -0
  20. package/dist/wallets/walletConnectors/chunk-OYW4TIA3.js +81 -0
  21. package/dist/wallets/walletConnectors/funkitConnectWallet/funkitConnectWallet.js +2 -1
  22. package/dist/wallets/walletConnectors/index.js +56 -56
  23. package/package.json +1 -1
  24. package/dist/wallets/walletConnectors/{chunk-NGXIHASN.js → chunk-2LY3WMXK.js} +3 -3
  25. package/dist/wallets/walletConnectors/{chunk-3WZRNEZH.js → chunk-2XQJ2NQ4.js} +3 -3
  26. package/dist/wallets/walletConnectors/{chunk-O5NKWWEG.js → chunk-DNOEX5NF.js} +3 -3
  27. package/dist/wallets/walletConnectors/{chunk-V45EXW7A.js → chunk-HXYRONSJ.js} +3 -3
  28. package/dist/wallets/walletConnectors/{chunk-7CQPABJG.js → chunk-MCTPLICE.js} +3 -3
  29. package/dist/wallets/walletConnectors/{chunk-6LTLPR2Q.js → chunk-MU35GKP3.js} +3 -3
  30. package/dist/wallets/walletConnectors/{chunk-2UXZAUWT.js → chunk-PPFSHJTA.js} +3 -3
  31. package/dist/wallets/walletConnectors/{chunk-ZNXQ4V6G.js → chunk-RYO26XSK.js} +3 -3
  32. package/dist/wallets/walletConnectors/{chunk-AM4SSLAP.js → chunk-SPLW3CCH.js} +3 -3
  33. package/dist/wallets/walletConnectors/{chunk-Z2DGDHHZ.js → chunk-ZFXXHGAS.js} +3 -3
@@ -0,0 +1,92 @@
1
+ "use client";
2
+ import {
3
+ getWalletConnectConnector
4
+ } from "./chunk-ZDU3JFGR.js";
5
+ import {
6
+ isAndroid
7
+ } from "./chunk-ZOLACFTK.js";
8
+
9
+ // src/wallets/walletConnectors/ledgerWallet/ledgerWallet.ts
10
+ var ledgerWallet = ({
11
+ projectId,
12
+ walletConnectParameters
13
+ }) => ({
14
+ id: "ledger",
15
+ iconBackground: "#000",
16
+ iconAccent: "#000",
17
+ name: "Ledger",
18
+ iconUrl: async () => (await import("./ledgerWallet-DIS4VM6H.js")).default,
19
+ downloadUrls: {
20
+ android: "https://play.google.com/store/apps/details?id=com.ledger.live",
21
+ ios: "https://apps.apple.com/us/app/ledger-live-web3-wallet/id1361671700",
22
+ mobile: "https://www.ledger.com/ledger-live",
23
+ qrCode: "https://r354.adj.st/?adj_t=t2esmlk",
24
+ windows: "https://www.ledger.com/ledger-live/download",
25
+ macos: "https://www.ledger.com/ledger-live/download",
26
+ linux: "https://www.ledger.com/ledger-live/download",
27
+ desktop: "https://www.ledger.com/ledger-live"
28
+ },
29
+ mobile: {
30
+ getUri: (uri) => {
31
+ return isAndroid() ? uri : `ledgerlive://wc?uri=${encodeURIComponent(uri)}`;
32
+ }
33
+ },
34
+ desktop: {
35
+ getUri: (uri) => {
36
+ return `ledgerlive://wc?uri=${encodeURIComponent(uri)}`;
37
+ },
38
+ instructions: {
39
+ learnMoreUrl: "https://support.ledger.com/hc/en-us/articles/4404389503889-Getting-started-with-Ledger-Live",
40
+ steps: [
41
+ {
42
+ description: "wallet_connectors.ledger.desktop.step1.description",
43
+ step: "install",
44
+ title: "wallet_connectors.ledger.desktop.step1.title"
45
+ },
46
+ {
47
+ description: "wallet_connectors.ledger.desktop.step2.description",
48
+ step: "create",
49
+ title: "wallet_connectors.ledger.desktop.step2.title"
50
+ },
51
+ {
52
+ description: "wallet_connectors.ledger.desktop.step3.description",
53
+ step: "connect",
54
+ title: "wallet_connectors.ledger.desktop.step3.title"
55
+ }
56
+ ]
57
+ }
58
+ },
59
+ qrCode: {
60
+ getUri: (uri) => {
61
+ return `ledgerlive://wc?uri=${encodeURIComponent(uri)}`;
62
+ },
63
+ instructions: {
64
+ learnMoreUrl: "https://support.ledger.com/hc/en-us/articles/4404389503889-Getting-started-with-Ledger-Live",
65
+ steps: [
66
+ {
67
+ description: "wallet_connectors.ledger.qr_code.step1.description",
68
+ step: "install",
69
+ title: "wallet_connectors.ledger.qr_code.step1.title"
70
+ },
71
+ {
72
+ description: "wallet_connectors.ledger.qr_code.step2.description",
73
+ step: "create",
74
+ title: "wallet_connectors.ledger.qr_code.step2.title"
75
+ },
76
+ {
77
+ description: "wallet_connectors.ledger.qr_code.step3.description",
78
+ step: "scan",
79
+ title: "wallet_connectors.ledger.qr_code.step3.title"
80
+ }
81
+ ]
82
+ }
83
+ },
84
+ createConnector: getWalletConnectConnector({
85
+ projectId,
86
+ walletConnectParameters
87
+ })
88
+ });
89
+
90
+ export {
91
+ ledgerWallet
92
+ };
@@ -0,0 +1,60 @@
1
+ "use client";
2
+ import {
3
+ getWalletConnectConnector
4
+ } from "./chunk-ZDU3JFGR.js";
5
+ import {
6
+ isAndroid
7
+ } from "./chunk-ZOLACFTK.js";
8
+
9
+ // src/wallets/walletConnectors/argentWallet/argentWallet.ts
10
+ var argentWallet = ({
11
+ projectId,
12
+ walletConnectParameters
13
+ }) => ({
14
+ id: "argent",
15
+ name: "Argent",
16
+ iconUrl: async () => (await import("./argentWallet-5OEFC7BD.js")).default,
17
+ iconBackground: "#fff",
18
+ downloadUrls: {
19
+ android: "https://play.google.com/store/apps/details?id=im.argent.contractwalletclient",
20
+ ios: "https://apps.apple.com/us/app/argent/id1358741926",
21
+ mobile: "https://argent.xyz/download-argent",
22
+ qrCode: "https://argent.link/app"
23
+ },
24
+ mobile: {
25
+ getUri: (uri) => {
26
+ return isAndroid() ? uri : `argent://app/wc?uri=${encodeURIComponent(uri)}`;
27
+ }
28
+ },
29
+ qrCode: {
30
+ getUri: (uri) => uri,
31
+ instructions: {
32
+ learnMoreUrl: "https://argent.xyz/learn/what-is-a-crypto-wallet/",
33
+ steps: [
34
+ {
35
+ description: "wallet_connectors.argent.qr_code.step1.description",
36
+ step: "install",
37
+ title: "wallet_connectors.argent.qr_code.step1.title"
38
+ },
39
+ {
40
+ description: "wallet_connectors.argent.qr_code.step2.description",
41
+ step: "create",
42
+ title: "wallet_connectors.argent.qr_code.step2.title"
43
+ },
44
+ {
45
+ description: "wallet_connectors.argent.qr_code.step3.description",
46
+ step: "scan",
47
+ title: "wallet_connectors.argent.qr_code.step3.title"
48
+ }
49
+ ]
50
+ }
51
+ },
52
+ createConnector: getWalletConnectConnector({
53
+ projectId,
54
+ walletConnectParameters
55
+ })
56
+ });
57
+
58
+ export {
59
+ argentWallet
60
+ };
@@ -0,0 +1,60 @@
1
+ "use client";
2
+ import {
3
+ getWalletConnectConnector
4
+ } from "./chunk-ZDU3JFGR.js";
5
+ import {
6
+ isAndroid
7
+ } from "./chunk-ZOLACFTK.js";
8
+
9
+ // src/wallets/walletConnectors/oktoWallet/oktoWallet.ts
10
+ var oktoWallet = ({
11
+ projectId,
12
+ walletConnectParameters
13
+ }) => ({
14
+ id: "Okto",
15
+ name: "Okto",
16
+ iconUrl: async () => (await import("./oktoWallet-3LTNTBG3.js")).default,
17
+ iconBackground: "#fff",
18
+ downloadUrls: {
19
+ android: "https://play.google.com/store/apps/details?id=im.okto.contractwalletclient",
20
+ ios: "https://apps.apple.com/in/app/okto-wallet/id6450688229",
21
+ mobile: "https://okto.tech/",
22
+ qrCode: "https://okto.tech/"
23
+ },
24
+ mobile: {
25
+ getUri: (uri) => {
26
+ return isAndroid() ? uri : `okto://wc?uri=${encodeURIComponent(uri)}`;
27
+ }
28
+ },
29
+ qrCode: {
30
+ getUri: (uri) => uri,
31
+ instructions: {
32
+ learnMoreUrl: "https://okto.tech/",
33
+ steps: [
34
+ {
35
+ description: "wallet_connectors.okto.qr_code.step1.description",
36
+ step: "install",
37
+ title: "wallet_connectors.okto.qr_code.step1.title"
38
+ },
39
+ {
40
+ description: "wallet_connectors.okto.qr_code.step2.description",
41
+ step: "create",
42
+ title: "wallet_connectors.okto.qr_code.step2.title"
43
+ },
44
+ {
45
+ description: "wallet_connectors.okto.qr_code.step3.description",
46
+ step: "scan",
47
+ title: "wallet_connectors.okto.qr_code.step3.title"
48
+ }
49
+ ]
50
+ }
51
+ },
52
+ createConnector: getWalletConnectConnector({
53
+ projectId,
54
+ walletConnectParameters
55
+ })
56
+ });
57
+
58
+ export {
59
+ oktoWallet
60
+ };
@@ -0,0 +1,60 @@
1
+ "use client";
2
+ import {
3
+ getWalletConnectConnector
4
+ } from "./chunk-ZDU3JFGR.js";
5
+ import {
6
+ isAndroid
7
+ } from "./chunk-ZOLACFTK.js";
8
+
9
+ // src/wallets/walletConnectors/omniWallet/omniWallet.ts
10
+ var omniWallet = ({
11
+ projectId,
12
+ walletConnectParameters
13
+ }) => ({
14
+ id: "omni",
15
+ name: "Omni",
16
+ iconUrl: async () => (await import("./omniWallet-VF54LPLK.js")).default,
17
+ iconBackground: "#000",
18
+ downloadUrls: {
19
+ android: "https://play.google.com/store/apps/details?id=fi.steakwallet.app",
20
+ ios: "https://itunes.apple.com/us/app/id1569375204",
21
+ mobile: "https://omniwallet.app.link",
22
+ qrCode: "https://omniwallet.app.link"
23
+ },
24
+ mobile: {
25
+ getUri: (uri) => {
26
+ return isAndroid() ? uri : `omni://wc?uri=${encodeURIComponent(uri)}`;
27
+ }
28
+ },
29
+ qrCode: {
30
+ getUri: (uri) => uri,
31
+ instructions: {
32
+ learnMoreUrl: "https://omni.app/support",
33
+ steps: [
34
+ {
35
+ description: "wallet_connectors.omni.qr_code.step1.description",
36
+ step: "install",
37
+ title: "wallet_connectors.omni.qr_code.step1.title"
38
+ },
39
+ {
40
+ description: "wallet_connectors.omni.qr_code.step2.description",
41
+ step: "create",
42
+ title: "wallet_connectors.omni.qr_code.step2.title"
43
+ },
44
+ {
45
+ description: "wallet_connectors.omni.qr_code.step3.description",
46
+ step: "scan",
47
+ title: "wallet_connectors.omni.qr_code.step3.title"
48
+ }
49
+ ]
50
+ }
51
+ },
52
+ createConnector: getWalletConnectConnector({
53
+ projectId,
54
+ walletConnectParameters
55
+ })
56
+ });
57
+
58
+ export {
59
+ omniWallet
60
+ };
@@ -0,0 +1,81 @@
1
+ "use client";
2
+ import {
3
+ getWalletConnectConnector
4
+ } from "./chunk-ZDU3JFGR.js";
5
+ import {
6
+ isMobile
7
+ } from "./chunk-ZOLACFTK.js";
8
+
9
+ // src/wallets/walletConnectors/bloomWallet/bloomWallet.ts
10
+ var bloomWallet = ({
11
+ projectId,
12
+ walletConnectParameters
13
+ }) => ({
14
+ id: "bloomWallet",
15
+ name: "Bloom Wallet",
16
+ iconBackground: "#000",
17
+ iconAccent: "#000",
18
+ hidden: () => isMobile(),
19
+ iconUrl: async () => (await import("./bloomWallet-LYZWRHBK.js")).default,
20
+ downloadUrls: {
21
+ qrCode: "https://bloomwallet.io/",
22
+ windows: "https://bloomwallet.io/",
23
+ macos: "https://bloomwallet.io/",
24
+ linux: "https://bloomwallet.io/",
25
+ desktop: "https://bloomwallet.io/"
26
+ },
27
+ qrCode: {
28
+ getUri: (uri) => `bloom://wallet-connect/wc?uri=${encodeURIComponent(uri)}`,
29
+ instructions: {
30
+ learnMoreUrl: "https://bloomwallet.io/",
31
+ steps: [
32
+ {
33
+ description: "wallet_connectors.bloom.qr_code.step1.description",
34
+ step: "install",
35
+ title: "wallet_connectors.bloom.qr_code.step1.title"
36
+ },
37
+ {
38
+ description: "wallet_connectors.bloom.qr_code.step2.description",
39
+ step: "create",
40
+ title: "wallet_connectors.bloom.qr_code.step2.title"
41
+ },
42
+ {
43
+ description: "wallet_connectors.bloom.qr_code.step3.description",
44
+ step: "refresh",
45
+ title: "wallet_connectors.bloom.qr_code.step3.title"
46
+ }
47
+ ]
48
+ }
49
+ },
50
+ desktop: {
51
+ getUri: (uri) => `bloom://wallet-connect/wc?uri=${encodeURIComponent(uri)}`,
52
+ instructions: {
53
+ learnMoreUrl: "https://bloomwallet.io/",
54
+ steps: [
55
+ {
56
+ description: "wallet_connectors.bloom.desktop.step1.description",
57
+ step: "install",
58
+ title: "wallet_connectors.bloom.desktop.step1.title"
59
+ },
60
+ {
61
+ description: "wallet_connectors.bloom.desktop.step2.description",
62
+ step: "create",
63
+ title: "wallet_connectors.bloom.desktop.step2.title"
64
+ },
65
+ {
66
+ description: "wallet_connectors.bloom.desktop.step3.description",
67
+ step: "refresh",
68
+ title: "wallet_connectors.bloom.desktop.step3.title"
69
+ }
70
+ ]
71
+ }
72
+ },
73
+ createConnector: getWalletConnectConnector({
74
+ projectId,
75
+ walletConnectParameters
76
+ })
77
+ });
78
+
79
+ export {
80
+ bloomWallet
81
+ };
@@ -18,7 +18,8 @@ var TO_PROGRESS_CHECKOUT_STATES = [
18
18
  CheckoutState.TO_UNFUNDED,
19
19
  CheckoutState.TO_FUNDED,
20
20
  CheckoutState.TO_POOLED,
21
- CheckoutState.TO_READY
21
+ CheckoutState.TO_READY,
22
+ CheckoutState.PENDING_RECEIVAL
22
23
  ];
23
24
  var IN_PROGRESS_CHECKOUT_STATES = [
24
25
  ...TO_PROGRESS_CHECKOUT_STATES,
@@ -1,148 +1,148 @@
1
1
  "use client";
2
- import {
3
- oneInchWallet
4
- } from "./chunk-LCPIZUR3.js";
5
2
  import {
6
3
  zealWallet
7
4
  } from "./chunk-DPXMP5KS.js";
5
+ import {
6
+ zerionWallet
7
+ } from "./chunk-XNNLZXHE.js";
8
+ import {
9
+ xdefiWallet
10
+ } from "./chunk-L734HTUS.js";
8
11
  import {
9
12
  talismanWallet
10
13
  } from "./chunk-H273OTQA.js";
11
14
  import {
12
- desigWallet
13
- } from "./chunk-P4JLZ42R.js";
15
+ subWallet
16
+ } from "./chunk-2GAW2UBU.js";
14
17
  import {
15
18
  tokenPocketWallet
16
19
  } from "./chunk-7KDOXASH.js";
17
- import {
18
- tokenaryWallet
19
- } from "./chunk-ENZLEAG2.js";
20
20
  import {
21
21
  trustWallet
22
22
  } from "./chunk-CRSPGVPF.js";
23
23
  import {
24
- uniswapWallet
25
- } from "./chunk-XRSY4JVH.js";
24
+ tokenaryWallet
25
+ } from "./chunk-ENZLEAG2.js";
26
26
  import {
27
27
  walletConnectWallet
28
28
  } from "./chunk-ASPRR7T3.js";
29
29
  import {
30
- xdefiWallet
31
- } from "./chunk-L734HTUS.js";
30
+ safepalWallet
31
+ } from "./chunk-RTW6PVQI.js";
32
32
  import {
33
- zerionWallet
34
- } from "./chunk-XNNLZXHE.js";
33
+ uniswapWallet
34
+ } from "./chunk-XRSY4JVH.js";
35
+ import {
36
+ kresusWallet
37
+ } from "./chunk-X6T3CICZ.js";
38
+ import {
39
+ omniWallet
40
+ } from "./chunk-SVN7OEQR.js";
35
41
  import {
36
42
  ramperWallet
37
43
  } from "./chunk-ZOL6ZMTJ.js";
44
+ import {
45
+ roninWallet
46
+ } from "./chunk-GW6EF4G2.js";
38
47
  import {
39
48
  safeWallet
40
49
  } from "./chunk-D3DCQ72J.js";
41
50
  import {
42
51
  safeheronWallet
43
52
  } from "./chunk-63NPZXAL.js";
44
- import {
45
- roninWallet
46
- } from "./chunk-GW6EF4G2.js";
47
- import {
48
- subWallet
49
- } from "./chunk-2GAW2UBU.js";
50
53
  import {
51
54
  tahoWallet
52
55
  } from "./chunk-H76YCX2M.js";
53
56
  import {
54
- safepalWallet
55
- } from "./chunk-RTW6PVQI.js";
56
- import {
57
- bitgetWallet
58
- } from "./chunk-2B3SPBRY.js";
57
+ oneKeyWallet
58
+ } from "./chunk-4WOV4ITL.js";
59
59
  import {
60
60
  mewWallet
61
61
  } from "./chunk-PWYTDYBE.js";
62
+ import {
63
+ oneInchWallet
64
+ } from "./chunk-LCPIZUR3.js";
62
65
  import {
63
66
  oktoWallet
64
67
  } from "./chunk-WKHTUEF5.js";
65
68
  import {
66
- omniWallet
67
- } from "./chunk-SVN7OEQR.js";
69
+ gateWallet
70
+ } from "./chunk-VSZ7PAHS.js";
68
71
  import {
69
72
  okxWallet
70
73
  } from "./chunk-DV3SI63E.js";
71
- import {
72
- oneKeyWallet
73
- } from "./chunk-4WOV4ITL.js";
74
- import {
75
- rabbyWallet
76
- } from "./chunk-XPEBP6XV.js";
77
74
  import {
78
75
  phantomWallet
79
76
  } from "./chunk-KGBLSE7L.js";
80
77
  import {
81
78
  rainbowWallet
82
79
  } from "./chunk-RCWZ4KBR.js";
80
+ import {
81
+ rabbyWallet
82
+ } from "./chunk-XPEBP6XV.js";
83
+ import {
84
+ foxWallet
85
+ } from "./chunk-OKWOB3DN.js";
83
86
  import {
84
87
  frontierWallet
85
88
  } from "./chunk-HD5VYJNC.js";
89
+ import {
90
+ frameWallet
91
+ } from "./chunk-XXFJVY73.js";
86
92
  import {
87
93
  imTokenWallet
88
94
  } from "./chunk-5MVV7OVS.js";
89
95
  import {
90
96
  injectedWallet
91
97
  } from "./chunk-KIHCNUU3.js";
92
- import {
93
- gateWallet
94
- } from "./chunk-VSZ7PAHS.js";
95
- import {
96
- kresusWallet
97
- } from "./chunk-X6T3CICZ.js";
98
98
  import {
99
99
  metaMaskWallet
100
100
  } from "./chunk-XRMAVTK7.js";
101
101
  import {
102
102
  ledgerWallet
103
103
  } from "./chunk-Y6VY6E3L.js";
104
+ import {
105
+ braveWallet
106
+ } from "./chunk-ABYQAXUX.js";
104
107
  import {
105
108
  clvWallet
106
109
  } from "./chunk-T6JVHES7.js";
107
- import {
108
- coin98Wallet
109
- } from "./chunk-Z2HIQYVN.js";
110
110
  import {
111
111
  coinbaseWallet
112
112
  } from "./chunk-XBUTWYE4.js";
113
113
  import {
114
114
  coreWallet
115
115
  } from "./chunk-IBWFKX7P.js";
116
+ import {
117
+ coin98Wallet
118
+ } from "./chunk-Z2HIQYVN.js";
116
119
  import {
117
120
  dawnWallet
118
121
  } from "./chunk-4XQDKOGF.js";
119
- import {
120
- foxWallet
121
- } from "./chunk-OKWOB3DN.js";
122
- import {
123
- frameWallet
124
- } from "./chunk-XXFJVY73.js";
125
122
  import {
126
123
  enkryptWallet
127
124
  } from "./chunk-FLY7F4XA.js";
125
+ import {
126
+ desigWallet
127
+ } from "./chunk-P4JLZ42R.js";
128
128
  import {
129
129
  bifrostWallet
130
130
  } from "./chunk-KGTZ6E7L.js";
131
- import {
132
- bitskiWallet
133
- } from "./chunk-C67TQJ6W.js";
134
- import {
135
- argentWallet
136
- } from "./chunk-NZ5G23JP.js";
137
131
  import {
138
132
  bitverseWallet
139
133
  } from "./chunk-NL4I7WOT.js";
140
134
  import {
141
- braveWallet
142
- } from "./chunk-ABYQAXUX.js";
135
+ bitgetWallet
136
+ } from "./chunk-2B3SPBRY.js";
143
137
  import {
144
138
  bloomWallet
145
139
  } from "./chunk-NTGZF5BY.js";
140
+ import {
141
+ bitskiWallet
142
+ } from "./chunk-C67TQJ6W.js";
143
+ import {
144
+ argentWallet
145
+ } from "./chunk-NZ5G23JP.js";
146
146
  import "./chunk-ZOLACFTK.js";
147
147
  import {
148
148
  bybitWallet
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funkit/connect",
3
- "version": "1.0.9",
3
+ "version": "1.0.11",
4
4
  "description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
5
5
  "files": [
6
6
  "dist",
@@ -1,10 +1,10 @@
1
1
  "use client";
2
- import {
3
- isAndroid
4
- } from "./chunk-ZOLACFTK.js";
5
2
  import {
6
3
  getWalletConnectConnector
7
4
  } from "./chunk-ZDU3JFGR.js";
5
+ import {
6
+ isAndroid
7
+ } from "./chunk-ZOLACFTK.js";
8
8
  import {
9
9
  getInjectedConnector,
10
10
  hasInjectedProvider
@@ -1,11 +1,11 @@
1
1
  "use client";
2
+ import {
3
+ getWalletConnectConnector
4
+ } from "./chunk-ZDU3JFGR.js";
2
5
  import {
3
6
  isAndroid,
4
7
  isIOS
5
8
  } from "./chunk-ZOLACFTK.js";
6
- import {
7
- getWalletConnectConnector
8
- } from "./chunk-ZDU3JFGR.js";
9
9
  import {
10
10
  getInjectedConnector,
11
11
  hasInjectedProvider
@@ -1,11 +1,11 @@
1
1
  "use client";
2
+ import {
3
+ getWalletConnectConnector
4
+ } from "./chunk-ZDU3JFGR.js";
2
5
  import {
3
6
  isAndroid,
4
7
  isIOS
5
8
  } from "./chunk-ZOLACFTK.js";
6
- import {
7
- getWalletConnectConnector
8
- } from "./chunk-ZDU3JFGR.js";
9
9
  import {
10
10
  getInjectedConnector,
11
11
  hasInjectedProvider
@@ -1,10 +1,10 @@
1
1
  "use client";
2
- import {
3
- isAndroid
4
- } from "./chunk-ZOLACFTK.js";
5
2
  import {
6
3
  getWalletConnectConnector
7
4
  } from "./chunk-ZDU3JFGR.js";
5
+ import {
6
+ isAndroid
7
+ } from "./chunk-ZOLACFTK.js";
8
8
  import {
9
9
  getInjectedConnector,
10
10
  hasInjectedProvider
@@ -1,10 +1,10 @@
1
1
  "use client";
2
- import {
3
- isIOS
4
- } from "./chunk-ZOLACFTK.js";
5
2
  import {
6
3
  getWalletConnectConnector
7
4
  } from "./chunk-ZDU3JFGR.js";
5
+ import {
6
+ isIOS
7
+ } from "./chunk-ZOLACFTK.js";
8
8
  import {
9
9
  getInjectedConnector,
10
10
  hasInjectedProvider
@@ -1,10 +1,10 @@
1
1
  "use client";
2
- import {
3
- isAndroid
4
- } from "./chunk-ZOLACFTK.js";
5
2
  import {
6
3
  getWalletConnectConnector
7
4
  } from "./chunk-ZDU3JFGR.js";
5
+ import {
6
+ isAndroid
7
+ } from "./chunk-ZOLACFTK.js";
8
8
  import {
9
9
  getInjectedConnector,
10
10
  hasInjectedProvider
@@ -1,10 +1,10 @@
1
1
  "use client";
2
- import {
3
- isMobile
4
- } from "./chunk-ZOLACFTK.js";
5
2
  import {
6
3
  getWalletConnectConnector
7
4
  } from "./chunk-ZDU3JFGR.js";
5
+ import {
6
+ isMobile
7
+ } from "./chunk-ZOLACFTK.js";
8
8
  import {
9
9
  getInjectedConnector,
10
10
  hasInjectedProvider