Skip to content

chain4travel/camino-wallet

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Camino (CAM) Wallet

This is the frontend Vue.js application for the Camino (CAM) Wallet.

Prerequisites

Installation

  1. Clone the repo git clone https://github.com/chain4travel/camino-wallet.git
  2. Go to root of the project cd camino-wallet
  3. Install javascript dependencies with yarn install.

Running The Project

In order for the wallet to work, it needs the Camino network to operate on. By default the wallet will connect to the Camino testnet.

  1. If you want to connect to a local network, make sure you have installed and able to run a CaminoGo node properly.
  2. Run the project with hot reloading yarn serve

When you go to the website on your browser, you might get a warning saying "Site is not secure". This is because we are signing our own SSL Certificates. Please ignore and continue to the website.

Deployment

  1. Compile and minify to have a production ready application with yarn build.
  2. Serve from the /dist directory.

Releases

  1. Generate a personal access token
  2. Save it in your local env as RELEASE_IT_GITHUB_TOKEN
  3. Run yarn release

Changing the Network

By default the wallet will connect to the Camino testnet. You can change to another network by clicking the button labeled TestNet on the navigation bar and selecting another network, or add a custom network.

Explorer API

A valid explorer API is required to correctly display balances for Mnemonic and Ledger type wallets. The wallet uses the Camino Explorer API to display wallet transaction history.

WARNING: This history might be out of order and incomplete.

Browser Support

We suggest using Google Chrome to view the Camino Wallet website.

Firefox and https

Firefox does not allow https requests to localhost. But the Camino Wallet uses https by default, so we will need to change this to http. Make this switch by editing the vue.config.js file in the root directory and change

devServer: {
    https: true
},

to

devServer: {
    https: false
},

and run yarn serve to reflect the change.

Accounts

The wallet can encrypt your private keys into a secure file encrypted by a password.

{
    "accounts": iUserAccountEncrypted[]
}

Language Setting

Saved into local storage as a 2 letter code.

"lang": "en"

Dependencies

To get utxos and to send transactions.

Explorer API Node (TBC)

To check if an address was used before, and to get activity history.

Default Connections

The wallet needs to connect to a Camino node, and an explorer node to operate properly.

By default, there is one network option to connect to: Columbus.

Columbus (Testnet)
  • Camino API: https://columbus.camino.network
  • Explorer API: tbd

Packages

No packages published

Languages

  • Vue 70.5%
  • TypeScript 25.9%
  • SCSS 1.7%
  • JavaScript 1.7%
  • CSS 0.1%
  • HTML 0.1%