Questions tagged [raiden]
The raiden tag has no summary.
21 questions
1 vote
0 answers
33 views
How do Payment Channel Networks such as Raiden actually increase blockchain scalability?
Question : If a payment channel network that routes multi-hop payments uses HTLC's (hash time locked contracts) which must first lock up funds on-chain and also be redeemed on-chain then how are they ...
1 vote
1 answer
2k views
pyethapp requirements.txt install fails on "Building wheel for gevent (setup.py) ... - error"
OSX 10.15.4 Running under virtual env with python3.7 Hi, I'm trying to work with Raiden. Trying to install pyethapp. While installing the requirements.txt, I fail on "Building wheel for gevent (...
2 votes
1 answer
49 views
Does the Raiden client ever deploy TokenNetworkRegistry?
Is there any code in the Raiden client that deploys a TokenNetworkRegistry contract?
1 vote
1 answer
57 views
In Raiden's source, why is a result of state transition called "iteration"?
Throughout the Raiden source code, the result of a state transition is called a iteration (for example https://github.com/raiden-network/raiden/pull/4791#pullrequestreview-285494821 ). Where does ...
2 votes
1 answer
89 views
Why doesn't Raiden release channel capacity immediately when routing fails?
In the current implementation of the Raiden protocol, when a payment routing fails after some transfers, the already made hash time locks are left there until they expire. This consumed the channel ...
1 vote
1 answer
99 views
How does Raiden Network prevent the attack that uses stale state?
In Lightning Network, It uses timelock to prevent attack that places stale state onto the blockchain for single channel. (Not for payment routing, only for single payment channel between two nodes) ...
3 votes
1 answer
87 views
Raiden network and publicity
As I understand, privacy on of the key features or Raiden. Let's say that I want fast transactions but at the same time I want to have the transparent transactions history for an independent observer,...
0 votes
1 answer
57 views
If a malicious party attempts to close a Raiden payment channel with incorrect balances, can they steal the deposit?
If a malicious party attempts to close a Raiden payment channel with incorrect balances, can they steal the deposit if the other party doesn't respond? If they close the channel and transmit that ...
0 votes
1 answer
82 views
Can Raiden Network transfers occur offline?
Since Raiden is off-chain, could I theoretically set up some channels among a group of local parties and conduct transactions offline via NFC, bluetooth, wifidirect, etc.? Since it's off chain and ...
7 votes
2 answers
9k views
What exactly is Ethereum's Layer 2
I read about Ethereum’s Layer 2 Scaling Solutions. Understood that layer 1 is the base consensus layer of ethereum protocol, changes typically require a hard fork. Is it true that layer 2 here refers ...
2 votes
0 answers
57 views
can raiden network be used on ethereum PoA(proof of Authority)?
https://github.com/raiden-network/raiden can raiden network be used on ethereum PoA(proof of Authority) ? If it can , how to use it? Please help.
1 vote
1 answer
91 views
Can transfer data through Raiden network?
Is there a way to transfer data through Raiden Network. As i checked their Docs and whitepaper all its mentioned about ERC token transfer. i need to transfer a hash to Etherum rough Raiden network. Is ...
0 votes
2 answers
209 views
Scaling ethereum [closed]
I have been looking up scaling issues associated with Ethereum. I have not found any resources that give an easy to understand definition of the problem. I am aware that there are efforts like Raiden, ...
0 votes
1 answer
416 views
eth_call to a constant field in contract returns "0x" on Rinkeby
I'm trying out Micro Raiden on Rinkeby testnet, but a call to 'token' field in a contract returns empty value (0x) when using infura.io directly or geth, but not on MEW connected to infura.io. This ...
2 votes
1 answer
282 views
On a Raiden network how are contracts called?
As I understand the Raiden network a smart contract is set up between two addresses, and loaded by each participant with tokens, and this instance of the smart contract sits in the blockchain. At this ...