
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@privy-io/wagmi
Advanced tools
wagmi bindings for the @privy-io/react-auth library.
pnpm install -S @privy-io/wagmi
import {http} from 'wagmi';
import {mainnet} from 'wagmi/chains';
import {createConfig} from '@privy-io/wagmi';
export const config = createConfig({
chains: [mainnet],
transports: {
[mainnet.id]: http(),
},
});
declare module 'wagmi' {
interface Register {
config: typeof config;
}
}
import {QueryClient, QueryClientProvider} from '@tanstack/react-query';
import {type ReactNode} from 'react';
import {PrivyProvider} from '@privy-io/react-auth';
import {WagmiProvider} from '@privy-io/wagmi';
import config from './config';
const queryClient = new QueryClient();
export const Providers = ({children}: {children: ReactNode}) => (
<PrivyProvider appId="<your-app-id">
<QueryClientProvider client={queryClient}>
<WagmiProvider config={config}>{children}</WagmiProvider>
</QueryClientProvider>
</PrivyProvider>
);
Use wagmi as you normally would!
Our changelog contains the latest information about new releases, including features, fixes, and upcoming changes.
We use Semantic Versioning to track changes.
FAQs
Wagmi bindings for the react client
The npm package @privy-io/wagmi receives a total of 39,421 weekly downloads. As such, @privy-io/wagmi popularity was classified as popular.
We found that @privy-io/wagmi demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 open source maintainers 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.