@funkit/connect 3.4.2 → 3.4.4
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 +24 -0
- package/dist/hooks/useWalletAssets.d.ts +3 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +739 -692
- package/dist/modals/CheckoutModal/LoadingAccount.d.ts +1 -1
- package/dist/modals/CheckoutModal/TransferToken.d.ts +1 -1
- package/dist/providers/GeneralWalletProvider.d.ts +1 -0
- package/dist/utils/assets.d.ts +1 -0
- package/dist/wallets/walletConnectors/index.js +53 -53
- package/package.json +4 -4
- package/dist/wallets/walletConnectors/chunk-25VW5TZP.js +0 -92
- package/dist/wallets/walletConnectors/chunk-4HKPVECK.js +0 -95
- package/dist/wallets/walletConnectors/chunk-4K3EKHXR.js +0 -71
- package/dist/wallets/walletConnectors/chunk-57UUMOOZ.js +0 -95
- package/dist/wallets/walletConnectors/chunk-5MVCKMZT.js +0 -94
- package/dist/wallets/walletConnectors/chunk-5NZLWT3Y.js +0 -73
- package/dist/wallets/walletConnectors/chunk-B5D7DYVV.js +0 -101
- package/dist/wallets/walletConnectors/chunk-HCKLWBE5.js +0 -98
- package/dist/wallets/walletConnectors/chunk-HLH777AC.js +0 -108
- package/dist/wallets/walletConnectors/chunk-HMDUVRZP.js +0 -98
- package/dist/wallets/walletConnectors/chunk-IR3YKU2N.js +0 -103
- package/dist/wallets/walletConnectors/chunk-J2BF4L2V.js +0 -87
- package/dist/wallets/walletConnectors/chunk-KDGMYRMC.js +0 -102
- package/dist/wallets/walletConnectors/chunk-OKUX4BC4.js +0 -66
- package/dist/wallets/walletConnectors/chunk-VU6B3HMD.js +0 -96
- package/dist/wallets/walletConnectors/chunk-WAMHUVNP.js +0 -96
- package/dist/wallets/walletConnectors/chunk-YRK6XWL6.js +0 -149
- package/dist/wallets/walletConnectors/chunk-ZCKNEKQQ.js +0 -110
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @funkit/connect
|
|
2
2
|
|
|
3
|
+
## 3.4.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a47f50d: feat(connect): hide low balance assets on homepage
|
|
8
|
+
- 65e7b2a: feat(connect): expose useFunkitUserInfo hook
|
|
9
|
+
- 9f5c50e: fix(connect): fix customer callbacks
|
|
10
|
+
|
|
11
|
+
## 3.4.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 3f47f1d: feat(connect): disable amount input/options while quoting
|
|
16
|
+
- 2819f86: fix: always wait for account balance loaded
|
|
17
|
+
- c15a773: fix(connect): do not run risk assessment without walletAddress
|
|
18
|
+
- cc71e58: tooling: fix fingerprinting at build time
|
|
19
|
+
- 769bbf5: feat: direct deposit help guide linkout
|
|
20
|
+
- b66eb91: feat(connect): expose useConnectonStatus hook
|
|
21
|
+
- f6a1693: feat: support new emailConfirmationApprovalRequired mesh status
|
|
22
|
+
- Updated dependencies [f6a1693]
|
|
23
|
+
- @funkit/api-base@1.3.1
|
|
24
|
+
- @funkit/core@2.2.3
|
|
25
|
+
- @funkit/wagmi-tools@3.0.14
|
|
26
|
+
|
|
3
27
|
## 3.4.2
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { KnownAssetBalanceInfo } from '../providers/GeneralWalletProvider';
|
|
2
2
|
export type WalletAssets = Record<string, KnownAssetBalanceInfo>;
|
|
3
|
+
/**
|
|
4
|
+
* Returns wallet assets that are above the {@link ASSETS_LOW_VALUE_THRESHOLD} threshold with their total USD value.
|
|
5
|
+
*/
|
|
3
6
|
export declare const useWalletAssets: ({ enableRefetchInterval, refetchOnMount, }: {
|
|
4
7
|
enableRefetchInterval?: boolean | undefined;
|
|
5
8
|
refetchOnMount?: boolean | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export { FunkitSocialLoginMethod, NATIVE_TOKEN } from './consts/funkit';
|
|
|
8
8
|
export { cssObjectFromTheme } from './css/cssObjectFromTheme';
|
|
9
9
|
export { cssStringFromTheme } from './css/cssStringFromTheme';
|
|
10
10
|
export { PaymentMethod } from './domains/paymentMethods';
|
|
11
|
+
export { useConnectionStatus } from './hooks/useConnectionStatus';
|
|
11
12
|
export type { Locale } from './locales/';
|
|
12
13
|
export type { DisclaimerComponent } from './providers/AppContext';
|
|
13
14
|
export type { AuthenticationConfig, AuthenticationStatus, } from './providers/AuthenticationContext';
|
|
@@ -20,6 +21,7 @@ export type { FunkitConnectChain as Chain } from './providers/FunkitConnectChain
|
|
|
20
21
|
export type { Theme } from './providers/FunkitProvider';
|
|
21
22
|
export { FunkitProvider } from './providers/FunkitProvider';
|
|
22
23
|
export { useActiveTheme } from './providers/FunkitThemeProvider';
|
|
24
|
+
export { useFunkitUserInfo } from './providers/GeneralWalletProvider';
|
|
23
25
|
export { useAccountModal, useChainModal, useConnectModal, } from './providers/ModalContext';
|
|
24
26
|
export { darkTheme } from './themes/darkTheme';
|
|
25
27
|
export { lightTheme } from './themes/lightTheme';
|