wait_a_moment
Introduce controlled delays in cryptocurrency operations to manage timing requirements, handle rate limits, or coordinate sequential actions within automated trading workflows.
Instructions
Wait for some short amount of time, no more than 10 seconds
Input Schema
Name | Required | Description | Default |
---|---|---|---|
seconds | Yes |
Input Schema (JSON Schema)
{
"properties": {
"seconds": {
"title": "Seconds",
"type": "number"
}
},
"required": [
"seconds"
],
"type": "object"
}