@funkit/connect 3.4.0 → 3.4.1

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 (44) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist/components/FunAssetAvatar/FunAssetAvatar.d.ts +1 -1
  3. package/dist/components/FunBottomBar/FunBottomBar.css.d.ts +1 -1
  4. package/dist/components/FunButton/FunIconButton.d.ts +1 -0
  5. package/dist/components/FunPayments/FunPaymentMoonpayType.d.ts +4 -2
  6. package/dist/config/getDefaultConfig.d.ts +33 -33
  7. package/dist/consts/assets.d.ts +1 -3
  8. package/dist/consts/mesh.d.ts +36 -0
  9. package/dist/domains/paymentMethods.d.ts +28 -12
  10. package/dist/domains/quote.d.ts +16 -1
  11. package/dist/hooks/useEnabledTokenTransferChainTokens.d.ts +2 -0
  12. package/dist/hooks/useMesh.d.ts +5 -22
  13. package/dist/index.css +12 -10
  14. package/dist/index.js +2964 -2904
  15. package/dist/modals/CheckoutModal/LoadingAccount.d.ts +1 -1
  16. package/dist/modals/CheckoutModal/SelectPaymentMethod.d.ts +1 -4
  17. package/dist/modals/CheckoutModal/TransferToken.d.ts +3 -3
  18. package/dist/providers/FunkitCheckoutContext.d.ts +3 -1
  19. package/dist/providers/FunkitMoonpayProvider.d.ts +2 -2
  20. package/dist/utils/assets.d.ts +2 -1
  21. package/dist/utils/checkout.d.ts +2 -0
  22. package/dist/utils/formatFees.d.ts +12 -0
  23. package/dist/utils/mesh.d.ts +9 -54
  24. package/dist/wallets/walletConnectors/chunk-25VW5TZP.js +92 -0
  25. package/dist/wallets/walletConnectors/chunk-4HKPVECK.js +95 -0
  26. package/dist/wallets/walletConnectors/chunk-4K3EKHXR.js +71 -0
  27. package/dist/wallets/walletConnectors/chunk-57UUMOOZ.js +95 -0
  28. package/dist/wallets/walletConnectors/chunk-5MVCKMZT.js +94 -0
  29. package/dist/wallets/walletConnectors/chunk-5NZLWT3Y.js +73 -0
  30. package/dist/wallets/walletConnectors/chunk-B5D7DYVV.js +101 -0
  31. package/dist/wallets/walletConnectors/chunk-HCKLWBE5.js +98 -0
  32. package/dist/wallets/walletConnectors/chunk-HLH777AC.js +108 -0
  33. package/dist/wallets/walletConnectors/chunk-HMDUVRZP.js +98 -0
  34. package/dist/wallets/walletConnectors/chunk-IR3YKU2N.js +103 -0
  35. package/dist/wallets/walletConnectors/chunk-J2BF4L2V.js +87 -0
  36. package/dist/wallets/walletConnectors/chunk-KDGMYRMC.js +102 -0
  37. package/dist/wallets/walletConnectors/chunk-OKUX4BC4.js +66 -0
  38. package/dist/wallets/walletConnectors/chunk-VU6B3HMD.js +96 -0
  39. package/dist/wallets/walletConnectors/chunk-WAMHUVNP.js +96 -0
  40. package/dist/wallets/walletConnectors/chunk-YRK6XWL6.js +149 -0
  41. package/dist/wallets/walletConnectors/chunk-ZCKNEKQQ.js +110 -0
  42. package/dist/wallets/walletConnectors/index.js +39 -39
  43. package/package.json +3 -3
  44. package/dist/providers/useAccountBalancePaymentDefaultInfo.d.ts +0 -4
@@ -11,7 +11,7 @@ export type LoadingAccountNext = ({
11
11
  usablePaymentMethod: PaymentMethod.BROKERAGE;
12
12
  paymentMethodInfo: PaymentMethodBrokerageInfo;
13
13
  } | {
14
- usablePaymentMethod: null;
14
+ usablePaymentMethod: PaymentMethod.TOKEN_TRANSFER | null;
15
15
  }) & {
16
16
  step: FunCheckoutStep.LOADING_ACCOUNT;
17
17
  };
