Troubleshooting
Deployment
I deployed a task, but the template doesn't appear on the explorer UI
Check that you are connected with the wallet associated with the API key used to deploy the task.
Execution
My task should have executed, but I don’t see any execution on the explorer UI
First, make sure you haven’t run out of credits.
If you have enough credits, review your task code as there might be an error in it. To verify that your task works as expected, test it under different scenarios using the Mimic Protocol test library.
My task execution failed or didn’t produce the expected outputs
If you’re using a smart account, ensure that the signer of the task configuration is the owner of that smart account.
If your task queries expect responses that are too large, or if the task produces too many intents, try batching them.
My task execution succeeded and produced the expected outputs, but they were discarded
There can be multiple reasons for this:
Check that the intent amount is the expected one, and ensure the user has enough balance.
If the user is an EOA, ensure the settler has sufficient token allowance.
If the user is a smart account, ensure the settler set in the smart account is the correct one.
Check that the smart contract addresses used in the task are correct for the current chain.
Try increasing the maximum fee. If the intent is a swap, try decreasing the expected minimum amount out.
If the intent is a call, the target contract might be reverting. Simulate the smart contract call using the target, data, and value shown in the intent detail on the explorer UI. You can use tools like Tenderly to run the simulation.
Last updated