
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.
@venly/wagmi-connector
Advanced tools
Venly connector for wagmi
Install version 2.x of @venly/wagmi-connector
npm i @venly/wagmi-connector@latest
Configure your desired chains and Venly options
import { createConfig } from 'wagmi'
import { mainnet, sepolia } from 'wagmi/chains'
import { venly } from '@venly/wagmi-connector'
const config = createConfig({
chains: [mainnet, sepolia],
connectors: [
venly({
clientId: 'YOUR_CLIENT_ID', // https://docs.venly.io/widget/deep-dive/authentication#client-id
environment: 'sandbox', // optional, defaults to production
}),
],
// other options...
})
Install version 1.x of @venly/wagmi-connector
npm i @venly/wagmi-connector@1
Configure your desired chains and VenlyConnector options
import { createConfig, configureChains, mainnet } from 'wagmi'
import { publicProvider } from 'wagmi/providers/public'
import { VenlyConnector } from '@venly/wagmi-connector'
const { chains, publicClient } = configureChains(
[mainnet],
[publicProvider()],
)
const config = createConfig({
connectors: [
new VenlyConnector({
chains,
options: {
clientId: 'YOUR_CLIENT_ID', // https://docs.venly.io/widget/deep-dive/authentication#client-id
environment: 'sandbox', // optional, defaults to production
},
}),
],
publicClient,
autoConnect: true,
})
Install version 0.x of @venly/wagmi-connector
npm i @venly/wagmi-connector@0.1
Configure your desired chains and VenlyConnector options
import { configureChains, createClient } from 'wagmi'
import { goerli, mainnet } from 'wagmi/chains'
import { publicProvider } from 'wagmi/providers/public'
import { VenlyConnector } from '@venly/wagmi-connector'
const { chains, provider } = configureChains(
[goerli, mainnet],
[publicProvider()],
)
export const client = createClient({
connectors: [
new VenlyConnector({
chains,
options: {
clientId: 'YOUR_CLIENT_ID', // https://docs.venly.io/widget/deep-dive/authentication#client-id
environment: 'sandbox', // optional, defaults to production
},
}),
],
provider,
autoConnect: true,
})
Not sure yet what Venly is all about? Be sure to check out our website: https://www.venly.io/
FAQs
Venly integration for wagmi
The npm package @venly/wagmi-connector receives a total of 4 weekly downloads. As such, @venly/wagmi-connector popularity was classified as not popular.
We found that @venly/wagmi-connector demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.

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.