// Same structure, wider spreads (e.g. 50, 100, 200, 400, 600 bps)
// Slot 1 = "wide" strategy
const setAskSlot1Ix = pool.setCurve(authority, {
side: Side.Ask,
defaultInterpolation: Interpolation.Linear,
slot: 1,
points: [
{ amountIn: 0n, priceFactor: 1.0050, interpolation: Interpolation.Step },
{ amountIn: 1000n, priceFactor: 1.0100, interpolation: Interpolation.Linear },
{ amountIn: 2000n, priceFactor: 1.0200, interpolation: Interpolation.Linear },
{ amountIn: 5000n, priceFactor: 1.0400, interpolation: Interpolation.Step },
{ amountIn: 10000n, priceFactor: 1.0600, interpolation: Interpolation.Step },
],
});