Hello,
How can I run raiden wizard with testnet?
Hello,
Have you tried following the instructions for testnet detailed here? https://raiden-network.readthedocs.io/en/stable/overview_and_guide.html#run-it
When you want to use a testnet add one of the `--testnet`, `--rinkeby` or `--goerli` flags or set the network id with `--network-id` directly.
@natalialinov This is an outdated version of the wizard. The newest versions don’t support test nets.
If you want to run it on Goerli, it’s better to have a look at the latest release: https://github.com/raiden-network/raiden/releases/tag/v3.0.1
This release supports test nets like goerli and rinkeby
Another question: are there any instructions if I want to try setting up Raiden on Arbitrum? At least testnet?
Is it just a matter of using the existing client while pointing to the RPC client to Arbitrum and changing the PFS URL, or anything else is needed?
I believe the answer to your first question is yes (still confirming though).
As for the second, the python client has not been adapted for Arbitrum, and we’re still working on a new release for the light-client.
The current code on the branch arbitrum
should work properly though: https://github.com/raiden-network/light-client/tree/arbitrum
./raiden-v3.0.1-linux-x86_64 --keystore-path keystoree/ --eth-rpc-endpoint "https://goerli.infura.io/v3/dd270fa5ac89485db3dbae3fccd5eee7" --network-id goerli --environment-type development --pathfinding-service-address https://pfs.transport04.raiden.network --routing-mode pfs
When I launch it like this: "Invalid reply from Pathfinding Service https://pfs.transport04.raiden.networkPathfinding Service is not operating on the same Token Network Registry (0x44c886653B536178831CF2Ca0724e0dd3f75FEd6) as your node (0x6758E306F5c0A9915Fa1BEfb41509a953c984383).
Raiden will shut down. Please choose a different Pathfinding Service." How can I solve this. Which pathfinding service can I use.
as for the closed channel with balance, it takes around 500 blocks for the channel settlement to be considered complete. That is, if your partner was not online by the time you closed the channel, otherwise there would be a cooperative channel settle and you’d get the funds right away.
In short, don’t worry, you’ll get your tokens back, but it will take 500 blocks, so a bit more than 2 hours.
Hello, I want to install raiden-service-bundle. When I run "docker-compose up -d" "
ERROR: for metrics_db Container "b282efe2bd52" is unhealthy.
ERROR: for synapse Container "b282efe2bd52" is unhealthy.
ERROR: Encountered errors while bringing up the project." gave these errors.
Do you know where this error comes from?
lightclient.raiden.network
to setup a channel. However, the light-client errors out with target is offline
. I was wondering if someone could help be debug this issue.
Hey @natalialinov :wave:
Please edit the docker-compose.yml
file and define some environment variables to pass the contract address as an argument to the respective services. E.g.
pfs:
...
environment:
- PFS_SERVICE_REGISTRY_CONTRACT_ADDRESS=0x...
Don't forget to do the same for the ms
and msrc
services. But always adapt the prefix of the environment variable, i.e.MS_*
and MSRC_*
.
Hey everybody, we officially launched our Discord Server! For now we’re answering questions both on gitter and Discord, but the plan is to migrate the community over to the second.
The advantages is to get faster responses and more interaction with the rest of the community, plus an easier to search knowledge base.
Check it out: https://discord.com/invite/nSQDQBq5FC
@lullis I am trying to make a integration of hub20 with raiden. I have both services(hub20-admin and raiden) running on Kubernetes cluster. When i try to execute command "django-admin register_raiden --chain-id 5 --raiden http://raiden.svc:5001" I get the following error "No Web3 provider available on 5, raiden info will not be recorded" even though I have registered Goerli testnet on chain id 5 " Any help is appreciated. Thanks
Hi!