import { QuotePrivateRequestInterface } from './quote-private-request.interface'; export interface SwapPrivateRequestInterface extends QuotePrivateRequestInterface { /** * Id of the calculated trade */ id: string; /** * Enable changed amount between quote and swap check */ enableChecks?: boolean; /** * Wallet address to send tokens to on the destination blockchain */ receiver: string; /** * Address for refunds in src chain in case of reverted private swap */ refundAddress: string; }