sell_etf_token
Simulate selling ETF tokens back to base currency on Paloma DEX across multiple EVM chains. Get transaction details for converting ETF holdings without executing actual trades.
Instructions
Sell ETF tokens back to base currency (simulation only - no actual transaction).
Args:
chain_id: Chain ID (1, 10, 56, 100, 137, 8453, 42161)
etf_token_address: Address of the ETF token to sell
etf_amount: Amount of ETF tokens to sell (in token units, e.g. '10.5')
Returns:
JSON string with transaction simulation details.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chain_id | Yes | ||
| etf_token_address | Yes | ||
| etf_amount | Yes |
Input Schema (JSON Schema)
{
"properties": {
"chain_id": {
"title": "Chain Id",
"type": "string"
},
"etf_amount": {
"title": "Etf Amount",
"type": "string"
},
"etf_token_address": {
"title": "Etf Token Address",
"type": "string"
}
},
"required": [
"chain_id",
"etf_token_address",
"etf_amount"
],
"type": "object"
}