Skip to content

Commit 16cfa9f

Browse files
committed
first commit
0 parents  commit 16cfa9f

Some content is hidden

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

41 files changed

+60561
-0
lines changed

.babelrc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"presets": [
3+
["env", { "modules": false }],
4+
"stage-3"
5+
]
6+
}

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lib/mymonero-core-js/**

.eslintrc.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "standard"
3+
}

.gitignore

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.DS_Store
2+
node_modules/
3+
## dist/
4+
npm-debug.log
5+
yarn-error.log
6+
7+
# Editor directories and files
8+
.idea
9+
*.suo
10+
*.ntvs*
11+
*.njsproj
12+
*.sln

README.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Monero Paper
2+
3+
Monero (XMR) wallet generator, built with Vue.js
4+
5+
[Try it](https://bradoyler.github.io/xmr-paper/)
6+
7+
![xmr](https://user-images.githubusercontent.com/425966/34000771-2b14fe04-e0bc-11e7-99cc-85767d7e8f6a.gif)
8+
9+
## Setup for Development
10+
11+
``` bash
12+
# install dependencies
13+
npm install
14+
15+
# serve with hot reload at localhost:8080
16+
npm run dev
17+
18+
# build for production with minification
19+
npm run build
20+
```

bin/createWallet.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/usr/bin/env node
2+
3+
const walletUtils = require('../src/lib/mymonero-core-js/monero_utils/monero_wallet_utils')
4+
const wallet = walletUtils.NewlyCreatedWallet('english')
5+
console.log('## Wallet address:', wallet.keys.public_addr)
6+
console.log('## Mnemonic seed:', wallet.mnemonicString)

dist/bootstrap.min.css

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)