// Same structure, wider spreads (e.g. 50, 100, 200, 400, 600 bps)
// Slot 1 = "wide" strategy
const setAskSlot1Ix = buildSetCurveInstruction(
HADRON_PROGRAM_ID, authority.publicKey,
curveMetaPda,
curvePrefabsPda,
/* slot */ 1,
"ask",
[
{ xIn: 0n, priceFactor: 1.0050, interpolation: "step" },
{ xIn: 1000n, priceFactor: 1.0100, interpolation: "linear" },
{ xIn: 2000n, priceFactor: 1.0200, interpolation: "linear" },
{ xIn: 5000n, priceFactor: 1.0400, interpolation: "step" },
{ xIn: 10000n, priceFactor: 1.0600, interpolation: "step" },
]
);