import { dynamicClient } from '<path to client file>'; import { SuiClient } from '@mysten/sui.js/client' const wallet = dynamicClient.wallets.primary if (!wallet) { throw new Error('This wallet is not found'); } const networkUrl = await dynamicClient.sui.getNetworkUrl({ walletId: wallet.id }) const networkName = await dynamicClient.sui.getNetworkName({ walletId: wallet.id })## Resources[SuiClient](https://sdk.mystenlabs.com/typedoc/classes/_mysten_sui.client.SuiClient.html)[WalletAccount](https://docs.sui.io/standards/wallet-standard#managing-wallets)## ExamplesYou can find examples of how to interact with Sui wallets in the examples section:- [Send a Sui Transaction](/react-native/wallets/using-wallets/sui/send-sui-transaction)