execute_swap
Facilitates swap transactions on DeFi platforms by executing trades using pre-fetched quote data, enabling efficient and precise trade automation across multiple blockchains.
Instructions
Execute a swap transaction (requires quote data)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
quoteData | Yes | Quote data from get_swap_quote |
Input Schema (JSON Schema)
{
"properties": {
"quoteData": {
"description": "Quote data from get_swap_quote",
"type": "object"
}
},
"required": [
"quoteData"
],
"type": "object"
}