Interface SellParams

Interface representing the parameters for Checkout.sell

interface SellParams {
    provider: Web3Provider;
    orders: SellOrder[];
}

Properties

Properties

provider: Web3Provider

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.