Giter Site home page Giter Site logo

onz-vanity-gen's Introduction

🔥ONZ Vanity Generator🔥

Fast and First, ONZcoin Vanity address generator!

ONZcoin vanity Address Generator !

👏

Getting Started

Install onz-vanity-gen into your project:

npm install onz-vanity-gen

Create a app.js file and add the following:

const onzAddGen = require('onz-vanity-gen');

let onzAddGen = new ONZVanitygen({
    pattern: 123456
});

onzAddGen.run((data) => {
    console.log('found: ', data);
}, (data) => {
    console.log('status: ', data);
});

Run your app.js file:

node app.js

API

let onzAddGen = new ONZVanitygen(config);

config properties:

Name Default Type Required Description
pattern - char or array of chars Yes Pattern(s) to find.
continue true boolean No Should continue after first found?
messageInterval 1000 number No Interval in ms between status callback.
debugOutput false boolen No true or false for debug output.
onzAddGen.run(foundCallback, statusCallback);
Name Type Required Description
foundCallback function Yes Callback when key was found.
statusCallback function No Callback with status information.

Example

Example is found on github or in your main fodler as example.js https://github.com/scottie/onz-vanity-gen.example.js

/*
    Example ONZ Vanity Generator
*/
//CONFIG
var patterns = ["666", "god", "scott", "luv", "onz", "123", "abc", "ABC", "GOD", "SCOTT", "LuV", "0nZ"];
// 3 is good, 6 is hard, anything else is IMPOSSIBLE :)


//LEAVE BE
//////////////////////////////////
const ONZVanitygen = require('./');
const fs = require('fs');

let onzAddGen = new ONZVanitygen({
    pattern: patterns,
    continue: true,
    messageInterval: 1000,
    debugMode: true
});

onzAddGen.run((data) => {
    let txt = `
Pattern:    ${data.pattern}
Address:    ${data.address}
Passphrase: ${data.passphrase}
`;
    onzAddGen.log(txt);
 
    fs.appendFileSync('found.txt', txt, (error) => {});
}, (data) => {
    let txt = `\r\rCount: ${data.count} | Time: ${data.time} s. | Avg: ${data.avg} keys/s | Found: ${data.foundCount}`;
    process.stdout.write(txt); // to back cursor to the start of the line (in console.log doesn't work)
});

To run the example:

npm install
npm run example

License

MIT © Scott Lindh MIT © Radosław Wiliński

onz-vanity-gen's People

Contributors

rwilinski avatar scottie avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.