Socket
Socket
Sign inDemoInstall

xmr-dev-tools

Package Overview
Dependencies
9
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    xmr-dev-tools

CLI for generating Monero brain wallets, and experimenting with Monero development


Version published
Weekly downloads
2
Maintainers
1
Created
Weekly downloads
 

Readme

Source

XMR-DEV-TOOLS

As of now all this library does is generate Monero brain wallets from 32-byte (64 hex character) strings. Eventually this library will contain a variety of Monero related dev scripts.

Global Variables

jssha3 - The JS library that contains a variety of different hashing functions

lodash - Library for manipulating data structures

crypto - CryptoNote cryptography utilities

Installation

To install from npm: npm install -g xmr-dev-tools

To run locally: xmr-dev-tools

Tutorial

var password = "SomeSecretPassword!ThatCanUse@SymbolsAndNumb3r5"
var seed = password.repeat(1000) // Or any large number
lodash.times(1000, (i) => { seed = jssha3.sha3_256(seed) })
var wallet = new XMR({seed: seed})

Keywords

FAQs

Last updated on 17 Dec 2017

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc