@xyo-network/react-connected-accounts 2.77.0 → 2.77.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/classes/EnabledWallets.d.cts +0 -9
- package/dist/browser/classes/EnabledWallets.d.cts.map +1 -1
- package/dist/browser/classes/EnabledWallets.d.mts +0 -9
- package/dist/browser/classes/EnabledWallets.d.mts.map +1 -1
- package/dist/browser/classes/EnabledWallets.d.ts +0 -9
- package/dist/browser/classes/EnabledWallets.d.ts.map +1 -1
- package/dist/browser/hooks/useEnabledWallets.d.cts +0 -6
- package/dist/browser/hooks/useEnabledWallets.d.cts.map +1 -1
- package/dist/browser/hooks/useEnabledWallets.d.mts +0 -6
- package/dist/browser/hooks/useEnabledWallets.d.mts.map +1 -1
- package/dist/browser/hooks/useEnabledWallets.d.ts +0 -6
- package/dist/browser/hooks/useEnabledWallets.d.ts.map +1 -1
- package/dist/browser/index.cjs +1 -577
- package/dist/browser/index.cjs.map +1 -1
- package/dist/browser/index.js +1 -544
- package/dist/browser/index.js.map +1 -1
- package/dist/neutral/classes/EnabledWallets.d.cts +0 -9
- package/dist/neutral/classes/EnabledWallets.d.cts.map +1 -1
- package/dist/neutral/classes/EnabledWallets.d.mts +0 -9
- package/dist/neutral/classes/EnabledWallets.d.mts.map +1 -1
- package/dist/neutral/classes/EnabledWallets.d.ts +0 -9
- package/dist/neutral/classes/EnabledWallets.d.ts.map +1 -1
- package/dist/neutral/hooks/useEnabledWallets.d.cts +0 -6
- package/dist/neutral/hooks/useEnabledWallets.d.cts.map +1 -1
- package/dist/neutral/hooks/useEnabledWallets.d.mts +0 -6
- package/dist/neutral/hooks/useEnabledWallets.d.mts.map +1 -1
- package/dist/neutral/hooks/useEnabledWallets.d.ts +0 -6
- package/dist/neutral/hooks/useEnabledWallets.d.ts.map +1 -1
- package/dist/neutral/index.cjs +1 -577
- package/dist/neutral/index.cjs.map +1 -1
- package/dist/neutral/index.js +1 -544
- package/dist/neutral/index.js.map +1 -1
- package/dist/node/classes/EnabledWallets.d.cts +0 -9
- package/dist/node/classes/EnabledWallets.d.cts.map +1 -1
- package/dist/node/classes/EnabledWallets.d.mts +0 -9
- package/dist/node/classes/EnabledWallets.d.mts.map +1 -1
- package/dist/node/classes/EnabledWallets.d.ts +0 -9
- package/dist/node/classes/EnabledWallets.d.ts.map +1 -1
- package/dist/node/hooks/useEnabledWallets.d.cts +0 -6
- package/dist/node/hooks/useEnabledWallets.d.cts.map +1 -1
- package/dist/node/hooks/useEnabledWallets.d.mts +0 -6
- package/dist/node/hooks/useEnabledWallets.d.mts.map +1 -1
- package/dist/node/hooks/useEnabledWallets.d.ts +0 -6
- package/dist/node/hooks/useEnabledWallets.d.ts.map +1 -1
- package/dist/node/index.cjs +1 -608
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.js +1 -555
- package/dist/node/index.js.map +1 -1
- package/package.json +4 -4
    
        package/dist/neutral/index.js
    CHANGED
    
    | @@ -1,545 +1,2 @@ | |
| 1 | 
            -
            // src/classes/EnabledWallets.ts
         | 
| 2 | 
            -
            var DEFAULT_LOCAL_STORAGE_KEY = "XYO|EnabledWallets";
         | 
| 3 | 
            -
            var EnabledEthWalletConnections = class {
         | 
| 4 | 
            -
              // control whether or not enabled/disabled preferences are persisted (i.e. in localStorage)
         | 
| 5 | 
            -
              persistPreferences = true;
         | 
| 6 | 
            -
              // Map of wallet names and their enabled/disabled state
         | 
| 7 | 
            -
              enabledWallets = {};
         | 
| 8 | 
            -
              // Map of wallet names, their enabled/disabled state, and their wallet class
         | 
| 9 | 
            -
              ethWalletsState = {};
         | 
| 10 | 
            -
              // list of listeners that want to be notified on wallet changes
         | 
| 11 | 
            -
              listeners = [];
         | 
| 12 | 
            -
              // key to use in localStorage when persisting preferences
         | 
| 13 | 
            -
              localStorageKey = DEFAULT_LOCAL_STORAGE_KEY;
         | 
| 14 | 
            -
              constructor(localStorageKey = DEFAULT_LOCAL_STORAGE_KEY) {
         | 
| 15 | 
            -
                this.localStorageKey = localStorageKey;
         | 
| 16 | 
            -
                this.reviveSettings();
         | 
| 17 | 
            -
              }
         | 
| 18 | 
            -
              get wallets() {
         | 
| 19 | 
            -
                return this.ethWalletsState;
         | 
| 20 | 
            -
              }
         | 
| 21 | 
            -
              disableWallet(rdns) {
         | 
| 22 | 
            -
                this.toggleEnabledWallet(rdns, false);
         | 
| 23 | 
            -
              }
         | 
| 24 | 
            -
              enableWallet(rdns) {
         | 
| 25 | 
            -
                this.toggleEnabledWallet(rdns, true);
         | 
| 26 | 
            -
              }
         | 
| 27 | 
            -
              /**
         | 
| 28 | 
            -
               * Given a new set of wallets, set their enabled state based off previous preferences
         | 
| 29 | 
            -
               */
         | 
| 30 | 
            -
              resetWallets(wallets) {
         | 
| 31 | 
            -
                const newWallets = {};
         | 
| 32 | 
            -
                const addWallet = ([walletName, wallet]) => {
         | 
| 33 | 
            -
                  newWallets[walletName] = {
         | 
| 34 | 
            -
                    // preserve the existing enabled state
         | 
| 35 | 
            -
                    enabled: walletName in this.enabledWallets ? this.enabledWallets[walletName] : true,
         | 
| 36 | 
            -
                    wallet
         | 
| 37 | 
            -
                  };
         | 
| 38 | 
            -
                };
         | 
| 39 | 
            -
                Object.entries(wallets).forEach(addWallet.bind(this));
         | 
| 40 | 
            -
                this.ethWalletsState = newWallets;
         | 
| 41 | 
            -
                this.emitChange();
         | 
| 42 | 
            -
              }
         | 
| 43 | 
            -
              subscribe(listener) {
         | 
| 44 | 
            -
                this.listeners = [...this.listeners, listener];
         | 
| 45 | 
            -
                return () => {
         | 
| 46 | 
            -
                  this.listeners = this.listeners.filter((existingListener) => existingListener !== listener);
         | 
| 47 | 
            -
                };
         | 
| 48 | 
            -
              }
         | 
| 49 | 
            -
              toggleEnabledWallet(rdns, enabled) {
         | 
| 50 | 
            -
                if (rdns && this.ethWalletsState[rdns]) {
         | 
| 51 | 
            -
                  this.ethWalletsState[rdns].enabled = enabled;
         | 
| 52 | 
            -
                  this.ethWalletsState = { ...this.ethWalletsState };
         | 
| 53 | 
            -
                  this.emitChange();
         | 
| 54 | 
            -
                }
         | 
| 55 | 
            -
              }
         | 
| 56 | 
            -
              emitChange() {
         | 
| 57 | 
            -
                for (const listener of this.listeners) {
         | 
| 58 | 
            -
                  listener();
         | 
| 59 | 
            -
                }
         | 
| 60 | 
            -
                this.persistSettings();
         | 
| 61 | 
            -
              }
         | 
| 62 | 
            -
              isPersistance(method) {
         | 
| 63 | 
            -
                if (this.persistPreferences) {
         | 
| 64 | 
            -
                  method();
         | 
| 65 | 
            -
                }
         | 
| 66 | 
            -
              }
         | 
| 67 | 
            -
              persistSettings() {
         | 
| 68 | 
            -
                this.isPersistance(() => {
         | 
| 69 | 
            -
                  const enabledWallets = Object.entries(this.ethWalletsState).reduce((acc, [rdns, { enabled }]) => {
         | 
| 70 | 
            -
                    acc[rdns] = enabled;
         | 
| 71 | 
            -
                    return acc;
         | 
| 72 | 
            -
                  }, {});
         | 
| 73 | 
            -
                  localStorage.setItem(this.localStorageKey, JSON.stringify(enabledWallets));
         | 
| 74 | 
            -
                });
         | 
| 75 | 
            -
              }
         | 
| 76 | 
            -
              reviveSettings() {
         | 
| 77 | 
            -
                this.isPersistance(() => {
         | 
| 78 | 
            -
                  const existingEntries = localStorage.getItem(this.localStorageKey);
         | 
| 79 | 
            -
                  try {
         | 
| 80 | 
            -
                    const entries = existingEntries ? JSON.parse(existingEntries) : {};
         | 
| 81 | 
            -
                    this.enabledWallets = entries;
         | 
| 82 | 
            -
                  } catch (e) {
         | 
| 83 | 
            -
                    console.warn(`Error parsing saved enabled wallet entries: ${e.message}`);
         | 
| 84 | 
            -
                  }
         | 
| 85 | 
            -
                });
         | 
| 86 | 
            -
              }
         | 
| 87 | 
            -
            };
         | 