@@ -7,7 +7,7 @@ export interface SelectPaymentMethodState extends CheckoutModalCommonState {
7
7
  }
8
8
  export type SelectPaymentMethodNext = {
9
9
  step: FunCheckoutStep.SELECT_PAYMENT_METHOD;
10
- paymentMethod: PaymentMethod.BROKERAGE;
10
+ paymentMethod: PaymentMethod.BROKERAGE | PaymentMethod.TOKEN_TRANSFER;
11
11
  } | {
12
12
  step: FunCheckoutStep.SELECT_PAYMENT_METHOD;
13
13
  paymentMethod: PaymentMethod.CARD;
@@ -16,9 +16,6 @@ export type SelectPaymentMethodNext = {
16
16
  step: FunCheckoutStep.SELECT_PAYMENT_METHOD;
17
17
  paymentMethod: PaymentMethod.ACCOUNT_BALANCE;
18
18
  paymentMethodInfo: PaymentMethodAccountInfo;
19
- } | {
20
- step: FunCheckoutStep.SELECT_PAYMENT_METHOD;
21
- paymentMethod: PaymentMethod.TOKEN_TRANSFER;
22
19
  };
23
20
  export declare function selectPaymentMethodNext(state: SelectPaymentMethodState, payload: SelectPaymentMethodNext): StepTransition[FunCheckoutStep.SELECT_PAYMENT_METHOD];
24
21
  type Props = StateTransitionProps<SelectPaymentMethodState, SelectPaymentMethodNext>;
@@ -6,13 +6,13 @@ export interface TransferTokenState extends CheckoutModalCommonState {
6
6
  }
7
7
  export type TransferTokenNext = {
8
8
  step: FunCheckoutStep.TRANSFER_TOKEN;
9
- paymentMethodInfo: PaymentMethodAccountInfo;
10
- isLoggedIn: boolean;
9
+ paymentMethodInfo?: PaymentMethodAccountInfo;
10
+ isLoggedIn?: boolean;
11
11
  };
12
12
  export interface TokenTransferSourceChainsAndAssets {
13
13
  [chainId: number]: string[];
14
14
  }
15
15
  export declare function transferTokenNext(state: TransferTokenState, payload: TransferTokenNext): StepTransition[FunCheckoutStep.TRANSFER_TOKEN];
16
16
  type Props = StateTransitionProps<TransferTokenState, TransferTokenNext>;
17
- export declare function TransferToken({ onBack }: Props): React.JSX.Element;
17
+ export declare function TransferToken({ onNext }: Props): React.JSX.Element;
18
18
  export {};
@@ -2,6 +2,7 @@ import { CheckoutHistoryItem } from '@funkit/api-base';
2
2
  import { Operation } from '@funkit/core';
3
3
  import React, { ReactNode } from 'react';
4
4
  import { Abi, Address } from 'viem';
5
+ import { AssetHoldingsItem } from '~/utils/assets';
5
6
  import { PaymentMethod, PaymentMethodInfo } from '../domains/paymentMethods';
6
7
  import type { FunkitCheckoutQuoteResult } from '../domains/quote';
7
8
  import { CheckoutHistoryDepositAddrMap, CheckoutHistoryStateMap } from '../utils/checkout';
@@ -120,6 +121,7 @@ export interface FunkitActiveCheckoutItem {
120
121
  address: Address | null;
121
122
  symbol: string | null;
122
123
  chainId: string;
124
+ iconSrc: string | null;
123
125
  };
124
126
  /** Time of completion of the active checkout item. For frontend use only. **/
125
127
  completedTimestampMs: number | null;
@@ -136,7 +138,7 @@ interface FunkitCheckoutContextInterface {
136
138
  startCheckoutHistoryListener(recipientAddr?: Address | undefined): NodeJS.Timeout;
137
139
  stopCheckoutHistoryListener(cancelIntervalId?: NodeJS.Timeout): void;
138
140
  initNewCheckout(initSettings: useFunkitCheckoutPropsFinal): string;
139
- updateSourceAsset(selectedSourceAsset: Address, selectedSourceAssetSymbol: string, selectedSourceAssetChainId: string): void;
141
+ updateSourceAsset(selectedSource: Omit<AssetHoldingsItem, 'amount' | 'usdAmount'>): void;
140
142
  updateTargetAssetAmount(newTargetAssetAmount: number): void;
141
143
  updateSelectedPaymentMethodInfo(newPaymentMethodInfo: PaymentMethodInfo): void;
142
144
  confirmCheckout(shouldBatchOpBypassInit: boolean, stepMessageSetter: (m: string) => void): Promise<Address>;
@@ -1,7 +1,7 @@
1
- import React from 'react';
1
+ import React, { ReactNode } from 'react';
2
2
  import { FunButtonProps } from '../components/FunButton/FunButton';
3
3
  export declare function FunkitMoonpayProvider({ children, debug, }: {
4
- children: any;
4
+ children: ReactNode;
5
5
  debug: boolean;
6
6
  }): React.JSX.Element;
7
7
  export interface UserIpInfoFromMoonpay {
@@ -26,7 +26,7 @@ export interface AssetHoldingsMap {
26
26
  }
27
27
  export declare const getFeesUsdEstimate: (checkoutItem: FunkitActiveCheckoutItem, asset: AssetHoldingsItem) => 1 | 20;
28
28
  export declare const isAssetUsdAmountSufficient: (checkoutItem: FunkitActiveCheckoutItem, asset: AssetHoldingsItem | null) => boolean;
29
- export type RecommendedAsset = {
29
+ type RecommendedAsset = {
30
30
  symbol: string;
31
31
  label: string | null;
32
32
  } | null;
@@ -41,3 +41,4 @@ export declare const getTotalAssetBalance: (assets: AssetHoldingsMap) => string;
41
41
  * @returns targetChain either from the provided config or arbitrum chainId for dydxChain since that's a non evm chain processed with evm tech
42
42
  */
43
43
  export declare const getMockedTargetChainId: ({ targetChain }: FunkitCheckoutConfig, mockedChains?: string[]) => string;
44
+ export {};
@@ -1,4 +1,5 @@
1
1
  import { CheckoutHistoryItem, CheckoutState } from '@funkit/api-base';
2
+ import { Config } from '@wagmi/core';
2
3
  import { Address, Hex } from 'viem';
3
4
  import { UseConfigReturnType } from 'wagmi';
4
5
  import { PaymentMethod } from '../domains/paymentMethods';
@@ -141,3 +142,4 @@ export declare function getCheckoutItemDisplay(checkoutConfig: FunkitCheckoutCon
141
142
  * @param quoteResult - Failed quote results
142
143
  */
143
144
  export declare function getMaxTargetAssetAmountEstimate(sourceAssetBalance: number, config: FunkitCheckoutConfig, quoteResult: FunkitCheckoutQuoteResult): number;
145
+ export declare function getTokenDecimals(wagmiConfig: Config, chainId: string, tokenAddress: Address): Promise<number>;
@@ -0,0 +1,12 @@
1
+ export interface FormatDynamicFeeUsdOptions {
2
+ /**
3
+ * Threshold in USD above which the fee should be displayed in %
4
+ *
5
+ * Defauls to 2.5
6
+ *
7
+ * Pass null to disable % format altogether
8
+ */
9
+ percentThreshold?: number | null;
10
+ }
11
+ export declare function formatDynamicFeeUsd(fee: number, total: number, options?: FormatDynamicFeeUsdOptions): string;
12
+ export declare function formatDynamicFeeToken(fee: number, symbol: string): string;
@@ -1,67 +1,22 @@
1
+ import { TransferIntegration } from '@funkit/api-base';
2
+ import { MeshExchanges } from '../consts/mesh';
1
3
  import { AssetHoldingsMap } from '../utils/assets';
2
- export declare const FUNKIT_MESH_CLIENT_ID = "8132aff4-56c9-4b1d-85b4-08dbdcc6199d";
3
- export declare enum MeshExchanges {
4
- Robinhood = "Robinhood",
5
- ETrade = "ETrade",
6
- Alpaca = "Alpaca",
7
- WeBull = "WeBull",
8
- Stash = "Stash",
9
- InteractiveBrokers = "InteractiveBrokers",
10
- Public = "Public",
11
- Coinbase = "Coinbase",
12
- Kraken = "Kraken",
13
- CoinbasePro = "CoinbasePro",
14
- CryptoCom = "CryptoCom",
15
- Binance = "Binance",// BinanceInternationalDirect
16
- BinanceUs = "BinanceUs",
17
- Gemini = "Gemini",
18
- OkCoin = "OkCoin",
19
- KuCoin = "KuCoin",
20
- Etoro = "Etoro",
21
- CexIo = "CexIo",
22
- Bitstamp = "Bitstamp",
23
- GateIo = "GateIo",
24
- Acorns = "Acorns",
25
- Okx = "OKX",
26
- BitFlyer = "BitFlyer",
27
- Coinlist = "Coinlist",
28
- Huobi = "Huobi",
29
- Bitfinex = "Bitfinex",
30
- KrakenDirect = "KrakenDirect",
31
- Vanguard = "Vanguard",
32
- BitfinexDirect = "BitfinexDirect",
33
- Bybit = "Bybit"
34
- }
35
- export declare const EXCHANGE_NAME_TO_TYPE: {
36
- [x: string]: string;
37
- };
4
+ export { EXCHANGE_NAME_TO_TYPE, FUNKIT_MESH_CLIENT_ID, MeshExchanges, } from '../consts/mesh';
38
5
  export declare function fetchMeshLinkToken(funkitUserId: string, selectedExchange: MeshExchanges, funApiKey: string): Promise<import("@funkit/api-base").GetLinkTokenResponse>;
39
- interface CryptoCurrencyPosition {
40
- symbol: string;
41
- amount: number;
42
- }
43
- export declare function fetchMeshAccountCryptoHoldings({ authToken, apiKey, exchange, }: {
44
- authToken: string;
45
- apiKey: string;
46
- exchange: MeshExchanges;
47
- }): Promise<CryptoCurrencyPosition[]>;
48
- export declare function fetchMeshSupportedTokensByBrokerageAndSupportedFunkitChains({ exchange, apiKey, }: {
49
- exchange: MeshExchanges;
50
- apiKey: string;
51
- }): Promise<import("@funkit/api-base").IntegrationNetworkInfo[]>;
52
- export declare function fetchMeshSupportedTokensAndIdByChainIdAndBrokerage({ chainId, exchange, apiKey, }: {
6
+ export declare function fetchMeshTransferIntegrations(apiKey: string): Promise<TransferIntegration[]>;
7
+ export declare function getMeshSupportedTokensAndIdByChainIdAndBrokerage({ chainId, exchange, integrations, }: {
53
8
  chainId: string;
54
9
  exchange: MeshExchanges;
55
- apiKey: string;
56
- }): Promise<{
10
+ integrations: TransferIntegration[];
11
+ }): {
57
12
  meshSupportedTokens: string[];
58
13
  meshNetworkId: string | undefined;
59
- }>;
14
+ };
60
15
  interface MeshAccountInfo {
61
16
  authToken: string;
62
17
  exchange: MeshExchanges;
63
18
  targetChain: string;
64
19
  apiKey: string;
20
+ integrations: TransferIntegration[];
65
21
  }
66
22
  export declare function fetchMeshAccountHoldingsMap(info: MeshAccountInfo): Promise<AssetHoldingsMap>;
67
- export {};
@@ -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,95 @@
1
+ "use client";
2
+ import {
3
+ isMobile
4
+ } from "./chunk-RETKWSKD.js";
5
+ import {
6
+ getInjectedConnector,
7
+ hasInjectedProvider
8
+ } from "./chunk-WRA2DVJ7.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,71 @@
1
+ "use client";
2
+ import {
3
+ isAndroid
4
+ } from "./chunk-RETKWSKD.js";
5
+ import {
6
+ getInjectedConnector,
7
+ hasInjectedProvider
8
+ } from "./chunk-WRA2DVJ7.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
+ };
@@ -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,94 @@
1
+ "use client";
2
+ import {
3
+ isAndroid
4
+ } from "./chunk-RETKWSKD.js";
5
+ import {
6
+ getInjectedConnector,
7
+ hasInjectedProvider
8
+ } from "./chunk-WRA2DVJ7.js";
9
+ import {
10
+ getWalletConnectConnector
11
+ } from "./chunk-23WIEY36.js";
12
+
13
+ // src/wallets/walletConnectors/gateWallet/gateWallet.ts
14
+ var gateWallet = ({
15
+ projectId,
16
+ walletConnectParameters
17
+ }) => {
18
+ const isGateInjected = hasInjectedProvider({ namespace: "gatewallet" });
19
+ const shouldUseWalletConnect = !isGateInjected;
20
+ return {
21
+ id: "gate",
22
+ name: "Gate Wallet",
23
+ rdns: "io.gate.wallet",
24
+ iconUrl: async () => (await import("./gateWallet-ZVEZILRP.js")).default,
25
+ iconAccent: "#fff",
26
+ iconBackground: "#fff",
27
+ downloadUrls: {
28
+ android: "https://play.google.com/store/apps/details?id=com.gateio.gateio",
29
+ ios: "https://apps.apple.com/us/app/gate-io-buy-bitcoin-crypto/id1294998195",
30
+ mobile: "https://www.gate.io/mobileapp",
31
+ qrCode: "https://www.gate.io/web3",
32
+ chrome: "https://chromewebstore.google.com/detail/gate-wallet/cpmkedoipcpimgecpmgpldfpohjplkpp",
33
+ browserExtension: "https://www.gate.io/web3"
34
+ },
35
+ mobile: {
36
+ getUri: shouldUseWalletConnect ? (uri) => {
37
+ return isAndroid() ? uri : `gtweb3wallet://wc?uri=${encodeURIComponent(uri)}`;
38
+ } : void 0
39
+ },
40
+ qrCode: shouldUseWalletConnect ? {
41
+ getUri: (uri) => uri,
42
+ instructions: {
43
+ learnMoreUrl: "https://www.gate.io/learn",
44
+ steps: [
45
+ {
46
+ description: "wallet_connectors.gate.qr_code.step1.description",
47
+ step: "install",
48
+ title: "wallet_connectors.gate.qr_code.step1.title"
49
+ },
50
+ {
51
+ description: "wallet_connectors.gate.qr_code.step2.description",
52
+ step: "create",
53
+ title: "wallet_connectors.gate.qr_code.step2.title"
54
+ },
55
+ {
56
+ description: "wallet_connectors.gate.qr_code.step3.description",
57
+ step: "scan",
58
+ title: "wallet_connectors.gate.qr_code.step3.title"
59
+ }
60
+ ]
61
+ }
62
+ } : void 0,
63
+ extension: {
64
+ instructions: {
65
+ learnMoreUrl: "https://www.gate.io/learn",
66
+ steps: [
67
+ {
68
+ description: "wallet_connectors.gate.extension.step1.description",
69
+ step: "install",
70
+ title: "wallet_connectors.gate.extension.step1.title"
71
+ },
72
+ {
73
+ description: "wallet_connectors.gate.extension.step2.description",
74
+ step: "create",
75
+ title: "wallet_connectors.gate.extension.step2.title"
76
+ },
77
+ {
78
+ description: "wallet_connectors.gate.extension.step3.description",
79
+ step: "refresh",
80
+ title: "wallet_connectors.gate.extension.step3.title"
81
+ }
82
+ ]
83
+ }
84
+ },
85
+ createConnector: shouldUseWalletConnect ? getWalletConnectConnector({
86
+ projectId,
87
+ walletConnectParameters
88
+ }) : getInjectedConnector({ namespace: "gatewallet" })
89
+ };
90
+ };
91
+
92
+ export {
93
+ gateWallet
94
+ };