Skip to content
This repository was archived by the owner on May 8, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
.node*
dist
build
.cache
4 changes: 4 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules
dist
build
.cache
7 changes: 7 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"singleQuote": true,
"semi": false,
"tabWidth": 2,
"bracketSpacing": true,
"printWidth": 120
}
19 changes: 11 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
# rsk-utils
# Rsk Conversion Utils

RSK Utils to convert keys from BTC to RSK

## How to run the application?

- Install dependencies: `npm install`

# How to build the browser application.
- `npm run serve`.

- Install NPM: https://docs.npmjs.com/cli/install
- App will be live on [http://localhost:1234](http://localhost:1234)

- Install Webpack: $ npm install webpack -g

- Run: $ npm install
## Download release

- Run: $ webpack
Instead of running the app you can also open release build file.

- A new "build" folder is created after previous step is executed, in the folder, you would find the the browser app ready to go, just open index.html
- Download build file [build.zip](https://github.com/rsksmart/utils/releases)

- Unzip the dist file and open `index.html` in your browser.

**This small application runs within the browser, no call to the server is made. So you can run it off-line.**
Loading