Lichen is a light-client-based, in-browser wallet for Substrate.
The Light UI is meant to be an intuitive interface for beginner users to easily interact with various Substrate chains. It is provided in two forms:
Both provide the same functionalities and use the same UI, feel free to choose the medium that suits you best.
A very alpha version of the browser extension can be found in the Github Releases page.
You can also check out the master
branch and build from source.
As of v0.3.0, the main functions are as follows:
And here is a rough roadmap of what's coming next (see the v0.4.0-MVP
milestone for details):
Make sure you have yarn >= 1.13.0 and nodejs >= 10.10.0. Then run
git clone https://github.com/paritytech/substrate-light-ui
cd ./substrate-light-ui
yarn install
yarn build:extension
Then install the extension:
chrome://extensions/
packages/extension-app/build
about:debugging#addons
packages/extension-app/build/manifest.json
For now, you need to bundle a Substrate node manually into the Electron app. To do so, first build a Substrate node for your platform (note: it can of course be a Polkadot/Kusama node, or any other Substrate node), and copy it as ./packages/electron-app/static/substrate
:
cp /path/to/polkadot ./packages/electron-app/static/substrate
Then run:
yarn build:electron
The building might take some time, but you should see an Electron application after a while.
Troubleshooting: If it hangs on a white screen in Electron even though it has compiled and has been syncing for a long time, then simply choose 'View > Reload' (CMD + R on macOS) from the Electron menu.
We welcome any and all contributions whether it is in the form of raising an issue, filing a PR, or participating in the discussions. Please read the Contributing Docs first.
If you would like to run this project with hot-reloading, use the following commands:
yarn start:ui
: If you would only like to modify the UI, run this command and visit http://localhost:3000yarn start:electron
: Run the Electron app with hot reloading