@funkit/connect 3.4.5 → 3.4.8

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 (35) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/dist/components/FunPayments/FunPaymentMethods.d.ts +16 -23
  3. package/dist/components/FunTransactionSummary/PaymentMethodSummary.d.ts +21 -0
  4. package/dist/consts/customers.d.ts +2 -0
  5. package/dist/domains/asset.d.ts +2 -0
  6. package/dist/domains/clientMetadata.d.ts +0 -1
  7. package/dist/domains/wallet.d.ts +18 -0
  8. package/dist/hooks/useMesh.d.ts +1 -2
  9. package/dist/index.js +4781 -4794
  10. package/dist/modals/CheckoutModal/LoadingAccount.d.ts +1 -1
  11. package/dist/modals/CheckoutModal/stepTransition.d.ts +2 -1
  12. package/dist/providers/FunkitCheckoutContext.d.ts +0 -4
  13. package/dist/utils/assets.d.ts +2 -19
  14. package/dist/utils/flags/config.d.ts +3 -0
  15. package/dist/wallets/walletConnectors/chunk-25VW5TZP.js +92 -0
  16. package/dist/wallets/walletConnectors/chunk-2EMZOYQI.js +101 -0
  17. package/dist/wallets/walletConnectors/chunk-57UUMOOZ.js +95 -0
  18. package/dist/wallets/walletConnectors/chunk-5K4DIMYR.js +95 -0
  19. package/dist/wallets/walletConnectors/chunk-AUVBWDIK.js +102 -0
  20. package/dist/wallets/walletConnectors/chunk-AXPQHNUI.js +71 -0
  21. package/dist/wallets/walletConnectors/chunk-B7FHT3CB.js +94 -0
  22. package/dist/wallets/walletConnectors/chunk-EFIENLEE.js +98 -0
  23. package/dist/wallets/walletConnectors/chunk-FLTQRYFS.js +27 -0
  24. package/dist/wallets/walletConnectors/chunk-HCKLWBE5.js +98 -0
  25. package/dist/wallets/walletConnectors/chunk-IR3YKU2N.js +103 -0
  26. package/dist/wallets/walletConnectors/chunk-J2BF4L2V.js +87 -0
  27. package/dist/wallets/walletConnectors/chunk-L7QI6PBN.js +108 -0
  28. package/dist/wallets/walletConnectors/chunk-OKUX4BC4.js +66 -0
  29. package/dist/wallets/walletConnectors/chunk-QP2BIVXD.js +73 -0
  30. package/dist/wallets/walletConnectors/chunk-UWZQZY4S.js +149 -0
  31. package/dist/wallets/walletConnectors/chunk-UZEMNN3Q.js +96 -0
  32. package/dist/wallets/walletConnectors/chunk-WAMHUVNP.js +96 -0
  33. package/dist/wallets/walletConnectors/chunk-ZCKNEKQQ.js +110 -0
  34. package/dist/wallets/walletConnectors/index.js +38 -38
  35. package/package.json +3 -3
@@ -11,7 +11,7 @@ export type LoadingAccountNext = ({
11
11
  usablePaymentMethod: PaymentMethod.BROKERAGE;
12
12
  paymentMethodInfo: PaymentMethodBrokerageInfo;
13
13
  } | {
14
- usablePaymentMethod: null;
14
+ usablePaymentMethod: null | PaymentMethod.TOKEN_TRANSFER;
15
15
  }) & {
16
16
  step: FunCheckoutStep.LOADING_ACCOUNT;
17
17
  };
@@ -61,11 +61,12 @@ export declare function useCheckoutModalTransition(checkoutItem: FunkitActiveChe
61
61
  onCloseWrapper: () => void;
62
62
  onNext: (payload: NextPayload) => void;
63
63
  setModalState: Dispatch<SetStateAction<CheckoutModalState>>;
64
+ hasHistoryEntry: boolean;
64
65
  };
65
66
  interface TitleConfig {
66
- hasBack: boolean;
67
67
  title: string;
68
68
  showFullHeight: boolean;
69
+ overrideBack?: boolean;
69
70
  }
70
71
  export declare function useTitleConfig(checkoutItem: FunkitActiveCheckoutItem, state: CheckoutModalState): TitleConfig;
