Skip to content

Commit 6ec53a7

Browse files
committedMar 23, 2018
Initial commit
0 parents  commit 6ec53a7

File tree

749 files changed

+136032
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

749 files changed

+136032
-0
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

‎genWallets.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
let ethWallet = require('ethereumjs-wallet')
2+
3+
function getRandomInt (max) {
4+
return Math.floor(Math.random() * Math.floor(max))
5+
}
6+
7+
for (let i = 0; i < 25; i++) {
8+
console.log(
9+
'0x' +
10+
ethWallet
11+
.generate()
12+
.getAddress()
13+
.toString('hex') +
14+
',' +
15+
getRandomInt(1000)
16+
)
17+
}

0 commit comments

Comments
 (0)
Please sign in to comment.