Noel Kwan
Noel Kwan
In GitLab by @Akaa on May 17, 2021, 07:23 A proxy (from my understanding) is a contract to be shared by all Dapps that intend to close on-chain transactions. Here,...
In GitLab by @Akaa on May 17, 2021, 19:21 You don't need `deposit`. Use CALLDATA, get everything from it. The proxy contract should be like state machine: 1) Start closing(Create...
In GitLab by @fahree on May 17, 2021, 23:35 1. I wrote several "simple apps" in EVM assembly in `simple-apps.ss`, including the trivial CREATE2 wrapper, a batching proxy, etc. 2....
In GitLab by @fahree on May 17, 2021, 23:37 Note that `deposit` is a short-lived variable, only valid during the transaction. It should not be part of the persistent merkleized...
In GitLab by @fahree on May 17, 2021, 23:41 And indeed, we don't want any `SELFDESTRUCT` in a shared contract, only a variant that would account for the current interaction's...
In GitLab by @fahree on May 17, 2021, 23:44 @Akaa I admit I don't understand everything you say :-( @isd If that helps, you can create a Google doc about...
In GitLab by @alex413 on May 18, 2021, 03:36 @fare What's the rough deliverable date for this issue?
In GitLab by @isd on May 18, 2021, 04:44 > Note that `deposit` is a short-lived variable, only valid during the transaction. It should not be part of the persistent...
In GitLab by @isd on May 18, 2021, 05:04 I'm still fuzzy on exactly what the proxy is *for*; my current understanding is that it is itself a contract that...
In GitLab by @isd on May 18, 2021, 05:07 Another subtask that needs to happen to multiplex contracts: right now the addresses for the participants are compiled into the contract...