ConnectButton_detailsModalOptions

Options for configuring the ConnectButton 's Details Modal

type ConnectButton_detailsModalOptions = {
connectedAccountAvatarUrl?: string;
connectedAccountName?: React.ReactNode;
footer?: (props: { close: () => void }) => JSX.Element;
hideBuyFunds?: boolean;
hideDisconnect?: boolean;
hideReceiveFunds?: boolean;
hideSendFunds?: boolean;
hideSwitchWallet?: boolean;
networkSelector?: NetworkSelectorProps;
payOptions?: Extract<PayUIOptions, { mode?: "fund_wallet" }>;
showTestnetFaucet?: boolean;
};