POST
/
sdk
/
{environmentId}
/
solana
/
simulateTransaction
curl --request POST \
  --url https://app.dynamicauth.com/api/v0/sdk/{environmentId}/solana/simulateTransaction \
  --header 'Content-Type: application/json' \
  --data '{
  "chain": "101, 103, 201, mainnet, devnet, etc",
  "transactions": [
    "<string>"
  ],
  "accountAddress": "vines1vzrYbzLMRdu58ou5XTby4qAqVRLmqo36NKPTg",
  "domain": "An example name",
  "method": "An example name"
}'
{
  "inAssets": [
    {
      "asset": {
        "address": "0xbF394748301603f18d953C90F0b087CBEC0E1834",
        "chainId": 123,
        "chainName": "<string>",
        "decimals": 123,
        "logoUrl": "<string>",
        "name": "<string>",
        "symbol": "<string>",
        "type": "<string>"
      },
      "transferIn": [
        {
          "rawValue": "<string>",
          "summary": "<string>",
          "usdPrice": "<string>",
          "value": "<string>"
        }
      ],
      "transferOut": [
        {
          "rawValue": "<string>",
          "summary": "<string>",
          "usdPrice": "<string>",
          "value": "<string>"
        }
      ]
    }
  ],
  "outAssets": [
    {
      "asset": {
        "address": "0xbF394748301603f18d953C90F0b087CBEC0E1834",
        "chainId": 123,
        "chainName": "<string>",
        "decimals": 123,
        "logoUrl": "<string>",
        "name": "<string>",
        "symbol": "<string>",
        "type": "<string>"
      },
      "transferIn": [
        {
          "rawValue": "<string>",
          "summary": "<string>",
          "usdPrice": "<string>",
          "value": "<string>"
        }
      ],
      "transferOut": [
        {
          "rawValue": "<string>",
          "summary": "<string>",
          "usdPrice": "<string>",
          "value": "<string>"
        }
      ]
    }
  ],
  "counterparties": [
    "0xbF394748301603f18d953C90F0b087CBEC0E1834"
  ],
  "priceData": {
    "nativeTokenUsdPrice": 123
  },
  "showTotalFiat": true,
  "validation": {
    "result": "Benign",
    "description": "<string>",
    "reason": "<string>",
    "classification": "<string>"
  },
  "assetExposures": [
    {
      "asset": {
        "address": "0xbF394748301603f18d953C90F0b087CBEC0E1834",
        "chainId": 123,
        "chainName": "<string>",
        "decimals": 123,
        "logoUrl": "<string>",
        "name": "<string>",
        "symbol": "<string>",
        "type": "<string>"
      },
      "spenderToInfo": {}
    }
  ]
}

Path Parameters

environmentId
string
required

ID of the environment

Required string length: 36
Example:

"95b11417-f18f-457f-8804-68e361f9164f"

Body

application/json
chain
string
required

The Solana chainId to simulate the transaction on

Example:

"101, 103, 201, mainnet, devnet, etc"

transactions
string[]
required
accountAddress
string
required

Valid Solana wallet address, must be a 44-character string using base58 characters

Example:

"vines1vzrYbzLMRdu58ou5XTby4qAqVRLmqo36NKPTg"

method
string
required
Maximum length: 255
Example:

"An example name"

domain
string
Maximum length: 255
Example:

"An example name"

Response

200
application/json
Simulated transaction result
inAssets
object[]
required
outAssets
object[]
required
priceData
object
required
showTotalFiat
boolean
required
counterparties
string[]

Valid blockchain wallet address, must be an alphanumeric string without any special characters

validation
object
assetExposures
object[]