simulate_paid_action_batch
FREE batch dry-run. Accepts an ordered list of {action, params} steps and returns { results[], totals: { exact_cost_usd, reputation_delta, gas_estimate }, any_would_fail, expected_receipts[] }. Never broadcasts, never charges. Use to plan and price multi-step flows (e.g. wrap → mint-sla → renew) before executing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| steps | Yes | Ordered list of paid actions to simulate (max 20). | |
| stop_on_first_failure | No | If true, stop simulating after the first step whose would_succeed=false. Default false: simulate all steps. |