Awesome
Please note that this repository is now deprecated in favor of T2!
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!
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