| 88 | 
            -
             | 
| 89 | 
            -
            // src/components/ConnectedAccountsFlexbox.tsx
         | 
| 90 | 
            -
            import { Typography as Typography6, useTheme as useTheme2 } from "@mui/material";
         | 
| 91 | 
            -
            import { FlexCol as FlexCol3 } from "@xylabs/react-flexbox";
         | 
| 92 | 
            -
            import { forwardRef } from "react";
         | 
| 93 | 
            -
             | 
| 94 | 
            -
            // src/hooks/useDetectWallets.tsx
         | 
| 95 | 
            -
            import { AccountsChangedEventName, useWalletDiscovery } from "@xylabs/react-crypto";
         | 
| 96 | 
            -
            import { useEffect, useMemo, useState } from "react";
         | 
| 97 | 
            -
            var sortWallets = (wallets) => (
         | 
| 98 | 
            -
              // eslint-disable-next-line unicorn/no-array-reduce
         | 
| 99 | 
            -
              Object.values(wallets).reduce((acc, wallet) => {
         | 
| 100 | 
            -
                wallet.allowedAccounts.length > 0 ? acc.unshift(wallet) : acc.push(wallet);
         | 
| 101 | 
            -
                return acc;
         | 
| 102 | 
            -
              }, [])
         | 
| 103 | 
            -
            );
         | 
| 104 | 
            -
            var useDetectedWallets = () => {
         | 
| 105 | 
            -
              const wallets = useWalletDiscovery();
         | 
| 106 | 
            -
              const [refresh, setRefresh] = useState(0);
         | 
| 107 | 
            -
              const [sortedWallets, setSortedWallets] = useState([]);
         | 
| 108 | 
            -
              useEffect(() => {
         | 
| 109 | 
            -
                setSortedWallets(sortWallets(wallets));
         | 
| 110 | 
            -
              }, [wallets, refresh]);
         | 
| 111 | 
            -
              useEffect(() => {
         | 
| 112 | 
            -
                const listener = () => {
         | 
| 113 | 
            -
                  setRefresh((refresh2) => refresh2 + 1);
         | 
| 114 | 
            -
                };
         | 
| 115 | 
            -
                window.addEventListener(AccountsChangedEventName, listener);
         | 
| 116 | 
            -
                return () => {
         | 
| 117 | 
            -
                  window.removeEventListener(AccountsChangedEventName, listener);
         | 
| 118 | 
            -
                };
         | 
| 119 | 
            -
              }, [wallets]);
         | 
| 120 | 
            -
              const totalConnectedAccounts = useMemo(
         | 
| 121 | 
            -
                () => Object.values(sortedWallets).reduce((acc, wallet) => acc + wallet.allowedAccounts.length, 0),
         | 
| 122 | 
            -
                [sortedWallets]
         | 
| 123 | 
            -
              );
         | 
| 124 | 
            -
              return { sortedWallets, totalConnectedAccounts };
         | 
| 125 | 
            -
            };
         | 
| 126 | 
            -
             | 
| 127 | 
            -
            // src/hooks/useEnabledWallets.tsx
         | 
| 128 | 
            -
            import { useWalletDiscovery as useWalletDiscovery2 } from "@xylabs/react-crypto";
         | 
| 129 | 
            -
            import { useMemo as useMemo2, useSyncExternalStore } from "react";
         | 
| 130 | 
            -
            var enabledEthWallets;
         | 
| 131 | 
            -
            var useEnabledWalletsInner = (enabledWalletsRdns) => {
         | 
| 132 | 
            -
              const discoveredWallets = useWalletDiscovery2();
         | 
| 133 | 
            -
              const wallets = useMemo2(() => {
         | 
| 134 | 
            -
                if (enabledEthWallets === void 0)
         | 
| 135 | 
            -
                  enabledEthWallets = new EnabledEthWalletConnections();
         | 
| 136 | 
            -
                enabledEthWallets.resetWallets(discoveredWallets);
         | 
| 137 | 
            -
                for (const [rdns, enabled] of Object.entries(enabledWalletsRdns ?? {}))
         | 
| 138 | 
            -
                  enabledEthWallets?.toggleEnabledWallet(rdns, enabled);
         | 
| 139 | 
            -
                return enabledEthWallets;
         | 
| 140 | 
            -
              }, [discoveredWallets, enabledWalletsRdns]);
         | 
| 141 | 
            -
              return useSyncExternalStore(wallets.subscribe.bind(wallets), () => wallets.wallets);
         | 
| 142 | 
            -
            };
         | 
| 143 | 
            -
            var useEnabledWallets = (enabledWalletsRdns) => {
         | 
| 144 | 
            -
              const wallets = useEnabledWalletsInner(enabledWalletsRdns);
         | 
| 145 | 
            -
              const enabledWallets = useMemo2(
         | 
| 146 | 
            -
                () => (
         | 
| 147 | 
            -
                  // eslint-disable-next-line unicorn/no-array-reduce
         | 
| 148 | 
            -
                  Object.entries(wallets).reduce((acc, [walletName, wallet]) => {
         | 
| 149 | 
            -
                    if (wallet.enabled)
         | 
| 150 | 
            -
                      acc[walletName] = wallet;
         | 
| 151 | 
            -
                    return acc;
         | 
| 152 | 
            -
                  }, {})
         | 
| 153 | 
            -
                ),
         | 
| 154 | 
            -
                [wallets]
         | 
| 155 | 
            -
              );
         | 
| 156 | 
            -
              return {
         | 
| 157 | 
            -
                disableWallet: enabledEthWallets?.disableWallet.bind(enabledEthWallets),
         | 
| 158 | 
            -
                enableWallet: enabledEthWallets?.enableWallet.bind(enabledEthWallets),
         | 
| 159 | 
            -
                enabledWallets,
         | 
| 160 | 
            -
                wallets
         | 
| 161 | 
            -
              };
         | 
| 162 | 
            -
            };
         | 
| 163 | 
            -
             | 
| 164 | 
            -
            // src/components/wallet/dialogs/connect/CheckboxFormControl.tsx
         | 
| 165 | 
            -
            import { Checkbox, FormControl, FormLabel } from "@mui/material";
         | 
| 166 | 
            -
            import { jsx, jsxs } from "react/jsx-runtime";
         | 
