You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The API provides a way for to know the raiden address, but it does not indicate what chain (or chains?) it is connected to. This is not so much of an issue when Raiden was only deployed on ethereum mainnet, but with the plans to deploy it on Arbitrum it might be important
Motivation
One can think of applications that need to interact with multiple instances of Raiden nodes, and quickly figure out through the REST API what chain a particular instance is connected to.
Examples:
a payment gateway or centralized exchange that wants to give the ability to make payouts to its users via Raiden
Someone providing a mainnet -> arbitrum token bridge.
Specification
There should be an endpoint in the REST API that responds with the id of the chain that the raiden node is connected to. This can be a simple relay of the chainId value provided by the ethereum client.
The text was updated successfully, but these errors were encountered:
lullis
added a commit
to mushroomlabs/hub20.backend
that referenced
this issue
Feb 24, 2022
With the idea that a raiden can be deployed on multiple chains, we
needed to revisit the concept of having Raiden as a type of ethereum
account, given that the same address can have raiden nodes connected
to different chains.
A Raiden node is now represented only by its URL, the underlying
account address and the chain that is connected to. Given that there
is not yet a reliable way to [get chain information from Raiden's
API](raiden-network/raiden#7483), the
operator needs to include this information when creating the
entry.
Abstract
The API provides a way for to know the raiden address, but it does not indicate what chain (or chains?) it is connected to. This is not so much of an issue when Raiden was only deployed on ethereum mainnet, but with the plans to deploy it on Arbitrum it might be important
Motivation
One can think of applications that need to interact with multiple instances of Raiden nodes, and quickly figure out through the REST API what chain a particular instance is connected to.
Examples:
Specification
There should be an endpoint in the REST API that responds with the id of the chain that the raiden node is connected to. This can be a simple relay of the
chainId
value provided by the ethereum client.The text was updated successfully, but these errors were encountered: