All Projects → Limeth → Ethaddrgen

Limeth / Ethaddrgen

Licence: gpl-3.0
Custom Ethereum vanity address generator made in Rust

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to Ethaddrgen

Cryptolights
Live visualisation of blockchain transactions for popular cryptocurrencies
Stars: ✭ 54 (-35.71%)
Mutual labels:  ethereum, cryptocurrency
Crypto Whale Watcher
An app to keep a watch on big volume trades of cryptocurrecies on different exchanges by sending alerts via a Telegram Bot.
Stars: ✭ 60 (-28.57%)
Mutual labels:  ethereum, cryptocurrency
Qtum
Qtum Core Wallet
Stars: ✭ 1,080 (+1185.71%)
Mutual labels:  ethereum, cryptocurrency
Blockchainage
「区块链技术指北」相关资料。
Stars: ✭ 51 (-39.29%)
Mutual labels:  ethereum, cryptocurrency
Keys
🔑 Cryptocurrency private keys
Stars: ✭ 71 (-15.48%)
Mutual labels:  ethereum, cryptocurrency
Cryptocurrency Dashboard
Crypto Currency Dashboard Using Twitter 🐦 And Coinmarketcap 🚀 API
Stars: ✭ 54 (-35.71%)
Mutual labels:  ethereum, cryptocurrency
Ethsnarks Miximus
Example project for EthSnarks - Miximus coin mixer
Stars: ✭ 58 (-30.95%)
Mutual labels:  ethereum, cryptocurrency
Bbt Multiminer
Start different miners from the same script. Easy and simple to get started with mining. Originally by Bits Be Trippin'
Stars: ✭ 33 (-60.71%)
Mutual labels:  ethereum, cryptocurrency
Icointicker
macOS crypto currency menubar ticker (맥 가상화폐 시세 메뉴바 티커)
Stars: ✭ 70 (-16.67%)
Mutual labels:  ethereum, cryptocurrency
Arbitrader
A market neutral cryptocurrency trading bot.
Stars: ✭ 66 (-21.43%)
Mutual labels:  ethereum, cryptocurrency
Cryptex
Gemini, GDAX, Bitfinex, Poloniex, Binance, Kraken, Cryptopia, Koinex, BitGrail and CoinMarketCap cryptocurrency exchange API clients in Swift / iOS SDK. Check prices and account balances using Sample iOS app.
Stars: ✭ 51 (-39.29%)
Mutual labels:  ethereum, cryptocurrency
Airgap Wallet
The AirGap Wallet is installed on an everyday smartphone. This app has only access to public information.
Stars: ✭ 78 (-7.14%)
Mutual labels:  ethereum, cryptocurrency
Identity Wallet
Code for the SelfKey Identity Wallet
Stars: ✭ 36 (-57.14%)
Mutual labels:  ethereum, cryptocurrency
Openapi
DragonEx OpenAPI
Stars: ✭ 54 (-35.71%)
Mutual labels:  ethereum, cryptocurrency
Shapeshift
ShapeShift API for Go Language - convert cryptocurrencies with ease using ShapeShift and golang
Stars: ✭ 35 (-58.33%)
Mutual labels:  ethereum, cryptocurrency
Etherscan Ml
Python Data Science and Machine Learning Library for the Ethereum and ERC-20 Blockchain
Stars: ✭ 55 (-34.52%)
Mutual labels:  ethereum, cryptocurrency
Finch
An Open Source Cryptocurrency Payment Processor.
Stars: ✭ 27 (-67.86%)
Mutual labels:  ethereum, cryptocurrency
Wssh
WSSH Is a tool for brute forcing servers that has port 22 open via ssh, wssh is probably the fastest ssh brute forcer available
Stars: ✭ 21 (-75%)
Mutual labels:  bruteforce, cracking
The Journal Of Blockchain
区块链自媒体、专注区块链技术学习和实践、IPFS/Filecoin、Bitcoin、Ethereum、EOS、Cosmos、区块链、白皮书、Coinmarketcap、Coindesk、Safe Network、Telegram、Docker、社会治理、经济激励
Stars: ✭ 63 (-25%)
Mutual labels:  ethereum, cryptocurrency
Crypto Coin Alerts
An application that let you set alerts for the prices of several cryptocurrencies
Stars: ✭ 72 (-14.29%)
Mutual labels:  ethereum, cryptocurrency

ethaddrgen

Build Status Build status

Custom Ethereum address generator

Get a shiny ethereum address and stand out from the crowd!

asciicast Disclaimer: Do not use the private key shown in this demo; it's public, strangers could steal your Eth. Never share your private key with anyone. It's your and only your responsibility to keep your private key in secret.

Features

  • Regex support (--regex/-e): Use regex pattern matching
  • Quiet mode (--quiet/-q): Output only the results
  • Stream mode (--stream/-s): Keep outputting results
  • Color settings (--color/-c): Enable/Disable colors
  • Dictionary support: If no patterns are provided as arguments, patterns are read from the standard input

Usage

Download the latest release here. To display usage, run ethaddrgen -h or ethaddrgen --help for a longer version. ethaddrgen expects the last arguments to be patterns. If no patterns are provided as arguments, ethaddrgen reads patterns from the standard input where each pattern is on a separate line.

Examples

Simple example

The following command will look for an address starting with either c0ffee, deadbeef or c0c0a. If you are on Windows, use ethaddrgen.exe instead of ethaddrgen.

ethaddrgen c0ffee deadbeef c0c0a

Regex example

The following command will look for an address starting with 10 letters. If you are on Windows, use ethaddrgen.exe instead of ethaddrgen.

ethaddrgen -e '^[abcdef]{10}'

Note that while supplying multiple regex patterns is supported, it is not recommended to use a large list of regex patterns.

Using pattern lists (dictionaries)

If no patterns are provided as arguments, patterns are read from the standard input. You can provide data to the standard input in various ways, depending on your platform:

  • Windows:
Get-Content patterns.txt | ethaddrgen.exe
  • Unix (macOS/Linux):
cat patterns.txt | ethaddrgen
# or
ethaddrgen < patterns.txt

where the patterns.txt file is a newline-separated list of patterns, for example:

c0ffee
deadbeef
c0c0a

It is not recommended to use large pattern lists with regex, as combining these features significantly decreases performance.

Compilation

The easiest way to get ethaddrgen is to download a pre-built binary here. You can also compile it yourself, if you wish so.

  1. Install Rust via Rustup.rs
  2. Clone this repository: git clone https://github.com/Limeth/ethaddrgen.git; cd ethaddrgen
  3. Compile the project: cargo build --release. The binary can then be found at target/release/ethaddrgen or ./target/release/ethaddrgen.exe on Windows machines.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].