
Product
Introducing Module Reachability: Focus on the Vulnerabilities That Matter
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
@privy-io/wagmi
Advanced tools
wagmi
bindings for the @privy-io/react-auth
library.
npm 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
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 0 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.
Product
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
Company News
Socket is bringing best-in-class reachability analysis into the platform — cutting false positives, accelerating triage, and cementing our place as the leader in software supply chain security.
Product
Socket is introducing a new way to organize repositories and apply repository-specific security policies.