| 167 | 
            -
            var CheckboxFormControl = ({ onCheckChanged, ...props }) => {
         | 
| 168 | 
            -
              return /* @__PURE__ */ jsx(FormControl, { ...props, children: /* @__PURE__ */ jsxs(FormLabel, { children: [
         | 
| 169 | 
            -
                /* @__PURE__ */ jsx(Checkbox, { onChange: (_, checked) => onCheckChanged?.(checked) }),
         | 
| 170 | 
            -
                "Do not show this again."
         | 
| 171 | 
            -
              ] }) });
         | 
| 172 | 
            -
            };
         | 
| 173 | 
            -
             | 
| 174 | 
            -
            // src/components/wallet/dialogs/connect/Dialog.tsx
         | 
| 175 | 
            -
            import { Button, Dialog, DialogActions, DialogContent, DialogTitle } from "@mui/material";
         | 
| 176 | 
            -
             | 
| 177 | 
            -
            // src/components/wallet/dialogs/connect/LinkedProvidersFlexbox.tsx
         | 
| 178 | 
            -
            import { SyncAlt } from "@mui/icons-material";
         | 
| 179 | 
            -
            import { Typography } from "@mui/material";
         | 
| 180 | 
            -
            import { ConstrainedImage } from "@xylabs/react-crypto";
         | 
| 181 | 
            -
            import { FlexCol, FlexRow } from "@xylabs/react-flexbox";
         | 
| 182 | 
            -
             | 
| 183 | 
            -
            // src/img/index.ts
         | 
| 184 | 
            -
            import { default as default2 } from "./xyo-color-logo-LHR2SMEM.svg";
         | 
| 185 | 
            -
            import { default as default3 } from "./xyo-color-logo-text-only-QPAW5BSQ.svg";
         | 
| 186 | 
            -
             | 
| 187 | 
            -
            // src/components/wallet/dialogs/connect/LinkedProvidersFlexbox.tsx
         | 
| 188 | 
            -
            import { jsx as jsx2, jsxs as jsxs2 } from "react/jsx-runtime";
         | 
| 189 | 
            -
            var LinkedProvidersFlexbox = ({ icon, providerName, ...props }) => {
         | 
| 190 | 
            -
              return /* @__PURE__ */ jsxs2(FlexRow, { gap: 4, justifyContent: "space-evenly", ...props, children: [
         | 
| 191 | 
            -
                /* @__PURE__ */ jsxs2(FlexCol, { gap: 0.5, children: [
         | 
| 192 | 
            -
                  /* @__PURE__ */ jsx2("img", { alt: "XYO Logo", src: default2, style: { height: "48px" } }),
         | 
| 193 | 
            -
                  /* @__PURE__ */ jsx2(Typography, { variant: "subtitle1", children: "XYO App" })
         | 
| 194 | 
            -
                ] }),
         | 
| 195 | 
            -
                /* @__PURE__ */ jsx2(SyncAlt, { fontSize: "large" }),
         | 
| 196 | 
            -
                /* @__PURE__ */ jsxs2(FlexCol, { gap: 0.5, children: [
         | 
| 197 | 
            -
                  /* @__PURE__ */ jsx2(ConstrainedImage, { constrainedValue: "48px", src: icon, alt: providerName, style: { height: "48px", maxWidth: "48px" } }),
         | 
| 198 | 
            -
                  /* @__PURE__ */ jsx2(Typography, { variant: "subtitle1", children: providerName })
         | 
| 199 | 
            -
                ] })
         | 
| 200 | 
            -
              ] });
         | 
| 201 | 
            -
            };
         | 
| 202 | 
            -
             | 
| 203 | 
            -
            // src/components/wallet/dialogs/connect/Permissions.tsx
         | 
| 204 | 
            -
            import { Link, Typography as Typography2 } from "@mui/material";
         | 
| 205 | 
            -
            import { FlexCol as FlexCol2 } from "@xylabs/react-flexbox";
         | 
| 206 | 
            -
            import { jsx as jsx3, jsxs as jsxs3 } from "react/jsx-runtime";
         | 
| 207 | 
            -
            var WalletPermissionsFlexbox = (props) => {
         | 
| 208 | 
            -
              return /* @__PURE__ */ jsxs3(FlexCol2, { gap: 4, ...props, children: [
         | 
| 209 | 
            -
                /* @__PURE__ */ jsx3(Typography2, { fontWeight: "bold", sx: { textAlign: "center" }, children: "This will allow XYO to:" }),
         | 
| 210 | 
            -
                /* @__PURE__ */ jsxs3("ul", { children: [
         | 
| 211 | 
            -
                  /* @__PURE__ */ jsx3("li", { children: "View your wallet account(s) and address(es)" }),
         | 
| 212 | 
            -
                  /* @__PURE__ */ jsx3("li", { children: "Read-only access to browse the public blockchain(s) you select" })
         | 
| 213 | 
            -
                ] }),
         | 
| 214 | 
            -
                /* @__PURE__ */ jsxs3(Typography2, { variant: "subtitle1", sx: { textAlign: "center" }, children: [
         | 
| 215 | 
            -
                  "You control what accounts to share and what blockchains to view. You can see or revoke access via your wallet's settings at anytime. View more on XYO's sovereign data philosophy",
         | 
| 216 | 
            -
                  " ",
         | 
| 217 | 
            -
                  /* @__PURE__ */ jsx3(
         | 
| 218 | 
            -
                    Link,
         | 
| 219 | 
            -
                    {
         | 
| 220 | 
            -
                      href: "https://cointelegraph.com/innovation-circle/decentralization-and-sovereignty-debunking-our-approach-to-digital-sovereignty",
         | 
| 221 | 
            -
                      sx: { fontWeight: "bold" },
         | 
| 222 | 
            -
                      target: "_blank",
         | 
| 223 | 
            -
                      children: "here"
         | 
| 224 | 
            -
                    }
         | 
| 225 | 
            -
                  ),
         | 
| 226 | 
            -
                  "."
         | 
| 227 | 
            -
                ] })
         | 
| 228 | 
            -
              ] });
         | 
| 229 | 
            -
            };
         | 
| 230 | 
            -
             | 
| 231 | 
            -
            // src/components/wallet/dialogs/connect/Dialog.tsx
         | 
| 232 | 
            -
            import { jsx as jsx4, jsxs as jsxs4 } from "react/jsx-runtime";
         | 
| 233 | 
            -
            var ConnectWalletDialog = ({ activeProvider, onIgnoreConnectDialog, ...props }) => {
         | 
| 234 | 
            -
              const { icon, providerName } = activeProvider ?? {};
         | 
| 235 | 
            -
              const onConnect = async () => {
         | 
| 236 | 
            -
                try {
         | 
| 237 | 
            -
                  await activeProvider?.connectWallet?.();
         | 
| 238 | 
            -
                  props.onClose?.({}, "escapeKeyDown");
         | 
| 239 | 
            -
                } catch (e) {
         | 
| 240 | 
            -
                  console.warn(`Error connecting to wallet: ${e.message}`);
         | 
| 241 | 
            -
                }
         | 
| 242 | 
            -
              };
         | 
| 243 | 
            -
              return /* @__PURE__ */ jsxs4(Dialog, { PaperProps: { sx: { display: "flex", gap: 4 } }, ...props, children: [
         | 
| 244 | 
            -
                /* @__PURE__ */ jsx4(DialogTitle, { sx: { textAlign: "center" }, children: "XYO Wants To Access The Blockchain on Your Behalf" }),
         | 
| 245 | 
            -
                /* @__PURE__ */ jsxs4(DialogContent, { sx: { display: "flex", flexDirection: "column", gap: 4 }, children: [
         | 
| 246 | 
            -
                  /* @__PURE__ */ jsx4(LinkedProvidersFlexbox, { icon, providerName }),
         | 
| 247 | 
            -
                  /* @__PURE__ */ jsx4(WalletPermissionsFlexbox, {}),
         | 
| 248 | 
            -
                  /* @__PURE__ */ jsx4(CheckboxFormControl, { onCheckChanged: onIgnoreConnectDialog })
         | 
| 249 | 
            -
                ] }),
         | 
| 250 | 
            -
                /* @__PURE__ */ jsxs4(DialogActions, { children: [
         | 
| 251 | 
            -
                  /* @__PURE__ */ jsx4(Button, { variant: "outlined", onClick: () => props.onClose?.({}, "escapeKeyDown"), children: "Close" }),
         | 
| 252 | 
            -
                  /* @__PURE__ */ jsx4(Button, { variant: "contained", onClick: onConnect, children: "Connect" })
         | 
| 253 | 
            -
                ] })
         | 
| 254 | 
            -
              ] });
         | 
| 255 | 
            -
            };
         | 
