
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.
@sophon-labs/account-ei6963
Advanced tools
Implementation of the EIP-6963 standard (Multi Injected Provider Discovery) for Sophon wallet. This enables applications to discover the Sophon wallet alongside other wallets in a standardized way.
Implementation of the EIP-6963 standard (Multi Injected Provider Discovery) for Sophon wallet. This enables applications to discover the Sophon wallet alongside other wallets in a standardized way.
The Sophon SDK addresses several key challenges in blockchain application development:
To integrate the Sophon wallet with EIP-6963 support in your project:
# Using npm
npm install @sophon-labs/account-ei6963
# Using yarn
yarn add @sophon-labs/account-ei6963
EIP-6963 is a standard that allows multiple Ethereum wallet providers to be discovered on a web page without conflicting with each other, unlike the traditional window.ethereum approach.
import "@sophon-labs/account-ei6963/testnet";
// The Sophon wallet will now announce itself via the EIP-6963 protocol
// No additional setup is required
This will automatically:
Most modern wallet connection libraries, like RainbowKit, wagmi, or Reown Appkit, support EIP-6963. Here's how to connect with wagmi:
import { getDefaultConfig } from "@rainbow-me/rainbowkit";
import { sophonTestnet, sophon } from "wagmi/chains";
import "@sophon-labs/account-ei6963/testnet"; // Import to announce the Sophon provider
export const config = getDefaultConfig({
appName: "Your Application",
projectId: "YOUR_PROJECT_ID",
chains: [sophon, sophonTestnet],
ssr: true,
});
With this setup, the Sophon wallet will appear in the wallet selection UI provided by RainbowKit.
The Sophon wallet implements the Ethereum Provider JavaScript API (EIP-1193), which defines a standard interface for Ethereum providers. This ensures compatibility with existing tools and libraries in the Ethereum ecosystem.
The @sophon/eip6963 package implements the Multi Injected Provider Discovery specification, which:
See the examples/eip6963-rainbow-wagmi and examples/eip6963-appkit directories for a complete example of integrating the Sophon wallet with RainbowKit and wagmi or AppKit.
FAQs
Implementation of the EIP-6963 standard (Multi Injected Provider Discovery) for Sophon wallet. This enables applications to discover the Sophon wallet alongside other wallets in a standardized way.
The npm package @sophon-labs/account-ei6963 receives a total of 0 weekly downloads. As such, @sophon-labs/account-ei6963 popularity was classified as not popular.
We found that @sophon-labs/account-ei6963 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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.