-
Trying to figure out how I can call execute() with multiple function calls to the target contract. All the tests in the repo, are only using one how can pack multiple calldatas together to create multiple transactions in one atomic tx |
Beta Was this translation helpful? Give feedback.
Answered by
PaulRBerg
Nov 4, 2022
Replies: 1 comment 2 replies
-
Hello! You can only call one function at a time with Refer to the Targets wiki for guidance on how to write target contracts. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
PaulRBerg
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello! You can only call one function at a time with
execute
, but the function that you are calling can bundle up multiple function calls.Refer to the Targets wiki for guidance on how to write target contracts.