| 256 | 
            -
             | 
| 257 | 
            -
            // src/components/wallet/dialogs/revoke/Dialog.tsx
         | 
| 258 | 
            -
            import { Button as Button2, Dialog as Dialog2, DialogActions as DialogActions2, DialogContent as DialogContent2, DialogTitle as DialogTitle2, Typography as Typography3 } from "@mui/material";
         | 
| 259 | 
            -
            import { ConstrainedImage as ConstrainedImage2 } from "@xylabs/react-crypto";
         | 
| 260 | 
            -
            import { FlexRow as FlexRow2 } from "@xylabs/react-flexbox";
         | 
| 261 | 
            -
            import { jsx as jsx5, jsxs as jsxs5 } from "react/jsx-runtime";
         | 
| 262 | 
            -
            var RevokeWalletConnectionDialog = ({ activeProvider, ...props }) => {
         | 
| 263 | 
            -
              return /* @__PURE__ */ jsxs5(Dialog2, { ...props, children: [
         | 
| 264 | 
            -
                /* @__PURE__ */ jsxs5(FlexRow2, { gap: 2, justifyContent: "start", pl: 2, children: [
         | 
| 265 | 
            -
                  /* @__PURE__ */ jsx5(ConstrainedImage2, { src: activeProvider?.icon, constrainedValue: "24px" }),
         | 
| 266 | 
            -
                  /* @__PURE__ */ jsxs5(DialogTitle2, { sx: { pl: 0 }, children: [
         | 
| 267 | 
            -
                    "Revoke ",
         | 
| 268 | 
            -
                    activeProvider?.providerName,
         | 
| 269 | 
            -
                    " Access"
         | 
| 270 | 
            -
                  ] })
         | 
| 271 | 
            -
                ] }),
         | 
| 272 | 
            -
                /* @__PURE__ */ jsxs5(DialogContent2, { children: [
         | 
| 273 | 
            -
                  /* @__PURE__ */ jsxs5(Typography3, { children: [
         | 
| 274 | 
            -
                    "Revoking access to your wallet must be done from the wallet's browser extension. Wallets grant access to specific domains please consult ",
         | 
| 275 | 
            -
                    activeProvider?.providerName,
         | 
| 276 | 
            -
                    "'s documentation on how to revoke access to this website:"
         | 
| 277 | 
            -
                  ] }),
         | 
| 278 | 
            -
                  /* @__PURE__ */ jsx5(Typography3, { children: window.location.origin })
         | 
| 279 | 
            -
                ] }),
         | 
| 280 | 
            -
                /* @__PURE__ */ jsx5(DialogActions2, { children: /* @__PURE__ */ jsx5(Button2, { variant: "contained", onClick: () => props.onClose?.({}, "escapeKeyDown"), children: "Close" }) })
         | 
| 281 | 
            -
              ] });
         | 
| 282 | 
            -
            };
         | 
| 283 | 
            -
             | 
| 284 | 
            -
            // src/components/wallet/table/cells/Accounts.tsx
         | 
| 285 | 
            -
            import { TableCell, Tooltip, Typography as Typography4 } from "@mui/material";
         | 
| 286 | 
            -
            import { jsx as jsx6 } from "react/jsx-runtime";
         | 
| 287 | 
            -
            var ConnectedWalletsAccountsTableCell = ({
         | 
| 288 | 
            -
              additionalAccounts,
         | 
| 289 | 
            -
              currentAccount,
         | 
| 290 | 
            -
              totalAccounts,
         | 
| 291 | 
            -
              tableCellProps
         | 
| 292 | 
            -
            }) => {
         | 
| 293 | 
            -
              return /* @__PURE__ */ jsx6(TableCell, { ...tableCellProps, children: /* @__PURE__ */ jsx6(
         | 
| 294 | 
            -
                Tooltip,
         | 
| 295 | 
            -
                {
         | 
| 296 | 
            -
                  sx: { cursor: totalAccounts > 0 ? "pointer" : "auto" },
         | 
| 297 | 
            -
                  title: [...currentAccount ?? [], ...additionalAccounts ?? []].map((address, index) => /* @__PURE__ */ jsx6("p", { children: address }, index)),
         | 
| 298 | 
            -
                  children: /* @__PURE__ */ jsx6(Typography4, { children: totalAccounts })
         | 
| 299 | 
            -
                }
         | 
| 300 | 
            -
              ) });
         | 
| 301 | 
            -
            };
         | 
| 302 | 
            -
             | 
| 303 | 
            -
            // src/components/wallet/table/cells/Actions.tsx
         | 
| 304 | 
            -
            import { Check, InfoOutlined } from "@mui/icons-material";
         | 
| 305 | 
            -
            import { Button as Button3, IconButton, TableCell as TableCell2, Typography as Typography5 } from "@mui/material";
         | 
| 306 | 
            -
            import { FlexRow as FlexRow3 } from "@xylabs/react-flexbox";
         | 
| 307 | 
            -
            import { jsx as jsx7, jsxs as jsxs6 } from "react/jsx-runtime";
         | 
| 308 | 
            -
            var ConnectedWalletsActionsTableCell = ({ connected, onConnect, onRevoke, tableCellProps }) => {
         | 
| 309 | 
            -
              return /* @__PURE__ */ jsx7(TableCell2, { ...tableCellProps, children: /* @__PURE__ */ jsxs6(FlexRow3, { gap: 2, justifyContent: "start", children: [
         | 
| 310 | 
            -
                connected ? /* @__PURE__ */ jsxs6(Typography5, { sx: { display: "inline-flex", gap: 0.5 }, children: [
         | 
| 311 | 
            -
                  /* @__PURE__ */ jsx7(Check, {}),
         | 
| 312 | 
            -
                  "Connected"
         | 
| 313 | 
            -
                ] }) : /* @__PURE__ */ jsx7(Button3, { variant: "contained", onClick: onConnect, children: "Connect" }),
         | 
| 314 | 
            -
                connected ? /* @__PURE__ */ jsx7(IconButton, { onClick: onRevoke, children: /* @__PURE__ */ jsx7(InfoOutlined, {}) }) : null
         | 
| 315 | 
            -
              ] }) });
         | 
| 316 | 
            -
            };
         | 
| 317 | 
            -
             | 
| 318 | 
            -
            // src/components/wallet/table/cells/ChainName.tsx
         | 
| 319 | 
            -
            import { TableCell as TableCell3 } from "@mui/material";
         | 
| 320 | 
            -
            import { jsx as jsx8 } from "react/jsx-runtime";
         | 
| 321 | 
            -
            var ConnectedWalletsChainNameTableCell = ({ chainName, tableCellProps }) => {
         | 
| 322 | 
            -
              return /* @__PURE__ */ jsx8(TableCell3, { ...tableCellProps, children: chainName });
         | 
| 323 | 
            -
            };
         | 
| 324 | 
            -
             | 
| 325 | 
            -
            // src/components/wallet/table/cells/State.tsx
         | 
| 326 | 
            -
            import { Switch, TableCell as TableCell4 } from "@mui/material";
         | 
| 327 | 
            -
            import { useMemo as useMemo3 } from "react";
         | 
| 328 | 
            -
            import { jsx as jsx9 } from "react/jsx-runtime";
         | 
