Binance Web3 Connector JS
    Preparing search index...

    RFQ order payload. Present only when executionMode=RFQ. Contains the EIP-712 typed data to sign, the target vendor, and the signing scheme.

    BuildSwapTransactionResponseDataRfq

    interface BuildSwapTransactionResponseDataRfq {
        orderId?: string;
        signingScheme?: string;
        typedDataToSign?: object;
        vendor?: string;
    }
    Index

    Properties

    orderId?: string

    Pre-created platform order ID. Pass this as quoteId in POST /order/submit to associate the signed order with this quote.

    BuildSwapTransactionResponseDataRfq

    signingScheme?: string

    Signing scheme required by this vendor. Pass this as signingScheme in POST /order/submit.

    BuildSwapTransactionResponseDataRfq

    typedDataToSign?: object

    EIP-712 typed data for eth_signTypedData_v4. Contains types, domain, and message. Sign with the wallet that matches userWalletAddress from /quote.

    BuildSwapTransactionResponseDataRfq

    vendor?: string

    RFQ vendor that will settle this order on-chain. Pass this as the vendor field in POST /order/submit.

    BuildSwapTransactionResponseDataRfq