Skip to content

Commit

Permalink
fix netlify id
Browse files Browse the repository at this point in the history
  • Loading branch information
canonbrother committed Apr 26, 2021
1 parent d3d16ec commit d4e0fd2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions website/docs/jellyfish/api/poolpair.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
id: poolPair
id: poolpair
title: Pool Pair API
sidebar_label: Pool Pair API
slug: /jellyfish/api/poolpair
Expand All @@ -8,7 +8,7 @@ slug: /jellyfish/api/poolpair
```js
import {Client} from '@defichain/jellyfish'
const client = new Client()
// Using client.poolPair.
// Using client.poolpair.
const something = await client.poolpair.method()
```

Expand Down Expand Up @@ -65,7 +65,7 @@ interface PoolPairPagination {

Returns information about pools

```ts title="client.poolPair.getPoolPair()"
```ts title="client.poolpair.getPoolPair()"
interface poolpair {
getPoolPair (symbol: string, verbose = true): Promise<PoolPairResult>
}
Expand Down Expand Up @@ -102,7 +102,7 @@ interface PoolPairInfo {

Add pool liquidity transaction

```ts title="client.poolPair.addPoolLiquidity()"
```ts title="client.poolpair.addPoolLiquidity()"
interface poolpair {
addPoolLiquidity (from: AddPoolLiquiditySource, shareAddress: string, options: AddPoolLiquidityOptions = {}): Promise<string>
}
Expand All @@ -125,7 +125,7 @@ interface AddPoolLiquidityUTXO {

Returns information about pools

```ts title="client.poolPair.listPoolShares()"
```ts title="client.poolpair.listPoolShares()"
interface poolpair {
listPoolShares (
pagination: PoolPairPagination = {
Expand Down

0 comments on commit d4e0fd2

Please sign in to comment.