| 329 | 
            -
            var ConnectedWalletState = ({ connected, walletRdns, tableCellProps }) => {
         | 
| 330 | 
            -
              const { disableWallet, enableWallet, wallets } = useEnabledWallets();
         | 
| 331 | 
            -
              const enabled = useMemo3(() => walletRdns ? wallets[walletRdns].enabled : false, [wallets, walletRdns]);
         | 
| 332 | 
            -
              const handleClick = (event) => {
         | 
| 333 | 
            -
                const checked = event.target?.checked;
         | 
| 334 | 
            -
                if (walletRdns) {
         | 
| 335 | 
            -
                  checked ? enableWallet?.(walletRdns) : disableWallet?.(walletRdns);
         | 
| 336 | 
            -
                }
         | 
| 337 | 
            -
              };
         | 
| 338 | 
            -
              return /* @__PURE__ */ jsx9(TableCell4, { ...tableCellProps, children: /* @__PURE__ */ jsx9(Switch, { disabled: !connected, checked: connected && enabled, onChange: handleClick }) });
         | 
| 339 | 
            -
            };
         | 
| 340 | 
            -
             | 
| 341 | 
            -
            // src/components/wallet/table/cells/Wallet.tsx
         | 
| 342 | 
            -
            import { TableCell as TableCell5, useTheme } from "@mui/material";
         | 
| 343 | 
            -
            import { ConstrainedImage as ConstrainedImage3 } from "@xylabs/react-crypto";
         | 
| 344 | 
            -
            import { FlexRow as FlexRow4 } from "@xylabs/react-flexbox";
         | 
| 345 | 
            -
            import { jsx as jsx10, jsxs as jsxs7 } from "react/jsx-runtime";
         | 
| 346 | 
            -
            var ConnectedWalletsWalletTableCell = ({ icon, walletName, tableCellProps }) => {
         | 
| 347 | 
            -
              const theme = useTheme();
         | 
| 348 | 
            -
              return /* @__PURE__ */ jsx10(TableCell5, { ...tableCellProps, children: /* @__PURE__ */ jsxs7(FlexRow4, { gap: 2, justifyContent: "start", children: [
         | 
| 349 | 
            -
                /* @__PURE__ */ jsx10(ConstrainedImage3, { constrainedValue: theme.spacing(4), src: icon }),
         | 
| 350 | 
            -
                walletName
         | 
| 351 | 
            -
              ] }) });
         | 
| 352 | 
            -
            };
         | 
| 353 | 
            -
             | 
| 354 | 
            -
            // src/components/wallet/table/cells/Cells.tsx
         | 
| 355 | 
            -
            var ConnectedWalletTableCells = [
         | 
| 356 | 
            -
              ConnectedWalletsWalletTableCell,
         | 
| 357 | 
            -
              ConnectedWalletsChainNameTableCell,
         | 
| 358 | 
            -
              ConnectedWalletsAccountsTableCell,
         | 
| 359 | 
            -
              ConnectedWalletsActionsTableCell,
         | 
| 360 | 
            -
              ConnectedWalletState
         | 
| 361 | 
            -
            ];
         | 
| 362 | 
            -
             | 
| 363 | 
            -
            // src/components/wallet/table/ConnectedWalletsTable.tsx
         | 
| 364 | 
            -
            import { Table, TableBody, TableCell as TableCell6, TableHead, TableRow as TableRow2 } from "@mui/material";
         | 
| 365 | 
            -
            import { useState as useState3 } from "react";
         | 
| 366 | 
            -
             | 
| 367 | 
            -
            // src/components/wallet/lib/TableHeadData.ts
         | 
| 368 | 
            -
            var WalletsTableHeadCells = [
         | 
| 369 | 
            -
              {
         | 
| 370 | 
            -
                disablePadding: false,
         | 
| 371 | 
            -
                id: "wallet",
         | 
| 372 | 
            -
                label: "Wallet",
         | 
| 373 | 
            -
                numeric: false,
         | 
| 374 | 
            -
                showOnMobile: true
         | 
| 375 | 
            -
              },
         | 
| 376 | 
            -
              {
         | 
| 377 | 
            -
                disablePadding: false,
         | 
| 378 | 
            -
                id: "chain",
         | 
| 379 | 
            -
                label: "Chain",
         | 
| 380 | 
            -
                numeric: false,
         | 
| 381 | 
            -
                showOnMobile: true
         | 
| 382 | 
            -
              },
         | 
| 383 | 
            -
              {
         | 
| 384 | 
            -
                disablePadding: false,
         | 
| 385 | 
            -
                id: "accounts",
         | 
| 386 | 
            -
                label: "Accounts",
         | 
| 387 | 
            -
                numeric: true,
         | 
| 388 | 
            -
                showOnMobile: true
         | 
| 389 | 
            -
              },
         | 
| 390 | 
            -
              {
         | 
| 391 | 
            -
                disablePadding: false,
         | 
| 392 | 
            -
                id: "actions",
         | 
| 393 | 
            -
                label: "Actions",
         | 
| 394 | 
            -
                numeric: false,
         | 
| 395 | 
            -
                showOnMobile: true
         | 
| 396 | 
            -
              },
         | 
| 397 | 
            -
              {
         | 
| 398 | 
            -
                disablePadding: false,
         | 
| 399 | 
            -
                id: "enabled",
         | 
| 400 | 
            -
                label: "Enabled",
         | 
| 401 | 
            -
                numeric: false,
         | 
| 402 | 
            -
                showOnMobile: true
         | 
| 403 | 
            -
              }
         | 
| 404 | 
            -
            ];
         | 
| 405 | 
            -
             | 
| 406 | 
            -
            // src/components/wallet/table/ConnectedWalletsTableRow.tsx
         | 
| 407 | 
            -
            import { TableRow } from "@mui/material";
         | 
| 408 | 
            -
            import { useEthWallet } from "@xylabs/react-crypto";
         | 
| 409 | 
            -
            import { useCallback, useMemo as useMemo4 } from "react";
         | 
| 410 | 
            -
            import { jsx as jsx11 } from "react/jsx-runtime";
         | 
| 411 | 
            -
            var WalletConnectionsTableRow = ({
         | 
| 412 | 
            -
              ignoreConnectDialog,
         | 
| 413 | 
            -
              onConnectClick,
         | 
| 414 | 
            -
              onRevoke,
         | 
| 415 | 
            -
              wallet,
         | 
| 416 | 
            -
              ...props
         | 
| 417 | 
            -
            }) => {
         | 
| 418 | 
            -
              const { currentAccount: currentAccountFromWallet, additionalAccounts, chainName, connectWallet, providerInfo } = useEthWallet(wallet);
         | 
| 419 | 
            -
              const currentAccount = currentAccountFromWallet?.toString() ? [currentAccountFromWallet.toString()] : [];
         | 
| 420 | 
            -
              const totalAccounts = (additionalAccounts?.length ?? 0) + (currentAccount?.length ?? 0);
         | 
| 421 | 
            -
              const connected = !!(currentAccount?.length ?? 0 > 0);
         | 
| 422 | 
            -
              const { icon, name, rdns } = useMemo4(() => providerInfo ?? { icon: void 0, name: void 0, rdns: void 0 }, [providerInfo]);
         | 
| 423 | 
            -
              const activeProvider = useMemo4(
         | 
| 424 | 
            -
                () => ({
         | 
| 425 | 
            -
                  connectWallet,
         | 
| 426 | 
            -
                  icon,
         | 
| 427 | 
            -
                  providerName: name
         | 
| 428 | 
            -
                }),
         | 
| 429 | 
            -
                [connectWallet, icon, name]
         | 
| 430 | 
            -
              );
         | 
| 431 | 
            -
              const onRevokeLocal = useCallback(() => {
         | 
| 432 | 
            -
                onRevoke?.(activeProvider);
         | 
| 433 | 
            -
              }, [activeProvider, onRevoke]);
         | 
| 434 | 
            -
              const onConnectLocal = useCallback(async () => {
         | 
| 435 | 
            -
                if (ignoreConnectDialog) {
         | 
| 436 | 
            -
                  await connectWallet?.();
         | 
| 437 | 
            -
                } else {
         | 
| 438 | 
            -
                  onConnectClick?.(activeProvider);
         | 
| 439 | 
            -
                }
         | 
| 440 | 
            -
              }, [activeProvider, connectWallet, ignoreConnectDialog, onConnectClick]);
         | 
| 441 | 
            -
              return /* @__PURE__ */ jsx11(TableRow, { ...props, children: Object.values(ConnectedWalletTableCells).map((Cell, index) => /* @__PURE__ */ jsx11(
         | 
| 442 | 
            -
                Cell,
         | 
| 443 | 
            -
                {
         | 
| 444 | 
            -
                  additionalAccounts,
         | 
| 445 | 
            -
                  chainName,
         | 
| 446 | 
            -
                  connected,
         | 
| 447 | 
            -
                  currentAccount,
         | 
| 448 | 
            -
                  icon,
         | 
| 449 | 
            -
                  onConnect: onConnectLocal,
         | 
| 450 | 
            -
                  onRevoke: onRevokeLocal,
         | 
| 451 | 
            -
                  totalAccounts,
         | 
| 452 | 
            -
                  walletName: name,
         | 
| 453 | 
            -
                  walletRdns: rdns
         | 
| 454 | 
            -
                },
         | 
| 455 | 
            -
                index
         | 
| 456 | 
            -
              )) });
         | 
| 457 | 
            -
            };
         | 
