@xyo-network/react-wallet 5.0.4 → 5.0.6

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.
@@ -673,9 +673,11 @@ var useAccount = /* @__PURE__ */ __name(({ wallet, account, index, required = fa
673
673
  try {
674
674
  if (!validationError) {
675
675
  if (wallet) {
676
- return await wallet?.derivePath?.(`${index ?? 0}'\0`);
676
+ const path = `${index ?? 0}'\0`;
677
+ return await wallet?.derivePath?.(path);
677
678
  } else if (rootWallet) {
678
- return await rootWallet?.derivePath?.(`${index ?? activeAccountIndex ?? 0}'\0`);
679
+ const path = `${index ?? activeAccountIndex ?? 0}'/0`;
680
+ return await rootWallet?.derivePath?.(path);
679
681
  }
680
682
  }
681
683
  } catch (ex) {
@@ -822,10 +824,43 @@ var WalletAccountDetails = /* @__PURE__ */ __name(({ exploreUrl = "https://explo
822
824
  }, "WalletAccountDetails");
823
825
 
824
826
  // src/components/WalletAccountSelect/Select.tsx
825
- import { CircularProgress, MenuItem } from "@mui/material";
827
+ import { CircularProgress, MenuItem as MenuItem2 } from "@mui/material";
826
828
  import { SelectEx } from "@xylabs/react-select";
829
+ import { AddressRenderRowBox as AddressRenderRowBox2 } from "@xyo-network/react-address-render";
830
+ import React18 from "react";
831
+
832
+ // src/components/WalletAccountSelect/RenderedMenuItem.tsx
833
+ import { MenuItem } from "@mui/material";
827
834
  import { AddressRenderRowBox } from "@xyo-network/react-address-render";
828
835
  import React17 from "react";
836
+ var RenderedAccountMenuItem = /* @__PURE__ */ __name(({ selectedAccountIndex, rootWallet, addressNames, iconOnly, iconSize, icons, showFavorite }) => {
837
+ const [selectedAccount] = useWallet({
838
+ path: selectedAccountIndex?.toString(),
839
+ wallet: rootWallet
840
+ });
841
+ const customName = selectedAccount ? addressNames?.[selectedAccount.address] : void 0;
842
+ const favorite = !!selectedAccount && selectedAccount.address in (addressNames ?? {});
843
+ return /* @__PURE__ */ React17.createElement(MenuItem, {
844
+ value: selectedAccountIndex,
845
+ sx: {
846
+ minHeight: 0,
847
+ paddingBottom: 0,
848
+ paddingTop: 0
849
+ }
850
+ }, /* @__PURE__ */ React17.createElement(AddressRenderRowBox, {
851
+ disableSharedRef: true,
852
+ flexGrow: 1,
853
+ address: selectedAccount?.address,
854
+ iconOnly,
855
+ iconSize,
856
+ icons,
857
+ name: customName,
858
+ favorite,
859
+ showFavorite
860
+ }));
861
+ }, "RenderedAccountMenuItem");
862
+
863
+ // src/components/WalletAccountSelect/Select.tsx
829
864
  var arrayRange = /* @__PURE__ */ __name((length, start = 0) => {
830
865
  return [
831
866
  ...Array.from({
@@ -834,89 +869,66 @@ var arrayRange = /* @__PURE__ */ __name((length, start = 0) => {
834
869
  ].map((x) => x + start);
835
870
  }, "arrayRange");
836
871
  var WalletAccountSelect = /* @__PURE__ */ __name(({ addressNames, iconOnly, iconSize = 24, icons, maxAccounts = 1, showFavorite = false, size, variant = "outlined", ...props }) => {
837
- const { activeAccountIndex = 0, setActiveAccountIndex, rootWallet } = useWalletContext();
872
+ const { activeAccountIndex, setActiveAccountIndex, rootWallet } = useWalletContext();
838
873
  const disabled = !rootWallet || activeAccountIndex === void 0;
839
- return /* @__PURE__ */ React17.createElement(React17.Fragment, null, rootWallet ? /* @__PURE__ */ React17.createElement(SelectEx, {
874
+ return /* @__PURE__ */ React18.createElement(React18.Fragment, null, rootWallet ? /* @__PURE__ */ React18.createElement(SelectEx, {
840
875
  margin: "dense",
841
876
  disabled,
842
877
  renderValue: /* @__PURE__ */ __name((selectedAccountIndex) => {
843
- const Item = /* @__PURE__ */ __name(() => {
844
- const [selectedAccount] = useWallet({
845
- path: selectedAccountIndex.toString(),
846
- wallet: rootWallet
847
- });
848
- const customName = selectedAccount ? addressNames?.[selectedAccount.address] : void 0;
849
- const favorite = !!selectedAccount && selectedAccount.address in (addressNames ?? {});
850
- return /* @__PURE__ */ React17.createElement(MenuItem, {
851
- value: selectedAccountIndex,
852
- sx: {
853
- minHeight: 0,
854
- paddingBottom: 0,
855
- paddingTop: 0
856
- }
857
- }, /* @__PURE__ */ React17.createElement(AddressRenderRowBox, {
858
- disableSharedRef: true,
859
- flexGrow: 1,
860
- address: selectedAccount?.address,
861
- iconOnly,
862
- iconSize,
863
- icons,
864
- name: customName,
865
- favorite,
866
- showFavorite
867
- }));
868
- }, "Item");
869
- return /* @__PURE__ */ React17.createElement(Item, null);
878
+ return /* @__PURE__ */ React18.createElement(RenderedAccountMenuItem, {
879
+ addressNames,
880
+ iconOnly,
881
+ iconSize,
882
+ icons,
883
+ rootWallet,
884
+ selectedAccountIndex,
885
+ showFavorite
886
+ });
870
887
  }, "renderValue"),
871
- value: activeAccountIndex,
888
+ value: activeAccountIndex === void 0 ? "" : activeAccountIndex,
872
889
  onChange: /* @__PURE__ */ __name((event) => setActiveAccountIndex?.(Number.parseInt(`${event.target.value}`)), "onChange"),
873
890
  size,
874
891
  variant,
875
892
  ...props
876
- }, arrayRange(maxAccounts).map((index) => {
877
- const Item = /* @__PURE__ */ __name(() => {
878
- const [account] = useWallet({
879
- path: index.toString(),
880
- wallet: rootWallet
881
- });
882
- const customName = account ? addressNames?.[account.address] : void 0;
883
- const favorite = !!account && account.address in (addressNames ?? {});
884
- return /* @__PURE__ */ React17.createElement(MenuItem, {
885
- key: account?.address,
886
- value: index,
887
- sx: {
888
- minHeight: 0,
889
- paddingBottom: 0,
890
- paddingTop: 0
891
- }
892
- }, /* @__PURE__ */ React17.createElement(AddressRenderRowBox, {
893
- disableSharedRef: true,
894
- flexGrow: 1,
895
- address: account?.address,
896
- favorite,
897
- iconOnly,
898
- iconSize,
899
- icons,
900
- name: customName,
901
- showFavorite
902
- }));
903
- }, "Item");
904
- return /* @__PURE__ */ React17.createElement(Item, {
905
- key: index
893
+ }, rootWallet && arrayRange(maxAccounts).map((index) => {
894
+ const [account] = useWallet({
895
+ path: index.toString(),
896
+ wallet: rootWallet
906
897
  });
907
- })) : /* @__PURE__ */ React17.createElement(CircularProgress, {
898
+ const customName = account ? addressNames?.[account.address] : void 0;
899
+ const favorite = !!account && account.address in (addressNames ?? {});
900
+ return /* @__PURE__ */ React18.createElement(MenuItem2, {
901
+ key: account?.address,
902
+ value: index,
903
+ sx: {
904
+ minHeight: 0,
905
+ paddingBottom: 0,
906
+ paddingTop: 0
907
+ }
908
+ }, /* @__PURE__ */ React18.createElement(AddressRenderRowBox2, {
909
+ disableSharedRef: true,
910
+ flexGrow: 1,
911
+ address: account?.address,
912
+ favorite,
913
+ iconOnly,
914
+ iconSize,
915
+ icons,
916
+ name: customName,
917
+ showFavorite
918
+ }));
919
+ })) : /* @__PURE__ */ React18.createElement(CircularProgress, {
908
920
  size: 24
909
921
  }));
910
922
  }, "WalletAccountSelect");
911
923
 
912
924
  // src/components/WalletAccountSelect/SelectBar.tsx
913
925
  import { FlexCol as FlexCol2 } from "@xylabs/react-flexbox";
914
- import React18 from "react";
926
+ import React19 from "react";
915
927
  var WalletAccountSelectBar = /* @__PURE__ */ __name(({ addressNames, iconOnly, iconSize, icons, maxAccounts = 1, showFavorite = false, size = "small", ...props }) => {
916
- return /* @__PURE__ */ React18.createElement(FlexCol2, {
928
+ return /* @__PURE__ */ React19.createElement(FlexCol2, {
917
929
  alignItems: "stretch",
918
930
  ...props
919
- }, /* @__PURE__ */ React18.createElement(WalletAccountSelect, {
931
+ }, /* @__PURE__ */ React19.createElement(WalletAccountSelect, {
920
932
  addressNames,
921
933
  fullWidth: true,
922
934
  showFavorite,
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/components/MaxAccounts/MaxAccountsTableRow.tsx","../../src/components/MaxAccounts/OutOfBoundsSnackBar.tsx","../../src/components/SeedPhrase/_shared/SeedPhraseIconButton.tsx","../../src/components/SeedPhrase/DefaultSeedPhrase.tsx","../../src/components/SeedPhrase/dialog/components/DialogActionButtons.tsx","../../src/contexts/SeedPhrase/Context.ts","../../src/contexts/SeedPhrase/Provider.tsx","../../src/contexts/SeedPhrase/use.ts","../../src/contexts/Wallet/Context.ts","../../src/contexts/Wallet/Provider.tsx","../../src/contexts/Wallet/use.ts","../../src/components/SeedPhrase/dialog/components/fields/NewPhraseTextField.tsx","../../src/components/SeedPhrase/dialog/components/fields/validation-messages/colorParser.ts","../../src/components/SeedPhrase/dialog/components/fields/validation-messages/InvalidPhrase.tsx","../../src/components/SeedPhrase/dialog/components/fields/validation-messages/PhraseHeaderBox.tsx","../../src/components/SeedPhrase/dialog/components/fields/PhraseDialogActions.tsx","../../src/components/SeedPhrase/dialog/components/fields/SavedPhraseTextField.tsx","../../src/components/SeedPhrase/dialog/components/OverwriteWarning.tsx","../../src/components/SeedPhrase/dialog/SeedPhraseDialog.tsx","../../src/components/SeedPhrase/settings/SeedPhraseTableRow.tsx","../../src/components/WalletAccountDetails/WalletAccountDetails.tsx","../../src/hooks/useAccount.ts","../../src/hooks/useWallet.ts","../../src/hooks/useWallets.ts","../../src/hooks/useWrapperAccount.ts","../../src/components/WalletAccountSelect/Select.tsx","../../src/components/WalletAccountSelect/SelectBar.tsx"],"sourcesContent":["import type { TableRowProps } from '@mui/material'\nimport {\n ButtonGroup, TableCell, TableRow, Typography,\n} from '@mui/material'\nimport { ButtonEx } from '@xylabs/react-button'\nimport React, { useState } from 'react'\n\nimport { OutOfBoundsSnackBar } from './OutOfBoundsSnackBar.tsx'\n\nexport interface MaxAccountsTableRow extends TableRowProps {\n activeAccountIndex?: number\n changeMaxAccounts?: (maxAccounts: number) => void\n maxAccounts?: number\n}\n\nexport const MaxAccountsTableRow: React.FC<MaxAccountsTableRow> = ({\n activeAccountIndex, changeMaxAccounts, maxAccounts,\n}) => {\n const [desiredMaximumAccounts, setDesiredMaximumAccounts] = useState<number | undefined>()\n const [showSnackBar, setShowSnackBar] = useState(false)\n\n const handleChangeMaxAccounts = (change: 'increase' | 'decrease') => {\n if (maxAccounts !== undefined && activeAccountIndex !== undefined) {\n switch (change) {\n case 'decrease': {\n const desiredMaximumAccounts = maxAccounts - 1\n const validMaximumAccounts = desiredMaximumAccounts > 0\n const maxAccountsWithinRange = activeAccountIndex + 1 <= desiredMaximumAccounts\n if (validMaximumAccounts && maxAccountsWithinRange) {\n changeMaxAccounts?.(desiredMaximumAccounts)\n }\n if (!maxAccountsWithinRange) setShowSnackBar(true)\n setDesiredMaximumAccounts(desiredMaximumAccounts)\n return\n }\n case 'increase': {\n changeMaxAccounts?.(maxAccounts + 1)\n return\n }\n default: {\n console.error(change, 'is not a recognized value')\n }\n }\n } else {\n throw new Error('Max Accounts is unset and needs a default')\n }\n }\n\n return (\n <TableRow>\n <TableCell>Maximum Accounts</TableCell>\n <TableCell align=\"center\">\n <Typography variant=\"caption\">{maxAccounts}</Typography>\n </TableCell>\n <TableCell align=\"center\">\n <ButtonGroup>\n <ButtonEx onClick={() => handleChangeMaxAccounts('decrease')} variant=\"contained\" size=\"small\">\n -\n </ButtonEx>\n <ButtonEx onClick={() => handleChangeMaxAccounts('increase')} variant=\"contained\" size=\"small\">\n +\n </ButtonEx>\n </ButtonGroup>\n <OutOfBoundsSnackBar\n desiredMaximumAccounts={desiredMaximumAccounts}\n activeAccountIndex={activeAccountIndex}\n setShowSnackBar={setShowSnackBar}\n showSnackBar={showSnackBar}\n />\n </TableCell>\n </TableRow>\n )\n}\n","import type { SnackbarProps } from '@mui/material'\nimport {\n Alert, AlertTitle, Snackbar,\n} from '@mui/material'\nimport type { Dispatch, SetStateAction } from 'react'\nimport React from 'react'\n\nexport interface OutOfBoundsSnackBarProps extends SnackbarProps {\n activeAccountIndex?: number\n desiredMaximumAccounts?: number\n setShowSnackBar?: Dispatch<SetStateAction<boolean>>\n showSnackBar?: boolean\n}\n\nexport const OutOfBoundsSnackBar: React.FC<OutOfBoundsSnackBarProps> = ({\n activeAccountIndex,\n desiredMaximumAccounts,\n setShowSnackBar,\n showSnackBar,\n}) => {\n return (\n <Snackbar\n anchorOrigin={{ horizontal: 'center', vertical: 'top' }}\n autoHideDuration={5000}\n onClose={() => setShowSnackBar?.(false)}\n open={showSnackBar}\n >\n <Alert severity=\"error\" onClose={() => setShowSnackBar?.(false)}>\n <AlertTitle>Maximum Accounts Error</AlertTitle>\n Your currently selected account number (\n {activeAccountIndex === undefined ? '' : activeAccountIndex + 1}\n ) cannot be greater than the desired\n Maximum Accounts (\n {desiredMaximumAccounts}\n ).\n </Alert>\n </Snackbar>\n )\n}\n","import { HelpOutline as HelpOutlineIcon } from '@mui/icons-material'\nimport type { IconButtonProps } from '@mui/material'\nimport {\n Button,\n Dialog,\n DialogActions,\n DialogContent,\n DialogTitle,\n IconButton,\n Link,\n List,\n ListItem,\n Typography,\n} from '@mui/material'\nimport React, { useState } from 'react'\n\nexport const SeedPhraseIconButton: React.FC<IconButtonProps> = (props) => {\n const [open, setOpen] = useState(false)\n const onClose = () => setOpen(false)\n return (\n <>\n <IconButton onClick={() => setOpen(true)} {...props}>\n <HelpOutlineIcon fontSize=\"small\" />\n </IconButton>\n <Dialog open={open}>\n <DialogTitle>Understanding your Seed Phrase</DialogTitle>\n <DialogContent>\n <Typography>\n Your Seed Phrase should adhere to the\n {' '}\n <Link target=\"_blank\" href=\"https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki\">\n bip39 specification\n </Link>\n {' '}\n and is used to generate accounts which identify your data on the XYO Network.\n </Typography>\n <List>\n <ListItem>Do not share this phrase with anyone.</ListItem>\n <ListItem>Do not save it to a public computer.</ListItem>\n <ListItem>Do not use a existing phrase from another wallet (i.e. Metamask).</ListItem>\n <ListItem>Do not use before copying it down somewhere safe.</ListItem>\n </List>\n </DialogContent>\n <DialogActions>\n <Button onClick={onClose} variant=\"outlined\">\n OK\n </Button>\n </DialogActions>\n </Dialog>\n </>\n )\n}\n","import {\n Alert, AlertTitle, Snackbar,\n} from '@mui/material'\nimport { generateMnemonic } from '@scure/bip39'\nimport { wordlist } from '@scure/bip39/wordlists/english'\nimport type { PropsWithChildren } from 'react'\nimport React, { useMemo, useState } from 'react'\n\nexport interface DefaultSeedPhraseProps extends PropsWithChildren {\n changeSeedPhrase?: (seedPhrase: string) => void\n hideDefaultSeedPhraseMessage?: boolean\n seedPhrase?: string\n}\n\nexport const DefaultSeedPhrase: React.FC<DefaultSeedPhraseProps> = ({\n changeSeedPhrase, children, hideDefaultSeedPhraseMessage, seedPhrase,\n}) => {\n const [showSnackBar, setShowSnackBar] = useState(false)\n\n useMemo(() => {\n if (!seedPhrase) {\n const mnemonic = generateMnemonic(wordlist, 256)\n changeSeedPhrase?.(mnemonic)\n setShowSnackBar(true)\n }\n }, [changeSeedPhrase, seedPhrase])\n\n return (\n <>\n {hideDefaultSeedPhraseMessage\n ? null\n : (\n <Snackbar\n open={showSnackBar}\n autoHideDuration={5000}\n onClose={() => setShowSnackBar(false)}\n anchorOrigin={{ horizontal: 'center', vertical: 'top' }}\n >\n <Alert severity=\"success\">\n <AlertTitle>Default Seed Phrase Generated</AlertTitle>\n Go to application settings to save it.\n </Alert>\n </Snackbar>\n )}\n {children}\n </>\n )\n}\n","import type { DialogActionsProps, DialogProps } from '@mui/material'\nimport { Button, DialogActions } from '@mui/material'\nimport type { MouseEvent } from 'react'\nimport React from 'react'\n\nimport { useSeedPhrase } from '../../../../contexts/index.ts'\n\ninterface DialogActionButtonsProps extends DialogActionsProps {\n onClose?: DialogProps['onClose']\n}\n\nexport const DialogActionButtons: React.FC<DialogActionButtonsProps> = ({ onClose, ...props }) => {\n const { handleSave, setPhrase } = useSeedPhrase()\n\n const wrappedOnClose = (e: MouseEvent<HTMLElement>) => {\n // clear local copy of phrase when modal closes\n setPhrase?.('')\n onClose?.(e, 'escapeKeyDown')\n }\n\n return (\n <DialogActions {...props}>\n <Button variant=\"outlined\" onClick={wrappedOnClose}>\n Cancel\n </Button>\n <Button type=\"submit\" variant=\"contained\" onClick={handleSave}>\n Save\n </Button>\n </DialogActions>\n )\n}\n","import { createContextEx } from '@xyo-network/react-shared'\n\nimport type { SeedPhraseContextState } from './State.ts'\n\nexport const SeedPhraseContext = createContextEx<SeedPhraseContextState>()\n","import { generateMnemonic, validateMnemonic } from '@scure/bip39'\nimport { wordlist } from '@scure/bip39/wordlists/english'\nimport { useResetState } from '@xylabs/react-hooks'\nimport type { PropsWithChildren } from 'react'\nimport React, {\n useCallback, useEffect, useMemo, useState,\n} from 'react'\n\nimport { SeedPhraseContext } from './Context.ts'\n\nexport interface SeedPhraseProviderProps extends PropsWithChildren {\n defaultPhrase?: string\n handleChangeSeedPhrase?: (phrase: string) => void\n open?: boolean\n saveCallback?: () => void\n seedPhrase?: string\n}\n\nconst validate = (passedPhrase?: string) => {\n if (!passedPhrase) {\n return null\n }\n return validateMnemonic(passedPhrase, wordlist)\n}\n\nexport const SeedPhraseProvider: React.FC<SeedPhraseProviderProps> = ({\n children,\n defaultPhrase,\n handleChangeSeedPhrase,\n saveCallback,\n seedPhrase,\n open,\n}) => {\n const [phrase, setPhrase] = useResetState<string | undefined>(defaultPhrase)\n const [overwriteWarning, setOverwriteWarning] = useState(false)\n\n useEffect(() => {\n if (seedPhrase || open) {\n setPhrase?.(seedPhrase ?? '')\n }\n }, [seedPhrase, open, setPhrase])\n\n const handleGenerate = useCallback(() => {\n const mnemonic = generateMnemonic(wordlist, 256)\n setPhrase?.(mnemonic)\n setOverwriteWarning?.(false)\n }, [])\n\n const handleCancelOverwrite = useCallback(() => {\n // eslint-disable-next-line @eslint-react/hooks-extra/no-direct-set-state-in-use-effect\n setOverwriteWarning(false)\n }, [setOverwriteWarning])\n\n const handleClear = useCallback(() => {\n setPhrase('')\n setOverwriteWarning(false)\n }, [setPhrase, setOverwriteWarning])\n\n const handleSave = useCallback(() => {\n if (!overwriteWarning && seedPhrase && seedPhrase !== phrase) {\n setOverwriteWarning?.(true)\n } else {\n handleChangeSeedPhrase?.(phrase ?? '')\n saveCallback?.()\n }\n }, [handleChangeSeedPhrase, overwriteWarning, phrase, saveCallback, seedPhrase])\n\n useEffect(() => {\n if (!open) {\n handleCancelOverwrite()\n }\n }, [handleCancelOverwrite, open])\n\n const validSeedPhrase = useMemo(() => validate?.(seedPhrase), [seedPhrase])\n const validPhrase = useMemo(() => validate?.(phrase), [phrase])\n\n const value = useMemo(() => ({\n handleCancelOverwrite,\n handleChangeSeedPhrase,\n handleClear,\n handleGenerate,\n handleSave,\n overwriteWarning,\n phrase,\n provided: true,\n seedPhrase,\n setOverwriteWarning,\n setPhrase,\n validPhrase,\n validSeedPhrase,\n validate,\n }), [handleCancelOverwrite,\n handleChangeSeedPhrase,\n handleClear,\n handleGenerate,\n handleSave,\n overwriteWarning,\n phrase,\n seedPhrase,\n setOverwriteWarning,\n setPhrase,\n validPhrase,\n validSeedPhrase,\n validate])\n\n return (\n <SeedPhraseContext\n value={value}\n >\n {children}\n </SeedPhraseContext>\n )\n}\n","import { useContextEx } from '@xyo-network/react-shared'\n\nimport { SeedPhraseContext } from './Context.ts'\n\nexport const useSeedPhrase = () => useContextEx(SeedPhraseContext, 'SeedPhrase', true)\n","import { createContextEx } from '@xyo-network/react-shared'\n\nimport type { WalletContextState } from './State.ts'\n\nexport const WalletContext = createContextEx<WalletContextState>()\n","import { useResetState } from '@xylabs/react-hooks'\nimport { usePromise } from '@xylabs/react-promise'\nimport type { WalletInstance } from '@xyo-network/wallet-model'\nimport type { PropsWithChildren } from 'react'\nimport React, { useMemo } from 'react'\n\nimport { WalletContext } from './Context.ts'\n\nexport interface WalletProviderProps {\n defaultActiveAccountIndex?: number\n rootWallet?: WalletInstance | null\n}\n\nexport const WalletProvider: React.FC<PropsWithChildren<WalletProviderProps>> = ({\n children,\n defaultActiveAccountIndex = 0,\n rootWallet = null,\n ...props\n}) => {\n const [activeAccountIndex, setActiveAccountIndex] = useResetState(defaultActiveAccountIndex)\n\n const [activeAccount = null] = usePromise(async () => await rootWallet?.derivePath(activeAccountIndex.toString()), [activeAccountIndex, rootWallet])\n\n const value = useMemo(() => ({\n activeAccount,\n activeAccountIndex,\n provided: true,\n rootWallet,\n setActiveAccountIndex,\n }), [activeAccount,\n activeAccountIndex,\n rootWallet,\n setActiveAccountIndex])\n\n return (\n <WalletContext\n value={value}\n {...props}\n >\n {children}\n </WalletContext>\n )\n}\n","import { usePromise } from '@xylabs/react-promise'\nimport { useContextEx, useProvided } from '@xyo-network/react-shared'\nimport type { WalletInstance } from '@xyo-network/wallet-model'\n\nimport { WalletContext } from './Context.ts'\n\nexport const useWalletContext = (required = true) => {\n return useContextEx(WalletContext, 'Wallet', required)\n}\n\nexport const useWalletProvided = () => {\n return useProvided(WalletContext)\n}\n\nexport const useRootWallet = (required = true): [WalletInstance | null | undefined, Error | undefined] => {\n const { rootWallet } = useWalletContext(required)\n return [rootWallet, undefined]\n}\n\nexport const useIndexedWalletFromContext = (index: number, required = true): [WalletInstance | null | undefined, Error | undefined] => {\n const { rootWallet } = useWalletContext(required)\n const [wallet] = usePromise(async () => (await rootWallet?.derivePath(index.toString())) ?? rootWallet, [rootWallet, index])\n return [wallet, undefined]\n}\n\nexport const useSelectedWalletAccount = (required = true): [WalletInstance | null | undefined, Error | undefined] => {\n const { activeAccountIndex } = useWalletContext(required)\n // we pass in 0 as default since we can not call the hook optionally,\n // we resolve this false result by checking whether activeAccountIndex is defined before returning it\n const [account] = useIndexedWalletFromContext(activeAccountIndex ?? 0, required)\n return activeAccountIndex === undefined && account === null ? [null, undefined] : [account, undefined]\n}\n","import type { StandardTextFieldProps } from '@mui/material'\nimport { FormControl, TextField } from '@mui/material'\nimport type { ReactNode } from 'react'\nimport React from 'react'\n\nimport { useSeedPhrase } from '../../../../../contexts/index.ts'\nimport { colorParser, InvalidPhraseTypography } from './validation-messages/index.ts'\n\nexport interface NewPhraseTextFieldProps extends StandardTextFieldProps {\n children?: ReactNode\n disableColor?: boolean\n}\n\nexport const NewPhraseTextField: React.FC<NewPhraseTextFieldProps> = ({\n children, disableColor, ...props\n}) => {\n const {\n phrase, setPhrase, validPhrase,\n } = useSeedPhrase()\n return (\n <>\n <FormControl\n fullWidth\n size=\"small\"\n sx={{\n display: 'flex', flexDirection: 'column', rowGap: 1,\n }}\n >\n {children}\n <TextField\n focused\n color={disableColor ? undefined : colorParser(validPhrase)}\n error={validPhrase === false}\n helperText={validPhrase === false ? <InvalidPhraseTypography /> : null}\n fullWidth\n maxRows={Number.POSITIVE_INFINITY}\n multiline\n onChange={e => setPhrase?.(e.target.value)}\n value={phrase}\n {...props}\n />\n </FormControl>\n </>\n )\n}\n","export const colorParser = (conditional?: boolean | null) => {\n switch (conditional) {\n case true: {\n return 'success'\n }\n case false: {\n return 'error'\n }\n default: {\n return\n }\n }\n}\n","import type { TypographyProps } from '@mui/material'\nimport { Link, Typography } from '@mui/material'\nimport React from 'react'\n\nexport const InvalidPhraseTypography: React.FC<TypographyProps> = props => (\n <Typography variant=\"caption\" color=\"error\" {...props}>\n Invalid seed phrase. See -\n {' '}\n <Link target=\"_blank\" href=\"https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki\">\n bip39 Proposal\n </Link>\n </Typography>\n)\n","import { CheckCircleOutline as CheckCircleOutlineIcon, HighlightOff as HighlightOffIcon } from '@mui/icons-material'\nimport type { FlexBoxProps } from '@xylabs/react-flexbox'\nimport { FlexRow } from '@xylabs/react-flexbox'\nimport type { PropsWithChildren } from 'react'\nimport React, { useMemo } from 'react'\n\ninterface PhraseHeaderBox extends FlexBoxProps, PropsWithChildren {\n conditional?: boolean | null\n}\n\nexport const PhraseHeaderBox: React.FC<PhraseHeaderBox> = ({\n children, conditional, ...props\n}) => {\n const state = useMemo(() => {\n switch (conditional) {\n case true: {\n return 'success'\n }\n case false: {\n return 'error'\n }\n default: {\n return null\n }\n }\n }, [conditional])\n\n const Icon = useMemo(() => {\n switch (state) {\n case 'success': {\n return <CheckCircleOutlineIcon fontSize=\"small\" color=\"success\" />\n }\n case 'error': {\n return <HighlightOffIcon fontSize=\"small\" color=\"error\" />\n }\n default: {\n return null\n }\n }\n }, [state])\n\n return (\n <FlexRow justifyContent=\"start\" columnGap={1} {...props}>\n {Icon}\n {children}\n </FlexRow>\n )\n}\n","import { Button, DialogActions } from '@mui/material'\nimport React from 'react'\n\nimport { useSeedPhrase } from '../../../../../contexts/index.ts'\n\nexport const PhraseDialogActions = () => {\n const {\n handleClear, handleGenerate, overwriteWarning,\n } = useSeedPhrase()\n return (\n <DialogActions sx={{ justifyContent: 'center' }}>\n <Button disabled={overwriteWarning} variant=\"contained\" onClick={handleGenerate}>\n Generate\n </Button>\n <Button variant=\"outlined\" onClick={handleClear}>\n Clear\n </Button>\n </DialogActions>\n )\n}\n","import { ContentCopy } from '@mui/icons-material'\nimport type { StandardTextFieldProps } from '@mui/material'\nimport {\n Chip, FormControl, FormLabel, IconButton, TextField,\n Tooltip,\n useTheme,\n} from '@mui/material'\nimport { FlexRow } from '@xylabs/react-flexbox'\nimport React, { useMemo, useState } from 'react'\n\nimport { useSeedPhrase } from '../../../../../contexts/index.ts'\nimport { InvalidPhraseTypography, PhraseHeaderBox } from './validation-messages/index.ts'\n\nexport interface SavedPhraseTextFieldProps extends StandardTextFieldProps {\n fullWidth?: boolean\n showCopyButton?: boolean\n showPhraseHeader?: boolean\n visible?: boolean\n}\n\nexport const SavedPhraseTextField: React.FC<SavedPhraseTextFieldProps> = ({\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n fullWidth, showCopyButton, showPhraseHeader, visible: visibleProp, ...props\n}) => {\n const { validSeedPhrase, seedPhrase } = useSeedPhrase()\n const theme = useTheme()\n\n const [visible, setVisible] = useState(visibleProp)\n\n useMemo(() => {\n setVisible(visibleProp)\n }, [visibleProp])\n\n const [copied, setCopied] = useState(false)\n const onCopyPhrase = async () => {\n if (seedPhrase) {\n try {\n await navigator.clipboard.writeText(seedPhrase)\n setCopied(true)\n setTimeout(() => setCopied(false), 2000)\n } catch (e) {\n console.error('Error copying resolvedSelectedAddress to clipboard', e)\n }\n }\n }\n\n return (\n <FormControl\n fullWidth={fullWidth}\n size=\"small\"\n sx={{\n display: 'flex', flexDirection: 'column', rowGap: 1,\n }}\n >\n <FlexRow gap={0.5}>\n <Chip\n label=\"Show Seed Phrase\"\n onClick={() => setVisible(!visible)}\n // Margin is set to 2px to match the Copy Button size and remove jumping during animation\n sx={{ alignSelf: 'center', my: '2px' }}\n />\n <Tooltip title={copied ? 'Copied!' : 'Copy'}>\n <IconButton\n onClick={() => void onCopyPhrase()}\n sx={{\n height: visible ? 'auto' : 0,\n opacity: visible ? 1 : 0,\n overflow: 'hidden',\n padding: visible ? theme.spacing(1) : 0,\n transition: 'all .25s ease-in-out',\n width: visible ? 'max-content' : 0,\n }}\n >\n <ContentCopy fontSize=\"small\" />\n </IconButton>\n </Tooltip>\n </FlexRow>\n {visible && showPhraseHeader\n ? (\n <FormLabel>\n <PhraseHeaderBox conditional={validSeedPhrase}>Saved Seed Phrase</PhraseHeaderBox>\n </FormLabel>\n )\n : null}\n <TextField\n defaultValue={seedPhrase}\n disabled\n error={validSeedPhrase === false}\n helperText={validSeedPhrase === false ? <InvalidPhraseTypography /> : null}\n fullWidth\n maxRows={Number.POSITIVE_INFINITY}\n multiline\n slotProps={{\n input: {\n style: {\n height: visible ? 'auto' : '0',\n overflow: 'hidden',\n opacity: visible ? 1 : 0,\n padding: visible ? theme.spacing(1) : 0,\n transition: 'all .25s ease-in-out',\n },\n },\n }}\n {...props}\n />\n\n </FormControl>\n )\n}\n","import { Alert, Button } from '@mui/material'\nimport { FlexRow } from '@xylabs/react-flexbox'\nimport React from 'react'\n\nimport { useSeedPhrase } from '../../../../contexts/index.ts'\n\nexport const OverwriteWarning = () => {\n const { handleCancelOverwrite, handleSave } = useSeedPhrase()\n return (\n <Alert\n variant=\"outlined\"\n severity=\"warning\"\n action={(\n <FlexRow sx={{ columnGap: 1 }}>\n <Button variant=\"outlined\" color=\"inherit\" size=\"small\" onClick={handleSave}>\n Overwrite\n </Button>\n <Button variant=\"outlined\" color=\"inherit\" size=\"small\" onClick={handleCancelOverwrite}>\n Cancel\n </Button>\n </FlexRow>\n )}\n >\n Are you sure you want to overwrite existing seed phrase? This action cannot be undone.\n </Alert>\n )\n}\n","import type { DialogProps } from '@mui/material'\nimport {\n Dialog, DialogContent, DialogTitle, FormLabel,\n} from '@mui/material'\nimport type { ReactNode } from 'react'\nimport React from 'react'\n\nimport { SeedPhraseProvider, useSeedPhrase } from '../../../contexts/index.ts'\nimport { SeedPhraseIconButton } from '../_shared/index.ts'\nimport {\n DialogActionButtons,\n NewPhraseTextField,\n OverwriteWarning,\n PhraseDialogActions,\n PhraseHeaderBox,\n SavedPhraseTextField,\n} from './components/index.ts'\n\nexport interface SeedPhraseDialogProps extends DialogProps {\n changeSeedPhrase?: (value: string) => void\n dialogTitle?: ReactNode\n seedPhrase?: string\n seedPhraseTextFieldTitle?: ReactNode\n showCopyButton?: boolean\n}\n\nexport const SeedPhraseDialog: React.FC<SeedPhraseDialogProps> = ({\n changeSeedPhrase, dialogTitle = 'Update Your Seed Phrase', seedPhrase, seedPhraseTextFieldTitle = 'New Seed Phrase', ...props\n}) => {\n return (\n <SeedPhraseProvider\n seedPhrase={seedPhrase}\n handleChangeSeedPhrase={changeSeedPhrase}\n open={props.open}\n saveCallback={() => props.onClose?.({}, 'escapeKeyDown')}\n >\n <SeedPhraseDialogInner dialogTitle={dialogTitle} seedPhraseTextFieldTitle={seedPhraseTextFieldTitle} {...props} />\n </SeedPhraseProvider>\n )\n}\n\nexport const SeedPhraseDialogInner: React.FC<SeedPhraseDialogProps> = ({\n dialogTitle, seedPhraseTextFieldTitle, showCopyButton, ...props\n}) => {\n const {\n overwriteWarning, seedPhrase, validPhrase,\n } = useSeedPhrase()\n\n return (\n <Dialog aria-labelledby=\"alert-dialog-title\" aria-describedby=\"alert-dialog-description\" fullWidth maxWidth=\"sm\" {...props}>\n <DialogTitle\n id=\"alert-dialog-title\"\n sx={{\n alignItems: 'center', display: 'inline-flex', flexDirection: 'row',\n }}\n >\n {dialogTitle}\n <SeedPhraseIconButton />\n </DialogTitle>\n <DialogContent sx={{\n display: 'flex', flexDirection: 'column', rowGap: 2,\n }}\n >\n\n <NewPhraseTextField>\n <FormLabel>\n <PhraseHeaderBox conditional={validPhrase}>{seedPhraseTextFieldTitle}</PhraseHeaderBox>\n </FormLabel>\n </NewPhraseTextField>\n <PhraseDialogActions />\n {seedPhrase\n ? <SavedPhraseTextField showCopyButton={showCopyButton} />\n : null}\n {overwriteWarning\n ? <OverwriteWarning />\n : null}\n </DialogContent>\n <DialogActionButtons onClose={props.onClose} />\n </Dialog>\n )\n}\n","import { Cancel as CancelIcon, RadioButtonChecked as RadioButtonCheckedIcon } from '@mui/icons-material'\nimport type { TableRowProps } from '@mui/material'\nimport {\n Button, ButtonGroup, TableCell, TableRow,\n} from '@mui/material'\nimport React, { useState } from 'react'\n\nimport { SeedPhraseIconButton } from '../_shared/index.ts'\nimport { SeedPhraseDialog } from '../dialog/index.ts'\n\nexport interface SeedPhraseTableRowProps extends TableRowProps {\n changeSeedPhrase?: (seedPhrase: string) => void\n seedPhrase?: string\n}\n\nexport const SeedPhraseTableRow: React.FC<SeedPhraseTableRowProps> = ({\n changeSeedPhrase, seedPhrase, ...props\n}) => {\n const [open, setOpen] = useState(false)\n\n const handleOpen = () => {\n setOpen(true)\n }\n return (\n <TableRow {...props}>\n <TableCell>\n Seed Phrase\n {' '}\n <SeedPhraseIconButton />\n </TableCell>\n <TableCell align=\"center\">\n {seedPhrase\n ? <RadioButtonCheckedIcon color=\"success\" />\n : <CancelIcon color=\"error\" />}\n </TableCell>\n <TableCell>\n <SeedPhraseDialog changeSeedPhrase={changeSeedPhrase} open={open} onClose={() => setOpen(false)} seedPhrase={seedPhrase} />\n <ButtonGroup fullWidth>\n <Button variant=\"contained\" size=\"small\" onClick={handleOpen}>\n Update\n </Button>\n </ButtonGroup>\n </TableCell>\n </TableRow>\n )\n}\n","import { EthAddress } from '@xylabs/eth-address'\nimport { EthAccountButton } from '@xylabs/react-crypto'\nimport type { FlexBoxProps } from '@xylabs/react-flexbox'\nimport { FlexCol, FlexRow } from '@xylabs/react-flexbox'\nimport { NumberStatus } from '@xylabs/react-number-status'\nimport { useNetwork } from '@xyo-network/react-network'\nimport type { WalletInstance } from '@xyo-network/wallet-model'\nimport React from 'react'\n\nimport { useAccount } from '../../hooks/index.ts'\n\nexport interface WalletAccountDetailsProps extends FlexBoxProps {\n account?: WalletInstance\n exploreUrl?: string\n}\n\nexport const WalletAccountDetails: React.FC<WalletAccountDetailsProps> = ({\n exploreUrl = 'https://explore.xyo.network', account, ...props\n}) => {\n const [accountToUse] = useAccount({ account })\n const { network } = useNetwork()\n const exploreAddressUrl = `${exploreUrl}/recent?account=${accountToUse?.address}&network=${network?.name ?? 'main'}`\n\n return (\n <FlexCol {...props}>\n <EthAccountButton address={EthAddress.fromString(accountToUse?.address)} />\n <FlexRow gap={1}>\n <NumberStatus rounded title=\"Tokens\" value={0} to={`${exploreAddressUrl}&schema=network.xyo.account.tokens`} target=\"_blank\" />\n <NumberStatus rounded title=\"NFTs\" value={0} to={`${exploreAddressUrl}&schema=network.xyo.account.nfts`} target=\"_blank\" />\n <NumberStatus rounded title=\"Signatures\" value={0} to={`${exploreAddressUrl}&schema=network.xyo.account.signatures`} target=\"_blank\" />\n <NumberStatus rounded title=\"Signins\" value={0} to={`${exploreAddressUrl}&schema=network.xyo.account.signins`} target=\"_blank\" />\n </FlexRow>\n </FlexCol>\n )\n}\n","import { usePromise } from '@xylabs/react-promise'\nimport type { AccountInstance } from '@xyo-network/account-model'\nimport type { WalletInstance } from '@xyo-network/wallet-model'\nimport { useState } from 'react'\n\nimport {\n useRootWallet, useWalletContext, useWalletProvided,\n} from '../contexts/index.ts'\n\nexport interface AccountHookParams {\n account?: AccountInstance\n index?: number\n required?: boolean\n wallet?: WalletInstance\n}\n\nexport const useAccount = ({\n wallet, account, index, required = false,\n}: AccountHookParams = {}): [\n AccountInstance | null | undefined,\n Error | undefined,\n] => {\n const walletContextProvided = useWalletProvided()\n const [validationError, setValidationError] = useState<Error>()\n if (wallet && account && !validationError) {\n setValidationError(new Error('useAccount can not have both a wallet and an account in the parameters'))\n }\n\n if (index && account && !validationError) {\n setValidationError(new Error('useAccount can not have both a index and an account in the parameters'))\n }\n\n const [error, setError] = useState<Error>()\n const [rootWallet] = useRootWallet(!wallet && required)\n const { activeAccountIndex } = useWalletContext(false)\n const [activeAccount] = usePromise(async () => {\n try {\n if (!validationError) {\n if (wallet) {\n return await wallet?.derivePath?.(`${index ?? 0}'\\0`)\n } else if (rootWallet) {\n return await rootWallet?.derivePath?.(`${index ?? activeAccountIndex ?? 0}'\\0`)\n }\n }\n } catch (ex) {\n const error = ex as Error\n console.error(error.message)\n setError(error)\n }\n }, [index, wallet, rootWallet, activeAccountIndex, validationError])\n if (validationError && !error) {\n console.error(validationError.message)\n setError(validationError)\n }\n\n return [\n error\n ? undefined\n : (account ?? activeAccount ?? walletContextProvided)\n ? null\n : undefined,\n error,\n ]\n}\n","import { usePromise } from '@xylabs/react-promise'\nimport { HDWallet } from '@xyo-network/account'\nimport type { WalletInstance } from '@xyo-network/wallet-model'\nimport { useState } from 'react'\n\nimport { useSelectedWalletAccount, useWalletContext } from '../contexts/index.ts'\n\nexport interface WalletHookParams {\n mnemonic?: string\n path?: string\n required?: boolean\n seed?: ArrayBufferLike | string\n wallet?: WalletInstance | null\n}\n\nexport const useWallet = ({\n mnemonic, wallet, path, required = false, seed,\n}: WalletHookParams = {}): [\n WalletInstance | null | undefined,\n Error | undefined,\n] => {\n const walletContextProvided = useWalletContext(false)\n const [error, setError] = useState<Error>()\n const [contextAccount] = useSelectedWalletAccount(!wallet && required)\n const [activeAccount] = usePromise(async () => {\n try {\n const newAccount = await (() => {\n if (wallet) {\n return wallet\n } else if (mnemonic) {\n return HDWallet.fromPhrase(mnemonic)\n } else if (seed) {\n return HDWallet.fromSeed(seed)\n }\n return contextAccount\n })()\n\n return path ? newAccount?.derivePath?.(path) : (newAccount ?? wallet)\n } catch (ex) {\n setError(ex as Error)\n }\n }, [mnemonic, contextAccount, seed, path, wallet])\n return [activeAccount ?? (walletContextProvided ? null : activeAccount), error]\n}\n","import { usePromise } from '@xylabs/react-promise'\nimport type { WalletInstance } from '@xyo-network/wallet-model'\n\nimport { useWalletContext } from '../contexts/index.ts'\nimport { useWallet } from './useWallet.ts'\n\nexport interface WalletsHookParams {\n paths: string[]\n wallet?: WalletInstance | null\n}\n\nexport const useWallets = ({ wallet, paths }: WalletsHookParams): [WalletInstance[] | null | undefined, Error | undefined] => {\n const walletContextProvided = useWalletContext(false)\n const [foundWallet] = useWallet({ wallet })\n const [wallets, error] = usePromise(\n async () => (foundWallet ? await Promise.all(paths.map(path => foundWallet.derivePath(path))) : undefined),\n [foundWallet, paths],\n )\n return [wallets ?? (walletContextProvided ? null : wallets), error]\n}\n","import type { UsePromiseState } from '@xylabs/react-promise'\nimport { usePromise } from '@xylabs/react-promise'\nimport { HDWallet } from '@xyo-network/account'\nimport type { AccountInstance } from '@xyo-network/account-model'\nimport type { WalletInstance } from '@xyo-network/wallet-model'\nimport { Mutex } from 'async-mutex'\n\nlet globalWrapperWallet: WalletInstance | undefined\nconst globalWrapperWalletMutex = new Mutex()\n\nexport const useWrapperAccount = (\n account?: AccountInstance | null,\n): [AccountInstance | null | undefined, Error | undefined, UsePromiseState | undefined] => {\n return usePromise(async () => {\n return await globalWrapperWalletMutex.runExclusive(async () => {\n // if we are expecting to receive a wallet or did receive on, return the override account\n if (account !== undefined) {\n return account\n }\n\n if (globalWrapperWallet) {\n return globalWrapperWallet\n }\n\n try {\n globalWrapperWallet = await HDWallet.random()\n console.log(`Global Wrapper Wallet Creation Success: ${globalWrapperWallet.address}`)\n } catch (ex) {\n const error = ex as Error\n console.error(`Global Wrapper Wallet Creation Failed: ${error.message}`)\n }\n return globalWrapperWallet\n })\n }, [account])\n}\n","import type { SelectProps } from '@mui/material'\nimport { CircularProgress, MenuItem } from '@mui/material'\nimport { SelectEx } from '@xylabs/react-select'\nimport type { AddressRenderRowBoxProps } from '@xyo-network/react-address-render'\nimport { AddressRenderRowBox } from '@xyo-network/react-address-render'\nimport React from 'react'\n\nimport { useWalletContext } from '../../contexts/index.ts'\nimport { useWallet } from '../../hooks/index.ts'\n\ntype SharedAddressRenderRowBoxProps = Pick<AddressRenderRowBoxProps, 'iconOnly' | 'iconSize' | 'icons' | 'showFavorite'>\n\nexport type WalletAccountSelectProps = SharedAddressRenderRowBoxProps &\n Omit<SelectProps<number>, 'variant'> &\n Partial<SelectProps<number>> & {\n addressNames?: Record<string, string | undefined>\n maxAccounts?: number\n }\n\nconst arrayRange = (length: number, start = 0) => {\n return [...Array.from({ length }).keys()].map(x => x + start)\n}\n\nexport const WalletAccountSelect: React.FC<WalletAccountSelectProps> = ({\n addressNames,\n iconOnly,\n iconSize = 24,\n icons,\n maxAccounts = 1,\n showFavorite = false,\n size,\n variant = 'outlined',\n ...props\n}) => {\n const {\n activeAccountIndex = 0, setActiveAccountIndex, rootWallet,\n } = useWalletContext()\n const disabled = !rootWallet || activeAccountIndex === undefined\n\n return (\n <>\n {rootWallet\n ? (\n <SelectEx\n margin=\"dense\"\n disabled={disabled}\n renderValue={(selectedAccountIndex) => {\n // eslint-disable-next-line @eslint-react/no-nested-components\n const Item: React.FC = () => {\n const [selectedAccount] = useWallet({ path: selectedAccountIndex.toString(), wallet: rootWallet })\n const customName = selectedAccount ? addressNames?.[selectedAccount.address] : undefined\n const favorite = !!selectedAccount && selectedAccount.address in (addressNames ?? {})\n return (\n <MenuItem\n value={selectedAccountIndex}\n sx={{\n minHeight: 0, paddingBottom: 0, paddingTop: 0,\n }}\n >\n <AddressRenderRowBox\n disableSharedRef={true}\n flexGrow={1}\n address={selectedAccount?.address}\n iconOnly={iconOnly}\n iconSize={iconSize}\n icons={icons}\n name={customName}\n favorite={favorite}\n showFavorite={showFavorite}\n />\n </MenuItem>\n )\n }\n return <Item />\n }}\n value={activeAccountIndex}\n onChange={event => setActiveAccountIndex?.(Number.parseInt(`${event.target.value}`))}\n size={size}\n variant={variant}\n {...props}\n >\n {arrayRange(maxAccounts).map((index) => {\n // eslint-disable-next-line @eslint-react/no-nested-components\n const Item: React.FC = () => {\n const [account] = useWallet({ path: index.toString(), wallet: rootWallet })\n const customName = account ? addressNames?.[account.address] : undefined\n const favorite = !!account && account.address in (addressNames ?? {})\n return (\n <MenuItem\n key={account?.address}\n value={index}\n sx={{\n minHeight: 0, paddingBottom: 0, paddingTop: 0,\n }}\n >\n <AddressRenderRowBox\n disableSharedRef={true}\n flexGrow={1}\n address={account?.address}\n favorite={favorite}\n iconOnly={iconOnly}\n iconSize={iconSize}\n icons={icons}\n name={customName}\n showFavorite={showFavorite}\n />\n </MenuItem>\n )\n }\n\n return <Item key={index} />\n })}\n </SelectEx>\n )\n : <CircularProgress size={24} />}\n </>\n )\n}\n","import type { FlexBoxProps } from '@xylabs/react-flexbox'\nimport { FlexCol } from '@xylabs/react-flexbox'\nimport React from 'react'\n\nimport { WalletAccountSelect } from './Select.tsx'\n\nexport interface WalletAccountSelectBarProps extends FlexBoxProps {\n addressNames?: Record<string, string | undefined>\n iconOnly?: boolean\n iconSize?: number\n icons?: boolean\n maxAccounts?: number\n showFavorite?: boolean\n size?: 'small' | 'medium'\n}\n\nexport const WalletAccountSelectBar: React.FC<WalletAccountSelectBarProps> = ({\n addressNames,\n iconOnly,\n iconSize,\n icons,\n maxAccounts = 1,\n showFavorite = false,\n size = 'small',\n ...props\n}) => {\n return (\n <FlexCol alignItems=\"stretch\" {...props}>\n <WalletAccountSelect\n addressNames={addressNames}\n fullWidth\n showFavorite={showFavorite}\n iconSize={iconSize}\n iconOnly={iconOnly}\n icons={icons}\n maxAccounts={maxAccounts}\n size={size ?? 'small'}\n variant=\"outlined\"\n />\n </FlexCol>\n )\n}\n"],"mappings":"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","names":["ButtonGroup","TableCell","TableRow","Typography","ButtonEx","React","useState","Alert","AlertTitle","Snackbar","React","OutOfBoundsSnackBar","activeAccountIndex","desiredMaximumAccounts","setShowSnackBar","showSnackBar","Snackbar","anchorOrigin","horizontal","vertical","autoHideDuration","onClose","open","Alert","severity","AlertTitle","undefined","MaxAccountsTableRow","activeAccountIndex","changeMaxAccounts","maxAccounts","desiredMaximumAccounts","setDesiredMaximumAccounts","useState","showSnackBar","setShowSnackBar","handleChangeMaxAccounts","change","undefined","validMaximumAccounts","maxAccountsWithinRange","console","error","Error","React","TableRow","TableCell","align","Typography","variant","ButtonGroup","ButtonEx","onClick","size","OutOfBoundsSnackBar","HelpOutline","HelpOutlineIcon","Button","Dialog","DialogActions","DialogContent","DialogTitle","IconButton","Link","List","ListItem","Typography","React","useState","SeedPhraseIconButton","props","open","setOpen","useState","onClose","React","IconButton","onClick","HelpOutlineIcon","fontSize","Dialog","DialogTitle","DialogContent","Typography","Link","target","href","List","ListItem","DialogActions","Button","variant","Alert","AlertTitle","Snackbar","generateMnemonic","wordlist","React","useMemo","useState","DefaultSeedPhrase","changeSeedPhrase","children","hideDefaultSeedPhraseMessage","seedPhrase","showSnackBar","setShowSnackBar","useState","useMemo","mnemonic","generateMnemonic","wordlist","React","Snackbar","open","autoHideDuration","onClose","anchorOrigin","horizontal","vertical","Alert","severity","AlertTitle","Button","DialogActions","React","createContextEx","SeedPhraseContext","generateMnemonic","validateMnemonic","wordlist","useResetState","React","useCallback","useEffect","useMemo","useState","validate","passedPhrase","validateMnemonic","wordlist","SeedPhraseProvider","children","defaultPhrase","handleChangeSeedPhrase","saveCallback","seedPhrase","open","phrase","setPhrase","useResetState","overwriteWarning","setOverwriteWarning","useState","useEffect","handleGenerate","useCallback","mnemonic","generateMnemonic","handleCancelOverwrite","handleClear","handleSave","validSeedPhrase","useMemo","validPhrase","value","provided","React","SeedPhraseContext","useContextEx","useSeedPhrase","useContextEx","SeedPhraseContext","createContextEx","WalletContext","useResetState","usePromise","React","useMemo","WalletProvider","children","defaultActiveAccountIndex","rootWallet","props","activeAccountIndex","setActiveAccountIndex","useResetState","activeAccount","usePromise","derivePath","toString","value","useMemo","provided","React","WalletContext","usePromise","useContextEx","useProvided","useWalletContext","required","useContextEx","WalletContext","useWalletProvided","useProvided","useRootWallet","rootWallet","undefined","useIndexedWalletFromContext","index","wallet","usePromise","derivePath","toString","useSelectedWalletAccount","activeAccountIndex","account","DialogActionButtons","onClose","props","handleSave","setPhrase","useSeedPhrase","wrappedOnClose","e","React","DialogActions","Button","variant","onClick","type","FormControl","TextField","React","colorParser","conditional","Link","Typography","React","InvalidPhraseTypography","props","React","Typography","variant","color","Link","target","href","CheckCircleOutline","CheckCircleOutlineIcon","HighlightOff","HighlightOffIcon","FlexRow","React","useMemo","PhraseHeaderBox","children","conditional","props","state","useMemo","Icon","React","CheckCircleOutlineIcon","fontSize","color","HighlightOffIcon","FlexRow","justifyContent","columnGap","NewPhraseTextField","children","disableColor","props","phrase","setPhrase","validPhrase","useSeedPhrase","React","FormControl","fullWidth","size","sx","display","flexDirection","rowGap","TextField","focused","color","undefined","colorParser","error","helperText","InvalidPhraseTypography","maxRows","Number","POSITIVE_INFINITY","multiline","onChange","e","target","value","Button","DialogActions","React","PhraseDialogActions","handleClear","handleGenerate","overwriteWarning","useSeedPhrase","React","DialogActions","sx","justifyContent","Button","disabled","variant","onClick","ContentCopy","Chip","FormControl","FormLabel","IconButton","TextField","Tooltip","useTheme","FlexRow","React","useMemo","useState","SavedPhraseTextField","fullWidth","showCopyButton","showPhraseHeader","visible","visibleProp","props","validSeedPhrase","seedPhrase","useSeedPhrase","theme","useTheme","setVisible","useState","useMemo","copied","setCopied","onCopyPhrase","navigator","clipboard","writeText","setTimeout","e","console","error","React","FormControl","size","sx","display","flexDirection","rowGap","FlexRow","gap","Chip","label","onClick","alignSelf","my","Tooltip","title","IconButton","height","opacity","overflow","padding","spacing","transition","width","ContentCopy","fontSize","FormLabel","PhraseHeaderBox","conditional","TextField","defaultValue","disabled","helperText","InvalidPhraseTypography","maxRows","Number","POSITIVE_INFINITY","multiline","slotProps","input","style","Alert","Button","FlexRow","React","OverwriteWarning","handleCancelOverwrite","handleSave","useSeedPhrase","React","Alert","variant","severity","action","FlexRow","sx","columnGap","Button","color","size","onClick","Dialog","DialogContent","DialogTitle","FormLabel","React","SeedPhraseDialog","changeSeedPhrase","dialogTitle","seedPhrase","seedPhraseTextFieldTitle","props","React","SeedPhraseProvider","handleChangeSeedPhrase","open","saveCallback","onClose","SeedPhraseDialogInner","showCopyButton","overwriteWarning","validPhrase","useSeedPhrase","Dialog","aria-labelledby","aria-describedby","fullWidth","maxWidth","DialogTitle","id","sx","alignItems","display","flexDirection","SeedPhraseIconButton","DialogContent","rowGap","NewPhraseTextField","FormLabel","PhraseHeaderBox","conditional","PhraseDialogActions","SavedPhraseTextField","OverwriteWarning","DialogActionButtons","Cancel","CancelIcon","RadioButtonChecked","RadioButtonCheckedIcon","Button","ButtonGroup","TableCell","TableRow","React","useState","SeedPhraseTableRow","changeSeedPhrase","seedPhrase","props","open","setOpen","useState","handleOpen","React","TableRow","TableCell","SeedPhraseIconButton","align","RadioButtonCheckedIcon","color","CancelIcon","SeedPhraseDialog","onClose","ButtonGroup","fullWidth","Button","variant","size","onClick","EthAddress","EthAccountButton","FlexCol","FlexRow","NumberStatus","useNetwork","React","usePromise","useState","useAccount","wallet","account","index","required","walletContextProvided","useWalletProvided","validationError","setValidationError","useState","Error","error","setError","rootWallet","useRootWallet","activeAccountIndex","useWalletContext","activeAccount","usePromise","derivePath","ex","console","message","undefined","usePromise","HDWallet","useState","useWallet","mnemonic","wallet","path","required","seed","walletContextProvided","useWalletContext","error","setError","useState","contextAccount","useSelectedWalletAccount","activeAccount","usePromise","newAccount","HDWallet","fromPhrase","fromSeed","derivePath","ex","usePromise","useWallets","wallet","paths","walletContextProvided","useWalletContext","foundWallet","useWallet","wallets","error","usePromise","Promise","all","map","path","derivePath","undefined","usePromise","HDWallet","Mutex","globalWrapperWallet","globalWrapperWalletMutex","Mutex","useWrapperAccount","account","usePromise","runExclusive","undefined","HDWallet","random","console","log","address","ex","error","message","WalletAccountDetails","exploreUrl","account","props","accountToUse","useAccount","network","useNetwork","exploreAddressUrl","address","name","React","FlexCol","EthAccountButton","EthAddress","fromString","FlexRow","gap","NumberStatus","rounded","title","value","to","target","CircularProgress","MenuItem","SelectEx","AddressRenderRowBox","React","arrayRange","length","start","Array","from","keys","map","x","WalletAccountSelect","addressNames","iconOnly","iconSize","icons","maxAccounts","showFavorite","size","variant","props","activeAccountIndex","setActiveAccountIndex","rootWallet","useWalletContext","disabled","undefined","React","SelectEx","margin","renderValue","selectedAccountIndex","Item","selectedAccount","useWallet","path","toString","wallet","customName","address","favorite","MenuItem","value","sx","minHeight","paddingBottom","paddingTop","AddressRenderRowBox","disableSharedRef","flexGrow","name","onChange","event","Number","parseInt","target","index","account","key","CircularProgress","FlexCol","React","WalletAccountSelectBar","addressNames","iconOnly","iconSize","icons","maxAccounts","showFavorite","size","props","React","FlexCol","alignItems","WalletAccountSelect","fullWidth","variant"]}
1
+ {"version":3,"sources":["../../src/components/MaxAccounts/MaxAccountsTableRow.tsx","../../src/components/MaxAccounts/OutOfBoundsSnackBar.tsx","../../src/components/SeedPhrase/_shared/SeedPhraseIconButton.tsx","../../src/components/SeedPhrase/DefaultSeedPhrase.tsx","../../src/components/SeedPhrase/dialog/components/DialogActionButtons.tsx","../../src/contexts/SeedPhrase/Context.ts","../../src/contexts/SeedPhrase/Provider.tsx","../../src/contexts/SeedPhrase/use.ts","../../src/contexts/Wallet/Context.ts","../../src/contexts/Wallet/Provider.tsx","../../src/contexts/Wallet/use.ts","../../src/components/SeedPhrase/dialog/components/fields/NewPhraseTextField.tsx","../../src/components/SeedPhrase/dialog/components/fields/validation-messages/colorParser.ts","../../src/components/SeedPhrase/dialog/components/fields/validation-messages/InvalidPhrase.tsx","../../src/components/SeedPhrase/dialog/components/fields/validation-messages/PhraseHeaderBox.tsx","../../src/components/SeedPhrase/dialog/components/fields/PhraseDialogActions.tsx","../../src/components/SeedPhrase/dialog/components/fields/SavedPhraseTextField.tsx","../../src/components/SeedPhrase/dialog/components/OverwriteWarning.tsx","../../src/components/SeedPhrase/dialog/SeedPhraseDialog.tsx","../../src/components/SeedPhrase/settings/SeedPhraseTableRow.tsx","../../src/components/WalletAccountDetails/WalletAccountDetails.tsx","../../src/hooks/useAccount.ts","../../src/hooks/useWallet.ts","../../src/hooks/useWallets.ts","../../src/hooks/useWrapperAccount.ts","../../src/components/WalletAccountSelect/Select.tsx","../../src/components/WalletAccountSelect/RenderedMenuItem.tsx","../../src/components/WalletAccountSelect/SelectBar.tsx"],"sourcesContent":["import type { TableRowProps } from '@mui/material'\nimport {\n ButtonGroup, TableCell, TableRow, Typography,\n} from '@mui/material'\nimport { ButtonEx } from '@xylabs/react-button'\nimport React, { useState } from 'react'\n\nimport { OutOfBoundsSnackBar } from './OutOfBoundsSnackBar.tsx'\n\nexport interface MaxAccountsTableRow extends TableRowProps {\n activeAccountIndex?: number\n changeMaxAccounts?: (maxAccounts: number) => void\n maxAccounts?: number\n}\n\nexport const MaxAccountsTableRow: React.FC<MaxAccountsTableRow> = ({\n activeAccountIndex, changeMaxAccounts, maxAccounts,\n}) => {\n const [desiredMaximumAccounts, setDesiredMaximumAccounts] = useState<number | undefined>()\n const [showSnackBar, setShowSnackBar] = useState(false)\n\n const handleChangeMaxAccounts = (change: 'increase' | 'decrease') => {\n if (maxAccounts !== undefined && activeAccountIndex !== undefined) {\n switch (change) {\n case 'decrease': {\n const desiredMaximumAccounts = maxAccounts - 1\n const validMaximumAccounts = desiredMaximumAccounts > 0\n const maxAccountsWithinRange = activeAccountIndex + 1 <= desiredMaximumAccounts\n if (validMaximumAccounts && maxAccountsWithinRange) {\n changeMaxAccounts?.(desiredMaximumAccounts)\n }\n if (!maxAccountsWithinRange) setShowSnackBar(true)\n setDesiredMaximumAccounts(desiredMaximumAccounts)\n return\n }\n case 'increase': {\n changeMaxAccounts?.(maxAccounts + 1)\n return\n }\n default: {\n console.error(change, 'is not a recognized value')\n }\n }\n } else {\n throw new Error('Max Accounts is unset and needs a default')\n }\n }\n\n return (\n <TableRow>\n <TableCell>Maximum Accounts</TableCell>\n <TableCell align=\"center\">\n <Typography variant=\"caption\">{maxAccounts}</Typography>\n </TableCell>\n <TableCell align=\"center\">\n <ButtonGroup>\n <ButtonEx onClick={() => handleChangeMaxAccounts('decrease')} variant=\"contained\" size=\"small\">\n -\n </ButtonEx>\n <ButtonEx onClick={() => handleChangeMaxAccounts('increase')} variant=\"contained\" size=\"small\">\n +\n </ButtonEx>\n </ButtonGroup>\n <OutOfBoundsSnackBar\n desiredMaximumAccounts={desiredMaximumAccounts}\n activeAccountIndex={activeAccountIndex}\n setShowSnackBar={setShowSnackBar}\n showSnackBar={showSnackBar}\n />\n </TableCell>\n </TableRow>\n )\n}\n","import type { SnackbarProps } from '@mui/material'\nimport {\n Alert, AlertTitle, Snackbar,\n} from '@mui/material'\nimport type { Dispatch, SetStateAction } from 'react'\nimport React from 'react'\n\nexport interface OutOfBoundsSnackBarProps extends SnackbarProps {\n activeAccountIndex?: number\n desiredMaximumAccounts?: number\n setShowSnackBar?: Dispatch<SetStateAction<boolean>>\n showSnackBar?: boolean\n}\n\nexport const OutOfBoundsSnackBar: React.FC<OutOfBoundsSnackBarProps> = ({\n activeAccountIndex,\n desiredMaximumAccounts,\n setShowSnackBar,\n showSnackBar,\n}) => {\n return (\n <Snackbar\n anchorOrigin={{ horizontal: 'center', vertical: 'top' }}\n autoHideDuration={5000}\n onClose={() => setShowSnackBar?.(false)}\n open={showSnackBar}\n >\n <Alert severity=\"error\" onClose={() => setShowSnackBar?.(false)}>\n <AlertTitle>Maximum Accounts Error</AlertTitle>\n Your currently selected account number (\n {activeAccountIndex === undefined ? '' : activeAccountIndex + 1}\n ) cannot be greater than the desired\n Maximum Accounts (\n {desiredMaximumAccounts}\n ).\n </Alert>\n </Snackbar>\n )\n}\n","import { HelpOutline as HelpOutlineIcon } from '@mui/icons-material'\nimport type { IconButtonProps } from '@mui/material'\nimport {\n Button,\n Dialog,\n DialogActions,\n DialogContent,\n DialogTitle,\n IconButton,\n Link,\n List,\n ListItem,\n Typography,\n} from '@mui/material'\nimport React, { useState } from 'react'\n\nexport const SeedPhraseIconButton: React.FC<IconButtonProps> = (props) => {\n const [open, setOpen] = useState(false)\n const onClose = () => setOpen(false)\n return (\n <>\n <IconButton onClick={() => setOpen(true)} {...props}>\n <HelpOutlineIcon fontSize=\"small\" />\n </IconButton>\n <Dialog open={open}>\n <DialogTitle>Understanding your Seed Phrase</DialogTitle>\n <DialogContent>\n <Typography>\n Your Seed Phrase should adhere to the\n {' '}\n <Link target=\"_blank\" href=\"https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki\">\n bip39 specification\n </Link>\n {' '}\n and is used to generate accounts which identify your data on the XYO Network.\n </Typography>\n <List>\n <ListItem>Do not share this phrase with anyone.</ListItem>\n <ListItem>Do not save it to a public computer.</ListItem>\n <ListItem>Do not use a existing phrase from another wallet (i.e. Metamask).</ListItem>\n <ListItem>Do not use before copying it down somewhere safe.</ListItem>\n </List>\n </DialogContent>\n <DialogActions>\n <Button onClick={onClose} variant=\"outlined\">\n OK\n </Button>\n </DialogActions>\n </Dialog>\n </>\n )\n}\n","import {\n Alert, AlertTitle, Snackbar,\n} from '@mui/material'\nimport { generateMnemonic } from '@scure/bip39'\nimport { wordlist } from '@scure/bip39/wordlists/english'\nimport type { PropsWithChildren } from 'react'\nimport React, { useMemo, useState } from 'react'\n\nexport interface DefaultSeedPhraseProps extends PropsWithChildren {\n changeSeedPhrase?: (seedPhrase: string) => void\n hideDefaultSeedPhraseMessage?: boolean\n seedPhrase?: string\n}\n\nexport const DefaultSeedPhrase: React.FC<DefaultSeedPhraseProps> = ({\n changeSeedPhrase, children, hideDefaultSeedPhraseMessage, seedPhrase,\n}) => {\n const [showSnackBar, setShowSnackBar] = useState(false)\n\n useMemo(() => {\n if (!seedPhrase) {\n const mnemonic = generateMnemonic(wordlist, 256)\n changeSeedPhrase?.(mnemonic)\n setShowSnackBar(true)\n }\n }, [changeSeedPhrase, seedPhrase])\n\n return (\n <>\n {hideDefaultSeedPhraseMessage\n ? null\n : (\n <Snackbar\n open={showSnackBar}\n autoHideDuration={5000}\n onClose={() => setShowSnackBar(false)}\n anchorOrigin={{ horizontal: 'center', vertical: 'top' }}\n >\n <Alert severity=\"success\">\n <AlertTitle>Default Seed Phrase Generated</AlertTitle>\n Go to application settings to save it.\n </Alert>\n </Snackbar>\n )}\n {children}\n </>\n )\n}\n","import type { DialogActionsProps, DialogProps } from '@mui/material'\nimport { Button, DialogActions } from '@mui/material'\nimport type { MouseEvent } from 'react'\nimport React from 'react'\n\nimport { useSeedPhrase } from '../../../../contexts/index.ts'\n\ninterface DialogActionButtonsProps extends DialogActionsProps {\n onClose?: DialogProps['onClose']\n}\n\nexport const DialogActionButtons: React.FC<DialogActionButtonsProps> = ({ onClose, ...props }) => {\n const { handleSave, setPhrase } = useSeedPhrase()\n\n const wrappedOnClose = (e: MouseEvent<HTMLElement>) => {\n // clear local copy of phrase when modal closes\n setPhrase?.('')\n onClose?.(e, 'escapeKeyDown')\n }\n\n return (\n <DialogActions {...props}>\n <Button variant=\"outlined\" onClick={wrappedOnClose}>\n Cancel\n </Button>\n <Button type=\"submit\" variant=\"contained\" onClick={handleSave}>\n Save\n </Button>\n </DialogActions>\n )\n}\n","import { createContextEx } from '@xyo-network/react-shared'\n\nimport type { SeedPhraseContextState } from './State.ts'\n\nexport const SeedPhraseContext = createContextEx<SeedPhraseContextState>()\n","import { generateMnemonic, validateMnemonic } from '@scure/bip39'\nimport { wordlist } from '@scure/bip39/wordlists/english'\nimport { useResetState } from '@xylabs/react-hooks'\nimport type { PropsWithChildren } from 'react'\nimport React, {\n useCallback, useEffect, useMemo, useState,\n} from 'react'\n\nimport { SeedPhraseContext } from './Context.ts'\n\nexport interface SeedPhraseProviderProps extends PropsWithChildren {\n defaultPhrase?: string\n handleChangeSeedPhrase?: (phrase: string) => void\n open?: boolean\n saveCallback?: () => void\n seedPhrase?: string\n}\n\nconst validate = (passedPhrase?: string) => {\n if (!passedPhrase) {\n return null\n }\n return validateMnemonic(passedPhrase, wordlist)\n}\n\nexport const SeedPhraseProvider: React.FC<SeedPhraseProviderProps> = ({\n children,\n defaultPhrase,\n handleChangeSeedPhrase,\n saveCallback,\n seedPhrase,\n open,\n}) => {\n const [phrase, setPhrase] = useResetState<string | undefined>(defaultPhrase)\n const [overwriteWarning, setOverwriteWarning] = useState(false)\n\n useEffect(() => {\n if (seedPhrase || open) {\n setPhrase?.(seedPhrase ?? '')\n }\n }, [seedPhrase, open, setPhrase])\n\n const handleGenerate = useCallback(() => {\n const mnemonic = generateMnemonic(wordlist, 256)\n setPhrase?.(mnemonic)\n setOverwriteWarning?.(false)\n }, [])\n\n const handleCancelOverwrite = useCallback(() => {\n // eslint-disable-next-line @eslint-react/hooks-extra/no-direct-set-state-in-use-effect\n setOverwriteWarning(false)\n }, [setOverwriteWarning])\n\n const handleClear = useCallback(() => {\n setPhrase('')\n setOverwriteWarning(false)\n }, [setPhrase, setOverwriteWarning])\n\n const handleSave = useCallback(() => {\n if (!overwriteWarning && seedPhrase && seedPhrase !== phrase) {\n setOverwriteWarning?.(true)\n } else {\n handleChangeSeedPhrase?.(phrase ?? '')\n saveCallback?.()\n }\n }, [handleChangeSeedPhrase, overwriteWarning, phrase, saveCallback, seedPhrase])\n\n useEffect(() => {\n if (!open) {\n handleCancelOverwrite()\n }\n }, [handleCancelOverwrite, open])\n\n const validSeedPhrase = useMemo(() => validate?.(seedPhrase), [seedPhrase])\n const validPhrase = useMemo(() => validate?.(phrase), [phrase])\n\n const value = useMemo(() => ({\n handleCancelOverwrite,\n handleChangeSeedPhrase,\n handleClear,\n handleGenerate,\n handleSave,\n overwriteWarning,\n phrase,\n provided: true,\n seedPhrase,\n setOverwriteWarning,\n setPhrase,\n validPhrase,\n validSeedPhrase,\n validate,\n }), [handleCancelOverwrite,\n handleChangeSeedPhrase,\n handleClear,\n handleGenerate,\n handleSave,\n overwriteWarning,\n phrase,\n seedPhrase,\n setOverwriteWarning,\n setPhrase,\n validPhrase,\n validSeedPhrase,\n validate])\n\n return (\n <SeedPhraseContext\n value={value}\n >\n {children}\n </SeedPhraseContext>\n )\n}\n","import { useContextEx } from '@xyo-network/react-shared'\n\nimport { SeedPhraseContext } from './Context.ts'\n\nexport const useSeedPhrase = () => useContextEx(SeedPhraseContext, 'SeedPhrase', true)\n","import { createContextEx } from '@xyo-network/react-shared'\n\nimport type { WalletContextState } from './State.ts'\n\nexport const WalletContext = createContextEx<WalletContextState>()\n","import { useResetState } from '@xylabs/react-hooks'\nimport { usePromise } from '@xylabs/react-promise'\nimport type { WalletInstance } from '@xyo-network/wallet-model'\nimport type { PropsWithChildren } from 'react'\nimport React, { useMemo } from 'react'\n\nimport { WalletContext } from './Context.ts'\n\nexport interface WalletProviderProps {\n defaultActiveAccountIndex?: number\n rootWallet?: WalletInstance | null\n}\n\nexport const WalletProvider: React.FC<PropsWithChildren<WalletProviderProps>> = ({\n children,\n defaultActiveAccountIndex = 0,\n rootWallet = null,\n ...props\n}) => {\n const [activeAccountIndex, setActiveAccountIndex] = useResetState(defaultActiveAccountIndex)\n\n const [activeAccount = null] = usePromise(async () => await rootWallet?.derivePath(activeAccountIndex.toString()), [activeAccountIndex, rootWallet])\n\n const value = useMemo(() => ({\n activeAccount,\n activeAccountIndex,\n provided: true,\n rootWallet,\n setActiveAccountIndex,\n }), [activeAccount,\n activeAccountIndex,\n rootWallet,\n setActiveAccountIndex])\n\n return (\n <WalletContext\n value={value}\n {...props}\n >\n {children}\n </WalletContext>\n )\n}\n","import { usePromise } from '@xylabs/react-promise'\nimport { useContextEx, useProvided } from '@xyo-network/react-shared'\nimport type { WalletInstance } from '@xyo-network/wallet-model'\n\nimport { WalletContext } from './Context.ts'\n\nexport const useWalletContext = (required = true) => {\n return useContextEx(WalletContext, 'Wallet', required)\n}\n\nexport const useWalletProvided = () => {\n return useProvided(WalletContext)\n}\n\nexport const useRootWallet = (required = true): [WalletInstance | null | undefined, Error | undefined] => {\n const { rootWallet } = useWalletContext(required)\n return [rootWallet, undefined]\n}\n\nexport const useIndexedWalletFromContext = (index: number, required = true): [WalletInstance | null | undefined, Error | undefined] => {\n const { rootWallet } = useWalletContext(required)\n const [wallet] = usePromise(async () => (await rootWallet?.derivePath(index.toString())) ?? rootWallet, [rootWallet, index])\n return [wallet, undefined]\n}\n\nexport const useSelectedWalletAccount = (required = true): [WalletInstance | null | undefined, Error | undefined] => {\n const { activeAccountIndex } = useWalletContext(required)\n // we pass in 0 as default since we can not call the hook optionally,\n // we resolve this false result by checking whether activeAccountIndex is defined before returning it\n const [account] = useIndexedWalletFromContext(activeAccountIndex ?? 0, required)\n return activeAccountIndex === undefined && account === null ? [null, undefined] : [account, undefined]\n}\n","import type { StandardTextFieldProps } from '@mui/material'\nimport { FormControl, TextField } from '@mui/material'\nimport type { ReactNode } from 'react'\nimport React from 'react'\n\nimport { useSeedPhrase } from '../../../../../contexts/index.ts'\nimport { colorParser, InvalidPhraseTypography } from './validation-messages/index.ts'\n\nexport interface NewPhraseTextFieldProps extends StandardTextFieldProps {\n children?: ReactNode\n disableColor?: boolean\n}\n\nexport const NewPhraseTextField: React.FC<NewPhraseTextFieldProps> = ({\n children, disableColor, ...props\n}) => {\n const {\n phrase, setPhrase, validPhrase,\n } = useSeedPhrase()\n return (\n <>\n <FormControl\n fullWidth\n size=\"small\"\n sx={{\n display: 'flex', flexDirection: 'column', rowGap: 1,\n }}\n >\n {children}\n <TextField\n focused\n color={disableColor ? undefined : colorParser(validPhrase)}\n error={validPhrase === false}\n helperText={validPhrase === false ? <InvalidPhraseTypography /> : null}\n fullWidth\n maxRows={Number.POSITIVE_INFINITY}\n multiline\n onChange={e => setPhrase?.(e.target.value)}\n value={phrase}\n {...props}\n />\n </FormControl>\n </>\n )\n}\n","export const colorParser = (conditional?: boolean | null) => {\n switch (conditional) {\n case true: {\n return 'success'\n }\n case false: {\n return 'error'\n }\n default: {\n return\n }\n }\n}\n","import type { TypographyProps } from '@mui/material'\nimport { Link, Typography } from '@mui/material'\nimport React from 'react'\n\nexport const InvalidPhraseTypography: React.FC<TypographyProps> = props => (\n <Typography variant=\"caption\" color=\"error\" {...props}>\n Invalid seed phrase. See -\n {' '}\n <Link target=\"_blank\" href=\"https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki\">\n bip39 Proposal\n </Link>\n </Typography>\n)\n","import { CheckCircleOutline as CheckCircleOutlineIcon, HighlightOff as HighlightOffIcon } from '@mui/icons-material'\nimport type { FlexBoxProps } from '@xylabs/react-flexbox'\nimport { FlexRow } from '@xylabs/react-flexbox'\nimport type { PropsWithChildren } from 'react'\nimport React, { useMemo } from 'react'\n\ninterface PhraseHeaderBox extends FlexBoxProps, PropsWithChildren {\n conditional?: boolean | null\n}\n\nexport const PhraseHeaderBox: React.FC<PhraseHeaderBox> = ({\n children, conditional, ...props\n}) => {\n const state = useMemo(() => {\n switch (conditional) {\n case true: {\n return 'success'\n }\n case false: {\n return 'error'\n }\n default: {\n return null\n }\n }\n }, [conditional])\n\n const Icon = useMemo(() => {\n switch (state) {\n case 'success': {\n return <CheckCircleOutlineIcon fontSize=\"small\" color=\"success\" />\n }\n case 'error': {\n return <HighlightOffIcon fontSize=\"small\" color=\"error\" />\n }\n default: {\n return null\n }\n }\n }, [state])\n\n return (\n <FlexRow justifyContent=\"start\" columnGap={1} {...props}>\n {Icon}\n {children}\n </FlexRow>\n )\n}\n","import { Button, DialogActions } from '@mui/material'\nimport React from 'react'\n\nimport { useSeedPhrase } from '../../../../../contexts/index.ts'\n\nexport const PhraseDialogActions = () => {\n const {\n handleClear, handleGenerate, overwriteWarning,\n } = useSeedPhrase()\n return (\n <DialogActions sx={{ justifyContent: 'center' }}>\n <Button disabled={overwriteWarning} variant=\"contained\" onClick={handleGenerate}>\n Generate\n </Button>\n <Button variant=\"outlined\" onClick={handleClear}>\n Clear\n </Button>\n </DialogActions>\n )\n}\n","import { ContentCopy } from '@mui/icons-material'\nimport type { StandardTextFieldProps } from '@mui/material'\nimport {\n Chip, FormControl, FormLabel, IconButton, TextField,\n Tooltip,\n useTheme,\n} from '@mui/material'\nimport { FlexRow } from '@xylabs/react-flexbox'\nimport React, { useMemo, useState } from 'react'\n\nimport { useSeedPhrase } from '../../../../../contexts/index.ts'\nimport { InvalidPhraseTypography, PhraseHeaderBox } from './validation-messages/index.ts'\n\nexport interface SavedPhraseTextFieldProps extends StandardTextFieldProps {\n fullWidth?: boolean\n showCopyButton?: boolean\n showPhraseHeader?: boolean\n visible?: boolean\n}\n\nexport const SavedPhraseTextField: React.FC<SavedPhraseTextFieldProps> = ({\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n fullWidth, showCopyButton, showPhraseHeader, visible: visibleProp, ...props\n}) => {\n const { validSeedPhrase, seedPhrase } = useSeedPhrase()\n const theme = useTheme()\n\n const [visible, setVisible] = useState(visibleProp)\n\n useMemo(() => {\n setVisible(visibleProp)\n }, [visibleProp])\n\n const [copied, setCopied] = useState(false)\n const onCopyPhrase = async () => {\n if (seedPhrase) {\n try {\n await navigator.clipboard.writeText(seedPhrase)\n setCopied(true)\n setTimeout(() => setCopied(false), 2000)\n } catch (e) {\n console.error('Error copying resolvedSelectedAddress to clipboard', e)\n }\n }\n }\n\n return (\n <FormControl\n fullWidth={fullWidth}\n size=\"small\"\n sx={{\n display: 'flex', flexDirection: 'column', rowGap: 1,\n }}\n >\n <FlexRow gap={0.5}>\n <Chip\n label=\"Show Seed Phrase\"\n onClick={() => setVisible(!visible)}\n // Margin is set to 2px to match the Copy Button size and remove jumping during animation\n sx={{ alignSelf: 'center', my: '2px' }}\n />\n <Tooltip title={copied ? 'Copied!' : 'Copy'}>\n <IconButton\n onClick={() => void onCopyPhrase()}\n sx={{\n height: visible ? 'auto' : 0,\n opacity: visible ? 1 : 0,\n overflow: 'hidden',\n padding: visible ? theme.spacing(1) : 0,\n transition: 'all .25s ease-in-out',\n width: visible ? 'max-content' : 0,\n }}\n >\n <ContentCopy fontSize=\"small\" />\n </IconButton>\n </Tooltip>\n </FlexRow>\n {visible && showPhraseHeader\n ? (\n <FormLabel>\n <PhraseHeaderBox conditional={validSeedPhrase}>Saved Seed Phrase</PhraseHeaderBox>\n </FormLabel>\n )\n : null}\n <TextField\n defaultValue={seedPhrase}\n disabled\n error={validSeedPhrase === false}\n helperText={validSeedPhrase === false ? <InvalidPhraseTypography /> : null}\n fullWidth\n maxRows={Number.POSITIVE_INFINITY}\n multiline\n slotProps={{\n input: {\n style: {\n height: visible ? 'auto' : '0',\n overflow: 'hidden',\n opacity: visible ? 1 : 0,\n padding: visible ? theme.spacing(1) : 0,\n transition: 'all .25s ease-in-out',\n },\n },\n }}\n {...props}\n />\n\n </FormControl>\n )\n}\n","import { Alert, Button } from '@mui/material'\nimport { FlexRow } from '@xylabs/react-flexbox'\nimport React from 'react'\n\nimport { useSeedPhrase } from '../../../../contexts/index.ts'\n\nexport const OverwriteWarning = () => {\n const { handleCancelOverwrite, handleSave } = useSeedPhrase()\n return (\n <Alert\n variant=\"outlined\"\n severity=\"warning\"\n action={(\n <FlexRow sx={{ columnGap: 1 }}>\n <Button variant=\"outlined\" color=\"inherit\" size=\"small\" onClick={handleSave}>\n Overwrite\n </Button>\n <Button variant=\"outlined\" color=\"inherit\" size=\"small\" onClick={handleCancelOverwrite}>\n Cancel\n </Button>\n </FlexRow>\n )}\n >\n Are you sure you want to overwrite existing seed phrase? This action cannot be undone.\n </Alert>\n )\n}\n","import type { DialogProps } from '@mui/material'\nimport {\n Dialog, DialogContent, DialogTitle, FormLabel,\n} from '@mui/material'\nimport type { ReactNode } from 'react'\nimport React from 'react'\n\nimport { SeedPhraseProvider, useSeedPhrase } from '../../../contexts/index.ts'\nimport { SeedPhraseIconButton } from '../_shared/index.ts'\nimport {\n DialogActionButtons,\n NewPhraseTextField,\n OverwriteWarning,\n PhraseDialogActions,\n PhraseHeaderBox,\n SavedPhraseTextField,\n} from './components/index.ts'\n\nexport interface SeedPhraseDialogProps extends DialogProps {\n changeSeedPhrase?: (value: string) => void\n dialogTitle?: ReactNode\n seedPhrase?: string\n seedPhraseTextFieldTitle?: ReactNode\n showCopyButton?: boolean\n}\n\nexport const SeedPhraseDialog: React.FC<SeedPhraseDialogProps> = ({\n changeSeedPhrase, dialogTitle = 'Update Your Seed Phrase', seedPhrase, seedPhraseTextFieldTitle = 'New Seed Phrase', ...props\n}) => {\n return (\n <SeedPhraseProvider\n seedPhrase={seedPhrase}\n handleChangeSeedPhrase={changeSeedPhrase}\n open={props.open}\n saveCallback={() => props.onClose?.({}, 'escapeKeyDown')}\n >\n <SeedPhraseDialogInner dialogTitle={dialogTitle} seedPhraseTextFieldTitle={seedPhraseTextFieldTitle} {...props} />\n </SeedPhraseProvider>\n )\n}\n\nexport const SeedPhraseDialogInner: React.FC<SeedPhraseDialogProps> = ({\n dialogTitle, seedPhraseTextFieldTitle, showCopyButton, ...props\n}) => {\n const {\n overwriteWarning, seedPhrase, validPhrase,\n } = useSeedPhrase()\n\n return (\n <Dialog aria-labelledby=\"alert-dialog-title\" aria-describedby=\"alert-dialog-description\" fullWidth maxWidth=\"sm\" {...props}>\n <DialogTitle\n id=\"alert-dialog-title\"\n sx={{\n alignItems: 'center', display: 'inline-flex', flexDirection: 'row',\n }}\n >\n {dialogTitle}\n <SeedPhraseIconButton />\n </DialogTitle>\n <DialogContent sx={{\n display: 'flex', flexDirection: 'column', rowGap: 2,\n }}\n >\n\n <NewPhraseTextField>\n <FormLabel>\n <PhraseHeaderBox conditional={validPhrase}>{seedPhraseTextFieldTitle}</PhraseHeaderBox>\n </FormLabel>\n </NewPhraseTextField>\n <PhraseDialogActions />\n {seedPhrase\n ? <SavedPhraseTextField showCopyButton={showCopyButton} />\n : null}\n {overwriteWarning\n ? <OverwriteWarning />\n : null}\n </DialogContent>\n <DialogActionButtons onClose={props.onClose} />\n </Dialog>\n )\n}\n","import { Cancel as CancelIcon, RadioButtonChecked as RadioButtonCheckedIcon } from '@mui/icons-material'\nimport type { TableRowProps } from '@mui/material'\nimport {\n Button, ButtonGroup, TableCell, TableRow,\n} from '@mui/material'\nimport React, { useState } from 'react'\n\nimport { SeedPhraseIconButton } from '../_shared/index.ts'\nimport { SeedPhraseDialog } from '../dialog/index.ts'\n\nexport interface SeedPhraseTableRowProps extends TableRowProps {\n changeSeedPhrase?: (seedPhrase: string) => void\n seedPhrase?: string\n}\n\nexport const SeedPhraseTableRow: React.FC<SeedPhraseTableRowProps> = ({\n changeSeedPhrase, seedPhrase, ...props\n}) => {\n const [open, setOpen] = useState(false)\n\n const handleOpen = () => {\n setOpen(true)\n }\n return (\n <TableRow {...props}>\n <TableCell>\n Seed Phrase\n {' '}\n <SeedPhraseIconButton />\n </TableCell>\n <TableCell align=\"center\">\n {seedPhrase\n ? <RadioButtonCheckedIcon color=\"success\" />\n : <CancelIcon color=\"error\" />}\n </TableCell>\n <TableCell>\n <SeedPhraseDialog changeSeedPhrase={changeSeedPhrase} open={open} onClose={() => setOpen(false)} seedPhrase={seedPhrase} />\n <ButtonGroup fullWidth>\n <Button variant=\"contained\" size=\"small\" onClick={handleOpen}>\n Update\n </Button>\n </ButtonGroup>\n </TableCell>\n </TableRow>\n )\n}\n","import { EthAddress } from '@xylabs/eth-address'\nimport { EthAccountButton } from '@xylabs/react-crypto'\nimport type { FlexBoxProps } from '@xylabs/react-flexbox'\nimport { FlexCol, FlexRow } from '@xylabs/react-flexbox'\nimport { NumberStatus } from '@xylabs/react-number-status'\nimport { useNetwork } from '@xyo-network/react-network'\nimport type { WalletInstance } from '@xyo-network/wallet-model'\nimport React from 'react'\n\nimport { useAccount } from '../../hooks/index.ts'\n\nexport interface WalletAccountDetailsProps extends FlexBoxProps {\n account?: WalletInstance\n exploreUrl?: string\n}\n\nexport const WalletAccountDetails: React.FC<WalletAccountDetailsProps> = ({\n exploreUrl = 'https://explore.xyo.network', account, ...props\n}) => {\n const [accountToUse] = useAccount({ account })\n const { network } = useNetwork()\n const exploreAddressUrl = `${exploreUrl}/recent?account=${accountToUse?.address}&network=${network?.name ?? 'main'}`\n\n return (\n <FlexCol {...props}>\n <EthAccountButton address={EthAddress.fromString(accountToUse?.address)} />\n <FlexRow gap={1}>\n <NumberStatus rounded title=\"Tokens\" value={0} to={`${exploreAddressUrl}&schema=network.xyo.account.tokens`} target=\"_blank\" />\n <NumberStatus rounded title=\"NFTs\" value={0} to={`${exploreAddressUrl}&schema=network.xyo.account.nfts`} target=\"_blank\" />\n <NumberStatus rounded title=\"Signatures\" value={0} to={`${exploreAddressUrl}&schema=network.xyo.account.signatures`} target=\"_blank\" />\n <NumberStatus rounded title=\"Signins\" value={0} to={`${exploreAddressUrl}&schema=network.xyo.account.signins`} target=\"_blank\" />\n </FlexRow>\n </FlexCol>\n )\n}\n","import { usePromise } from '@xylabs/react-promise'\nimport type { AccountInstance } from '@xyo-network/account-model'\nimport type { WalletInstance } from '@xyo-network/wallet-model'\nimport { useState } from 'react'\n\nimport {\n useRootWallet, useWalletContext, useWalletProvided,\n} from '../contexts/index.ts'\n\nexport interface AccountHookParams {\n account?: AccountInstance\n index?: number\n required?: boolean\n wallet?: WalletInstance\n}\n\nexport const useAccount = ({\n wallet, account, index, required = false,\n}: AccountHookParams = {}): [\n AccountInstance | null | undefined,\n Error | undefined,\n] => {\n const walletContextProvided = useWalletProvided()\n const [validationError, setValidationError] = useState<Error>()\n if (wallet && account && !validationError) {\n setValidationError(new Error('useAccount can not have both a wallet and an account in the parameters'))\n }\n\n if (index && account && !validationError) {\n setValidationError(new Error('useAccount can not have both a index and an account in the parameters'))\n }\n\n const [error, setError] = useState<Error>()\n const [rootWallet] = useRootWallet(!wallet && required)\n const { activeAccountIndex } = useWalletContext(false)\n const [activeAccount] = usePromise(async () => {\n try {\n if (!validationError) {\n if (wallet) {\n const path = `${index ?? 0}'\\0`\n return await wallet?.derivePath?.(path)\n } else if (rootWallet) {\n const path = `${index ?? activeAccountIndex ?? 0}'\\/0`\n return await rootWallet?.derivePath?.(path)\n }\n }\n } catch (ex) {\n const error = ex as Error\n console.error(error.message)\n setError(error)\n }\n }, [index, wallet, rootWallet, activeAccountIndex, validationError])\n if (validationError && !error) {\n console.error(validationError.message)\n setError(validationError)\n }\n\n return [\n error\n ? undefined\n : (account ?? activeAccount ?? walletContextProvided)\n ? null\n : undefined,\n error,\n ]\n}\n","import { usePromise } from '@xylabs/react-promise'\nimport { HDWallet } from '@xyo-network/account'\nimport type { WalletInstance } from '@xyo-network/wallet-model'\nimport { useState } from 'react'\n\nimport { useSelectedWalletAccount, useWalletContext } from '../contexts/index.ts'\n\nexport interface WalletHookParams {\n mnemonic?: string\n path?: string\n required?: boolean\n seed?: ArrayBufferLike | string\n wallet?: WalletInstance | null\n}\n\nexport const useWallet = ({\n mnemonic, wallet, path, required = false, seed,\n}: WalletHookParams = {}): [\n WalletInstance | null | undefined,\n Error | undefined,\n] => {\n const walletContextProvided = useWalletContext(false)\n const [error, setError] = useState<Error>()\n const [contextAccount] = useSelectedWalletAccount(!wallet && required)\n const [activeAccount] = usePromise(async () => {\n try {\n const newAccount = await (() => {\n if (wallet) {\n return wallet\n } else if (mnemonic) {\n return HDWallet.fromPhrase(mnemonic)\n } else if (seed) {\n return HDWallet.fromSeed(seed)\n }\n return contextAccount\n })()\n\n return path ? newAccount?.derivePath?.(path) : (newAccount ?? wallet)\n } catch (ex) {\n setError(ex as Error)\n }\n }, [mnemonic, contextAccount, seed, path, wallet])\n return [activeAccount ?? (walletContextProvided ? null : activeAccount), error]\n}\n","import { usePromise } from '@xylabs/react-promise'\nimport type { WalletInstance } from '@xyo-network/wallet-model'\n\nimport { useWalletContext } from '../contexts/index.ts'\nimport { useWallet } from './useWallet.ts'\n\nexport interface WalletsHookParams {\n paths: string[]\n wallet?: WalletInstance | null\n}\n\nexport const useWallets = ({ wallet, paths }: WalletsHookParams): [WalletInstance[] | null | undefined, Error | undefined] => {\n const walletContextProvided = useWalletContext(false)\n const [foundWallet] = useWallet({ wallet })\n const [wallets, error] = usePromise(\n async () => (foundWallet ? await Promise.all(paths.map(path => foundWallet.derivePath(path))) : undefined),\n [foundWallet, paths],\n )\n return [wallets ?? (walletContextProvided ? null : wallets), error]\n}\n","import type { UsePromiseState } from '@xylabs/react-promise'\nimport { usePromise } from '@xylabs/react-promise'\nimport { HDWallet } from '@xyo-network/account'\nimport type { AccountInstance } from '@xyo-network/account-model'\nimport type { WalletInstance } from '@xyo-network/wallet-model'\nimport { Mutex } from 'async-mutex'\n\nlet globalWrapperWallet: WalletInstance | undefined\nconst globalWrapperWalletMutex = new Mutex()\n\nexport const useWrapperAccount = (\n account?: AccountInstance | null,\n): [AccountInstance | null | undefined, Error | undefined, UsePromiseState | undefined] => {\n return usePromise(async () => {\n return await globalWrapperWalletMutex.runExclusive(async () => {\n // if we are expecting to receive a wallet or did receive on, return the override account\n if (account !== undefined) {\n return account\n }\n\n if (globalWrapperWallet) {\n return globalWrapperWallet\n }\n\n try {\n globalWrapperWallet = await HDWallet.random()\n console.log(`Global Wrapper Wallet Creation Success: ${globalWrapperWallet.address}`)\n } catch (ex) {\n const error = ex as Error\n console.error(`Global Wrapper Wallet Creation Failed: ${error.message}`)\n }\n return globalWrapperWallet\n })\n }, [account])\n}\n","import type { SelectProps } from '@mui/material'\nimport { CircularProgress, MenuItem } from '@mui/material'\nimport { SelectEx } from '@xylabs/react-select'\nimport type { AddressRenderRowBoxProps } from '@xyo-network/react-address-render'\nimport { AddressRenderRowBox } from '@xyo-network/react-address-render'\nimport React from 'react'\n\nimport { useWalletContext } from '../../contexts/index.ts'\nimport { useWallet } from '../../hooks/index.ts'\nimport { RenderedAccountMenuItem } from './RenderedMenuItem.tsx'\n\ntype SharedAddressRenderRowBoxProps = Pick<AddressRenderRowBoxProps, 'iconOnly' | 'iconSize' | 'icons' | 'showFavorite'>\n\nexport type WalletAccountSelectProps = SharedAddressRenderRowBoxProps &\n Omit<SelectProps<number>, 'variant'> &\n Partial<SelectProps<number>> & {\n addressNames?: Record<string, string | undefined>\n maxAccounts?: number\n }\n\nconst arrayRange = (length: number, start = 0) => {\n return [...Array.from({ length }).keys()].map(x => x + start)\n}\n\nexport const WalletAccountSelect: React.FC<WalletAccountSelectProps> = ({\n addressNames,\n iconOnly,\n iconSize = 24,\n icons,\n maxAccounts = 1,\n showFavorite = false,\n size,\n variant = 'outlined',\n ...props\n}) => {\n const {\n activeAccountIndex, setActiveAccountIndex, rootWallet,\n } = useWalletContext()\n const disabled = !rootWallet || activeAccountIndex === undefined\n\n return (\n <>\n {rootWallet\n ? (\n <SelectEx\n margin=\"dense\"\n disabled={disabled}\n renderValue={(selectedAccountIndex) => {\n return (\n <RenderedAccountMenuItem\n addressNames={addressNames}\n iconOnly={iconOnly}\n iconSize={iconSize}\n icons={icons}\n rootWallet={rootWallet}\n selectedAccountIndex={selectedAccountIndex}\n showFavorite={showFavorite}\n />\n )\n }}\n value={activeAccountIndex === undefined ? '' : activeAccountIndex}\n onChange={event => setActiveAccountIndex?.(Number.parseInt(`${event.target.value}`))}\n size={size}\n variant={variant}\n {...props}\n >\n {rootWallet && arrayRange(maxAccounts).map((index) => {\n const [account] = useWallet({ path: index.toString(), wallet: rootWallet })\n const customName = account ? addressNames?.[account.address] : undefined\n const favorite = !!account && account.address in (addressNames ?? {})\n return (\n <MenuItem\n key={account?.address}\n value={index}\n sx={{\n minHeight: 0, paddingBottom: 0, paddingTop: 0,\n }}\n >\n <AddressRenderRowBox\n disableSharedRef={true}\n flexGrow={1}\n address={account?.address}\n favorite={favorite}\n iconOnly={iconOnly}\n iconSize={iconSize}\n icons={icons}\n name={customName}\n showFavorite={showFavorite}\n />\n </MenuItem>\n )\n })}\n </SelectEx>\n )\n : <CircularProgress size={24} />}\n </>\n )\n}\n","import { MenuItem, type MenuItemProps } from '@mui/material'\nimport { AddressRenderRowBox } from '@xyo-network/react-address-render'\nimport type { WalletInstance } from '@xyo-network/wallet-model'\nimport React from 'react'\n\nimport { useWallet } from '../../hooks/index.ts'\n\nexport interface RenderedAccountMenuItemProps extends MenuItemProps {\n addressNames?: Record<string, string | undefined>\n iconOnly?: boolean\n iconSize?: number\n icons?: boolean\n rootWallet: WalletInstance\n selectedAccountIndex?: number\n showFavorite?: boolean\n}\n\nexport const RenderedAccountMenuItem: React.FC<RenderedAccountMenuItemProps> = ({\n selectedAccountIndex,\n rootWallet,\n addressNames,\n iconOnly,\n iconSize,\n icons,\n showFavorite,\n}) => {\n const [selectedAccount] = useWallet({ path: selectedAccountIndex?.toString(), wallet: rootWallet })\n const customName = selectedAccount ? addressNames?.[selectedAccount.address] : undefined\n const favorite = !!selectedAccount && selectedAccount.address in (addressNames ?? {})\n return (\n <MenuItem\n value={selectedAccountIndex}\n sx={{\n minHeight: 0, paddingBottom: 0, paddingTop: 0,\n }}\n >\n <AddressRenderRowBox\n disableSharedRef={true}\n flexGrow={1}\n address={selectedAccount?.address}\n iconOnly={iconOnly}\n iconSize={iconSize}\n icons={icons}\n name={customName}\n favorite={favorite}\n showFavorite={showFavorite}\n />\n </MenuItem>\n )\n}\n","import type { FlexBoxProps } from '@xylabs/react-flexbox'\nimport { FlexCol } from '@xylabs/react-flexbox'\nimport React from 'react'\n\nimport { WalletAccountSelect } from './Select.tsx'\n\nexport interface WalletAccountSelectBarProps extends FlexBoxProps {\n addressNames?: Record<string, string | undefined>\n iconOnly?: boolean\n iconSize?: number\n icons?: boolean\n maxAccounts?: number\n showFavorite?: boolean\n size?: 'small' | 'medium'\n}\n\nexport const WalletAccountSelectBar: React.FC<WalletAccountSelectBarProps> = ({\n addressNames,\n iconOnly,\n iconSize,\n icons,\n maxAccounts = 1,\n showFavorite = false,\n size = 'small',\n ...props\n}) => {\n return (\n <FlexCol alignItems=\"stretch\" {...props}>\n <WalletAccountSelect\n addressNames={addressNames}\n fullWidth\n showFavorite={showFavorite}\n iconSize={iconSize}\n iconOnly={iconOnly}\n icons={icons}\n maxAccounts={maxAccounts}\n size={size ?? 'small'}\n variant=\"outlined\"\n />\n </FlexCol>\n )\n}\n"],"mappings":"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","names":["ButtonGroup","TableCell","TableRow","Typography","ButtonEx","React","useState","Alert","AlertTitle","Snackbar","React","OutOfBoundsSnackBar","activeAccountIndex","desiredMaximumAccounts","setShowSnackBar","showSnackBar","Snackbar","anchorOrigin","horizontal","vertical","autoHideDuration","onClose","open","Alert","severity","AlertTitle","undefined","MaxAccountsTableRow","activeAccountIndex","changeMaxAccounts","maxAccounts","desiredMaximumAccounts","setDesiredMaximumAccounts","useState","showSnackBar","setShowSnackBar","handleChangeMaxAccounts","change","undefined","validMaximumAccounts","maxAccountsWithinRange","console","error","Error","React","TableRow","TableCell","align","Typography","variant","ButtonGroup","ButtonEx","onClick","size","OutOfBoundsSnackBar","HelpOutline","HelpOutlineIcon","Button","Dialog","DialogActions","DialogContent","DialogTitle","IconButton","Link","List","ListItem","Typography","React","useState","SeedPhraseIconButton","props","open","setOpen","useState","onClose","React","IconButton","onClick","HelpOutlineIcon","fontSize","Dialog","DialogTitle","DialogContent","Typography","Link","target","href","List","ListItem","DialogActions","Button","variant","Alert","AlertTitle","Snackbar","generateMnemonic","wordlist","React","useMemo","useState","DefaultSeedPhrase","changeSeedPhrase","children","hideDefaultSeedPhraseMessage","seedPhrase","showSnackBar","setShowSnackBar","useState","useMemo","mnemonic","generateMnemonic","wordlist","React","Snackbar","open","autoHideDuration","onClose","anchorOrigin","horizontal","vertical","Alert","severity","AlertTitle","Button","DialogActions","React","createContextEx","SeedPhraseContext","generateMnemonic","validateMnemonic","wordlist","useResetState","React","useCallback","useEffect","useMemo","useState","validate","passedPhrase","validateMnemonic","wordlist","SeedPhraseProvider","children","defaultPhrase","handleChangeSeedPhrase","saveCallback","seedPhrase","open","phrase","setPhrase","useResetState","overwriteWarning","setOverwriteWarning","useState","useEffect","handleGenerate","useCallback","mnemonic","generateMnemonic","handleCancelOverwrite","handleClear","handleSave","validSeedPhrase","useMemo","validPhrase","value","provided","React","SeedPhraseContext","useContextEx","useSeedPhrase","useContextEx","SeedPhraseContext","createContextEx","WalletContext","useResetState","usePromise","React","useMemo","WalletProvider","children","defaultActiveAccountIndex","rootWallet","props","activeAccountIndex","setActiveAccountIndex","useResetState","activeAccount","usePromise","derivePath","toString","value","useMemo","provided","React","WalletContext","usePromise","useContextEx","useProvided","useWalletContext","required","useContextEx","WalletContext","useWalletProvided","useProvided","useRootWallet","rootWallet","undefined","useIndexedWalletFromContext","index","wallet","usePromise","derivePath","toString","useSelectedWalletAccount","activeAccountIndex","account","DialogActionButtons","onClose","props","handleSave","setPhrase","useSeedPhrase","wrappedOnClose","e","React","DialogActions","Button","variant","onClick","type","FormControl","TextField","React","colorParser","conditional","Link","Typography","React","InvalidPhraseTypography","props","React","Typography","variant","color","Link","target","href","CheckCircleOutline","CheckCircleOutlineIcon","HighlightOff","HighlightOffIcon","FlexRow","React","useMemo","PhraseHeaderBox","children","conditional","props","state","useMemo","Icon","React","CheckCircleOutlineIcon","fontSize","color","HighlightOffIcon","FlexRow","justifyContent","columnGap","NewPhraseTextField","children","disableColor","props","phrase","setPhrase","validPhrase","useSeedPhrase","React","FormControl","fullWidth","size","sx","display","flexDirection","rowGap","TextField","focused","color","undefined","colorParser","error","helperText","InvalidPhraseTypography","maxRows","Number","POSITIVE_INFINITY","multiline","onChange","e","target","value","Button","DialogActions","React","PhraseDialogActions","handleClear","handleGenerate","overwriteWarning","useSeedPhrase","React","DialogActions","sx","justifyContent","Button","disabled","variant","onClick","ContentCopy","Chip","FormControl","FormLabel","IconButton","TextField","Tooltip","useTheme","FlexRow","React","useMemo","useState","SavedPhraseTextField","fullWidth","showCopyButton","showPhraseHeader","visible","visibleProp","props","validSeedPhrase","seedPhrase","useSeedPhrase","theme","useTheme","setVisible","useState","useMemo","copied","setCopied","onCopyPhrase","navigator","clipboard","writeText","setTimeout","e","console","error","React","FormControl","size","sx","display","flexDirection","rowGap","FlexRow","gap","Chip","label","onClick","alignSelf","my","Tooltip","title","IconButton","height","opacity","overflow","padding","spacing","transition","width","ContentCopy","fontSize","FormLabel","PhraseHeaderBox","conditional","TextField","defaultValue","disabled","helperText","InvalidPhraseTypography","maxRows","Number","POSITIVE_INFINITY","multiline","slotProps","input","style","Alert","Button","FlexRow","React","OverwriteWarning","handleCancelOverwrite","handleSave","useSeedPhrase","React","Alert","variant","severity","action","FlexRow","sx","columnGap","Button","color","size","onClick","Dialog","DialogContent","DialogTitle","FormLabel","React","SeedPhraseDialog","changeSeedPhrase","dialogTitle","seedPhrase","seedPhraseTextFieldTitle","props","React","SeedPhraseProvider","handleChangeSeedPhrase","open","saveCallback","onClose","SeedPhraseDialogInner","showCopyButton","overwriteWarning","validPhrase","useSeedPhrase","Dialog","aria-labelledby","aria-describedby","fullWidth","maxWidth","DialogTitle","id","sx","alignItems","display","flexDirection","SeedPhraseIconButton","DialogContent","rowGap","NewPhraseTextField","FormLabel","PhraseHeaderBox","conditional","PhraseDialogActions","SavedPhraseTextField","OverwriteWarning","DialogActionButtons","Cancel","CancelIcon","RadioButtonChecked","RadioButtonCheckedIcon","Button","ButtonGroup","TableCell","TableRow","React","useState","SeedPhraseTableRow","changeSeedPhrase","seedPhrase","props","open","setOpen","useState","handleOpen","React","TableRow","TableCell","SeedPhraseIconButton","align","RadioButtonCheckedIcon","color","CancelIcon","SeedPhraseDialog","onClose","ButtonGroup","fullWidth","Button","variant","size","onClick","EthAddress","EthAccountButton","FlexCol","FlexRow","NumberStatus","useNetwork","React","usePromise","useState","useAccount","wallet","account","index","required","walletContextProvided","useWalletProvided","validationError","setValidationError","useState","Error","error","setError","rootWallet","useRootWallet","activeAccountIndex","useWalletContext","activeAccount","usePromise","path","derivePath","ex","console","message","undefined","usePromise","HDWallet","useState","useWallet","mnemonic","wallet","path","required","seed","walletContextProvided","useWalletContext","error","setError","useState","contextAccount","useSelectedWalletAccount","activeAccount","usePromise","newAccount","HDWallet","fromPhrase","fromSeed","derivePath","ex","usePromise","useWallets","wallet","paths","walletContextProvided","useWalletContext","foundWallet","useWallet","wallets","error","usePromise","Promise","all","map","path","derivePath","undefined","usePromise","HDWallet","Mutex","globalWrapperWallet","globalWrapperWalletMutex","Mutex","useWrapperAccount","account","usePromise","runExclusive","undefined","HDWallet","random","console","log","address","ex","error","message","WalletAccountDetails","exploreUrl","account","props","accountToUse","useAccount","network","useNetwork","exploreAddressUrl","address","name","React","FlexCol","EthAccountButton","EthAddress","fromString","FlexRow","gap","NumberStatus","rounded","title","value","to","target","CircularProgress","MenuItem","SelectEx","AddressRenderRowBox","React","MenuItem","AddressRenderRowBox","React","RenderedAccountMenuItem","selectedAccountIndex","rootWallet","addressNames","iconOnly","iconSize","icons","showFavorite","selectedAccount","useWallet","path","toString","wallet","customName","address","undefined","favorite","React","MenuItem","value","sx","minHeight","paddingBottom","paddingTop","AddressRenderRowBox","disableSharedRef","flexGrow","name","arrayRange","length","start","Array","from","keys","map","x","WalletAccountSelect","addressNames","iconOnly","iconSize","icons","maxAccounts","showFavorite","size","variant","props","activeAccountIndex","setActiveAccountIndex","rootWallet","useWalletContext","disabled","undefined","React","SelectEx","margin","renderValue","selectedAccountIndex","RenderedAccountMenuItem","value","onChange","event","Number","parseInt","target","index","account","useWallet","path","toString","wallet","customName","address","favorite","MenuItem","key","sx","minHeight","paddingBottom","paddingTop","AddressRenderRowBox","disableSharedRef","flexGrow","name","CircularProgress","FlexCol","React","WalletAccountSelectBar","addressNames","iconOnly","iconSize","icons","maxAccounts","showFavorite","size","props","React","FlexCol","alignItems","WalletAccountSelect","fullWidth","variant"]}
@@ -0,0 +1,14 @@
1
+ import { type MenuItemProps } from '@mui/material';
2
+ import type { WalletInstance } from '@xyo-network/wallet-model';
3
+ import React from 'react';
4
+ export interface RenderedAccountMenuItemProps extends MenuItemProps {
5
+ addressNames?: Record<string, string | undefined>;
6
+ iconOnly?: boolean;
7
+ iconSize?: number;
8
+ icons?: boolean;
9
+ rootWallet: WalletInstance;
10
+ selectedAccountIndex?: number;
11
+ showFavorite?: boolean;
12
+ }
13
+ export declare const RenderedAccountMenuItem: React.FC<RenderedAccountMenuItemProps>;
14
+ //# sourceMappingURL=RenderedMenuItem.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RenderedMenuItem.d.ts","sourceRoot":"","sources":["../../../../src/components/WalletAccountSelect/RenderedMenuItem.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAY,KAAK,aAAa,EAAE,MAAM,eAAe,CAAA;AAE5D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAC/D,OAAO,KAAK,MAAM,OAAO,CAAA;AAIzB,MAAM,WAAW,4BAA6B,SAAQ,aAAa;IACjE,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC,CAAA;IACjD,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,UAAU,EAAE,cAAc,CAAA;IAC1B,oBAAoB,CAAC,EAAE,MAAM,CAAA;IAC7B,YAAY,CAAC,EAAE,OAAO,CAAA;CACvB;AAED,eAAO,MAAM,uBAAuB,EAAE,KAAK,CAAC,EAAE,CAAC,4BAA4B,CAgC1E,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../../../src/components/WalletAccountSelect/Select.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAGhD,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,mCAAmC,CAAA;AAEjF,OAAO,KAAK,MAAM,OAAO,CAAA;AAKzB,KAAK,8BAA8B,GAAG,IAAI,CAAC,wBAAwB,EAAE,UAAU,GAAG,UAAU,GAAG,OAAO,GAAG,cAAc,CAAC,CAAA;AAExH,MAAM,MAAM,wBAAwB,GAAG,8BAA8B,GACnE,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,EAAE,SAAS,CAAC,GACpC,OAAO,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,GAAG;IAC7B,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC,CAAA;IACjD,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB,CAAA;AAMH,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC,wBAAwB,CA8FlE,CAAA"}
1
+ {"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../../../src/components/WalletAccountSelect/Select.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAGhD,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,mCAAmC,CAAA;AAEjF,OAAO,KAAK,MAAM,OAAO,CAAA;AAMzB,KAAK,8BAA8B,GAAG,IAAI,CAAC,wBAAwB,EAAE,UAAU,GAAG,UAAU,GAAG,OAAO,GAAG,cAAc,CAAC,CAAA;AAExH,MAAM,MAAM,wBAAwB,GAAG,8BAA8B,GACnE,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,EAAE,SAAS,CAAC,GACpC,OAAO,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,GAAG;IAC7B,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC,CAAA;IACjD,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB,CAAA;AAMH,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC,wBAAwB,CAyElE,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"WalletProviderDecorator.d.ts","sourceRoot":"","sources":["../../../../../src/components/WalletAccountSelect/stories/WalletProviderDecorator.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAA;AAOjD,eAAO,MAAM,uBAAuB,EAAE,SAQrC,CAAA"}
1
+ {"version":3,"file":"WalletProviderDecorator.d.ts","sourceRoot":"","sources":["../../../../../src/components/WalletAccountSelect/stories/WalletProviderDecorator.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAA;AAQjD,eAAO,MAAM,uBAAuB,EAAE,SAgBrC,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"useAccount.d.ts","sourceRoot":"","sources":["../../../src/hooks/useAccount.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AACjE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAO/D,MAAM,WAAW,iBAAiB;IAChC,OAAO,CAAC,EAAE,eAAe,CAAA;IACzB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,CAAC,EAAE,cAAc,CAAA;CACxB;AAED,eAAO,MAAM,UAAU,GAAI,wCAExB,iBAAsB,KAAG,CAC1B,eAAe,GAAG,IAAI,GAAG,SAAS,EAClC,KAAK,GAAG,SAAS,CA2ClB,CAAA"}
1
+ {"version":3,"file":"useAccount.d.ts","sourceRoot":"","sources":["../../../src/hooks/useAccount.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AACjE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAO/D,MAAM,WAAW,iBAAiB;IAChC,OAAO,CAAC,EAAE,eAAe,CAAA;IACzB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,CAAC,EAAE,cAAc,CAAA;CACxB;AAED,eAAO,MAAM,UAAU,GAAI,wCAExB,iBAAsB,KAAG,CAC1B,eAAe,GAAG,IAAI,GAAG,SAAS,EAClC,KAAK,GAAG,SAAS,CA6ClB,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/react-wallet",
3
- "version": "5.0.4",
3
+ "version": "5.0.6",
4
4
  "description": "Common React library for all XYO projects that use React",
5
5
  "keywords": [
6
6
  "xyo",
@@ -38,44 +38,39 @@
38
38
  },
39
39
  "module": "dist/browser/index.mjs",
40
40
  "types": "dist/types/index.d.ts",
41
- "scripts": {
42
- "license": "yarn license-checker --exclude \"MIT, ISC, Apache-2.0, BSD, BSD-2-Clause, CC-BY-4.0, Unlicense, CC-BY-3.0, CC0-1.0\"",
43
- "lint-pkg": "npmPkgJsonLint ."
44
- },
45
41
  "dependencies": {
46
42
  "@scure/bip39": "^1.5.4",
47
- "@xylabs/enum": "^4.6.0",
48
- "@xylabs/eth-address": "^4.6.0",
49
- "@xylabs/react-button": "^6.0.5",
50
- "@xylabs/react-crypto": "^6.0.5",
51
- "@xylabs/react-flexbox": "^6.0.5",
52
- "@xylabs/react-hooks": "^6.0.5",
53
- "@xylabs/react-identicon": "^6.0.5",
54
- "@xylabs/react-number-status": "^6.0.5",
55
- "@xylabs/react-promise": "^6.0.5",
56
- "@xylabs/react-quick-tip-button": "^6.0.5",
57
- "@xylabs/react-select": "^6.0.5",
58
- "@xyo-network/account": "^3.9.37",
59
- "@xyo-network/account-model": "^3.9.37",
60
- "@xyo-network/react-address-render": "^5.0.4",
61
- "@xyo-network/react-network": "^5.0.4",
62
- "@xyo-network/react-shared": "^5.0.4",
63
- "@xyo-network/wallet-model": "^3.9.37",
43
+ "@xylabs/eth-address": "^4.6.4",
44
+ "@xylabs/react-button": "^6.0.6",
45
+ "@xylabs/react-crypto": "^6.0.6",
46
+ "@xylabs/react-flexbox": "^6.0.6",
47
+ "@xylabs/react-hooks": "^6.0.6",
48
+ "@xylabs/react-identicon": "^6.0.6",
49
+ "@xylabs/react-number-status": "^6.0.6",
50
+ "@xylabs/react-promise": "^6.0.6",
51
+ "@xylabs/react-quick-tip-button": "^6.0.6",
52
+ "@xylabs/react-select": "^6.0.6",
53
+ "@xyo-network/account": "^3.9.38",
54
+ "@xyo-network/account-model": "^3.9.38",
55
+ "@xyo-network/react-address-render": "^5.0.6",
56
+ "@xyo-network/react-network": "^5.0.6",
57
+ "@xyo-network/react-shared": "^5.0.6",
58
+ "@xyo-network/wallet-model": "^3.9.38",
64
59
  "async-mutex": "^0.5.0"
65
60
  },
66
61
  "devDependencies": {
67
- "@mui/icons-material": "^6.4.7",
68
- "@mui/material": "^6.4.7",
69
- "@mui/styles": "^6.4.7",
70
- "@storybook/react": "^8.6.4",
62
+ "@mui/icons-material": "^6.4.8",
63
+ "@mui/material": "^6.4.8",
64
+ "@mui/styles": "^6.4.8",
65
+ "@storybook/react": "^8.6.7",
71
66
  "@types/react": "^19.0.10",
72
- "@xylabs/ts-scripts-yarn3": "^6.0.9",
73
- "@xylabs/tsconfig-react": "^6.0.9",
74
- "@xyo-network/react-storybook": "^5.0.4",
67
+ "@xylabs/ts-scripts-yarn3": "^6.1.4",
68
+ "@xylabs/tsconfig-react": "^6.1.4",
69
+ "@xyo-network/react-storybook": "^5.0.6",
75
70
  "react": "^19.0.0",
76
71
  "react-dom": "^19.0.0",
77
72
  "react-router-dom": "^7.3.0",
78
- "storybook": "^8.6.4",
73
+ "storybook": "^8.6.7",
79
74
  "typescript": "^5.8.2"
80
75
  },
81
76
  "peerDependencies": {
@@ -0,0 +1,50 @@
1
+ import { MenuItem, type MenuItemProps } from '@mui/material'
2
+ import { AddressRenderRowBox } from '@xyo-network/react-address-render'
3
+ import type { WalletInstance } from '@xyo-network/wallet-model'
4
+ import React from 'react'
5
+
6
+ import { useWallet } from '../../hooks/index.ts'
7
+
8
+ export interface RenderedAccountMenuItemProps extends MenuItemProps {
9
+ addressNames?: Record<string, string | undefined>
10
+ iconOnly?: boolean
11
+ iconSize?: number
12
+ icons?: boolean
13
+ rootWallet: WalletInstance
14
+ selectedAccountIndex?: number
15
+ showFavorite?: boolean
16
+ }
17
+
18
+ export const RenderedAccountMenuItem: React.FC<RenderedAccountMenuItemProps> = ({
19
+ selectedAccountIndex,
20
+ rootWallet,
21
+ addressNames,
22
+ iconOnly,
23
+ iconSize,
24
+ icons,
25
+ showFavorite,
26
+ }) => {
27
+ const [selectedAccount] = useWallet({ path: selectedAccountIndex?.toString(), wallet: rootWallet })
28
+ const customName = selectedAccount ? addressNames?.[selectedAccount.address] : undefined
29
+ const favorite = !!selectedAccount && selectedAccount.address in (addressNames ?? {})
30
+ return (
31
+ <MenuItem
32
+ value={selectedAccountIndex}
33
+ sx={{
34
+ minHeight: 0, paddingBottom: 0, paddingTop: 0,
35
+ }}
36
+ >
37
+ <AddressRenderRowBox
38
+ disableSharedRef={true}
39
+ flexGrow={1}
40
+ address={selectedAccount?.address}
41
+ iconOnly={iconOnly}
42
+ iconSize={iconSize}
43
+ icons={icons}
44
+ name={customName}
45
+ favorite={favorite}
46
+ showFavorite={showFavorite}
47
+ />
48
+ </MenuItem>
49
+ )
50
+ }
@@ -7,6 +7,7 @@ import React from 'react'
7
7
 
8
8
  import { useWalletContext } from '../../contexts/index.ts'
9
9
  import { useWallet } from '../../hooks/index.ts'
10
+ import { RenderedAccountMenuItem } from './RenderedMenuItem.tsx'
10
11
 
11
12
  type SharedAddressRenderRowBoxProps = Pick<AddressRenderRowBoxProps, 'iconOnly' | 'iconSize' | 'icons' | 'showFavorite'>
12
13
 
@@ -33,7 +34,7 @@ export const WalletAccountSelect: React.FC<WalletAccountSelectProps> = ({
33
34
  ...props
34
35
  }) => {
35
36
  const {
36
- activeAccountIndex = 0, setActiveAccountIndex, rootWallet,
37
+ activeAccountIndex, setActiveAccountIndex, rootWallet,
37
38
  } = useWalletContext()
38
39
  const disabled = !rootWallet || activeAccountIndex === undefined
39
40
 
@@ -45,70 +46,49 @@ export const WalletAccountSelect: React.FC<WalletAccountSelectProps> = ({
45
46
  margin="dense"
46
47
  disabled={disabled}
47
48
  renderValue={(selectedAccountIndex) => {
48
- // eslint-disable-next-line @eslint-react/no-nested-components
49
- const Item: React.FC = () => {
50
- const [selectedAccount] = useWallet({ path: selectedAccountIndex.toString(), wallet: rootWallet })
51
- const customName = selectedAccount ? addressNames?.[selectedAccount.address] : undefined
52
- const favorite = !!selectedAccount && selectedAccount.address in (addressNames ?? {})
53
- return (
54
- <MenuItem
55
- value={selectedAccountIndex}
56
- sx={{
57
- minHeight: 0, paddingBottom: 0, paddingTop: 0,
58
- }}
59
- >
60
- <AddressRenderRowBox
61
- disableSharedRef={true}
62
- flexGrow={1}
63
- address={selectedAccount?.address}
64
- iconOnly={iconOnly}
65
- iconSize={iconSize}
66
- icons={icons}
67
- name={customName}
68
- favorite={favorite}
69
- showFavorite={showFavorite}
70
- />
71
- </MenuItem>
72
- )
73
- }
74
- return <Item />
49
+ return (
50
+ <RenderedAccountMenuItem
51
+ addressNames={addressNames}
52
+ iconOnly={iconOnly}
53
+ iconSize={iconSize}
54
+ icons={icons}
55
+ rootWallet={rootWallet}
56
+ selectedAccountIndex={selectedAccountIndex}
57
+ showFavorite={showFavorite}
58
+ />
59
+ )
75
60
  }}
76
- value={activeAccountIndex}
61
+ value={activeAccountIndex === undefined ? '' : activeAccountIndex}
77
62
  onChange={event => setActiveAccountIndex?.(Number.parseInt(`${event.target.value}`))}
78
63
  size={size}
79
64
  variant={variant}
80
65
  {...props}
81
66
  >
82
- {arrayRange(maxAccounts).map((index) => {
83
- // eslint-disable-next-line @eslint-react/no-nested-components
84
- const Item: React.FC = () => {
85
- const [account] = useWallet({ path: index.toString(), wallet: rootWallet })
86
- const customName = account ? addressNames?.[account.address] : undefined
87
- const favorite = !!account && account.address in (addressNames ?? {})
88
- return (
89
- <MenuItem
90
- key={account?.address}
91
- value={index}
92
- sx={{
93
- minHeight: 0, paddingBottom: 0, paddingTop: 0,
94
- }}
95
- >
96
- <AddressRenderRowBox
97
- disableSharedRef={true}
98
- flexGrow={1}
99
- address={account?.address}
100
- favorite={favorite}
101
- iconOnly={iconOnly}
102
- iconSize={iconSize}
103
- icons={icons}
104
- name={customName}
105
- showFavorite={showFavorite}
106
- />
107
- </MenuItem>
108
- )
109
- }
110
-
111
- return <Item key={index} />
67
+ {rootWallet && arrayRange(maxAccounts).map((index) => {
68
+ const [account] = useWallet({ path: index.toString(), wallet: rootWallet })
69
+ const customName = account ? addressNames?.[account.address] : undefined
70
+ const favorite = !!account && account.address in (addressNames ?? {})
71
+ return (
72
+ <MenuItem
73
+ key={account?.address}
74
+ value={index}
75
+ sx={{
76
+ minHeight: 0, paddingBottom: 0, paddingTop: 0,
77
+ }}
78
+ >
79
+ <AddressRenderRowBox
80
+ disableSharedRef={true}
81
+ flexGrow={1}
82
+ address={account?.address}
83
+ favorite={favorite}
84
+ iconOnly={iconOnly}
85
+ iconSize={iconSize}
86
+ icons={icons}
87
+ name={customName}
88
+ showFavorite={showFavorite}
89
+ />
90
+ </MenuItem>
91
+ )
112
92
  })}
113
93
  </SelectEx>
114
94
  )
@@ -1,5 +1,4 @@
1
1
  import type { Meta, StoryFn } from '@storybook/react'
2
- import type { WalletInstance } from '@xyo-network/wallet-model'
3
2
  import React from 'react'
4
3
 
5
4
  import { useWallets } from '../../hooks/index.ts'
@@ -22,15 +21,14 @@ const Template: StoryFn<typeof WalletAccountSelectBar> = (args) => {
22
21
 
23
22
  const WithFavoritesTemplate: StoryFn<typeof WalletAccountSelectBar> = (args) => {
24
23
  const [wallets] = useWallets(PATHS)
25
- const castWallets = wallets as WalletInstance[] | undefined
26
24
  return (
27
25
  <WalletAccountSelectBar
28
26
  addressNames={
29
- castWallets
27
+ wallets
30
28
  ? {
31
- [castWallets[0]?.address]: 'first address',
32
- [castWallets[1]?.address]: undefined,
33
- [castWallets[2]?.address]: 'sixth address',
29
+ [wallets[0]?.address]: 'first address',
30
+ [wallets[1]?.address]: undefined,
31
+ [wallets[2]?.address]: 'sixth address',
34
32
  }
35
33
  : {}
36
34
  }
@@ -1,15 +1,24 @@
1
1
  import type { Decorator } from '@storybook/react'
2
2
  import { DefaultSeedPhrase } from '@xyo-network/react-storybook'
3
- import React from 'react'
3
+ import type { WalletInstance } from '@xyo-network/wallet-model'
4
+ import React, { useMemo, useState } from 'react'
4
5
 
5
6
  import { WalletProvider } from '../../../contexts/index.ts'
6
7
  import { useWallet } from '../../../hooks/index.ts'
7
8
 
8
9
  export const WalletProviderDecorator: Decorator = (Story, context) => {
9
10
  const [rootWallet] = useWallet({ mnemonic: DefaultSeedPhrase })
11
+ const [wallet, setWallet] = useState<WalletInstance>()
10
12
 
13
+ useMemo(() => {
14
+ if (rootWallet) {
15
+ setTimeout(() => {
16
+ setWallet(rootWallet)
17
+ }, 1000)
18
+ }
19
+ }, [rootWallet])
11
20
  return (
12
- <WalletProvider rootWallet={rootWallet}>
21
+ <WalletProvider rootWallet={wallet}>
13
22
  <Story {...context} />
14
23
  </WalletProvider>
15
24
  )
@@ -37,9 +37,11 @@ export const useAccount = ({
37
37
  try {
38
38
  if (!validationError) {
39
39
  if (wallet) {
40
- return await wallet?.derivePath?.(`${index ?? 0}'\0`)
40
+ const path = `${index ?? 0}'\0`
41
+ return await wallet?.derivePath?.(path)
41
42
  } else if (rootWallet) {
42
- return await rootWallet?.derivePath?.(`${index ?? activeAccountIndex ?? 0}'\0`)
43
+ const path = `${index ?? activeAccountIndex ?? 0}'\/0`
44
+ return await rootWallet?.derivePath?.(path)
43
45
  }
44
46
  }
45
47
  } catch (ex) {