> For the complete documentation index, see [llms.txt](https://docs.ecko.finance/eckodao/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ecko.finance/eckodao/sdk/reference/eckodex-sdk/createpair.md).

# createPair

## Creating a new coin pair liquidity pool

```
.createPair({
  token0: TOKENS.KDA,
  token1: TOKENS.ABC,
  amountDesired0: 0.2,
  amountDesired1: 1.0,
  slippage: '0.05'
})
```

| Parameter        | Type    | Default Value        |
| ---------------- | ------- | -------------------- |
| `account`        | Account | config.account (†)   |
| `secretKey`      | string  | config.secretKey (†) |
| `token0`         | Token   |                      |
| `token1`         | Token   |                      |
| `amountDesired0` | number  |                      |
| `amountDesired1` | number  |                      |
| `slippage`       | string  |                      |

† Can be initialized in the SDK client constructor, i.e

```
new KaddexSdk({ account, secretKey })
```
