
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
@mirshko/use-wallet
Advanced tools
[](https://github.com/mirshko/use-wallet/actions/workflows/main.yml) [](https://www.npmjs.com/package/@mirshko/use-wal
An easy-to-integrate React hook for connecting and interacting with a Web3 wallet.
Forked from gimmixorg/use-wallet, this version changes to an ESM only version and handles lazy importing Web3Modal and the Ethers.js Provider via Dynamic Imports to lower the initial bundle size of apps using this package.
yarn add @mirshko/use-wallet
npm add @mirshko/use-wallet
const ConnectWalletButton = () => {
const { account, connect, disconnect } = useWallet();
return (
<>
{!account ? (
<button onClick={() => connect()}>Connect Wallet</button>
) : (
<button onClick={() => disconnect()}>Disconnect Wallet</button>
)}
</>
);
};
The connect function passes along an optional config to a Web3Modal instance for additional customization.
You can use the account information from useWallet anywhere inside your React app, without any extra set up.
const UserAddress = () => {
const { account } = useWallet();
if (!account) return null;
return <>{account}</>;
};
To run a transaction or sign a message, use the provider object returned by the hook for connected wallets. This is a standard Ethers.js Provider.
const SignMessageButton = () => {
const { account, provider } = useWallet();
const signMessage = async () => {
if (!provider) {
return;
}
const signer = provider.getSigner();
const signature = await signer.signMessage('Hello!');
console.log(signature);
};
if (!account) {
return null;
}
return <button onClick={signMessage}>Sign Message</button>;
};
FAQs
[](https://github.com/mirshko/use-wallet/actions/workflows/main.yml) [](https://www.npmjs.com/package/@mirshko/use-wal
We found that @mirshko/use-wallet demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.