dex-simulate-swap
Simulate token swaps on the MantraChain DEX to view expected outcomes before execution. Verify token availability in pools using dex-get-pools
for accurate results.
Instructions
Simulate a token swap to get expected outcome without executing it - must first check two tokens are available in the DEX pools by using dex-get-pools
Input Schema
Name | Required | Description | Default |
---|---|---|---|
networkName | Yes | Name of the network to use | |
tokenInAmount | Yes | Amount of tokens to swap | |
tokenInDenom | Yes | Denomination of the token to swap from | |
tokenOutDenom | Yes | Denomination of the token to swap to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"networkName": {
"description": "Name of the network to use",
"type": "string"
},
"tokenInAmount": {
"description": "Amount of tokens to swap",
"type": "string"
},
"tokenInDenom": {
"description": "Denomination of the token to swap from",
"type": "string"
},
"tokenOutDenom": {
"description": "Denomination of the token to swap to",
"type": "string"
}
},
"required": [
"networkName",
"tokenInDenom",
"tokenInAmount",
"tokenOutDenom"
],
"type": "object"
}