Wallet data endpoints
Simulate a wallet transaction
Simulate a wallet transaction. Authentication with an API key is required.
post/user/{address}/wallet/simulate
Path parameters
addressstring required
The address to simulate a transaction. Supported addresses include EVM or Solana.
Headers
Authorizationstring required
The JWT access token that authorizes the request
Request body
Response
Simulated transaction results
Example response
[
{
"success": true,
"logs": [
"Log entry 1"
],
"results": {
"delta": -1,
"metadata": {
"tokenName": "USD Coin",
"tokenSymbol": "USDC",
"tokenLogo": "https://path.to/logo.png"
}
},
"errorMessage": "An error message"
}
]