
Transaction Simulator
Preview the exact results of blockchain transactions without sending them on-chain.
Simulate transactions on any EVM chain
Simulate transactions to preview their exact outcomes across 90+ EVM chains, preventing transaction failures, security risks, and unnecessary gas costs in your dapp and development.
Industry-recognized simulations for successful DeFi transactions
As an essential infrastructural component of all major dapps and wallets, Tenderly Transaction Simulator provides human-readable insights to users across DeFi.
Indispensable simulation infrastructure for transaction insights
Pioneering simulation technology in the Web3 space, Tenderly Transaction Simulator sets the standard for previewing simple and complex transactions against real-time and historical data.

Powering major DeFi solutions
How to simulate transactions
Integrate and run transaction simulations through Tenderly Node RPC or explore simulated transactions in the Dashboard.
123456789101112131415161718
curl https://mainnet.gateway.tenderly.co/$TENDERLY_NODE_ACCESS_KEY
-X POST
-H "Content-Type: application/json"
-d '{
"id": 0,
"jsonrpc": "2.0",
"method": "tenderly_simulateTransaction",
"params": [
{
"from": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
"to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
"gas": "0x0",
"gasPrice": "0x0",
"value": "0x0",
"data": "0xa9059cbb00000000000000000000000020a5814b73ef3537c6e099a0d45c798f4bd6e1d60000000000000000000000000000000000000000000000000000000000000001"
},
"latest"
]
}'