Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@cod3x/wagmi
Advanced tools
The @cod3x/wagmi
package is a connector for the wagmi
library that allows for the integration of the CodexSDK from the @cod3x/sdk
package. This connector can be used to connect to a Codex wallet and interact with Ethereum-based blockchains.
To use the Codex Wagmi package, first install it to a project:
{% tabs %} {% tab title="npm" %}
npm install @cod3x/wagmi
{% endtab %}
{% tab title="yarn" %}
yarn add @cod3x/wagmi
{% endtab %}
{% tab title="pnpm" %}
pnpm add @cod3x/wagmi
{% endtab %} {% endtabs %}
Here's a basic example of how to use the createCodexConnector
function:
import { CodexSDK } from '@cod3x/sdk';
import { createCodexConnector } from '@cod3x/wagmi';
import { WagmiConfig, createClient, configureChains } from 'wagmi';
import { publicProvider } from 'wagmi/providers/public';
const { chains, provider } = configureChains([chain], [publicProvider()]);
const SDK = new CodexSDK({ /* your configuration */ });
const address = '0xYourEthereumAddress';
const chainId = 1; // mainnet
const client = createClient({
autoConnect: true,
provider,
connectors: [
createCodexConnector({ SDK, address, chainId, chains }),
],
});
function App() {
return (
<WagmiConfig client={client}>
{/* Your app components */}
</WagmiConfig>
);
}
createCodexConnector
Creates a connector for the wagmi
library using the CodexSDK.
Parameters
options
(Object)
SDK
(CodexSDK): An instance of the CodexSDK.address
(string): The Ethereum address of the account.chainId
(number): The ID of the Ethereum chain.chains
(Chain[]): An array of Ethereum chains.Returns
A CreateConnectorFn
function that can be used to create a connector for the wagmi
library.
Example
const connector = createCodexConnector({ SDK, address, chainId, chains });
We welcome contributions to the @cod3x/wagmi package! Here's how you can help:
If you find a bug or have a suggestion for improving the package:
main
.npm install
npm test
npm run lint:fix
npm run prettier:fix
main
branch.npm run build
: Build the packagenpm run dev
: Build and watch for changesnpm test
: Run testsnpm run coverage
: Run tests with coverage reportnpm run lint
: Check for linting errorsnpm run lint:fix
: Fix linting errorsnpm run prettier
: Check code formattingnpm run prettier:fix
: Fix code formattingnpm run verify
: Run linter and prettier checksnpm run verify:fix
: Fix linter and prettier issuesPlease follow the existing coding style. We use ESLint and Prettier to maintain code quality and consistency.
By contributing to @cod3x/wagmi, you agree that your contributions will be licensed under its MIT License.
Thank you for your interest in improving @cod3x/wagmi!
FAQs
## @cod3x/wagmi Package Documentation
The npm package @cod3x/wagmi receives a total of 0 weekly downloads. As such, @cod3x/wagmi popularity was classified as not popular.
We found that @cod3x/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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.