| 458 | 
            -
             | 
| 459 | 
            -
            // src/components/wallet/table/hooks/useActiveProviderDialogState.tsx
         | 
| 460 | 
            -
            import { useState as useState2 } from "react";
         | 
| 461 | 
            -
            var useActiveProviderDialogState = (setActiveProvider) => {
         | 
| 462 | 
            -
              const [show, setShow] = useState2(false);
         | 
| 463 | 
            -
              const onSetActiveProvider = (activeProvider) => {
         | 
| 464 | 
            -
                setShow(true);
         | 
| 465 | 
            -
                setActiveProvider(activeProvider);
         | 
| 466 | 
            -
              };
         | 
| 467 | 
            -
              const onClose = () => {
         | 
| 468 | 
            -
                setShow(false);
         | 
| 469 | 
            -
                setActiveProvider({});
         | 
| 470 | 
            -
              };
         | 
| 471 | 
            -
              return [show, onSetActiveProvider, onClose];
         | 
| 472 | 
            -
            };
         | 
| 473 | 
            -
             | 
| 474 | 
            -
            // src/components/wallet/table/ConnectedWalletsTable.tsx
         | 
| 475 | 
            -
            import { Fragment, jsx as jsx12, jsxs as jsxs8 } from "react/jsx-runtime";
         | 
| 476 | 
            -
            var ConnectedWalletsTable = ({ ignoreConnectDialog, onIgnoreConnectDialog, wallets, ...props }) => {
         | 
| 477 | 
            -
              const [activeProvider, setActiveProvider] = useState3();
         | 
| 478 | 
            -
              const [showConnect, onSetActiveProviderConnect, onConnectClose] = useActiveProviderDialogState(setActiveProvider);
         | 
| 479 | 
            -
              const [showRevoke, onSetActiveProviderRevoke, onRevokeClose] = useActiveProviderDialogState(setActiveProvider);
         | 
| 480 | 
            -
              return /* @__PURE__ */ jsxs8(Fragment, { children: [
         | 
| 481 | 
            -
                /* @__PURE__ */ jsxs8(Table, { ...props, children: [
         | 
| 482 | 
            -
                  /* @__PURE__ */ jsx12(TableHead, { children: /* @__PURE__ */ jsx12(TableRow2, { children: WalletsTableHeadCells.map(({ disablePadding, id, label, align, width }) => /* @__PURE__ */ jsx12(TableCell6, { align, padding: disablePadding ? "none" : "normal", width: width ?? "auto", children: label }, id)) }) }),
         | 
| 483 | 
            -
                  /* @__PURE__ */ jsx12(TableBody, { children: (wallets ?? []).map((wallet) => /* @__PURE__ */ jsx12(
         | 
| 484 | 
            -
                    WalletConnectionsTableRow,
         | 
| 485 | 
            -
                    {
         | 
| 486 | 
            -
                      ignoreConnectDialog,
         | 
| 487 | 
            -
                      onConnectClick: onSetActiveProviderConnect,
         | 
| 488 | 
            -
                      onRevoke: onSetActiveProviderRevoke,
         | 
| 489 | 
            -
                      wallet
         | 
| 490 | 
            -
                    },
         | 
| 491 | 
            -
                    wallet.providerInfo?.rdns
         | 
| 492 | 
            -
                  )) })
         | 
| 493 | 
            -
                ] }),
         | 
| 494 | 
            -
                /* @__PURE__ */ jsx12(RevokeWalletConnectionDialog, { open: showRevoke, onClose: onRevokeClose, activeProvider }),
         | 
| 495 | 
            -
                /* @__PURE__ */ jsx12(
         | 
| 496 | 
            -
                  ConnectWalletDialog,
         | 
| 497 | 
            -
                  {
         | 
| 498 | 
            -
                    activeProvider,
         | 
| 499 | 
            -
                    onClose: onConnectClose,
         | 
| 500 | 
            -
                    open: showConnect,
         | 
| 501 | 
            -
                    onIgnoreConnectDialog
         | 
| 502 | 
            -
                  }
         | 
| 503 | 
            -
                )
         | 
| 504 | 
            -
              ] });
         | 
| 505 | 
            -
            };
         | 
| 506 | 
            -
             | 
| 507 | 
            -
            // src/components/ConnectedAccountsFlexbox.tsx
         | 
| 508 | 
            -
            import { jsx as jsx13, jsxs as jsxs9 } from "react/jsx-runtime";
         | 
| 509 | 
            -
            var ConnectedAccountsFlexbox = forwardRef(
         | 
| 510 | 
            -
              ({ ignoreConnectDialog, onIgnoreConnectDialog, ...props }, ref) => {
         | 
| 511 | 
            -
                const theme = useTheme2();
         | 
| 512 | 
            -
                const { totalConnectedAccounts, sortedWallets } = useDetectedWallets();
         | 
| 513 | 
            -
                return /* @__PURE__ */ jsxs9(FlexCol3, { alignItems: "stretch", justifyContent: "start", gap: 2, ref, ...props, children: [
         | 
| 514 | 
            -
                  /* @__PURE__ */ jsxs9(FlexCol3, { alignItems: "start", children: [
         | 
| 515 | 
            -
                    /* @__PURE__ */ jsx13(Typography6, { variant: "h2", sx: { mb: 0.5 }, children: "Detected Web3 Wallets" }),
         | 
| 516 | 
            -
                    totalConnectedAccounts ? /* @__PURE__ */ jsxs9(Typography6, { variant: "subtitle1", color: theme.palette.secondary.main, sx: { opacity: 0.5 }, children: [
         | 
| 517 | 
            -
                      "Total Connected Accounts: ",
         | 
| 518 | 
            -
                      totalConnectedAccounts
         | 
| 519 | 
            -
                    ] }) : null
         | 
| 520 | 
            -
                  ] }),
         | 
| 521 | 
            -
                  /* @__PURE__ */ jsx13(ConnectedWalletsTable, { wallets: sortedWallets, ignoreConnectDialog, onIgnoreConnectDialog })
         | 
| 522 | 
            -
                ] });
         | 
| 523 | 
            -
              }
         | 
| 524 | 
            -
            );
         | 
| 525 | 
            -
            ConnectedAccountsFlexbox.displayName = "ConnectedAccountsFlexbox";
         | 
