Replies: 2 comments
-
N.B. I've realized we are missing this feature after being asked by a potential user (Perpetual Protocol): |
Beta Was this translation helpful? Give feedback.
0 replies
-
Resolved in #785. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The
withdrawMultiple
function is severely limited at the moment: it only works if all the streams in the input array have the same recipient. This issue has been previously flagged by @razgraf here, but his criticism at the time was in the context of the proxy target.Since we don't have a proxy target anymore, the only solution now is to refactor the
withdrawMultiple
function to implement this behavior. There are two possible approaches:to
parameter and have the smart contract query the recipient for each stream in the input array.to
addresses.There are pros and cons to each approach. Ultimately, we might want to implement both. WDYT, @razgraf, @andreivladbrg?
At a minimum, I think we should definitely implement at least the first approach, and so I have created this issue: #774
Beta Was this translation helpful? Give feedback.
All reactions