@funkit/connect 3.4.3 → 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 CHANGED
@@ -1,5 +1,13 @@
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
+
3
11
  ## 3.4.3
4
12
 
5
13
  ### 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
@@ -21,6 +21,7 @@ export type { FunkitConnectChain as Chain } from './providers/FunkitConnectChain
21
21
  export type { Theme } from './providers/FunkitProvider';
22
22
  export { FunkitProvider } from './providers/FunkitProvider';
23
23
  export { useActiveTheme } from './providers/FunkitThemeProvider';
24
+ export { useFunkitUserInfo } from './providers/GeneralWalletProvider';
24
25
  export { useAccountModal, useChainModal, useConnectModal, } from './providers/ModalContext';
25
26
  export { darkTheme } from './themes/darkTheme';
26
27
  export { lightTheme } from './themes/lightTheme';