All Projects → WietseWind → xrp-vanity-generator

WietseWind / xrp-vanity-generator

Licence: MIT license
Generate XRP Vanity Addresses (Wallets) on your local computer

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to xrp-vanity-generator

rippled-php
A PHP library for rippled (XRP Ledger) communication.
Stars: ✭ 33 (+83.33%)
Mutual labels:  xrp-ledger
ripple-binary-codec
Convert between json and hex representations of transactions and ledger entries on the XRP Ledger. Moved to: https://github.com/XRPLF/xrpl.js/tree/develop/packages/ripple-binary-codec
Stars: ✭ 18 (+0%)
Mutual labels:  xrp-ledger
docker-rippled-validator
Run a Ripple XRP (rippled) validator in a Docker container
Stars: ✭ 26 (+44.44%)
Mutual labels:  xrp-ledger
XpringKit
XpringKit provides a Swift SDK for interacting with Xpring Protocols (XRP/PayID/ILP). This library is deprecated.
Stars: ✭ 23 (+27.78%)
Mutual labels:  xrp-ledger
xrp-wallet
Offline/Cold wallet for XRP
Stars: ✭ 12 (-33.33%)
Mutual labels:  xrp-ledger
Rippled
Decentralized cryptocurrency blockchain daemon implementing the XRP Ledger in C++
Stars: ✭ 4,029 (+22283.33%)
Mutual labels:  xrp-ledger
XRPL-MultiSignTool
Graphical user interface to setup MultiSigning, and help with composing & combining MultiSigned transactions.
Stars: ✭ 13 (-27.78%)
Mutual labels:  xrp-ledger
explorer
Open Source XRP Ledger Explorer
Stars: ✭ 18 (+0%)
Mutual labels:  xrp-ledger
xrpayments.co
In-store payment requests in XRP (using Ripple URI QR) - With currency converter
Stars: ✭ 18 (+0%)
Mutual labels:  xrp-ledger
xrpl-py
A Python library to interact with the XRP Ledger (XRPL) blockchain
Stars: ✭ 70 (+288.89%)
Mutual labels:  xrp-ledger
xrpl-dev-portal
Source code for xrpl.org including developer documentation
Stars: ✭ 330 (+1733.33%)
Mutual labels:  xrp-ledger
docker-rippled
Run a Ripple XRP (rippled) node in a Docker container
Stars: ✭ 44 (+144.44%)
Mutual labels:  xrp-ledger

XRP Vanity address (wallet) generator

A vanity address is a wallet address containing a few characters you like at the beginning or the end of the wallet address. Of course we can't just generate the address: the address is a derivative from a secret key. So: this tool generates several secret keys per second. The script will test the derived wallet address against one or more keywords you can supply.

This tool now generates the new X-address formatted accounts. If you are looking for the previous r... addresses, check this branch.

This tool now supports multiple threads. To use this feature, don't call node xrpwallet.js but node index.js and prepend the amount of threads. The default amount of threads is 2. If you have more cores available, you can run with more threads, allowing you to find your vanity address faster.

Single thread, looking for Wietse or Pepper:

node xrpwallet.js wietse pepper

4 threads, looking for Arwen or Dino:

node index.js 4 arwen dino

How to use this tool

  1. Make sure you have nodejs installed on your computer: https://www.npmjs.com/get-npm. (nodejs allowes you to run Javascript code on your computer from the commandline).
  2. Download the source of this repository (using git clone or by downloading the zip)
  3. Start your commandline and go to the folder containing the source of this repository
  4. Install the dependency (ripple-lib) by running npm install
  5. Fire up the tool and append the keywords you are looking for:
node xrpwallet.js hello pepper johndoe

The example command above will search for wallet addresses containing either hello, pepper or johndoe.

Demo of install and wallet generation

If you use Windows and you don't have NodeJS running: here's a screencap of the steps above (1-5).

Notes

  • This script will look for your keywords at the beginning or at the end of wallet addresses.
  • This script will look for matches case insensitive.
  • The longer the keyword you are looking for, the longer it takes to find a match.
  • If you want to be make sure the generated wallets + keys are safe, generate offline.

Security / randomness

Serious question. How do we know these addresses are random and not some sort of sequence? @ Reddit

Good question indeed. The only way to be sure is to check the code;

My code is over here and as you can see is invoke the method "keypairs.generateSeed()".

... I use ripple-keypairs to do this. ripple-keypairs is from Ripple (the company) - this code is open source as well.

The function is on line 17 over here and at line 19 you can see they use the brorand lib. to generate the randomness. This lib. uses the crypto object, a native NodeJS object, by invoking:

crypto.randomBytes()

More info about this method over here.

Feeling generous?

Tips are highly appreciated at XRP address XVjKs2ae5EgCyKL4oPoNo7RoeBKFCbndk8gq6W6n93WeYZG / rPdvC6ccq8hCdPKSPJkPmyZ4Mi1oG2FFkT or using the XRP TipBot at Twitter: @WietseWind 😇

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].