evm-address

Guide for generating deterministic EVM deposit addresses offline using @evm-address/sdk and CLI. Supports BIP-44 (XPUB) and CREATE2 (Factory) strategies with zero private key exposure. Use when implementing deposit systems, batch sweeping, or offline address generation.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "evm-address" with this command: npx skills add melonask/evm-address-skills/melonask-evm-address-skills-evm-address

EVM Address Generator

Overview

The evm-address toolkit allows for the offline, deterministic generation of EVM deposit addresses. It supports two primary modes:

  1. XPUB (BIP-44): Generates EOA addresses using an extended public key.
  2. Factory (CREATE2): Generates contract addresses for EIP-1167 minimal proxies.

Installation

SDK

npm install @evm-address/sdk

CLI

npm install -g @evm-address/cli

Quick Start (SDK)

import { createXpubGenerator } from "@evm-address/sdk";

const generator = createXpubGenerator({ xpub: "xpub..." });
const address = generator.generate(0);

Detailed Documentation

Strategies Support

StrategyLogic
BIP-44Traditional EOA derivation (m/44'/60'/0'/0/i)
CREATE2Counterfactual contracts via WalletFactory
EIP-7702Delegation to SweeperDelegate
Permit/AuthBatch sweeping via PermitSweeper

Security Note

This tool is designed for offline use and never requires your private keys. It only uses public information (XPUB or contract addresses) to derive deterministic deposit locations.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

viem-sweep

No summary provided by upstream source.

Repository SourceNeeds Review
General

universal-signer

No summary provided by upstream source.

Repository SourceNeeds Review
General

viem-siwe

No summary provided by upstream source.

Repository SourceNeeds Review
General

eip-7702

No summary provided by upstream source.

Repository SourceNeeds Review