-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor DEX to fit tx limits & misc improvements #863
Conversation
…methods which modify arguments in place
* make getAction config optional * add reducer.forEach * add option to skip the action state precondition in reducer * remove the bad default of not claiming token permissions when calling other zkapps
TODO: still have to update the changelog |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Additional Question: Would it be worth hooking this up to CI and the Voter app? It doesn't have to be in this PR or anything cc @jasongitmail @nicc
LGTM! 🥳
@@ -21,11 +21,57 @@ export { assertStatePrecondition, cleanStatePrecondition }; | |||
* Gettable and settable state that can be checked for equality. | |||
*/ | |||
type State<A> = { | |||
/** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Calling for the help of @barriebyron here for these doc comments 😄 Would you happen to have any suggestions for the wording of these doc comments? Just for context, these comments will be shown to developers when they inspect the methods and in our API Reference docs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggested some text changes, lmk if helpful @MartinMinkov and teach me where feedback is ineffective, ty!
Co-authored-by: Barrie Byron <barrie@o1labs.org>
Co-authored-by: Barrie Byron <barrie@o1labs.org>
fixes issue when not analyzing methods in dex example
fixes #847
fixes #848
this.token
APIs to enable reusing AUsrun-berkeley.ts
script which runs through the happy path of setting up all zkApps, supplying & redeeming liquidity, and performing a swap;Various snarkyjs improvements that helped me achieve this DEX refactor:
state.getAndAssertEquals()
andstate.fromAppState()
, doccomment all state methodsreduce
to skip adding the action state precondition (necessary for when we want to reduce actions on a different account than our own and need permissions for doing so)reducer.forEach(actions, ...)
which is justreduce(actions, ...)
without astate
{ fromActionState, .. }
config optional in all versions ofgetActions
AccountUpdate.label
in many methods that create account udpates, to maketx.toPretty()
output easier to understand. Also, add a label for the fee payer.@method
wrapper: use cloned method inputs for hashing the function signature forcallData
, so that the hash is not changed by the method mutating the inputs@method
wrapper: in the composability case, no longer assume thatMayUseToken.InheritFromParent
is the correct default for the caller method (this was based on an earlier version ofmayUseToken
plus a misunderstanding about how it was supposed to work)TokenId
directly instead of a never-usedToken
class which contained theTokenId
module as (hard to find) staticToken.Id
Permissions.allImpossible()
for a set of permissions where nothing is allowed (more convenient thanPermissions.default()
when you want to make most actions impossible)