> For the complete documentation index, see [llms.txt](https://wild-credit.gitbook.io/wild-credit/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wild-credit.gitbook.io/wild-credit/contract-docs/pair-factory.md).

# Pair Factory

## Address

`0x0fC7e80090bbc1740595b1fcCd33E0e82547212F`

## Events

### PairCreated

Emitted on each `createPair` function call.

```
event PairCreated(
  address indexed pair,
  address indexed tokenA,
  address indexed tokenB
)
```

## Functions

### createPair

Creates & initializes a new lending pair without adding any liquidity to it.

```
createPair(
  address tokenA,
  address tokenB
)
```
