A distributed wallet to send and receive funds
Table of Contents
- Description
- Overview of the Stack
- Getting Started
3.1. Prerequisites
3.2. Installing - Built With
- Contributing
The current project demonstrates a distributed wallet to send and receive funds
- Vue.js: as the JavaScript framework for the frontend and handling all the view-related stuff
- Ethereum: as decentralized and open source blockchain.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Please make sure you've already installed Truffle and enabled the MetaMask extension in your browser.
* Truffle v5.1.26 (core: 5.1.26)
* Solidity >= v0.5.16 (solc-js)
* Node >= v12.16.3
* Web3.js >= v1.2.7
* Metamask Chrome extension (connected with Volta)
Note: Please follow the steps to connect Metamask with Volta.
Follow the steps below to have development environment running:
- Clone the repository:
$ git clone https://github.com/olisystems/oli-wallet.git
- Change directory to
oli-wallet
folder and install all requisite npm packages (as listed inpackage.json
):
$ cd oli-wallet
$ npm install
- Compile the smart contracts:
$ cd truffle
$ npm run compile
This will create the smart contract artifacts in folder app\src\assets\js\contracts
.
- Migrate smart contracts to
volta
chain:
$ npm run migrate
- Test smart contracts:
$ npm run test
- Compiles and hot-reloads for development, run the following command inside
app
directory:
$ cd app
$ npm run serve
Navigate to localhost:8080
in your browser.
- Compiles and minifies for production:
$ npm run build
- Ethereum - Ethereum is a decentralized platform that runs smart contracts to make the web faster, safer, and more open.
- Web3.js - A collection of libraries which allow interacting with a local or remote ethereum node, using an HTTP or IPC connection.
- Vue.js - The Progressive JavaScript Framework for building user interfaces.
- Truffle Framework - Truffle is the most popular development framework for Ethereum with a mission to make your life a whole lot easier.
Pull requests are welcome.
- Fork the repository.
- Create your new feature branch:
git checkout -b new-feature-branch
- Stage your changes:
git add .
- Commit the changes:
git commit -m "add commit message"
push
to the branch:git push origin new-feature-branch
- Submit a
pull request
.