EVM transactions
EVM quotes return a ready-to-broadcasttx object.
Your integration signs the transaction and broadcasts it through your RPC provider. The transaction sender pays the network fee.
EVM flow: Quote → Approve → Sign tx → Broadcast → Confirm
Use the Standard approval type. Approve the approvalTarget from the quote before you broadcast the transaction.
Solana RFQ transactions
Solana RFQ quotes returnsolana_tx and blockhash.
Your integration signs solana_tx and broadcasts it before the blockhash expires.
Solana flow: Quote → Sign solana_tx → Broadcast → Confirm
See the RFQ API quickstart and Aggregation API quickstart for complete examples.