POST
/
tac
/
simulator
/
simulate-message
curl --request POST \
  --url https://data.turin.tac.build/tac/simulator/simulate-message \
  --header 'Content-Type: application/json' \
  --data '{
  "executorAddress": "<string>",
  "extraData": "<string>",
  "feeAssetAddress": "<string>",
  "shardsKey": "<string>",
  "tacCallParams": {
    "arguments": "<string>",
    "methodName": "<string>",
    "target": "<string>"
  },
  "tonAssets": [
    {
      "amount": "<string>",
      "tokenAddress": "<string>"
    }
  ],
  "tonCaller": "<string>"
}'
{
  "response": {
    "debugInfo": {
      "blockNumber": 123,
      "callData": "<string>",
      "from": "<string>",
      "to": "<string>"
    },
    "estimatedGas": 123,
    "estimatedJettonFeeAmount": "<string>",
    "feeParams": {
      "currentBaseFee": "<string>",
      "isEip1559": true,
      "suggestedGasPrice": "<string>",
      "suggestedGasTip": "<string>"
    },
    "message": "<string>",
    "outMessages": [
      {
        "callerAddress": "<string>",
        "operationId": "<string>",
        "payload": "<string>",
        "shardsKey": 123,
        "targetAddress": "<string>",
        "tokensBurned": [
          {
            "amount": "<string>",
            "tokenAddress": "<string>"
          }
        ],
        "tokensLocked": [
          {
            "amount": "<string>",
            "tokenAddress": "<string>"
          }
        ]
      }
    ],
    "simulationError": "<string>",
    "simulationStatus": true
  }
}

Body

application/json
Simulation parameters
shardsKey
string
required
tacCallParams
object
required
tonAssets
object[]
required
tonCaller
string
required
executorAddress
string
extraData
string
feeAssetAddress
string

Response

200
application/json
TAC simulation response
response
object