Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/BubuMVX/mvx-vanity-address
An open source custom wallet generator for MultiversX
https://github.com/BubuMVX/mvx-vanity-address
multiversx wallet-generator
Last synced: 2 months ago
JSON representation
An open source custom wallet generator for MultiversX
- Host: GitHub
- URL: https://github.com/BubuMVX/mvx-vanity-address
- Owner: BubuMVX
- Created: 2024-06-27T22:36:22.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-06-29T18:20:29.000Z (6 months ago)
- Last Synced: 2024-08-04T13:58:02.481Z (5 months ago)
- Topics: multiversx, wallet-generator
- Language: TypeScript
- Homepage: https://wallet.artmakers.io
- Size: 229 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-multiversx-dev-resources - Vanity Address Generator - An open-source custom wallet generator for MultiversX (MultiversX community / Dapps Source Code)
README
# MultiversX Vanity Address Generator
## Purpose
This tool helps you generate a MultiversX wallet according to the criterias your provide.
It works by randomly generating seed phrases and checking if the associated wallets match your settings.## Security
This tool is fully executed inside your browser and doesn't transmit anything outside of it.
You can disconnect from the Internet once the app is loaded.You can read, copy, modify, compile and execute the source code provided here on an offiline device for maximum
security.## Usage
You can set these settings:
- `Threads`: the number of CPU threads used for the calculations. The more, the faster. Limited by the number of CPU
cores your computer has.
- `Shard`: the shard you want for your wallet.
- `Prefix` / `Contains` / `Suffix`: search for a specific string at the beginning, anywhere, or at the end of your wallet address.Please note that a wallet address contains alphanumeric characters excluding 1, b, i, and o.
## Output
Once a match is found, you can copy your wallet's details or download your key in various formats:
- `JSON`: a keystore protected with a password. With a strong password, you can almost store it as it is.
- `PEM`: a raw private key, without any protection. Be careful how you store it.
- `Text`: a simple text file with all the details displayed. Be careful how you store it.## How to run this app?
### Online
Visit https://wallet.artmakers.io/
### Offline
```
git clone https://github.com/grobux/mvx-vanity-address
cd mvx-vanity-address
npm install
npm run dev
```