
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
eip712domains
Advanced tools
Utilities for retrieval of EIP-712 domain via ERC-5267 with fallback logic.
A helper for retrieval of the EIP-712 domain of a contract. Uses ERC-5267 with fallback to known domains or guided guessing.
npm install eip712domains
// (1) Create an EIP-712 Domain Client
// (1a) Viem
import { createERC5267Client } from 'eip712domains/viem';
const { getEIP712Domain } = createERC5267Client(publicClient);
// (1b) Ethers
import { createERC5267Client } from 'eip712domains/ethers';
const { getEIP712Domain } = createERC5267Client(provider);
// (1c) HTTP
import { createERC5267Client } from 'eip712domains/http';
const { getEIP712Domain } = createERC5267Client('https://infura.io/...');
// (2) Get the domain for a contract address
const domain = await getEIP712Domain(contractAddress);
if (domain === undefined) {
// Handle unavailable domain
}
// (3) Request a signature
// (3a) Viem
const signature = await walletClient.signTypedData({ domain, ... });
// (3b) Ethers
const signature = await signer.signTypedData(domain, ...);
FAQs
Utilities for retrieval of EIP-712 domain via ERC-5267 with fallback logic.
The npm package eip712domains receives a total of 1 weekly downloads. As such, eip712domains popularity was classified as not popular.
We found that eip712domains demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.