# Bootstrap Liquidity

To bootstrap liquidity, the protocol provides single-sided liquidity for outcome tokens (YES / NO)

In the code below, liquidity is provided for YES.

```solidity
// Solidity
// Assuming YES-USDC where YES is currency0 and USDC is currency1
int24 tickLower = 0;
int24 tickUpper = 600;
uint256 liquidity = 1e18;

PoolManager manager = new PoolManager(500000);
// Helpers for interacting with the pool
PoolModifyPositionTest modifyPositionRouter = new PoolModifyPositionTest(IPoolManager(address(manager)));

modifyPositionRouter.modifyPosition(
    poolKey,
    IPoolManager.ModifyPositionParams({
        tickLower: tickLower,
        tickUpper: tickUpper,
        liquidityDelta: int256(liquidity)
    }),
    ZERO_BYTES
);
```

Bootstrapping liquidity by crowd sourcing helps to reduce operational risk. It also allows users to speculate and realise their returns with guaranteed execution due to utilising the AMM model.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://memediction.gitbook.io/memediction-docs/deep-dive/bootstrap-liquidity.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
