requestToCancelQuote
Cancel a pending quote — how a partyA cancels a resting LIMIT order. The core requestToCancelQuote(quoteId) must be attributed to the subaccount, so it is encoded and routed through AccountLayer._call(account, …); the connected wallet must be the subaccount’s owner (no session key).
A PENDING (unlocked) quote cancels instantly. A LOCKED quote (a partyB is committed) enters CANCEL_PENDING and waits out the force-cancel cooldown before it can be finished with forceCancelQuote.
import { requestToCancelQuote } from "@symmio/trading-core";
const hash = await requestToCancelQuote(config, { account: "0xsub…", quoteId: 42n });Parameters
accountAddressrequiredThe subaccount (partyA) that owns the quote. The call is routed through the AccountLayer _call proxy so the
diamond sees this subaccount as the caller.
quoteIdbigintrequiredThe on-chain id of the quote to cancel.
fromAddressoptionalOverride the wallet address that signs. Defaults to the account’s owner.
chainIdnumberoptionalOptional chain override.
Returns
HashMutation options
import { requestToCancelQuoteMutationOptions } from "@symmio/trading-core";
import { useMutation } from "@tanstack/react-query";
useMutation(requestToCancelQuoteMutationOptions(config));Related
- React
useRequestToCancelQuote— the hook wrapper. - forceCancelQuote — finishes a stalled
CANCEL_PENDINGcancel. - Cancel a quote — the full lifecycle.