Interface SellParams

Interface representing the parameters for Checkout.sell

interface SellParams {
    provider: WrappedBrowserProvider | Eip1193Provider;
    orders: SellOrder[];
}

Properties

Properties

provider: WrappedBrowserProvider | Eip1193Provider

The provider to use for the sell.

orders: SellOrder[]

An array of sell orders to execute. Currently only processes the first order in the array until batch processing is supported.

""