71
72
  export {};
@@ -98,8 +98,6 @@ export interface FunkitActiveCheckoutItem {
98
98
  startTimestampMs: number;
99
99
  /** Whether the checkout draft dollar value is being fetched **/
100
100
  isDrafting: boolean;
101
- /** The draft dollar value estimate of the checkout. Not the actual quote. **/
102
- draftDollarValue: null | number;
103
101
  /** The final dollar value of the checkout. Derived from latestQuote. **/
104
102
  finalDollarValue: null | number;
105
103
  /** Whether the checkout quote is being fetched **/
@@ -134,7 +132,6 @@ interface FunkitCheckoutContextInterface {
134
132
  checkoutHistoryCurrentDepositAddrMap: CheckoutHistoryDepositAddrMap;
135
133
  isCheckoutHistoryInited: boolean;
136
134
  isRefreshingCheckoutHistory: boolean;
137
- reDraftSymbol: symbol;
138
135
  startCheckoutHistoryListener(recipientAddr?: Address | undefined): NodeJS.Timeout;
139
136
  stopCheckoutHistoryListener(cancelIntervalId?: NodeJS.Timeout): void;
140
137
  initNewCheckout(initSettings: useFunkitCheckoutPropsFinal): string;
@@ -150,7 +147,6 @@ interface FunkitCheckoutContextInterface {
150
147
  maxTargetAssetAmount: number | undefined;
151
148
  errorObject?: any;
152
149
  }>;
153
- getCheckoutDraftDollarValue(): Promise<number>;
154
150
  generateSignedBatchOperation(actionsParams: FunkitCheckoutActionParams[], assetChainId: string, bypassWalletInit: boolean, stepMessageSetter: (m: string) => void): Promise<null | Operation>;
155
151
  setCheckoutQuote(quote: FunkitActiveCheckoutItem): void;
156
152
  setCompletedTimestamp(timestampMs: number): void;
@@ -1,7 +1,9 @@
1
+ import { AssetHoldingsItem, KnownAssetHoldingsItem } from '~/domains/wallet';
1
2
  import { LoginType } from '~/providers/GeneralWalletProvider';
2
3
  import { PaymentMethod } from '../domains/paymentMethods';
3
4
  import { FunkitActiveCheckoutItem, FunkitCheckoutConfig } from '../providers/FunkitCheckoutContext';
4
5
  import { FlagValues } from '../providers/FunkitFlagsProvider';
6
+ export type { AssetHoldingsItem, AssetHoldingsMap, KnownAssetHoldingsItem, } from '~/domains/wallet';
5
7
  export declare const ASSETS_LOW_VALUE_THRESHOLD = 0.1;
6
8
  export declare const getNormalizedTokenBalance: (tokenBalance: bigint | number, decimals: number) => number;
7
9
  export declare const isAssetUsableToPayForCheckout: (flags: FlagValues, checkoutItem: FunkitActiveCheckoutItem, paymentMethod: PaymentMethod, assetChainId: string, assetTokenAddress: string, loginType: LoginType) => {
@@ -14,21 +16,6 @@ export declare const L2_COST_MARGIN_MULTIPLIER = 1.2;
14
16
  export declare const MESH_L1_FEES_ESTIMATE = 8;
15
17
  export declare const MESH_L2_FEES_ESTIMATE = 2;
16
18
  export declare const MESH_CUSTOM_CLIENT_FEE_PERCENT = 0.055;
17
- export interface AssetHoldingsItem {
18
- iconSrc: string | undefined;
19
- symbol: string;
20
- amount: number;
21
- tokenAddress: `0x${string}`;
22
- usdAmount: null | number;
23
- pickedChainId: string;
24
- chainSymbolKey: string;
25
- }
26
- export interface KnownAssetHoldingsItem extends AssetHoldingsItem {
27
- usdAmount: number;
28
- }
29
- export interface AssetHoldingsMap {
30
- [symbol: string]: AssetHoldingsItem;
31
- }
32
19
  /**
33
20
  * Estimating mesh fees
34
21
  */
@@ -46,9 +33,6 @@ type RecommendedAsset = {
46
33
  label: string | null;
47
34
  };
48
35
  export declare const getRecommendedAsset: (checkoutItem: FunkitActiveCheckoutItem, accountHoldings: KnownAssetHoldingsItem[]) => RecommendedAsset | null;
49
- /**
50
- * @returns formatted max usable USD balance from a given assets map */
51
- export declare const getTotalAssetBalance: (assets: AssetHoldingsMap) => string;
52
36
  /**
53
37
  *
54
38
  * @param {FunkitCheckoutConfig} checkoutConfig
@@ -56,4 +40,3 @@ export declare const getTotalAssetBalance: (assets: AssetHoldingsMap) => string;
56
40
  * @returns targetChain either from the provided config or arbitrum chainId for dydxChain since that's a non evm chain processed with evm tech
57
41
  */
58
42
  export declare const getMockedTargetChainId: ({ targetChain }: FunkitCheckoutConfig, mockedChains?: string[]) => string;
59
- export {};
@@ -19,6 +19,8 @@ export declare enum FlagKey {
19
19
  EnableTokenTransfer = "enable_token_transfer",
20
20
  /** Token Transfer payment method accepted source chain and assets */
21
21
  TokenTransferSourceChainsAndAssets = "token_transfer_source_chains_and_assets",
22
+ /** Token Transfer additional disclaimer text. */
23
+ TokenTransferAdditionalDisclaimer = "token_transfer_additional_disclaimer",
22
24
  /** Maximum usd amount that can be checked out. */
23
25
  MaxCheckoutUsd = "max_checkout_usd"
24
26
  }
@@ -30,5 +32,6 @@ export declare const flagConfig: {
30
32
  [FlagKey.ShowPoweredTagline]: BooleanFlagConfig;
31
33
  [FlagKey.EnableTokenTransfer]: BooleanFlagConfig;
32
34
  [FlagKey.TokenTransferSourceChainsAndAssets]: StringFlagConfig;
35
+ [FlagKey.TokenTransferAdditionalDisclaimer]: StringFlagConfig;
33
36
  [FlagKey.MaxCheckoutUsd]: StringFlagConfig;
34
37
  };
@@ -0,0 +1,92 @@
1
+ "use client";
2
+ import {
3
+ getInjectedConnector,
4
+ hasInjectedProvider
5
+ } from "./chunk-WRA2DVJ7.js";
6
+ import {
7
+ getWalletConnectConnector
8
+ } from "./chunk-23WIEY36.js";
9
+
10
+ // src/wallets/walletConnectors/roninWallet/roninWallet.ts
11
+ var roninWallet = ({
12
+ projectId,
13
+ walletConnectParameters
14
+ }) => {
15
+ const isRoninInjected = hasInjectedProvider({
16
+ namespace: "ronin.provider"
17
+ });
18
+ return {
19
+ id: "ronin",
20
+ name: "Ronin Wallet",
21
+ iconUrl: async () => (await import("./roninWallet-SAB5ESVK.js")).default,
22
+ iconBackground: "#ffffff",
23
+ rdns: "com.roninchain.wallet",
24
+ installed: isRoninInjected || void 0,
25
+ downloadUrls: {
26
+ android: "https://play.google.com/store/apps/details?id=com.skymavis.genesis",
27
+ ios: "https://apps.apple.com/us/app/ronin-wallet/id1592675001",
28
+ mobile: "https://wallet.roninchain.com",
29
+ chrome: "https://chrome.google.com/webstore/detail/ronin-wallet/fnjhmkhhmkbjkkabndcnnogagogbneec",
30
+ edge: "https://microsoftedge.microsoft.com/addons/detail/ronin-wallet/kjmoohlgokccodicjjfebfomlbljgfhk",
31
+ firefox: "https://addons.mozilla.org/firefox/addon/ronin-wallet",
32
+ browserExtension: "https://wallet.roninchain.com/",
33
+ qrCode: "https://wallet.roninchain.com/"
34
+ },
35
+ mobile: {
36
+ getUri: (uri) => `roninwallet://wc?uri=${encodeURIComponent(uri)}`
37
+ },
38
+ qrCode: {
39
+ getUri: (uri) => uri,
40
+ instructions: {
41
+ learnMoreUrl: "https://wallet.roninchain.com/",
42
+ steps: [
43
+ {
44
+ description: "wallet_connectors.ronin.qr_code.step1.description",
45
+ step: "install",
46
+ title: "wallet_connectors.ronin.qr_code.step1.title"
47
+ },
48
+ {
49
+ description: "wallet_connectors.ronin.qr_code.step2.description",
50
+ step: "create",
51
+ title: "wallet_connectors.ronin.qr_code.step2.title"
52
+ },
53
+ {
54
+ description: "wallet_connectors.ronin.qr_code.step3.description",
55
+ step: "scan",
56
+ title: "wallet_connectors.ronin.qr_code.step3.title"
57
+ }
58
+ ]
59
+ }
60
+ },
61
+ extension: {
62
+ instructions: {
63
+ learnMoreUrl: "https://wallet.roninchain.com/",
64
+ steps: [
65
+ {
66
+ description: "wallet_connectors.ronin.extension.step1.description",
67
+ step: "install",
68
+ title: "wallet_connectors.ronin.extension.step1.title"
69
+ },
70
+ {
71
+ description: "wallet_connectors.ronin.extension.step2.description",
72
+ step: "create",
73
+ title: "wallet_connectors.ronin.extension.step2.title"
74
+ },
75
+ {
76
+ description: "wallet_connectors.ronin.extension.step3.description",
77
+ step: "refresh",
78
+ title: "wallet_connectors.ronin.extension.step3.title"
79
+ }
80
+ ]
81
+ }
82
+ },
83
+ createConnector: isRoninInjected ? getInjectedConnector({ namespace: "ronin.provider" }) : getWalletConnectConnector({
84
+ projectId,
85
+ walletConnectParameters
86
+ })
87
+ };
88
+ };
89
+
90
+ export {
91
+ roninWallet
92
+ };
@@ -0,0 +1,101 @@
1
+ "use client";
2
+ import {
3
+ getInjectedConnector,
4
+ hasInjectedProvider
5
+ } from "./chunk-WRA2DVJ7.js";
6
+ import {
7
+ isAndroid
8
+ } from "./chunk-RETKWSKD.js";
9
+ import {
10
+ getWalletConnectConnector
11
+ } from "./chunk-23WIEY36.js";
12
+
13
+ // src/wallets/walletConnectors/bitgetWallet/bitgetWallet.ts
14
+ var bitgetWallet = ({
15
+ projectId,
16
+ walletConnectParameters
17
+ }) => {
18
+ const isBitKeepInjected = hasInjectedProvider({
19
+ namespace: "bitkeep.ethereum",
20
+ flag: "isBitKeep"
21
+ });
22
+ const shouldUseWalletConnect = !isBitKeepInjected;
23
+ return {
24
+ id: "bitget",
25
+ name: "Bitget Wallet",
26
+ rdns: "com.bitget.web3",
27
+ iconUrl: async () => (await import("./bitgetWallet-CLYTW54T.js")).default,
28
+ iconAccent: "#f6851a",
29
+ iconBackground: "#fff",
30
+ installed: !shouldUseWalletConnect ? isBitKeepInjected : void 0,
31
+ downloadUrls: {
32
+ android: "https://web3.bitget.com/en/wallet-download?type=0",
33
+ ios: "https://apps.apple.com/app/bitkeep/id1395301115",
34
+ mobile: "https://web3.bitget.com/en/wallet-download?type=2",
35
+ qrCode: "https://web3.bitget.com/en/wallet-download",
36
+ chrome: "https://chrome.google.com/webstore/detail/bitkeep-crypto-nft-wallet/jiidiaalihmmhddjgbnbgdfflelocpak",
37
+ browserExtension: "https://web3.bitget.com/en/wallet-download"
38
+ },
39
+ extension: {
40
+ instructions: {
41
+ learnMoreUrl: "https://web3.bitget.com/en/academy",
42
+ steps: [
43
+ {
44
+ description: "wallet_connectors.bitget.extension.step1.description",
45
+ step: "install",
46
+ title: "wallet_connectors.bitget.extension.step1.title"
47
+ },
48
+ {
49
+ description: "wallet_connectors.bitget.extension.step2.description",
50
+ step: "create",
51
+ title: "wallet_connectors.bitget.extension.step2.title"
52
+ },
53
+ {
54
+ description: "wallet_connectors.bitget.extension.step3.description",
55
+ step: "refresh",
56
+ title: "wallet_connectors.bitget.extension.step3.description"
57
+ }
58
+ ]
59
+ }
60
+ },
61
+ mobile: {
62
+ getUri: shouldUseWalletConnect ? (uri) => {
63
+ return isAndroid() ? uri : `bitkeep://wc?uri=${encodeURIComponent(uri)}`;
64
+ } : void 0
65
+ },
66
+ qrCode: shouldUseWalletConnect ? {
67
+ getUri: (uri) => uri,
68
+ instructions: {
69
+ learnMoreUrl: "https://web3.bitget.com/en/academy",
70
+ steps: [
71
+ {
72
+ description: "wallet_connectors.bitget.qr_code.step1.description",
73
+ step: "install",
74
+ title: "wallet_connectors.bitget.qr_code.step1.title"
75
+ },
76
+ {
77
+ description: "wallet_connectors.bitget.qr_code.step2.description",
78
+ step: "create",
79
+ title: "wallet_connectors.bitget.qr_code.step2.title"
80
+ },
81
+ {
82
+ description: "wallet_connectors.bitget.qr_code.step3.description",
83
+ step: "scan",
84
+ title: "wallet_connectors.bitget.qr_code.step3.title"
85
+ }
86
+ ]
87
+ }
88
+ } : void 0,
89
+ createConnector: shouldUseWalletConnect ? getWalletConnectConnector({
90
+ projectId,
91
+ walletConnectParameters
92
+ }) : getInjectedConnector({
93
+ namespace: "bitkeep.ethereum",
94
+ flag: "isBitKeep"
95
+ })
96
+ };
97
+ };
98
+
99
+ export {
100
+ bitgetWallet
101
+ };
@@ -0,0 +1,95 @@
1
+ "use client";
2
+ import {
3
+ getInjectedConnector,
4
+ hasInjectedProvider
5
+ } from "./chunk-WRA2DVJ7.js";
6
+ import {
7
+ getWalletConnectConnector
8
+ } from "./chunk-23WIEY36.js";
9
+
10
+ // src/wallets/walletConnectors/coreWallet/coreWallet.ts
11
+ var coreWallet = ({
12
+ projectId,
13
+ walletConnectParameters
14
+ }) => {
15
+ const isCoreInjected = hasInjectedProvider({
16
+ namespace: "avalanche",
17
+ flag: "isAvalanche"
18
+ });
19
+ const shouldUseWalletConnect = !isCoreInjected;
20
+ return {
21
+ id: "core",
22
+ name: "Core",
23
+ rdns: "app.core.extension",
24
+ iconUrl: async () => (await import("./coreWallet-52SXITOT.js")).default,
25
+ iconBackground: "#1A1A1C",
26
+ installed: !shouldUseWalletConnect ? isCoreInjected : void 0,
27
+ downloadUrls: {
28
+ android: "https://play.google.com/store/apps/details?id=com.avaxwallet",
29
+ ios: "https://apps.apple.com/us/app/core-wallet/id6443685999",
30
+ mobile: "https://core.app/?downloadCoreMobile=1",
31
+ qrCode: "https://core.app/?downloadCoreMobile=1",
32
+ chrome: "https://chrome.google.com/webstore/detail/core-crypto-wallet-nft-ex/agoakfejjabomempkjlepdflaleeobhb",
33
+ browserExtension: "https://extension.core.app/"
34
+ },
35
+ mobile: {
36
+ getUri: shouldUseWalletConnect ? (uri) => uri : void 0
37
+ },
38
+ qrCode: shouldUseWalletConnect ? {
39
+ getUri: (uri) => uri,
40
+ instructions: {
41
+ learnMoreUrl: "https://support.avax.network/en/articles/6115608-core-mobile-how-to-add-the-core-mobile-to-my-phone",
42
+ steps: [
43
+ {
44
+ description: "wallet_connectors.core.qr_code.step1.description",
45
+ step: "install",
46
+ title: "wallet_connectors.core.qr_code.step1.title"
47
+ },
48
+ {
49
+ description: "wallet_connectors.core.qr_code.step2.description",
50
+ step: "create",
51
+ title: "wallet_connectors.core.qr_code.step2.title"
52
+ },
53
+ {
54
+ description: "wallet_connectors.core.qr_code.step3.description",
55
+ step: "scan",
56
+ title: "wallet_connectors.core.qr_code.step3.title"
57
+ }
58
+ ]
59
+ }
60
+ } : void 0,
61
+ extension: {
62
+ instructions: {
63
+ learnMoreUrl: "https://extension.core.app/",
64
+ steps: [
65
+ {
66
+ description: "wallet_connectors.core.extension.step1.description",
67
+ step: "install",
68
+ title: "wallet_connectors.core.extension.step1.title"
69
+ },
70
+ {
71
+ description: "wallet_connectors.core.extension.step2.description",
72
+ step: "create",
73
+ title: "wallet_connectors.core.extension.step2.title"
74
+ },
75
+ {
76
+ description: "wallet_connectors.core.extension.step3.description",
77
+ step: "refresh",
78
+ title: "wallet_connectors.core.extension.step3.title"
79
+ }
80
+ ]
81
+ }
82
+ },
83
+ createConnector: shouldUseWalletConnect ? getWalletConnectConnector({
84
+ projectId,
85
+ walletConnectParameters
86
+ }) : getInjectedConnector({
87
+ namespace: "avalanche",
88
+ flag: "isAvalanche"
89
+ })
90
+ };
91
+ };
92
+
93
+ export {
94
+ coreWallet
95
+ };
@@ -0,0 +1,95 @@
1
+ "use client";
2
+ import {
3
+ getInjectedConnector,
4
+ hasInjectedProvider
5
+ } from "./chunk-WRA2DVJ7.js";
6
+ import {
7
+ isMobile
8
+ } from "./chunk-RETKWSKD.js";
9
+ import {
10
+ getWalletConnectConnector
11
+ } from "./chunk-23WIEY36.js";
12
+
13
+ // src/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.ts
14
+ var tokenPocketWallet = ({
15
+ projectId,
16
+ walletConnectParameters
17
+ }) => {
18
+ const isTokenPocketInjected = hasInjectedProvider({ flag: "isTokenPocket" });
19
+ const shouldUseWalletConnect = !isTokenPocketInjected;
20
+ const getUri = (uri) => {
21
+ return isMobile() ? `tpoutside://wc?uri=${encodeURIComponent(uri)}` : uri;
22
+ };
23
+ return {
24
+ id: "tokenPocket",
25
+ name: "TokenPocket",
26
+ rdns: "pro.tokenpocket",
27
+ iconUrl: async () => (await import("./tokenPocketWallet-BVMBOYTC.js")).default,
28
+ iconBackground: "#2980FE",
29
+ installed: !shouldUseWalletConnect ? isTokenPocketInjected : void 0,
30
+ downloadUrls: {
31
+ chrome: "https://chrome.google.com/webstore/detail/tokenpocket/mfgccjchihfkkindfppnaooecgfneiii",
32
+ browserExtension: "https://extension.tokenpocket.pro/",
33
+ android: "https://play.google.com/store/apps/details?id=vip.mytokenpocket",
34
+ ios: "https://apps.apple.com/us/app/tp-global-wallet/id6444625622",
35
+ qrCode: "https://tokenpocket.pro/en/download/app",
36
+ mobile: "https://tokenpocket.pro/en/download/app"
37
+ },
38
+ mobile: {
39
+ getUri: shouldUseWalletConnect ? getUri : void 0
40
+ },
41
+ qrCode: shouldUseWalletConnect ? {
42
+ getUri,
43
+ instructions: {
44
+ learnMoreUrl: "https://help.tokenpocket.pro/en/",
45
+ steps: [
46
+ {
47
+ description: "wallet_connectors.token_pocket.qr_code.step1.description",
48
+ step: "install",
49
+ title: "wallet_connectors.token_pocket.qr_code.step1.title"
50
+ },
51
+ {
52
+ description: "wallet_connectors.token_pocket.qr_code.step2.description",
53
+ step: "create",
54
+ title: "wallet_connectors.token_pocket.qr_code.step2.title"
55
+ },
56
+ {
57
+ description: "wallet_connectors.token_pocket.qr_code.step3.description",
58
+ step: "scan",
59
+ title: "wallet_connectors.token_pocket.qr_code.step3.title"
60
+ }
61
+ ]
62
+ }
63
+ } : void 0,
64
+ extension: {
65
+ instructions: {
66
+ learnMoreUrl: "https://help.tokenpocket.pro/en/extension-wallet/faq/installation-tutorial",
67
+ steps: [
68
+ {
69
+ description: "wallet_connectors.token_pocket.extension.step1.description",
70
+ step: "install",
71
+ title: "wallet_connectors.token_pocket.extension.step1.title"
72
+ },
73
+ {
74
+ description: "wallet_connectors.token_pocket.extension.step2.description",
75
+ step: "create",
76
+ title: "wallet_connectors.token_pocket.extension.step2.title"
77
+ },
78
+ {
79
+ description: "wallet_connectors.token_pocket.extension.step3.description",
80
+ step: "refresh",
81
+ title: "wallet_connectors.token_pocket.extension.step3.title"
82
+ }
83
+ ]
84
+ }
85
+ },
86
+ createConnector: shouldUseWalletConnect ? getWalletConnectConnector({
87
+ projectId,
88
+ walletConnectParameters
89
+ }) : getInjectedConnector({ flag: "isTokenPocket" })
90
+ };
91
+ };
92
+
93
+ export {
94
+ tokenPocketWallet
95
+ };
@@ -0,0 +1,102 @@
1
+ "use client";
2
+ import {
3
+ getInjectedConnector,
4
+ hasInjectedProvider
5
+ } from "./chunk-WRA2DVJ7.js";
6
+ import {
7
+ isIOS
8
+ } from "./chunk-RETKWSKD.js";
9
+ import {
10
+ getWalletConnectConnector
11
+ } from "./chunk-23WIEY36.js";
12
+
13
+ // src/wallets/walletConnectors/zerionWallet/zerionWallet.ts
14
+ var zerionWallet = ({
15
+ projectId,
16
+ walletConnectParameters
17
+ }) => {
18
+ const isZerionInjected = hasInjectedProvider({
19
+ namespace: "zerionWallet",
20
+ flag: "isZerion"
21
+ });
22
+ const shouldUseWalletConnect = !isZerionInjected;
23
+ const getUri = (uri) => {
24
+ return isIOS() ? `zerion://wc?uri=${encodeURIComponent(uri)}` : uri;
25
+ };
26
+ return {
27
+ id: "zerion",
28
+ name: "Zerion",
29
+ rdns: "io.zerion.wallet",
30
+ iconUrl: async () => (await import("./zerionWallet-CYFHB5PA.js")).default,
31
+ iconAccent: "#2962ef",
32
+ iconBackground: "#2962ef",
33
+ installed: !shouldUseWalletConnect ? isZerionInjected : void 0,
34
+ downloadUrls: {
35
+ android: "https://play.google.com/store/apps/details?id=io.zerion.android",
36
+ ios: "https://apps.apple.com/app/apple-store/id1456732565",
37
+ mobile: "https://link.zerion.io/pt3gdRP0njb",
38
+ qrCode: "https://link.zerion.io/pt3gdRP0njb",
39
+ chrome: "https://chrome.google.com/webstore/detail/klghhnkeealcohjjanjjdaeeggmfmlpl",
40
+ browserExtension: "https://zerion.io/extension"
41
+ },
42
+ mobile: {
43
+ getUri: shouldUseWalletConnect ? getUri : void 0
44
+ },
45
+ qrCode: shouldUseWalletConnect ? {
46
+ getUri,
47
+ instructions: {
48
+ learnMoreUrl: "https://zerion.io/blog/announcing-the-zerion-smart-wallet/",
49
+ steps: [
50
+ {
51
+ description: "wallet_connectors.zerion.qr_code.step1.description",
52
+ step: "install",
53
+ title: "wallet_connectors.zerion.qr_code.step1.title"
54
+ },
55
+ {
56
+ description: "wallet_connectors.zerion.qr_code.step2.description",
57
+ step: "create",
58
+ title: "wallet_connectors.zerion.qr_code.step2.title"
59
+ },
60
+ {
61
+ description: "wallet_connectors.zerion.qr_code.step3.description",
62
+ step: "scan",
63
+ title: "wallet_connectors.zerion.qr_code.step3.title"
64
+ }
65
+ ]
66
+ }
67
+ } : void 0,
68
+ extension: {
69
+ instructions: {
70
+ learnMoreUrl: "https://help.zerion.io/en/",
71
+ steps: [
72
+ {
73
+ description: "wallet_connectors.zerion.extension.step1.description",
74
+ step: "install",
75
+ title: "wallet_connectors.zerion.extension.step1.title"
76
+ },
77
+ {
78
+ description: "wallet_connectors.zerion.extension.step2.description",
79
+ step: "create",
80
+ title: "wallet_connectors.zerion.extension.step2.title"
81
+ },
82
+ {
83
+ description: "wallet_connectors.zerion.extension.step3.description",
84
+ step: "refresh",
85
+ title: "wallet_connectors.zerion.extension.step3.title"
86
+ }
87
+ ]
88
+ }
89
+ },
90
+ createConnector: shouldUseWalletConnect ? getWalletConnectConnector({
91
+ projectId,
92
+ walletConnectParameters
93
+ }) : getInjectedConnector({
94
+ namespace: "zerionWallet",
95
+ flag: "isZerion"
96
+ })
97
+ };
98
+ };
99
+
100
+ export {
101
+ zerionWallet
102
+ };
@@ -0,0 +1,71 @@
1
+ "use client";
2
+ import {
3
+ getInjectedConnector,
4
+ hasInjectedProvider
5
+ } from "./chunk-WRA2DVJ7.js";
6
+ import {
7
+ isAndroid
8
+ } from "./chunk-RETKWSKD.js";
9
+ import {
10
+ getWalletConnectConnector
11
+ } from "./chunk-23WIEY36.js";
12
+
13
+ // src/wallets/walletConnectors/bifrostWallet/bifrostWallet.ts
14
+ var bifrostWallet = ({
15
+ projectId,
16
+ walletConnectParameters
17
+ }) => {
18
+ const isBifrostInjected = hasInjectedProvider({ flag: "isBifrost" });
19
+ const shouldUseWalletConnect = !isBifrostInjected;
20
+ const getUri = (uri) => {
21
+ return isAndroid() ? uri : `https://app.bifrostwallet.com/wc?uri=${encodeURIComponent(uri)}`;
22
+ };
23
+ return {
24
+ id: "bifrostWallet",
25
+ name: "Bifrost Wallet",
26
+ iconUrl: async () => (await import("./bifrostWallet-ORF3DABG.js")).default,
27
+ iconBackground: "#fff",
28
+ installed: !shouldUseWalletConnect ? isBifrostInjected : void 0,
29
+ downloadUrls: {
30
+ android: "https://play.google.com/store/apps/details?id=com.bifrostwallet.app",
31
+ ios: "https://apps.apple.com/us/app/bifrost-wallet/id1577198351",
32
+ qrCode: "https://bifrostwallet.com/#download-app"
33
+ },
34
+ mobile: {
35
+ getUri: shouldUseWalletConnect ? getUri : void 0
36
+ },
37
+ qrCode: shouldUseWalletConnect ? {
38
+ getUri: (uri) => uri,
39
+ instructions: {
40
+ learnMoreUrl: "https://support.bifrostwallet.com/en/articles/6886814-how-to-use-walletconnect",
41
+ steps: [
42
+ {
43
+ description: "wallet_connectors.bifrost.qr_code.step1.description",
44
+ step: "install",
45
+ title: "wallet_connectors.bifrost.qr_code.step1.title"
46
+ },
47
+ {
48
+ description: "wallet_connectors.bifrost.qr_code.step2.description",
49
+ step: "create",
50
+ title: "wallet_connectors.bifrost.qr_code.step2.title"
51
+ },
52
+ {
53
+ description: "wallet_connectors.bifrost.qr_code.step3.description",
54
+ step: "scan",
55
+ title: "wallet_connectors.bifrost.qr_code.step3.title"
56
+ }
57
+ ]
58
+ }
59
+ } : void 0,
60
+ createConnector: shouldUseWalletConnect ? getWalletConnectConnector({
61
+ projectId,
62
+ walletConnectParameters
63
+ }) : getInjectedConnector({
64
+ flag: "isBifrost"
65
+ })
66
+ };
67
+ };
68
+
69
+ export {
70
+ bifrostWallet
71
+ };