create_execution_intent
Create a propose-only execution intent; returns an approval URL to hand to the user.
Lane 1 (non-custodial default): builds the unsigned swap transaction server-side, persists it as an intent, and returns {intent_id, approval_url}. NOTHING executes until the user opens the approval URL in their browser and signs with their own wallet. This tool never signs and never sees a key. amount is in input-token base units. The quote includes the technology service fee. After the user approves, poll get_intent_status and report ONLY the persisted on-chain state (CONFIRMED before any success claim).
FEE PARITY (follow-up to ):
the on-chain technology service fee baked into the unsigned tx is now
resolved through the SAME discount-aware pipeline as jupiter_swap
-- the tokenized-security classification is resolved ONCE here via
the authoritative registry-backed classifier (parity with
jupiter_swap's call site) and, together with pay_in_crank,
determines the quoted platformFeeBps. Without this an intent
proposed via this Lane 1 rail could be fee-classified differently
from the identical swap executed via jupiter_swap. Decision:
pay_in_crank IS exposed here (not just is_security) -- the
fee rate is a quote-time input baked into the unsigned tx before the
user ever reaches the approve page, so an agent must be able to
request the pay-in-$CRANK discount at proposal time, same as it can
on the direct swap path.
GEO GATE: when either leg is a tokenized
security this call is geo-gated (Reg S = no US persons) and
OFAC-screened, same control jupiter_swap/trade_equity
enforce -- jurisdiction declares the caller's jurisdiction once,
ip is the caller's origin IP for the Reg-S IP layer.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ip | No | ||
| amount | Yes | ||
| caller_id | No | ||
| input_token | Yes | ||
| jurisdiction | No | ||
| output_token | Yes | ||
| pay_in_crank | No | ||
| slippage_bps | No | ||
| wallet_address | Yes | ||
| idempotency_key | No | ||
| allow_unverified | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||