Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated for easier package install (npm install) #13

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
3 changes: 2 additions & 1 deletion Linux/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ethereum-generator",
"version": "1.0.0",
"version": "1.0.1",
"description": "Generate random ethereum wallets & private keys and then check if they match a wallet that contains some kind of balance, so that you can take it. In Node.js",
"main": "generator.js",
"dependencies": {
Expand All @@ -9,6 +9,7 @@
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"install-deps": "npm install"
},
"author": "Michal2sab",
"license": "ISC"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Generate random ethereum wallets & private keys and then check if they match

# REQUIREMENTS
1. Install Node.js
2. npm i ethers
2. npm install
3. Lots of time on your hands.. there's a lot and I mean A LOT of possible addresses and keys, you will be extremely lucky to find any that will match your riches.txt list.

# HOW TO RUN
Expand Down
3 changes: 2 additions & 1 deletion Windows/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ethereum-generator",
"version": "1.0.0",
"version": "1.0.1",
"description": "Generate random ethereum wallets & private keys and then check if they match a wallet that contains some kind of balance, so that you can take it. In Node.js",
"main": "generator.js",
"dependencies": {
Expand All @@ -9,6 +9,7 @@
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"install-deps": "npm install"
},
"author": "Michal2sab",
"license": "ISC"
Expand Down