| 526 | 
            -
            export {
         | 
| 527 | 
            -
              CheckboxFormControl,
         | 
| 528 | 
            -
              ConnectWalletDialog,
         | 
| 529 | 
            -
              ConnectedAccountsFlexbox,
         | 
| 530 | 
            -
              ConnectedWalletState,
         | 
| 531 | 
            -
              ConnectedWalletTableCells,
         | 
| 532 | 
            -
              ConnectedWalletsAccountsTableCell,
         | 
| 533 | 
            -
              ConnectedWalletsActionsTableCell,
         | 
| 534 | 
            -
              ConnectedWalletsChainNameTableCell,
         | 
| 535 | 
            -
              ConnectedWalletsTable,
         | 
| 536 | 
            -
              ConnectedWalletsWalletTableCell,
         | 
| 537 | 
            -
              EnabledEthWalletConnections,
         | 
| 538 | 
            -
              RevokeWalletConnectionDialog,
         | 
| 539 | 
            -
              WalletConnectionsTableRow,
         | 
| 540 | 
            -
              useActiveProviderDialogState,
         | 
| 541 | 
            -
              useDetectedWallets,
         | 
| 542 | 
            -
              useEnabledWallets,
         | 
| 543 | 
            -
              useEnabledWalletsInner
         | 
| 544 | 
            -
            };
         | 
| 1 | 
            +
            var R="XYO|EnabledWallets",x=class{persistPreferences=!0;enabledWallets={};ethWalletsState={};listeners=[];localStorageKey=R;constructor(e=R){this.localStorageKey=e,this.reviveSettings()}get wallets(){return this.ethWalletsState}disableWallet(e){this.toggleEnabledWallet(e,!1)}enableWallet(e){this.toggleEnabledWallet(e,!0)}resetWallets(e){let o={},l=([n,a])=>{o[n]={enabled:n in this.enabledWallets?this.enabledWallets[n]:!0,wallet:a}};Object.entries(e).forEach(l.bind(this)),this.ethWalletsState=o,this.emitChange()}subscribe(e){return this.listeners=[...this.listeners,e],()=>{this.listeners=this.listeners.filter(o=>o!==e)}}toggleEnabledWallet(e,o){e&&this.ethWalletsState[e]&&(this.ethWalletsState[e].enabled=o,this.ethWalletsState={...this.ethWalletsState},this.emitChange())}emitChange(){for(let e of this.listeners)e();this.persistSettings()}isPersistance(e){this.persistPreferences&&e()}persistSettings(){this.isPersistance(()=>{let e=Object.entries(this.ethWalletsState).reduce((o,[l,{enabled:n}])=>(o[l]=n,o),{});localStorage.setItem(this.localStorageKey,JSON.stringify(e))})}reviveSettings(){this.isPersistance(()=>{let e=localStorage.getItem(this.localStorageKey);try{let o=e?JSON.parse(e):{};this.enabledWallets=o}catch(o){console.warn(`Error parsing saved enabled wallet entries: ${o.message}`)}})}};import{Typography as me,useTheme as To}from"@mui/material";import{FlexCol as be}from"@xylabs/react-flexbox";import{forwardRef as yo}from"react";import{AccountsChangedEventName as I,useWalletDiscovery as We}from"@xylabs/react-crypto";import{useEffect as L,useMemo as xe,useState as B}from"react";var Pe=t=>Object.values(t).reduce((e,o)=>(o.allowedAccounts.length>0?e.unshift(o):e.push(o),e),[]),O=()=>{let t=We(),[e,o]=B(0),[l,n]=B([]);L(()=>{n(Pe(t))},[t,e]),L(()=>{let r=()=>{o(i=>i+1)};return window.addEventListener(I,r),()=>{window.removeEventListener(I,r)}},[t]);let a=xe(()=>Object.values(l).reduce((r,i)=>r+i.allowedAccounts.length,0),[l]);return{sortedWallets:l,totalConnectedAccounts:a}};import{useWalletDiscovery as Te}from"@xylabs/react-crypto";import{useMemo as N,useSyncExternalStore as ye}from"react";var s,we=t=>{let e=Te(),o=N(()=>{s===void 0&&(s=new x),s.resetWallets(e);for(let[l,n]of Object.entries(t??{}))s?.toggleEnabledWallet(l,n);return s},[e,t]);return ye(o.subscribe.bind(o),()=>o.wallets)},M=t=>{let e=we(t),o=N(()=>Object.entries(e).reduce((l,[n,a])=>(a.enabled&&(l[n]=a),l),{}),[e]);return{disableWallet:s?.disableWallet.bind(s),enableWallet:s?.enableWallet.bind(s),enabledWallets:o,wallets:e}};import{Checkbox as Se,FormControl as Ae,FormLabel as Ee}from"@mui/material";import{jsx as Y,jsxs as Fe}from"react/jsx-runtime";var H=({onCheckChanged:t,...e})=>Y(Ae,{...e,children:Fe(Ee,{children:[Y(Se,{onChange:(o,l)=>t?.(l)}),"Do not show this again."]})});import{Button as $,Dialog as Be,DialogActions as Oe,DialogContent as Ne,DialogTitle as Me}from"@mui/material";import{SyncAlt as De}from"@mui/icons-material";import{Typography as X}from"@mui/material";import{ConstrainedImage as ke}from"@xylabs/react-crypto";import{FlexCol as V,FlexRow as Re}from"@xylabs/react-flexbox";import{default as K}from"./xyo-color-logo-LHR2SMEM.svg";import{default as zo}from"./xyo-color-logo-text-only-QPAW5BSQ.svg";import{jsx as v,jsxs as A}from"react/jsx-runtime";var _=({icon:t,providerName:e,...o})=>A(Re,{gap:4,justifyContent:"space-evenly",...o,children:[A(V,{gap:.5,children:[v("img",{alt:"XYO Logo",src:K,style:{height:"48px"}}),v(X,{variant:"subtitle1",children:"XYO App"})]}),v(De,{fontSize:"large"}),A(V,{gap:.5,children:[v(ke,{constrainedValue:"48px",src:t,alt:e,style:{height:"48px",maxWidth:"48px"}}),v(X,{variant:"subtitle1",children:e})]})]});import{Link as Ie,Typography as z}from"@mui/material";import{FlexCol as Le}from"@xylabs/react-flexbox";import{jsx as P,jsxs as E}from"react/jsx-runtime";var J=t=>E(Le,{gap:4,...t,children:[P(z,{fontWeight:"bold",sx:{textAlign:"center"},children:"This will allow XYO to:"}),E("ul",{children:[P("li",{children:"View your wallet account(s) and address(es)"}),P("li",{children:"Read-only access to browse the public blockchain(s) you select"})]}),E(z,{variant:"subtitle1",sx:{textAlign:"center"},children:["You control what accounts to share and what blockchains to view. You can see or revoke access via your wallet's settings at anytime. View more on XYO's sovereign data philosophy"," ",P(Ie,{href:"https://cointelegraph.com/innovation-circle/decentralization-and-sovereignty-debunking-our-approach-to-digital-sovereignty",sx:{fontWeight:"bold"},target:"_blank",children:"here"}),"."]})]});import{jsx as b,jsxs as F}from"react/jsx-runtime";var G=({activeProvider:t,onIgnoreConnectDialog:e,...o})=>{let{icon:l,providerName:n}=t??{};return F(Be,{PaperProps:{sx:{display:"flex",gap:4}},...o,children:[b(Me,{sx:{textAlign:"center"},children:"XYO Wants To Access The Blockchain on Your Behalf"}),F(Ne,{sx:{display:"flex",flexDirection:"column",gap:4},children:[b(_,{icon:l,providerName:n}),b(J,{}),b(H,{onCheckChanged:e})]}),F(Oe,{children:[b($,{variant:"outlined",onClick:()=>o.onClose?.({},"escapeKeyDown"),children:"Close"}),b($,{variant:"contained",onClick:async()=>{try{await t?.connectWallet?.(),o.onClose?.({},"escapeKeyDown")}catch(r){console.warn(`Error connecting to wallet: ${r.message}`)}},children:"Connect"})]})]})};import{Button as Ye,Dialog as He,DialogActions as Ke,DialogContent as Xe,DialogTitle as Ve,Typography as U}from"@mui/material";import{ConstrainedImage as _e}from"@xylabs/react-crypto";import{FlexRow as ze}from"@xylabs/react-flexbox";import{jsx as T,jsxs as u}from"react/jsx-runtime";var q=({activeProvider:t,...e})=>u(He,{...e,children:[u(ze,{gap:2,justifyContent:"start",pl:2,children:[T(_e,{src:t?.icon,constrainedValue:"24px"}),u(Ve,{sx:{pl:0},children:["Revoke ",t?.providerName," Access"]})]}),u(Xe,{children:[u(U,{children:["Revoking access to your wallet must be done from the wallet's browser extension. Wallets grant access to specific domains please consult ",t?.providerName,"'s documentation on how to revoke access to this website:"]}),T(U,{children:window.location.origin})]}),T(Ke,{children:T(Ye,{variant:"contained",onClick:()=>e.onClose?.({},"escapeKeyDown"),children:"Close"})})]});import{TableCell as Je,Tooltip as $e,Typography as Ge}from"@mui/material";import{jsx as y}from"react/jsx-runtime";var Q=({additionalAccounts:t,currentAccount:e,totalAccounts:o,tableCellProps:l})=>y(Je,{...l,children:y($e,{sx:{cursor:o>0?"pointer":"auto"},title:[...e??[],...t??[]].map((n,a)=>y("p",{children:n},a)),children:y(Ge,{children:o})})});import{Check as Ue,InfoOutlined as qe}from"@mui/icons-material";import{Button as Qe,IconButton as Ze,TableCell as je,Typography as eo}from"@mui/material";import{FlexRow as oo}from"@xylabs/react-flexbox";import{jsx as W,jsxs as Z}from"react/jsx-runtime";var j=({connected:t,onConnect:e,onRevoke:o,tableCellProps:l})=>W(je,{...l,children:Z(oo,{gap:2,justifyContent:"start",children:[t?Z(eo,{sx:{display:"inline-flex",gap:.5},children:[W(Ue,{}),"Connected"]}):W(Qe,{variant:"contained",onClick:e,children:"Connect"}),t?W(Ze,{onClick:o,children:W(qe,{})}):null]})});import{TableCell as to}from"@mui/material";import{jsx as lo}from"react/jsx-runtime";var ee=({chainName:t,tableCellProps:e})=>lo(to,{...e,children:t});import{Switch as no,TableCell as ao}from"@mui/material";import{useMemo as ro}from"react";import{jsx as oe}from"react/jsx-runtime";var te=({connected:t,walletRdns:e,tableCellProps:o})=>{let{disableWallet:l,enableWallet:n,wallets:a}=M(),r=ro(()=>e?a[e].enabled:!1,[a,e]);return oe(ao,{...o,children:oe(no,{disabled:!t,checked:t&&r,onChange:c=>{let p=c.target?.checked;e&&(p?n?.(e):l?.(e))}})})};import{TableCell as so,useTheme as io}from"@mui/material";import{ConstrainedImage as co}from"@xylabs/react-crypto";import{FlexRow as po}from"@xylabs/react-flexbox";import{jsx as le,jsxs as Co}from"react/jsx-runtime";var ne=({icon:t,walletName:e,tableCellProps:o})=>{let l=io();return le(so,{...o,children:Co(po,{gap:2,justifyContent:"start",children:[le(co,{constrainedValue:l.spacing(4),src:t}),e]})})};var ae=[ne,ee,Q,j,te];import{Table as ho,TableBody as fo,TableCell as vo,TableHead as uo,TableRow as Wo}from"@mui/material";import{useState as xo}from"react";var re=[{disablePadding:!1,id:"wallet",label:"Wallet",numeric:!1,showOnMobile:!0},{disablePadding:!1,id:"chain",label:"Chain",numeric:!1,showOnMobile:!0},{disablePadding:!1,id:"accounts",label:"Accounts",numeric:!0,showOnMobile:!0},{disablePadding:!1,id:"actions",label:"Actions",numeric:!1,showOnMobile:!0},{disablePadding:!1,id:"enabled",label:"Enabled",numeric:!1,showOnMobile:!0}];import{TableRow as mo}from"@mui/material";import{useEthWallet as bo}from"@xylabs/react-crypto";import{useCallback as se,useMemo as ie}from"react";import{jsx as ce}from"react/jsx-runtime";var de=({ignoreConnectDialog:t,onConnectClick:e,onRevoke:o,wallet:l,...n})=>{let{currentAccount:a,additionalAccounts:r,chainName:i,connectWallet:c,providerInfo:p}=bo(l),g=a?.toString()?[a.toString()]:[],w=(r?.length??0)+(g?.length??0),C=!!(g?.length??!1),{icon:h,name:f,rdns:S}=ie(()=>p??{icon:void 0,name:void 0,rdns:void 0},[p]),m=ie(()=>({connectWallet:c,icon:h,providerName:f}),[c,h,f]),he=se(()=>{o?.(m)},[m,o]),fe=se(async()=>{t?await c?.():e?.(m)},[m,c,t,e]);return ce(mo,{...n,children:Object.values(ae).map((ve,ue)=>ce(ve,{additionalAccounts:r,chainName:i,connected:C,currentAccount:g,icon:h,onConnect:fe,onRevoke:he,totalAccounts:w,walletName:f,walletRdns:S},ue))})};import{useState as go}from"react";var D=t=>{let[e,o]=go(!1);return[e,a=>{o(!0),t(a)},()=>{o(!1),t({})}]};import{Fragment as Po,jsx as d,jsxs as pe}from"react/jsx-runtime";var Ce=({ignoreConnectDialog:t,onIgnoreConnectDialog:e,wallets:o,...l})=>{let[n,a]=xo(),[r,i,c]=D(a),[p,g,w]=D(a);return pe(Po,{children:[pe(ho,{...l,children:[d(uo,{children:d(Wo,{children:re.map(({disablePadding:C,id:h,label:f,align:S,width:m})=>d(vo,{align:S,padding:C?"none":"normal",width:m??"auto",children:f},h))})}),d(fo,{children:(o??[]).map(C=>d(de,{ignoreConnectDialog:t,onConnectClick:i,onRevoke:g,wallet:C},C.providerInfo?.rdns))})]}),d(q,{open:p,onClose:w,activeProvider:n}),d(G,{activeProvider:n,onClose:c,open:r,onIgnoreConnectDialog:e})]})};import{jsx as ge,jsxs as k}from"react/jsx-runtime";var wo=yo(({ignoreConnectDialog:t,onIgnoreConnectDialog:e,...o},l)=>{let n=To(),{totalConnectedAccounts:a,sortedWallets:r}=O();return k(be,{alignItems:"stretch",justifyContent:"start",gap:2,ref:l,...o,children:[k(be,{alignItems:"start",children:[ge(me,{variant:"h2",sx:{mb:.5},children:"Detected Web3 Wallets"}),a?k(me,{variant:"subtitle1",color:n.palette.secondary.main,sx:{opacity:.5},children:["Total Connected Accounts: ",a]}):null]}),ge(Ce,{wallets:r,ignoreConnectDialog:t,onIgnoreConnectDialog:e})]})});wo.displayName="ConnectedAccountsFlexbox";export{H as CheckboxFormControl,G as ConnectWalletDialog,wo as ConnectedAccountsFlexbox,te as ConnectedWalletState,ae as ConnectedWalletTableCells,Q as ConnectedWalletsAccountsTableCell,j as ConnectedWalletsActionsTableCell,ee as ConnectedWalletsChainNameTableCell,Ce as ConnectedWalletsTable,ne as ConnectedWalletsWalletTableCell,x as EnabledEthWalletConnections,q as RevokeWalletConnectionDialog,de as WalletConnectionsTableRow,D as useActiveProviderDialogState,O as useDetectedWallets,M as useEnabledWallets,we as useEnabledWalletsInner};
         | 
| 545 2 | 
             
            //# sourceMappingURL=index.js.map
         |