A lightweight Raiden Network API TypeScript client to interact with a Raiden Network node.
npm i raiden-api-client --save
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);
}
See CONTRIBUTING.
This project is released under the MIT License. See LICENSE.
Generated using TypeDoc