Skip to main content

Raiden webui

Project description



Raiden WebUI

Getting StartedContact

PyPI CircleCI Badge Codecov Badge code style: prettier Gitter Raiden Badge

Raiden WebUI is a simple web application that utilizes the Raiden REST API endpoints to allow the user to interact with token networks, make token payments, see the current status of open channels along with closing and settling channels to name some of the functionality.

Table of Contents

About The Project

The Raiden Network is an off-chain scaling solution, enabling near-instant, low-fee and scalable payments. It’s complementary to the Ethereum blockchain and works with any ERC20 compatible token.

The Raiden client code is available here and has been released for mainnet with a limited alpha release of the Raiden Network in December 2018.

Raiden WebUI

Raiden WebUI is built using the following technologies:

Getting Started

Learn about Raiden

If you haven't used Raiden before, you can:

Using the WebUI

If you want to learn how to use the Raiden WebUI an updated tutorial has been published in the new documentation for Raiden.

Prerequisites

If you just want to use the WebUI all you need to do is install and run Raiden. A version of the WebUI comes bundled with each Raiden release and is accessible from http://127.0.0.1:5001.

For details on how to easily install Raiden:

Read the Quick Start section in the documentation.

If you want to work on the WebUI codebase you need:

  • Node >=10.13.0
  • A working Raiden client.
  • Git for version control.

Development

Before you start working on the WebUI you need to install the WebUI dependencies.

npm install

Configuration

Before you begin to work on the WebUI you have to make sure that you have the proper configuration. Check if the proxy configuration corresponds to your actual environment configuration.

Since you will not be running the WebUI embedded into Raiden you need to provide both the Ethereum RPC endpoint and the Raiden REST API endpoint to the proxy.config.json.

By default the configurations looks like this:

{
    "/api": {
        "target": "http://localhost:5001",
        "proxyTimeout": 600000
    },
    "/web3": {
        "target": "http://localhost:8545",
        "pathRewrite": { "^/web3": "" },
        "changeOrigin": true,
        "proxyTimeout": 60000
    }
}

The configuration assumes that the Ethereum RPC endpoint listens on http://localhost:8545 and the Raiden REST API is on http://localhost:5001. If you are using a different configuration make sure to update the corresponding fields in the configuration.

For example if you run Raiden on port 5002 and you use Infura as your RPC provider you would have to modify the proxy.config.json to like like:

{
    "/api": {
        "target": "http://localhost:5002",
        "proxyTimeout": 600000
    },
    "/web3": {
        "target": "http://goerli.infura.io/v3/YOUR_API_KEY",
        "pathRewrite": { "^/web3": "" },
        "changeOrigin": true,
        "proxyTimeout": 60000
    }
}

Info: On development mode there is no way to guarantee that raiden and the RPC provider run on the same chain. You have to be careful, because if you start for example Raiden on Rinkeby and pass Görli as the RPC endpoint, WebUI will fail to work.

Important: Modifications on proxy.config.json make sure never be part of your PR.

Running the WebUI

After you are done with the configuration you can start the development server:

npm run serve

After the development server starts you have to navigate to http://localhost:4200/ui, in order to use the WebUI.

Python package

The WebUI is build as a python package and it's available on PyPI. This package is pinned as a dependency on Raiden. The PyPI package provides a precompiled version of the WebUI that is bundled with Raiden and can be used out of the box.

The python package provides a static variable that points to the location of the WebUI static content root directory. This can be imported by raiden to expose the bundled WebUI resources:

from raiden_webui import RAIDEN_WEBUI_PATH

The package can build the python package by calling:

python setup.py build sdist bdist_wheel

The command calls npm build:prod to build the static production version of the WebUI so that it can get included in the python package.

If you need to install the package locally to your development virtual environment you can do so by running:

python setup.py build install

In case you need to use the debug version of the WebUI with in your virtual environment you can also run:

python setup.py compile_webui -D install

This will build the debug version of the WebUI to include in your package.

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

Also have a look at the Raiden WebUI Development Guide for more info.

License

Distributed under the MIT License.

Contact

Dev Chat: Gitter

Twitter: @raiden_network

Website: Raiden Network

Mail: contact@raiden.network

Project Link: https://github.com/raiden-network/light-client

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

raiden-webui-0.10.4.tar.gz (1.7 MB view details)

Uploaded Source

Built Distribution

raiden_webui-0.10.4-py3-none-any.whl (1.6 MB view details)

Uploaded Python 3

File details

Details for the file raiden-webui-0.10.4.tar.gz.

File metadata

  • Download URL: raiden-webui-0.10.4.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.5

File hashes

Hashes for raiden-webui-0.10.4.tar.gz
Algorithm Hash digest
SHA256 f7e9ee5205045bd372412f40a30d19e9f20de1ffe312c8a82aee5157b0a74c05
MD5 d642363e0e0db8e8d1f072d12f3d710e
BLAKE2b-256 27492ab56ba4d294d4e1f1cf69b346f7d4a40a743e5642f6bda4ca11ef1d51b5

See more details on using hashes here.

File details

Details for the file raiden_webui-0.10.4-py3-none-any.whl.

File metadata

  • Download URL: raiden_webui-0.10.4-py3-none-any.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.5

File hashes

Hashes for raiden_webui-0.10.4-py3-none-any.whl
Algorithm Hash digest
SHA256 6fc00f39b972ff2955f03ed63df586cbf6b68e1f53062936baee3d19b24e40eb
MD5 5fafebf00c09694023960ed3885e7a16
BLAKE2b-256 18aed2266bf0ed7541aa2a66e34f4642ea4e1a36fb2b0c6621df0681e45bacf2

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page