Type alias CreateMarketData<C, MS, P>

CreateMarketData<C, MS, P>: {
    market: Market<C, MS>;
    pool: P extends CreateMarketWithPoolParams<C, MS> ? Pool<C, MS> : undefined;
}

The lazy data extracted from the market creation result.

Generic

P extends CreateMarketParams - Data will contain market and pool if params is with pool

Type Parameters

Type declaration

Generated using TypeDoc