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
For our use case, the following API calls are missing, see specification.
Motivation
We want to be able to 1) check our on-chain balance and 2) unlock an ethereum keystore file 3) send on-chain funds to an external address. All directly through raiden, without dealing with another client (e.g. geth).
This is mainly to enable the user to stick with one keystore file/account managed solely by raiden. Using another client touching the keystore to e.g. transfer funds out on-chain causes severe issues (crashes) for raiden because the nonce counting gets messed up.
Specification
API calls:
check our own on-chain balance of ETH and token(s).
Abstract
For our use case, the following API calls are missing, see specification.
Motivation
We want to be able to 1) check our on-chain balance and 2) unlock an ethereum keystore file 3) send on-chain funds to an external address. All directly through raiden, without dealing with another client (e.g. geth).
This is mainly to enable the user to stick with one keystore file/account managed solely by raiden. Using another client touching the keystore to e.g. transfer funds out on-chain causes severe issues (crashes) for raiden because the nonce counting gets messed up.
Specification
API calls:
v1/api/unlock - { address: "...", password: "pswd" }*1) should be relatively easy to expose since functionality already exists.
Backwards Compatibility
It's new calls, I don't see a problem here.