@mezo-org/passport 0.16.0-dev.0 → 0.16.0-dev.2

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 (196) hide show
  1. package/dist/src/api/auth.d.ts +9 -0
  2. package/dist/src/api/auth.d.ts.map +1 -1
  3. package/dist/src/api/auth.js +7 -0
  4. package/dist/src/api/auth.js.map +1 -1
  5. package/dist/src/config.d.ts +3 -4
  6. package/dist/src/config.d.ts.map +1 -1
  7. package/dist/src/config.js +9 -13
  8. package/dist/src/config.js.map +1 -1
  9. package/dist/src/hooks/index.d.ts +2 -0
  10. package/dist/src/hooks/index.d.ts.map +1 -1
  11. package/dist/src/hooks/index.js +2 -0
  12. package/dist/src/hooks/index.js.map +1 -1
  13. package/dist/src/hooks/useAcceptDocuments.d.ts +18 -0
  14. package/dist/src/hooks/useAcceptDocuments.d.ts.map +1 -1
  15. package/dist/src/hooks/useAuthenticateWithWallet.d.ts +11 -11
  16. package/dist/src/hooks/useAuthenticateWithWallet.js +1 -1
  17. package/dist/src/hooks/useAuthenticateWithWallet.js.map +1 -1
  18. package/dist/src/hooks/useBorrowData.js +1 -1
  19. package/dist/src/hooks/useBorrowData.js.map +1 -1
  20. package/dist/src/hooks/useCollateralPrice.js +1 -1
  21. package/dist/src/hooks/useCollateralPrice.js.map +1 -1
  22. package/dist/src/hooks/useCreateAccount.d.ts +18 -0
  23. package/dist/src/hooks/useCreateAccount.d.ts.map +1 -1
  24. package/dist/src/hooks/useCreateAccount.js +1 -1
  25. package/dist/src/hooks/useCreateAccount.js.map +1 -1
  26. package/dist/src/hooks/useLinkAccount.js +1 -1
  27. package/dist/src/hooks/useLinkAccount.js.map +1 -1
  28. package/dist/src/hooks/useSignInWithWallet.d.ts +11 -11
  29. package/dist/src/hooks/useSignUpWithWallet.d.ts +11 -11
  30. package/dist/src/hooks/useTokensBalances.d.ts.map +1 -1
  31. package/dist/src/hooks/useTokensBalances.js +2 -10
  32. package/dist/src/hooks/useTokensBalances.js.map +1 -1
  33. package/dist/src/hooks/useUpdateMezoId.d.ts +18 -0
  34. package/dist/src/hooks/useUpdateMezoId.d.ts.map +1 -1
  35. package/dist/src/hooks/useUpdateUserProfile.d.ts +171 -0
  36. package/dist/src/hooks/useUpdateUserProfile.d.ts.map +1 -0
  37. package/dist/src/hooks/useUpdateUserProfile.js +19 -0
  38. package/dist/src/hooks/useUpdateUserProfile.js.map +1 -0
  39. package/dist/src/hooks/useWalletAccount.d.ts +3 -6
  40. package/dist/src/hooks/useWalletAccount.d.ts.map +1 -1
  41. package/dist/src/hooks/useWalletAccount.js +6 -4
  42. package/dist/src/hooks/useWalletAccount.js.map +1 -1
  43. package/dist/src/hooks/useWatchTransferEvents.d.ts.map +1 -1
  44. package/dist/src/hooks/useWatchTransferEvents.js +0 -1
  45. package/dist/src/hooks/useWatchTransferEvents.js.map +1 -1
  46. package/dist/src/index.d.ts +1 -2
  47. package/dist/src/index.d.ts.map +1 -1
  48. package/dist/src/index.js +1 -2
  49. package/dist/src/index.js.map +1 -1
  50. package/dist/src/lib/contracts/index.d.ts +1 -1
  51. package/dist/src/lib/contracts/index.d.ts.map +1 -1
  52. package/dist/src/lib/contracts/index.js +0 -3
  53. package/dist/src/lib/contracts/index.js.map +1 -1
  54. package/dist/src/stores/dropdownStore.d.ts +2 -1
  55. package/dist/src/stores/dropdownStore.d.ts.map +1 -1
  56. package/dist/src/stores/dropdownStore.js +1 -0
  57. package/dist/src/stores/dropdownStore.js.map +1 -1
  58. package/dist/src/utils/assets.d.ts +0 -15
  59. package/dist/src/utils/assets.d.ts.map +1 -1
  60. package/dist/src/utils/assets.js +0 -13
  61. package/dist/src/utils/assets.js.map +1 -1
  62. package/dist/src/utils/validation.d.ts +13 -0
  63. package/dist/src/utils/validation.d.ts.map +1 -0
  64. package/dist/src/utils/validation.js +34 -0
  65. package/dist/src/utils/validation.js.map +1 -0
  66. package/dist/src/utils/validation.test.d.ts +2 -0
  67. package/dist/src/utils/validation.test.d.ts.map +1 -0
  68. package/dist/src/utils/validation.test.js +63 -0
  69. package/dist/src/utils/validation.test.js.map +1 -0
  70. package/package.json +10 -9
  71. package/src/api/auth.ts +22 -0
  72. package/src/config.ts +16 -26
  73. package/src/hooks/index.ts +2 -0
  74. package/src/hooks/useAuthenticateWithWallet.ts +1 -1
  75. package/src/hooks/useBorrowData.ts +1 -1
  76. package/src/hooks/useCollateralPrice.ts +1 -1
  77. package/src/hooks/useCreateAccount.ts +1 -1
  78. package/src/hooks/useLinkAccount.ts +1 -1
  79. package/src/hooks/useTokensBalances.ts +1 -10
  80. package/src/hooks/useUpdateUserProfile.ts +34 -0
  81. package/src/hooks/useWalletAccount.ts +15 -10
  82. package/src/hooks/useWatchTransferEvents.ts +0 -1
  83. package/src/index.ts +0 -2
  84. package/src/lib/contracts/index.ts +0 -4
  85. package/src/stores/dropdownStore.ts +1 -0
  86. package/src/utils/assets.ts +0 -14
  87. package/src/utils/validation.test.ts +97 -0
  88. package/src/utils/validation.ts +35 -0
  89. package/dist/src/assets/DefaultAvatar.d.ts +0 -5
  90. package/dist/src/assets/DefaultAvatar.d.ts.map +0 -1
  91. package/dist/src/assets/DefaultAvatar.js +0 -21
  92. package/dist/src/assets/DefaultAvatar.js.map +0 -1
  93. package/dist/src/components/Dropdown/ConnectedTrigger.d.ts +0 -8
  94. package/dist/src/components/Dropdown/ConnectedTrigger.d.ts.map +0 -1
  95. package/dist/src/components/Dropdown/ConnectedTrigger.js +0 -39
  96. package/dist/src/components/Dropdown/ConnectedTrigger.js.map +0 -1
  97. package/dist/src/components/Dropdown/Content.d.ts +0 -8
  98. package/dist/src/components/Dropdown/Content.d.ts.map +0 -1
  99. package/dist/src/components/Dropdown/Content.js +0 -27
  100. package/dist/src/components/Dropdown/Content.js.map +0 -1
  101. package/dist/src/components/Dropdown/DisconnectedTrigger.d.ts +0 -7
  102. package/dist/src/components/Dropdown/DisconnectedTrigger.d.ts.map +0 -1
  103. package/dist/src/components/Dropdown/DisconnectedTrigger.js +0 -13
  104. package/dist/src/components/Dropdown/DisconnectedTrigger.js.map +0 -1
  105. package/dist/src/components/Dropdown/Dropdown.d.ts +0 -23
  106. package/dist/src/components/Dropdown/Dropdown.d.ts.map +0 -1
  107. package/dist/src/components/Dropdown/Dropdown.js +0 -45
  108. package/dist/src/components/Dropdown/Dropdown.js.map +0 -1
  109. package/dist/src/components/Dropdown/ListingItem.d.ts +0 -14
  110. package/dist/src/components/Dropdown/ListingItem.d.ts.map +0 -1
  111. package/dist/src/components/Dropdown/ListingItem.js +0 -42
  112. package/dist/src/components/Dropdown/ListingItem.js.map +0 -1
  113. package/dist/src/components/Dropdown/NestedViewLayout.d.ts +0 -8
  114. package/dist/src/components/Dropdown/NestedViewLayout.d.ts.map +0 -1
  115. package/dist/src/components/Dropdown/NestedViewLayout.js +0 -32
  116. package/dist/src/components/Dropdown/NestedViewLayout.js.map +0 -1
  117. package/dist/src/components/Dropdown/Receive/Receive.d.ts +0 -4
  118. package/dist/src/components/Dropdown/Receive/Receive.d.ts.map +0 -1
  119. package/dist/src/components/Dropdown/Receive/Receive.js +0 -64
  120. package/dist/src/components/Dropdown/Receive/Receive.js.map +0 -1
  121. package/dist/src/components/Dropdown/Root/AccountAddressActions.d.ts +0 -4
  122. package/dist/src/components/Dropdown/Root/AccountAddressActions.d.ts.map +0 -1
  123. package/dist/src/components/Dropdown/Root/AccountAddressActions.js +0 -49
  124. package/dist/src/components/Dropdown/Root/AccountAddressActions.js.map +0 -1
  125. package/dist/src/components/Dropdown/Root/AccountBalance.d.ts +0 -6
  126. package/dist/src/components/Dropdown/Root/AccountBalance.d.ts.map +0 -1
  127. package/dist/src/components/Dropdown/Root/AccountBalance.js +0 -32
  128. package/dist/src/components/Dropdown/Root/AccountBalance.js.map +0 -1
  129. package/dist/src/components/Dropdown/Root/AccountBtcListing.d.ts +0 -6
  130. package/dist/src/components/Dropdown/Root/AccountBtcListing.d.ts.map +0 -1
  131. package/dist/src/components/Dropdown/Root/AccountBtcListing.js +0 -28
  132. package/dist/src/components/Dropdown/Root/AccountBtcListing.js.map +0 -1
  133. package/dist/src/components/Dropdown/Root/AccountError.d.ts +0 -8
  134. package/dist/src/components/Dropdown/Root/AccountError.d.ts.map +0 -1
  135. package/dist/src/components/Dropdown/Root/AccountError.js +0 -17
  136. package/dist/src/components/Dropdown/Root/AccountError.js.map +0 -1
  137. package/dist/src/components/Dropdown/Root/AccountMusdListing.d.ts +0 -4
  138. package/dist/src/components/Dropdown/Root/AccountMusdListing.d.ts.map +0 -1
  139. package/dist/src/components/Dropdown/Root/AccountMusdListing.js +0 -21
  140. package/dist/src/components/Dropdown/Root/AccountMusdListing.js.map +0 -1
  141. package/dist/src/components/Dropdown/Root/AccountOtherAssets.d.ts +0 -8
  142. package/dist/src/components/Dropdown/Root/AccountOtherAssets.d.ts.map +0 -1
  143. package/dist/src/components/Dropdown/Root/AccountOtherAssets.js +0 -43
  144. package/dist/src/components/Dropdown/Root/AccountOtherAssets.js.map +0 -1
  145. package/dist/src/components/Dropdown/Root/Root.d.ts +0 -8
  146. package/dist/src/components/Dropdown/Root/Root.d.ts.map +0 -1
  147. package/dist/src/components/Dropdown/Root/Root.js +0 -45
  148. package/dist/src/components/Dropdown/Root/Root.js.map +0 -1
  149. package/dist/src/components/Dropdown/Root/WalletAddress.d.ts +0 -4
  150. package/dist/src/components/Dropdown/Root/WalletAddress.d.ts.map +0 -1
  151. package/dist/src/components/Dropdown/Root/WalletAddress.js +0 -66
  152. package/dist/src/components/Dropdown/Root/WalletAddress.js.map +0 -1
  153. package/dist/src/components/Dropdown/Root/WelcomeBlock.d.ts +0 -6
  154. package/dist/src/components/Dropdown/Root/WelcomeBlock.d.ts.map +0 -1
  155. package/dist/src/components/Dropdown/Root/WelcomeBlock.js +0 -88
  156. package/dist/src/components/Dropdown/Root/WelcomeBlock.js.map +0 -1
  157. package/dist/src/components/Dropdown/SlotNumber.d.ts +0 -19
  158. package/dist/src/components/Dropdown/SlotNumber.d.ts.map +0 -1
  159. package/dist/src/components/Dropdown/SlotNumber.js +0 -67
  160. package/dist/src/components/Dropdown/SlotNumber.js.map +0 -1
  161. package/dist/src/components/Dropdown/TestnetTopBanner.d.ts +0 -3
  162. package/dist/src/components/Dropdown/TestnetTopBanner.d.ts.map +0 -1
  163. package/dist/src/components/Dropdown/TestnetTopBanner.js +0 -14
  164. package/dist/src/components/Dropdown/TestnetTopBanner.js.map +0 -1
  165. package/dist/src/components/Dropdown/index.d.ts +0 -3
  166. package/dist/src/components/Dropdown/index.d.ts.map +0 -1
  167. package/dist/src/components/Dropdown/index.js +0 -2
  168. package/dist/src/components/Dropdown/index.js.map +0 -1
  169. package/dist/src/components/index.d.ts +0 -2
  170. package/dist/src/components/index.d.ts.map +0 -1
  171. package/dist/src/components/index.js +0 -2
  172. package/dist/src/components/index.js.map +0 -1
  173. package/dist/src/lib/contracts/artifacts/MEZO.json +0 -428
  174. package/src/assets/DefaultAvatar.tsx +0 -74
  175. package/src/components/Dropdown/ConnectedTrigger.tsx +0 -76
  176. package/src/components/Dropdown/Content.tsx +0 -53
  177. package/src/components/Dropdown/DisconnectedTrigger.tsx +0 -36
  178. package/src/components/Dropdown/Dropdown.tsx +0 -100
  179. package/src/components/Dropdown/ListingItem.tsx +0 -176
  180. package/src/components/Dropdown/NestedViewLayout.tsx +0 -87
  181. package/src/components/Dropdown/README.md +0 -41
  182. package/src/components/Dropdown/Receive/Receive.tsx +0 -144
  183. package/src/components/Dropdown/Root/AccountAddressActions.tsx +0 -99
  184. package/src/components/Dropdown/Root/AccountBalance.tsx +0 -69
  185. package/src/components/Dropdown/Root/AccountBtcListing.tsx +0 -53
  186. package/src/components/Dropdown/Root/AccountError.tsx +0 -34
  187. package/src/components/Dropdown/Root/AccountMusdListing.tsx +0 -45
  188. package/src/components/Dropdown/Root/AccountOtherAssets.tsx +0 -85
  189. package/src/components/Dropdown/Root/Root.tsx +0 -77
  190. package/src/components/Dropdown/Root/WalletAddress.tsx +0 -123
  191. package/src/components/Dropdown/Root/WelcomeBlock.tsx +0 -173
  192. package/src/components/Dropdown/SlotNumber.tsx +0 -131
  193. package/src/components/Dropdown/TestnetTopBanner.tsx +0 -32
  194. package/src/components/Dropdown/index.ts +0 -2
  195. package/src/components/index.ts +0 -1
  196. package/src/lib/contracts/artifacts/MEZO.json +0 -428
@@ -1,49 +0,0 @@
1
- import { ArrowNarrowLeft, Block, Button, mergeOverrides, useStyletron, } from "@mezo-org/mezo-clay";
2
- import React from "react";
3
- import { usePassportContext } from "../../../hooks/usePassportContext";
4
- import { getAddressExplorerUrl } from "../../../utils/address";
5
- import useDropdownStore, { DropdownView } from "../../../stores/dropdownStore";
6
- import useWalletAccount from "../../../hooks/useWalletAccount";
7
- const buttonStartEnhancerSize = 12;
8
- const commonButtonProps = {
9
- kind: "secondary",
10
- size: "small",
11
- shape: "pill",
12
- overrides: {
13
- BaseButton: {
14
- style: {
15
- flex: 1,
16
- },
17
- },
18
- StartEnhancer: {
19
- style: {
20
- stroke: "currentColor",
21
- },
22
- },
23
- },
24
- };
25
- export default function AccountAddressActions(props) {
26
- const { overrides, ...restProps } = props;
27
- const [, theme] = useStyletron();
28
- const { environment } = usePassportContext();
29
- const setDropdownView = useDropdownStore((state) => state.setView);
30
- const handleReceiveClick = () => setDropdownView(DropdownView.RECEIVE);
31
- const walletAccount = useWalletAccount();
32
- const blockExplorerUrl = getAddressExplorerUrl(walletAccount.accountAddress, "mezo", environment === "testnet");
33
- return (React.createElement(Block, { display: "flex", alignItems: "center", backgroundColor: "transparent", padding: `0 ${theme.sizing.scale600} ${theme.sizing.scale800}`, overrides: mergeOverrides({
34
- Block: {
35
- style: {
36
- gap: theme.sizing.scale600,
37
- },
38
- },
39
- }, overrides), ...restProps },
40
- React.createElement(Button, { onClick: handleReceiveClick, startEnhancer: React.createElement(ArrowNarrowLeft, { size: buttonStartEnhancerSize, overrides: {
41
- Svg: {
42
- style: {
43
- transform: "rotate(-45deg)",
44
- },
45
- },
46
- } }), ...commonButtonProps }, "Receive"),
47
- React.createElement(Button, { "$as": "a", href: blockExplorerUrl, target: "_blank", ...commonButtonProps }, "Block Explorer")));
48
- }
49
- //# sourceMappingURL=AccountAddressActions.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"AccountAddressActions.js","sourceRoot":"","sources":["../../../../../src/components/Dropdown/Root/AccountAddressActions.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,eAAe,EACf,KAAK,EAEL,MAAM,EAEN,cAAc,EACd,YAAY,GACb,MAAM,qBAAqB,CAAA;AAC5B,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAA;AACtE,OAAO,EAAE,qBAAqB,EAAE,MAAM,wBAAwB,CAAA;AAC9D,OAAO,gBAAgB,EAAE,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAA;AAC9E,OAAO,gBAAgB,MAAM,iCAAiC,CAAA;AAE9D,MAAM,uBAAuB,GAAG,EAAE,CAAA;AAElC,MAAM,iBAAiB,GAAyB;IAC9C,IAAI,EAAE,WAAW;IACjB,IAAI,EAAE,OAAO;IACb,KAAK,EAAE,MAAM;IACb,SAAS,EAAE;QACT,UAAU,EAAE;YACV,KAAK,EAAE;gBACL,IAAI,EAAE,CAAC;aACR;SACF;QACD,aAAa,EAAE;YACb,KAAK,EAAE;gBACL,MAAM,EAAE,cAAc;aACvB;SACF;KACF;CACF,CAAA;AAED,MAAM,CAAC,OAAO,UAAU,qBAAqB,CAAC,KAAiB;IAC7D,MAAM,EAAE,SAAS,EAAE,GAAG,SAAS,EAAE,GAAG,KAAK,CAAA;IAEzC,MAAM,CAAC,EAAE,KAAK,CAAC,GAAG,YAAY,EAAE,CAAA;IAChC,MAAM,EAAE,WAAW,EAAE,GAAG,kBAAkB,EAAE,CAAA;IAC5C,MAAM,eAAe,GAAG,gBAAgB,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,CAAA;IAClE,MAAM,kBAAkB,GAAG,GAAG,EAAE,CAAC,eAAe,CAAC,YAAY,CAAC,OAAO,CAAC,CAAA;IAEtE,MAAM,aAAa,GAAG,gBAAgB,EAAE,CAAA;IAExC,MAAM,gBAAgB,GAAG,qBAAqB,CAC5C,aAAa,CAAC,cAAe,EAC7B,MAAM,EACN,WAAW,KAAK,SAAS,CAC1B,CAAA;IAED,OAAO,CACL,oBAAC,KAAK,IACJ,OAAO,EAAC,MAAM,EACd,UAAU,EAAC,QAAQ,EACnB,eAAe,EAAC,aAAa,EAC7B,OAAO,EAAE,KAAK,KAAK,CAAC,MAAM,CAAC,QAAQ,IAAI,KAAK,CAAC,MAAM,CAAC,QAAQ,EAAE,EAC9D,SAAS,EAAE,cAAc,CACvB;YACE,KAAK,EAAE;gBACL,KAAK,EAAE;oBACL,GAAG,EAAE,KAAK,CAAC,MAAM,CAAC,QAAQ;iBAC3B;aACF;SACF,EACD,SAAS,CACV,KACG,SAAS;QAEb,oBAAC,MAAM,IACL,OAAO,EAAE,kBAAkB,EAC3B,aAAa,EACX,oBAAC,eAAe,IACd,IAAI,EAAE,uBAAuB,EAC7B,SAAS,EAAE;oBACT,GAAG,EAAE;wBACH,KAAK,EAAE;4BACL,SAAS,EAAE,gBAAgB;yBAC5B;qBACF;iBACF,GACD,KAEA,iBAAiB,cAGd;QAET,oBAAC,MAAM,WACD,GAAG,EACP,IAAI,EAAE,gBAAgB,EACtB,MAAM,EAAC,QAAQ,KACX,iBAAiB,qBAGd,CACH,CACT,CAAA;AACH,CAAC"}
@@ -1,6 +0,0 @@
1
- import React from "react";
2
- import { BlockProps } from "@mezo-org/mezo-clay";
3
- type AccountBalanceProps = Omit<BlockProps, "children">;
4
- export default function AccountBalance(props: AccountBalanceProps): React.JSX.Element;
5
- export {};
6
- //# sourceMappingURL=AccountBalance.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"AccountBalance.d.ts","sourceRoot":"","sources":["../../../../../src/components/Dropdown/Root/AccountBalance.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,UAAU,EAAgB,MAAM,qBAAqB,CAAA;AAS9D,KAAK,mBAAmB,GAAG,IAAI,CAAC,UAAU,EAAE,UAAU,CAAC,CAAA;AAEvD,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,KAAK,EAAE,mBAAmB,qBAwDhE"}
@@ -1,32 +0,0 @@
1
- import React from "react";
2
- import { useStyletron } from "@mezo-org/mezo-clay";
3
- import { formatUnits } from "viem";
4
- import ListingItem from "../ListingItem";
5
- import { useTokensBalances } from "../../../hooks/useTokensBalances";
6
- import { useBorrowData } from "../../../hooks/useBorrowData";
7
- import AccountError from "./AccountError";
8
- import { CONVERSION_RATE_DECIMALS } from "../../../hooks/useAssetsConversionRates";
9
- import { usePassportContext } from "../../../hooks/usePassportContext";
10
- export default function AccountBalance(props) {
11
- const { overrides, ...restProps } = props;
12
- const [, theme] = useStyletron();
13
- const { nativeBalanceRefetchInterval } = usePassportContext();
14
- const { data: tokensBalancesData, isError: isTokensBalancesError, isPending: isTokensBalancesDataPending, } = useTokensBalances({
15
- queryOptions: {
16
- staleTime: nativeBalanceRefetchInterval,
17
- refetchInterval: nativeBalanceRefetchInterval,
18
- },
19
- });
20
- const { data: borrowData, isError: isBorrowDataError, isPending: isBorrowDataPending, } = useBorrowData();
21
- if (isTokensBalancesDataPending || isBorrowDataPending) {
22
- return React.createElement(ListingItem, { isLoading: true, overrides: overrides });
23
- }
24
- if (isTokensBalancesError || isBorrowDataError) {
25
- return (React.createElement(AccountError, { padding: `${theme.sizing.scale500} ${theme.sizing.scale800}`, topic: "account balance", overrides: overrides }));
26
- }
27
- const totalBalanceInUsd = Object.values(tokensBalancesData).reduce((acc, tokenBalance) => acc + tokenBalance.usd.value, 0n);
28
- const totalBalanceNumber = Number(formatUnits(totalBalanceInUsd, CONVERSION_RATE_DECIMALS));
29
- const totalDebtNumber = Number(borrowData.debtInUsd.formatted);
30
- return (React.createElement(ListingItem, { label: "Total assets", value: totalBalanceNumber, subLabel: "Total liabilities", subValue: totalDebtNumber, overrides: overrides, ...restProps }));
31
- }
32
- //# sourceMappingURL=AccountBalance.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"AccountBalance.js","sourceRoot":"","sources":["../../../../../src/components/Dropdown/Root/AccountBalance.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAc,YAAY,EAAE,MAAM,qBAAqB,CAAA;AAC9D,OAAO,EAAE,WAAW,EAAE,MAAM,MAAM,CAAA;AAClC,OAAO,WAAW,MAAM,gBAAgB,CAAA;AACxC,OAAO,EAAE,iBAAiB,EAAE,MAAM,kCAAkC,CAAA;AACpE,OAAO,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAA;AAC5D,OAAO,YAAY,MAAM,gBAAgB,CAAA;AACzC,OAAO,EAAE,wBAAwB,EAAE,MAAM,yCAAyC,CAAA;AAClF,OAAO,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAA;AAItE,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,KAA0B;IAC/D,MAAM,EAAE,SAAS,EAAE,GAAG,SAAS,EAAE,GAAG,KAAK,CAAA;IACzC,MAAM,CAAC,EAAE,KAAK,CAAC,GAAG,YAAY,EAAE,CAAA;IAChC,MAAM,EAAE,4BAA4B,EAAE,GAAG,kBAAkB,EAAE,CAAA;IAE7D,MAAM,EACJ,IAAI,EAAE,kBAAkB,EACxB,OAAO,EAAE,qBAAqB,EAC9B,SAAS,EAAE,2BAA2B,GACvC,GAAG,iBAAiB,CAAC;QACpB,YAAY,EAAE;YACZ,SAAS,EAAE,4BAA4B;YACvC,eAAe,EAAE,4BAA4B;SAC9C;KACF,CAAC,CAAA;IACF,MAAM,EACJ,IAAI,EAAE,UAAU,EAChB,OAAO,EAAE,iBAAiB,EAC1B,SAAS,EAAE,mBAAmB,GAC/B,GAAG,aAAa,EAAE,CAAA;IAEnB,IAAI,2BAA2B,IAAI,mBAAmB,EAAE,CAAC;QACvD,OAAO,oBAAC,WAAW,IAAC,SAAS,QAAC,SAAS,EAAE,SAAS,GAAI,CAAA;IACxD,CAAC;IAED,IAAI,qBAAqB,IAAI,iBAAiB,EAAE,CAAC;QAC/C,OAAO,CACL,oBAAC,YAAY,IACX,OAAO,EAAE,GAAG,KAAK,CAAC,MAAM,CAAC,QAAQ,IAAI,KAAK,CAAC,MAAM,CAAC,QAAQ,EAAE,EAC5D,KAAK,EAAC,iBAAiB,EACvB,SAAS,EAAE,SAAS,GACpB,CACH,CAAA;IACH,CAAC;IAED,MAAM,iBAAiB,GAAG,MAAM,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,MAAM,CAChE,CAAC,GAAG,EAAE,YAAY,EAAE,EAAE,CAAC,GAAG,GAAG,YAAY,CAAC,GAAG,CAAC,KAAK,EACnD,EAAE,CACH,CAAA;IAED,MAAM,kBAAkB,GAAG,MAAM,CAC/B,WAAW,CAAC,iBAAiB,EAAE,wBAAwB,CAAC,CACzD,CAAA;IAED,MAAM,eAAe,GAAG,MAAM,CAAC,UAAU,CAAC,SAAS,CAAC,SAAS,CAAC,CAAA;IAE9D,OAAO,CACL,oBAAC,WAAW,IACV,KAAK,EAAC,cAAc,EACpB,KAAK,EAAE,kBAAkB,EACzB,QAAQ,EAAC,mBAAmB,EAC5B,QAAQ,EAAE,eAAe,EACzB,SAAS,EAAE,SAAS,KAChB,SAAS,GACb,CACH,CAAA;AACH,CAAC"}
@@ -1,6 +0,0 @@
1
- import React from "react";
2
- import { BlockProps } from "@mezo-org/mezo-clay";
3
- type AccountBTCListingProps = Omit<BlockProps, "children">;
4
- export default function AccountBTCListing(props: AccountBTCListingProps): React.JSX.Element;
5
- export {};
6
- //# sourceMappingURL=AccountBtcListing.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"AccountBtcListing.d.ts","sourceRoot":"","sources":["../../../../../src/components/Dropdown/Root/AccountBtcListing.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAiB,UAAU,EAAE,MAAM,qBAAqB,CAAA;AAQ/D,KAAK,sBAAsB,GAAG,IAAI,CAAC,UAAU,EAAE,UAAU,CAAC,CAAA;AAE1D,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,KAAK,EAAE,sBAAsB,qBAyCtE"}
@@ -1,28 +0,0 @@
1
- import React from "react";
2
- import { BitcoinCircle } from "@mezo-org/mezo-clay";
3
- import ListingItem from "../ListingItem";
4
- import { getAsset } from "../../../utils/assets";
5
- import { useBorrowData } from "../../../hooks/useBorrowData";
6
- import { useTokensBalances } from "../../../hooks/useTokensBalances";
7
- import AccountError from "./AccountError";
8
- import { usePassportContext } from "../../../hooks/usePassportContext";
9
- export default function AccountBTCListing(props) {
10
- const { nativeBalanceRefetchInterval } = usePassportContext();
11
- const { data: borrowData, isError: isBorrowDataError, isPending: isBorrowDataPending, } = useBorrowData();
12
- const { data: tokensBalancesData, isError: isTokensBalancesError, isPending: isTokensBalancesPending, } = useTokensBalances({
13
- queryOptions: {
14
- staleTime: nativeBalanceRefetchInterval,
15
- refetchInterval: nativeBalanceRefetchInterval,
16
- },
17
- });
18
- if (isTokensBalancesPending || isBorrowDataPending) {
19
- return React.createElement(ListingItem, { isLoading: true });
20
- }
21
- if (isTokensBalancesError || isBorrowDataError) {
22
- return React.createElement(AccountError, { topic: "Bitcoin balance" });
23
- }
24
- const btcBalance = Number(tokensBalancesData.BTC.usd.formatted);
25
- const lockedCollateral = Number(borrowData.collateral.usd.formatted);
26
- return (React.createElement(ListingItem, { icon: React.createElement(BitcoinCircle, null), label: getAsset("BTC").name, value: btcBalance, subLabel: "Locked collateral", subValue: lockedCollateral, ...props }));
27
- }
28
- //# sourceMappingURL=AccountBtcListing.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"AccountBtcListing.js","sourceRoot":"","sources":["../../../../../src/components/Dropdown/Root/AccountBtcListing.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,aAAa,EAAc,MAAM,qBAAqB,CAAA;AAC/D,OAAO,WAAW,MAAM,gBAAgB,CAAA;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAA;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAA;AAC5D,OAAO,EAAE,iBAAiB,EAAE,MAAM,kCAAkC,CAAA;AACpE,OAAO,YAAY,MAAM,gBAAgB,CAAA;AACzC,OAAO,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAA;AAItE,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,KAA6B;IACrE,MAAM,EAAE,4BAA4B,EAAE,GAAG,kBAAkB,EAAE,CAAA;IAE7D,MAAM,EACJ,IAAI,EAAE,UAAU,EAChB,OAAO,EAAE,iBAAiB,EAC1B,SAAS,EAAE,mBAAmB,GAC/B,GAAG,aAAa,EAAE,CAAA;IAEnB,MAAM,EACJ,IAAI,EAAE,kBAAkB,EACxB,OAAO,EAAE,qBAAqB,EAC9B,SAAS,EAAE,uBAAuB,GACnC,GAAG,iBAAiB,CAAC;QACpB,YAAY,EAAE;YACZ,SAAS,EAAE,4BAA4B;YACvC,eAAe,EAAE,4BAA4B;SAC9C;KACF,CAAC,CAAA;IAEF,IAAI,uBAAuB,IAAI,mBAAmB,EAAE,CAAC;QACnD,OAAO,oBAAC,WAAW,IAAC,SAAS,SAAG,CAAA;IAClC,CAAC;IAED,IAAI,qBAAqB,IAAI,iBAAiB,EAAE,CAAC;QAC/C,OAAO,oBAAC,YAAY,IAAC,KAAK,EAAC,iBAAiB,GAAG,CAAA;IACjD,CAAC;IAED,MAAM,UAAU,GAAG,MAAM,CAAC,kBAAkB,CAAC,GAAG,CAAC,GAAG,CAAC,SAAS,CAAC,CAAA;IAC/D,MAAM,gBAAgB,GAAG,MAAM,CAAC,UAAU,CAAC,UAAU,CAAC,GAAG,CAAC,SAAS,CAAC,CAAA;IAEpE,OAAO,CACL,oBAAC,WAAW,IACV,IAAI,EAAE,oBAAC,aAAa,OAAG,EACvB,KAAK,EAAE,QAAQ,CAAC,KAAK,CAAC,CAAC,IAAI,EAC3B,KAAK,EAAE,UAAU,EACjB,QAAQ,EAAC,mBAAmB,EAC5B,QAAQ,EAAE,gBAAgB,KACtB,KAAK,GACT,CACH,CAAA;AACH,CAAC"}
@@ -1,8 +0,0 @@
1
- import React from "react";
2
- import { BlockProps } from "@mezo-org/mezo-clay";
3
- type AccountErrorProps = {
4
- topic: string;
5
- } & BlockProps;
6
- export default function AccountError(props: AccountErrorProps): React.JSX.Element;
7
- export {};
8
- //# sourceMappingURL=AccountError.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"AccountError.d.ts","sourceRoot":"","sources":["../../../../../src/components/Dropdown/Root/AccountError.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EACL,UAAU,EAIX,MAAM,qBAAqB,CAAA;AAE5B,KAAK,iBAAiB,GAAG;IACvB,KAAK,EAAE,MAAM,CAAA;CACd,GAAG,UAAU,CAAA;AAEd,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,KAAK,EAAE,iBAAiB,qBAqB5D"}
@@ -1,17 +0,0 @@
1
- import React from "react";
2
- import { LabelSmall, mergeOverrides, useStyletron, } from "@mezo-org/mezo-clay";
3
- export default function AccountError(props) {
4
- const { topic, overrides, ...restProps } = props;
5
- const [, theme] = useStyletron();
6
- return (React.createElement(LabelSmall, { padding: `${theme.sizing.scale600} ${theme.sizing.scale800}`, color: "negative", overrides: mergeOverrides(overrides, {
7
- Block: {
8
- style: {
9
- lineHeight: theme.sizing.scale700,
10
- },
11
- },
12
- }), ...restProps },
13
- "An error occured loading ",
14
- topic,
15
- "."));
16
- }
17
- //# sourceMappingURL=AccountError.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"AccountError.js","sourceRoot":"","sources":["../../../../../src/components/Dropdown/Root/AccountError.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAEL,UAAU,EACV,cAAc,EACd,YAAY,GACb,MAAM,qBAAqB,CAAA;AAM5B,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,KAAwB;IAC3D,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,GAAG,SAAS,EAAE,GAAG,KAAK,CAAA;IAEhD,MAAM,CAAC,EAAE,KAAK,CAAC,GAAG,YAAY,EAAE,CAAA;IAEhC,OAAO,CACL,oBAAC,UAAU,IACT,OAAO,EAAE,GAAG,KAAK,CAAC,MAAM,CAAC,QAAQ,IAAI,KAAK,CAAC,MAAM,CAAC,QAAQ,EAAE,EAC5D,KAAK,EAAC,UAAU,EAChB,SAAS,EAAE,cAAc,CAAC,SAAS,EAAE;YACnC,KAAK,EAAE;gBACL,KAAK,EAAE;oBACL,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,QAAQ;iBAClC;aACF;SACF,CAAC,KACE,SAAS;;QAEa,KAAK;YACpB,CACd,CAAA;AACH,CAAC"}
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { BlockProps } from "@mezo-org/mezo-clay";
3
- export default function AccountMusdListing(props: Omit<BlockProps, "children">): React.JSX.Element;
4
- //# sourceMappingURL=AccountMusdListing.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"AccountMusdListing.d.ts","sourceRoot":"","sources":["../../../../../src/components/Dropdown/Root/AccountMusdListing.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,UAAU,EAAgB,MAAM,qBAAqB,CAAA;AAO9D,MAAM,CAAC,OAAO,UAAU,kBAAkB,CACxC,KAAK,EAAE,IAAI,CAAC,UAAU,EAAE,UAAU,CAAC,qBAmCpC"}
@@ -1,21 +0,0 @@
1
- import React from "react";
2
- import { MUsdCircle02 } from "@mezo-org/mezo-clay";
3
- import ListingItem from "../ListingItem";
4
- import { getAsset } from "../../../utils/assets";
5
- import { useBorrowData } from "../../../hooks/useBorrowData";
6
- import { useTokensBalances } from "../../../hooks/useTokensBalances";
7
- import AccountError from "./AccountError";
8
- export default function AccountMusdListing(props) {
9
- const { data: borrowData, isError: isBorrowDataError, isPending: isBorrowDataPending, } = useBorrowData();
10
- const { data: tokensBalancesData, isError: isTokensBalancesError, isPending: isTokensBalancesPending, } = useTokensBalances();
11
- if (isBorrowDataPending || isTokensBalancesPending) {
12
- return React.createElement(ListingItem, { isLoading: true });
13
- }
14
- if (isBorrowDataError || isTokensBalancesError) {
15
- return React.createElement(AccountError, { topic: "MUSD balance" });
16
- }
17
- const musdBalance = Number(tokensBalancesData.MUSD.usd.formatted);
18
- const lockedCollateral = Number(borrowData.debtInUsd.formatted);
19
- return (React.createElement(ListingItem, { icon: React.createElement(MUsdCircle02, null), label: getAsset("MUSD").name, value: musdBalance, subLabel: "Borrowed", subValue: lockedCollateral, ...props }));
20
- }
21
- //# sourceMappingURL=AccountMusdListing.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"AccountMusdListing.js","sourceRoot":"","sources":["../../../../../src/components/Dropdown/Root/AccountMusdListing.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAc,YAAY,EAAE,MAAM,qBAAqB,CAAA;AAC9D,OAAO,WAAW,MAAM,gBAAgB,CAAA;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAA;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAA;AAC5D,OAAO,EAAE,iBAAiB,EAAE,MAAM,kCAAkC,CAAA;AACpE,OAAO,YAAY,MAAM,gBAAgB,CAAA;AAEzC,MAAM,CAAC,OAAO,UAAU,kBAAkB,CACxC,KAAmC;IAEnC,MAAM,EACJ,IAAI,EAAE,UAAU,EAChB,OAAO,EAAE,iBAAiB,EAC1B,SAAS,EAAE,mBAAmB,GAC/B,GAAG,aAAa,EAAE,CAAA;IAEnB,MAAM,EACJ,IAAI,EAAE,kBAAkB,EACxB,OAAO,EAAE,qBAAqB,EAC9B,SAAS,EAAE,uBAAuB,GACnC,GAAG,iBAAiB,EAAE,CAAA;IAEvB,IAAI,mBAAmB,IAAI,uBAAuB,EAAE,CAAC;QACnD,OAAO,oBAAC,WAAW,IAAC,SAAS,SAAG,CAAA;IAClC,CAAC;IAED,IAAI,iBAAiB,IAAI,qBAAqB,EAAE,CAAC;QAC/C,OAAO,oBAAC,YAAY,IAAC,KAAK,EAAC,cAAc,GAAG,CAAA;IAC9C,CAAC;IAED,MAAM,WAAW,GAAG,MAAM,CAAC,kBAAkB,CAAC,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,CAAA;IACjE,MAAM,gBAAgB,GAAG,MAAM,CAAC,UAAU,CAAC,SAAS,CAAC,SAAS,CAAC,CAAA;IAE/D,OAAO,CACL,oBAAC,WAAW,IACV,IAAI,EAAE,oBAAC,YAAY,OAAG,EACtB,KAAK,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC,IAAI,EAC5B,KAAK,EAAE,WAAW,EAClB,QAAQ,EAAC,UAAU,EACnB,QAAQ,EAAE,gBAAgB,KACtB,KAAK,GACT,CACH,CAAA;AACH,CAAC"}
@@ -1,8 +0,0 @@
1
- import React from "react";
2
- import { BlockProps } from "@mezo-org/mezo-clay";
3
- type AccountOtherAssetsProps = {
4
- onClick?: () => void;
5
- } & Omit<BlockProps, "children">;
6
- export default function AccountOtherAssets(props: AccountOtherAssetsProps): React.JSX.Element;
7
- export {};
8
- //# sourceMappingURL=AccountOtherAssets.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"AccountOtherAssets.d.ts","sourceRoot":"","sources":["../../../../../src/components/Dropdown/Root/AccountOtherAssets.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAIL,UAAU,EACX,MAAM,qBAAqB,CAAA;AAO5B,KAAK,uBAAuB,GAAG;IAC7B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;CACrB,GAAG,IAAI,CAAC,UAAU,EAAE,UAAU,CAAC,CAAA;AAEhC,MAAM,CAAC,OAAO,UAAU,kBAAkB,CAAC,KAAK,EAAE,uBAAuB,qBAmExE"}
@@ -1,43 +0,0 @@
1
- import React from "react";
2
- import { useStyletron, CoinsStacked02, mergeOverrides, } from "@mezo-org/mezo-clay";
3
- import { formatUnits } from "viem";
4
- import ListingItem from "../ListingItem";
5
- import { useTokensBalances } from "../../../hooks/useTokensBalances";
6
- import AccountError from "./AccountError";
7
- import { CONVERSION_RATE_DECIMALS } from "../../../hooks/useAssetsConversionRates";
8
- export default function AccountOtherAssets(props) {
9
- const { onClick, overrides, ...restProps } = props;
10
- const [, theme] = useStyletron();
11
- const { data: tokensBalancesData, isPending: isTokensBalancesPending, isError: isTokensBalancesError, } = useTokensBalances();
12
- if (isTokensBalancesPending) {
13
- return React.createElement(ListingItem, { isLoading: true, overrides: overrides });
14
- }
15
- if (isTokensBalancesError) {
16
- return (React.createElement(AccountError, { topic: "other assets", paddingTop: theme.sizing.scale100, paddingBottom: theme.sizing.scale100, overrides: overrides }));
17
- }
18
- const otherAssets = Object.values(tokensBalancesData)
19
- .filter((asset) => !["BTC", "MUSD"].includes(asset.symbol))
20
- .filter((asset) => asset.value > 0n);
21
- const assetsCount = otherAssets.length;
22
- const totalAssetsInUsd = Number(formatUnits(otherAssets.reduce((total, asset) => total + asset.usd.value, 0n), CONVERSION_RATE_DECIMALS));
23
- let label = "No other assets";
24
- if (assetsCount === 1)
25
- label = "1 more asset";
26
- if (assetsCount > 1)
27
- label = `${assetsCount} more assets`;
28
- return (React.createElement(ListingItem, { icon: React.createElement(CoinsStacked02, { color: theme.colors.contentPrimary }), label: label, value: totalAssetsInUsd, overrides: mergeOverrides({
29
- Block: {
30
- props: {
31
- $as: "button",
32
- onClick,
33
- },
34
- style: {
35
- borderWidth: 0,
36
- cursor: "pointer",
37
- backgroundColor: "transparent",
38
- minHeight: "56px",
39
- },
40
- },
41
- }, overrides), ...restProps }));
42
- }
43
- //# sourceMappingURL=AccountOtherAssets.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"AccountOtherAssets.js","sourceRoot":"","sources":["../../../../../src/components/Dropdown/Root/AccountOtherAssets.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EACL,YAAY,EACZ,cAAc,EACd,cAAc,GAEf,MAAM,qBAAqB,CAAA;AAC5B,OAAO,EAAE,WAAW,EAAE,MAAM,MAAM,CAAA;AAClC,OAAO,WAAW,MAAM,gBAAgB,CAAA;AACxC,OAAO,EAAE,iBAAiB,EAAE,MAAM,kCAAkC,CAAA;AACpE,OAAO,YAAY,MAAM,gBAAgB,CAAA;AACzC,OAAO,EAAE,wBAAwB,EAAE,MAAM,yCAAyC,CAAA;AAMlF,MAAM,CAAC,OAAO,UAAU,kBAAkB,CAAC,KAA8B;IACvE,MAAM,EAAE,OAAO,EAAE,SAAS,EAAE,GAAG,SAAS,EAAE,GAAG,KAAK,CAAA;IAElD,MAAM,CAAC,EAAE,KAAK,CAAC,GAAG,YAAY,EAAE,CAAA;IAEhC,MAAM,EACJ,IAAI,EAAE,kBAAkB,EACxB,SAAS,EAAE,uBAAuB,EAClC,OAAO,EAAE,qBAAqB,GAC/B,GAAG,iBAAiB,EAAE,CAAA;IAEvB,IAAI,uBAAuB,EAAE,CAAC;QAC5B,OAAO,oBAAC,WAAW,IAAC,SAAS,QAAC,SAAS,EAAE,SAAS,GAAI,CAAA;IACxD,CAAC;IAED,IAAI,qBAAqB,EAAE,CAAC;QAC1B,OAAO,CACL,oBAAC,YAAY,IACX,KAAK,EAAC,cAAc,EACpB,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,QAAQ,EACjC,aAAa,EAAE,KAAK,CAAC,MAAM,CAAC,QAAQ,EACpC,SAAS,EAAE,SAAS,GACpB,CACH,CAAA;IACH,CAAC;IAED,MAAM,WAAW,GAAG,MAAM,CAAC,MAAM,CAAC,kBAAkB,CAAC;SAClD,MAAM,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;SAC1D,MAAM,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,KAAK,GAAG,EAAE,CAAC,CAAA;IAEtC,MAAM,WAAW,GAAG,WAAW,CAAC,MAAM,CAAA;IACtC,MAAM,gBAAgB,GAAG,MAAM,CAC7B,WAAW,CACT,WAAW,CAAC,MAAM,CAAC,CAAC,KAAK,EAAE,KAAK,EAAE,EAAE,CAAC,KAAK,GAAG,KAAK,CAAC,GAAG,CAAC,KAAK,EAAE,EAAE,CAAC,EACjE,wBAAwB,CACzB,CACF,CAAA;IAED,IAAI,KAAK,GAAG,iBAAiB,CAAA;IAC7B,IAAI,WAAW,KAAK,CAAC;QAAE,KAAK,GAAG,cAAc,CAAA;IAC7C,IAAI,WAAW,GAAG,CAAC;QAAE,KAAK,GAAG,GAAG,WAAW,cAAc,CAAA;IAEzD,OAAO,CACL,oBAAC,WAAW,IACV,IAAI,EAAE,oBAAC,cAAc,IAAC,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,cAAc,GAAI,EAC5D,KAAK,EAAE,KAAK,EACZ,KAAK,EAAE,gBAAgB,EACvB,SAAS,EAAE,cAAc,CACvB;YACE,KAAK,EAAE;gBACL,KAAK,EAAE;oBACL,GAAG,EAAE,QAAQ;oBACb,OAAO;iBACR;gBACD,KAAK,EAAE;oBACL,WAAW,EAAE,CAAC;oBACd,MAAM,EAAE,SAAS;oBACjB,eAAe,EAAE,aAAa;oBAC9B,SAAS,EAAE,MAAM;iBAClB;aACF;SACF,EACD,SAAS,CACV,KACG,SAAS,GACb,CACH,CAAA;AACH,CAAC"}
@@ -1,8 +0,0 @@
1
- import React from "react";
2
- type RootProps = {
3
- onSignOut?: () => void;
4
- onOtherAssetsClick?: () => void;
5
- };
6
- export default function Root(props: RootProps): React.JSX.Element;
7
- export {};
8
- //# sourceMappingURL=Root.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Root.d.ts","sourceRoot":"","sources":["../../../../../src/components/Dropdown/Root/Root.tsx"],"names":[],"mappings":"AACA,OAAO,KAAsB,MAAM,OAAO,CAAA;AAW1C,KAAK,SAAS,GAAG;IACf,SAAS,CAAC,EAAE,MAAM,IAAI,CAAA;IACtB,kBAAkB,CAAC,EAAE,MAAM,IAAI,CAAA;CAChC,CAAA;AAED,MAAM,CAAC,OAAO,UAAU,IAAI,CAAC,KAAK,EAAE,SAAS,qBA2D5C"}
@@ -1,45 +0,0 @@
1
- import { Block, Button, LogOut01, useStyletron } from "@mezo-org/mezo-clay";
2
- import React, { useCallback } from "react";
3
- import { useDisconnect } from "wagmi";
4
- import { useSignOut } from "../../../hooks";
5
- import WalletAddress from "./WalletAddress";
6
- import AccountBalance from "./AccountBalance";
7
- import WelcomeBlock from "./WelcomeBlock";
8
- import AccountAddressActions from "./AccountAddressActions";
9
- import AccountOtherAssets from "./AccountOtherAssets";
10
- import AccountBtcListing from "./AccountBtcListing";
11
- import AccountMusdListing from "./AccountMusdListing";
12
- export default function Root(props) {
13
- const { onSignOut, onOtherAssetsClick } = props;
14
- const [, theme] = useStyletron();
15
- const { disconnect } = useDisconnect();
16
- const { signOut } = useSignOut();
17
- const handleLogOut = useCallback(() => {
18
- if (onSignOut) {
19
- onSignOut();
20
- return;
21
- }
22
- signOut();
23
- disconnect();
24
- }, [signOut, disconnect, onSignOut]);
25
- const overridesWithDivider = {
26
- Block: {
27
- style: {
28
- borderBottomWidth: "1px",
29
- borderBottomStyle: "solid",
30
- borderBottomColor: theme.colors.borderOpaque,
31
- },
32
- },
33
- };
34
- return (React.createElement(Block, { display: "inline-flex", flexDirection: "column" },
35
- React.createElement(WelcomeBlock, null),
36
- React.createElement(AccountAddressActions, { overrides: overridesWithDivider }),
37
- React.createElement(WalletAddress, { overrides: overridesWithDivider }),
38
- React.createElement(AccountBalance, { overrides: overridesWithDivider }),
39
- React.createElement(AccountBtcListing, null),
40
- React.createElement(AccountMusdListing, null),
41
- React.createElement(AccountOtherAssets, { onClick: onOtherAssetsClick, overrides: overridesWithDivider }),
42
- React.createElement(Block, { padding: theme.sizing.scale300 },
43
- React.createElement(Button, { size: "small", shape: "pill", kind: "tertiary", startEnhancer: React.createElement(LogOut01, { color: "currentColor", size: 16 }), onClick: handleLogOut }, "Sign out"))));
44
- }
45
- //# sourceMappingURL=Root.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Root.js","sourceRoot":"","sources":["../../../../../src/components/Dropdown/Root/Root.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAA;AAC3E,OAAO,KAAK,EAAE,EAAE,WAAW,EAAE,MAAM,OAAO,CAAA;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAA;AACrC,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAA;AAC3C,OAAO,aAAa,MAAM,iBAAiB,CAAA;AAC3C,OAAO,cAAc,MAAM,kBAAkB,CAAA;AAC7C,OAAO,YAAY,MAAM,gBAAgB,CAAA;AACzC,OAAO,qBAAqB,MAAM,yBAAyB,CAAA;AAC3D,OAAO,kBAAkB,MAAM,sBAAsB,CAAA;AACrD,OAAO,iBAAiB,MAAM,qBAAqB,CAAA;AACnD,OAAO,kBAAkB,MAAM,sBAAsB,CAAA;AAOrD,MAAM,CAAC,OAAO,UAAU,IAAI,CAAC,KAAgB;IAC3C,MAAM,EAAE,SAAS,EAAE,kBAAkB,EAAE,GAAG,KAAK,CAAA;IAE/C,MAAM,CAAC,EAAE,KAAK,CAAC,GAAG,YAAY,EAAE,CAAA;IAEhC,MAAM,EAAE,UAAU,EAAE,GAAG,aAAa,EAAE,CAAA;IACtC,MAAM,EAAE,OAAO,EAAE,GAAG,UAAU,EAAE,CAAA;IAEhC,MAAM,YAAY,GAAG,WAAW,CAAC,GAAG,EAAE;QACpC,IAAI,SAAS,EAAE,CAAC;YACd,SAAS,EAAE,CAAA;YACX,OAAM;QACR,CAAC;QACD,OAAO,EAAE,CAAA;QACT,UAAU,EAAE,CAAA;IACd,CAAC,EAAE,CAAC,OAAO,EAAE,UAAU,EAAE,SAAS,CAAC,CAAC,CAAA;IAEpC,MAAM,oBAAoB,GAAG;QAC3B,KAAK,EAAE;YACL,KAAK,EAAE;gBACL,iBAAiB,EAAE,KAAK;gBACxB,iBAAiB,EAAE,OAAO;gBAC1B,iBAAiB,EAAE,KAAK,CAAC,MAAM,CAAC,YAAY;aAC7C;SACF;KACF,CAAA;IAED,OAAO,CACL,oBAAC,KAAK,IAAC,OAAO,EAAC,aAAa,EAAC,aAAa,EAAC,QAAQ;QACjD,oBAAC,YAAY,OAAG;QAEhB,oBAAC,qBAAqB,IAAC,SAAS,EAAE,oBAAoB,GAAI;QAE1D,oBAAC,aAAa,IAAC,SAAS,EAAE,oBAAoB,GAAI;QAElD,oBAAC,cAAc,IAAC,SAAS,EAAE,oBAAoB,GAAI;QAEnD,oBAAC,iBAAiB,OAAG;QAErB,oBAAC,kBAAkB,OAAG;QAEtB,oBAAC,kBAAkB,IACjB,OAAO,EAAE,kBAAkB,EAC3B,SAAS,EAAE,oBAAoB,GAC/B;QAEF,oBAAC,KAAK,IAAC,OAAO,EAAE,KAAK,CAAC,MAAM,CAAC,QAAQ;YACnC,oBAAC,MAAM,IACL,IAAI,EAAC,OAAO,EACZ,KAAK,EAAC,MAAM,EACZ,IAAI,EAAC,UAAU,EACf,aAAa,EAAE,oBAAC,QAAQ,IAAC,KAAK,EAAC,cAAc,EAAC,IAAI,EAAE,EAAE,GAAI,EAC1D,OAAO,EAAE,YAAY,eAGd,CACH,CACF,CACT,CAAA;AACH,CAAC"}
@@ -1,4 +0,0 @@
1
- import { BlockProps } from "@mezo-org/mezo-clay";
2
- import React from "react";
3
- export default function WalletAddress(props: BlockProps): React.JSX.Element;
4
- //# sourceMappingURL=WalletAddress.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"WalletAddress.d.ts","sourceRoot":"","sources":["../../../../../src/components/Dropdown/Root/WalletAddress.tsx"],"names":[],"mappings":"AAAA,OAAO,EAGL,UAAU,EAOX,MAAM,qBAAqB,CAAA;AAC5B,OAAO,KAAmB,MAAM,OAAO,CAAA;AAMvC,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,KAAK,EAAE,UAAU,qBAyGtD"}
@@ -1,66 +0,0 @@
1
- import { BitcoinCircle, Block, EthCircle, LabelMedium, LabelXSmall, mergeOverrides, MonoLabelXSmall, useStyletron, } from "@mezo-org/mezo-clay";
2
- import React, { useState } from "react";
3
- import { useCopyToClipboard } from "usehooks-ts";
4
- import { usePassportContext } from "../../../hooks/usePassportContext";
5
- import { getAddressExplorerUrl, trimAddress } from "../../../utils/address";
6
- import useWalletAccount from "../../../hooks/useWalletAccount";
7
- export default function WalletAddress(props) {
8
- const { overrides, ...restProps } = props;
9
- const { walletAddress, networkFamily } = useWalletAccount();
10
- const { environment = "mainnet" } = usePassportContext();
11
- const [, theme] = useStyletron();
12
- const [, copy] = useCopyToClipboard();
13
- const [isCopiedMessageVisible, setIsCopiedMessageVisible] = useState(false);
14
- const handleCopyAddress = () => {
15
- copy(walletAddress);
16
- setIsCopiedMessageVisible(true);
17
- setTimeout(() => {
18
- setIsCopiedMessageVisible(false);
19
- }, 2000);
20
- };
21
- const blockExplorerUrl = getAddressExplorerUrl(walletAddress, networkFamily, environment === "testnet");
22
- const trimmedAddress = trimAddress(walletAddress);
23
- const AccountIcon = networkFamily === "bitcoin" ? BitcoinCircle : EthCircle;
24
- return (React.createElement(Block, { as: "button", onClick: handleCopyAddress, display: "flex", alignItems: "center", backgroundColor: "transparent", padding: `${theme.sizing.scale800} ${theme.sizing.scale700}`, overrides: mergeOverrides({
25
- Block: {
26
- style: {
27
- gap: theme.sizing.scale700,
28
- borderWidth: 0,
29
- cursor: "pointer",
30
- ":hover": {
31
- backgroundColor: theme.colors.backgroundTertiary,
32
- },
33
- },
34
- },
35
- }, overrides), ...restProps },
36
- React.createElement(AccountIcon, { color: theme.colors.black, size: theme.sizing.scale800, overrides: {
37
- Svg: {
38
- style: {
39
- backgroundColor: theme.colors.black,
40
- overflow: "hidden",
41
- borderRadius: theme.borders.radius200,
42
- },
43
- },
44
- } }),
45
- React.createElement(Block, { display: "flex", flexDirection: "column", alignItems: "flex-start", overrides: {
46
- Block: {
47
- style: {
48
- gap: theme.sizing.scale100,
49
- },
50
- },
51
- } },
52
- React.createElement(LabelMedium, null, "Connected Wallet"),
53
- isCopiedMessageVisible ? (React.createElement(LabelXSmall, { color: theme.colors.contentSecondary }, "Copied address to clipboard")) : (React.createElement(Block, { as: "a", color: theme.colors.contentSecondary, href: blockExplorerUrl, target: "_blank", overrides: {
54
- Block: {
55
- style: {
56
- color: "inherit",
57
- textDecoration: "none",
58
- ":hover": {
59
- textDecoration: "underline",
60
- },
61
- },
62
- },
63
- } },
64
- React.createElement(MonoLabelXSmall, null, trimmedAddress))))));
65
- }
66
- //# sourceMappingURL=WalletAddress.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"WalletAddress.js","sourceRoot":"","sources":["../../../../../src/components/Dropdown/Root/WalletAddress.tsx"],"names":[],"mappings":"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"}
@@ -1,6 +0,0 @@
1
- import { BlockProps } from "@mezo-org/mezo-clay";
2
- import React from "react";
3
- type WelcomeBlockProps = BlockProps;
4
- export default function WelcomeBlock(props: WelcomeBlockProps): React.JSX.Element;
5
- export {};
6
- //# sourceMappingURL=WelcomeBlock.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"WelcomeBlock.d.ts","sourceRoot":"","sources":["../../../../../src/components/Dropdown/Root/WelcomeBlock.tsx"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EAOX,MAAM,qBAAqB,CAAA;AAC5B,OAAO,KAAK,MAAM,OAAO,CAAA;AA4DzB,KAAK,iBAAiB,GAAG,UAAU,CAAA;AAEnC,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,KAAK,EAAE,iBAAiB,qBAoG5D"}
@@ -1,88 +0,0 @@
1
- import { Block, HeadingMedium, LabelLarge, Mats, mergeOverrides, Skeleton, useStyletron, } from "@mezo-org/mezo-clay";
2
- import React from "react";
3
- import DefaultAvatar from "../../../assets/DefaultAvatar";
4
- import { useGetCurrentAccount } from "../../../hooks";
5
- import { formatNumberToCompactString } from "../../../utils/numbers";
6
- import AccountError from "./AccountError";
7
- import { usePassportContext } from "../../../hooks/usePassportContext";
8
- import SlotNumber from "../SlotNumber";
9
- const DOT_DELIMITER_REGEX = /(?=\.)/;
10
- function WelcomeBlockSkeleton() {
11
- const [, theme] = useStyletron();
12
- return (React.createElement(Block, { display: "flex", alignItems: "center", padding: theme.sizing.scale600, paddingTop: theme.sizing.scale900, paddingBottom: theme.sizing.scale800, overrides: {
13
- Block: {
14
- style: {
15
- gap: theme.sizing.scale600,
16
- },
17
- },
18
- } },
19
- React.createElement(Skeleton, { animation: true, width: theme.sizing.scale1200, height: theme.sizing.scale1200, overrides: {
20
- Root: {
21
- style: {
22
- borderRadius: "100%",
23
- },
24
- },
25
- } }),
26
- React.createElement(Block, { display: "flex", flexDirection: "column", flex: 1, overrides: {
27
- Block: {
28
- style: {
29
- gap: theme.sizing.scale100,
30
- },
31
- },
32
- } },
33
- React.createElement(Skeleton, { animation: true, width: "60%", height: theme.sizing.scale900 }),
34
- React.createElement(Skeleton, { animation: true, width: "40%", height: theme.sizing.scale800 }))));
35
- }
36
- export default function WelcomeBlock(props) {
37
- const { overrides, ...restProps } = props;
38
- const { accountDataRefetchInterval } = usePassportContext();
39
- const { data, isError, isPending } = useGetCurrentAccount({
40
- staleTime: accountDataRefetchInterval,
41
- refetchInterval: accountDataRefetchInterval,
42
- });
43
- const [, theme] = useStyletron();
44
- if (isError) {
45
- return (React.createElement(AccountError, { padding: theme.sizing.scale600, paddingTop: theme.sizing.scale900, paddingBottom: theme.sizing.scale800, marginBottom: theme.sizing.scale300, topic: "account information" }));
46
- }
47
- if (isPending) {
48
- return React.createElement(WelcomeBlockSkeleton, null);
49
- }
50
- const [mezoId, mezoIdSuffix] = (data.mezoId ?? "").split(DOT_DELIMITER_REGEX);
51
- return (React.createElement(Block, { display: "flex", alignItems: "center", paddingLeft: theme.sizing.scale600, paddingRight: theme.sizing.scale600, paddingTop: theme.sizing.scale900, paddingBottom: theme.sizing.scale800, overrides: mergeOverrides(overrides, {
52
- Block: {
53
- style: {
54
- gap: theme.sizing.scale600,
55
- },
56
- },
57
- }), ...restProps },
58
- React.createElement(Block, { as: DefaultAvatar, width: theme.sizing.scale1200, height: theme.sizing.scale1200, overrides: {
59
- Block: {
60
- style: {
61
- borderRadius: "100%",
62
- },
63
- },
64
- } }),
65
- React.createElement(Block, { display: "flex", flexDirection: "column" },
66
- mezoId && mezoIdSuffix && (React.createElement(HeadingMedium, { as: "span" },
67
- React.createElement(Block, { as: "span" }, mezoId),
68
- React.createElement(Block, { as: "span", color: theme.colors.contentSecondary }, mezoIdSuffix))),
69
- React.createElement(Block, { display: "flex", alignItems: "center", overrides: {
70
- Block: {
71
- style: {
72
- gap: theme.sizing.scale100,
73
- },
74
- },
75
- } },
76
- React.createElement(Mats, { size: theme.sizing.scale600, overrides: {
77
- Svg: {
78
- style: {
79
- margin: theme.sizing.scale100, // To reduce gap
80
- },
81
- },
82
- } }),
83
- React.createElement(LabelLarge, { color: theme.colors.contentPrimary },
84
- React.createElement(SlotNumber, { formatFunction: formatNumberToCompactString }, data.totalMats),
85
- " ",
86
- "mats")))));
87
- }
88
- //# sourceMappingURL=WelcomeBlock.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"WelcomeBlock.js","sourceRoot":"","sources":["../../../../../src/components/Dropdown/Root/WelcomeBlock.tsx"],"names":[],"mappings":"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"}
@@ -1,19 +0,0 @@
1
- import React from "react";
2
- type SlotNumberProps = {
3
- className?: string;
4
- children: number;
5
- formatFunction?: (value: number) => string;
6
- };
7
- /**
8
- * SlotNumber component displays a number with animated digits.
9
- *
10
- * @typedef {object} SlotNumberProps
11
- * @property {number} children - The number to display.
12
- * @property {function} [formatFunction] - Optional function to format the number.
13
- * @property {BlockProps} [restProps] - Additional properties for the Block component.
14
- * @see https://pyszkowski.dev/writings/slot-number
15
- * @returns {JSX.Element} The rendered SlotNumber component.
16
- */
17
- declare function SlotNumber(props: SlotNumberProps): React.JSX.Element;
18
- export default SlotNumber;
19
- //# sourceMappingURL=SlotNumber.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SlotNumber.d.ts","sourceRoot":"","sources":["../../../../src/components/Dropdown/SlotNumber.tsx"],"names":[],"mappings":"AACA,OAAO,KAAkB,MAAM,OAAO,CAAA;AAItC,KAAK,eAAe,GAAG;IACrB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,QAAQ,EAAE,MAAM,CAAA;IAChB,cAAc,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,CAAA;CAC3C,CAAA;AAoED;;;;;;;;;GASG;AACH,iBAAS,UAAU,CAAC,KAAK,EAAE,eAAe,qBAyCzC;AAED,eAAe,UAAU,CAAA"}