Raiden-client
Raiden Network API TypeScript client

Introduction
Raiden has a Restful API with URL endpoints corresponding to user-facing interaction allowed by a Raiden node. The endpoints accept and return JSON encoded objects. The api url path always contains the api version in order to differentiate queries to different API versions. All queries start with: /api/<version>/
Full documentation
Install
npm i raiden-api-client --save
Usage
import RaidenClient from "raiden-api-client";
async function printChannels() {
const client = new RaidenClient("http://localhost:5001/api");
const channels = await client.getChannels();
console.log(channels);
}