submit_gasless_swap
Execute token swaps without gas fees by signing approval and trade messages using quote data from get_gasless_quote.
Instructions
Submit a gasless swap by signing approval and trade messages (no gas fees required)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | No | Blockchain ID (optional if included in quoteData) | |
quoteData | Yes | Quote data from get_gasless_quote |
Input Schema (JSON Schema)
{
"properties": {
"chainId": {
"description": "Blockchain ID (optional if included in quoteData)",
"type": "integer"
},
"quoteData": {
"description": "Quote data from get_gasless_quote",
"type": "object"
}
},
"required": [
"quoteData"
],
"type": "object"
}