masterbtc / Tezori

Wallet for the Tezos blockchain

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tezori

A wallet for the Tezos blockchain based on Conseil and ConseilJS.

This code was written for the community. Use it, hack it, fork it as you please!

Build Status Coverage Status

Development

The wallet is built on React and Electron and uses electron-react-boilerplate

Active development happens on the develop branch with periodic merges to master.

Add the file extraResources/defaultWalletNodes.json with your Tezos and Conseil nodes:

{
  "tezosSelectedNode": "Cryptonomic-Nautilus",
  "conseilSelectedNode": "Cryptonomic-Conseil",
  "list": [
    {
      "name": "MyTezosNode",
      "type": "TEZOS",
      "url": "https://mytezosnode.com/",
      "apiKey": "anapikey"
    },
    {
      "name": "MyConseilNode",
      "type": "CONSEIL",
      "url": "https://myconseilnode.com/",
      "apiKey": "anotherapikey"
    }
  ],
  "selectedPath": "Default",
  "pathsList": [
    {
      "label": "Default",
      "derivation": "44'/1729'/0'/0'/0'"
    }
  ]
}

To install all dependencies:

yarn

To run during development:

npm run dev

To package for deployment:

npm run package-all

About

Wallet for the Tezos blockchain

License:GNU General Public License v3.0


Languages

Language:JavaScript 99.6%Language:HTML 0.2%Language:CSS 0.2%