Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
docs: typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
politeWall committed Dec 18, 2023
1 parent 61a9d5f commit f1584c6
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions front_end_script/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ createSpotOrder(
);
```

#### Exemple
#### Example

```js
createSpotOrder(
Expand Down Expand Up @@ -70,7 +70,7 @@ This function allows you to cancel an existing order by sending a transaction to
cancelSpotOrder("your_order_id_here");
```

#### Exemple
#### Example

```js
cancelSpotOrder("8");
Expand All @@ -92,7 +92,7 @@ This function retrieves information about multiple order by querying a CosmWasm
cancelSpotOrders("order_ids", "order_type", "order_owner");
```

#### Exemple
#### Example

```js
cancelSpotOrders(
Expand All @@ -116,7 +116,7 @@ This function retrieves information about a specific order by querying a CosmWas
getSpotOrder("your_order_id_here");
```

#### Exemple
#### Example

```js
getSpotOrder("1");
Expand Down Expand Up @@ -180,7 +180,7 @@ createMarginOrder(
);
```

#### Exemple
#### Example

```javascript
createMarginOrder(
Expand Down Expand Up @@ -209,7 +209,7 @@ This function allows you to cancel a margin order by sending a transaction to th
cancelMarginOrder("your_order_id_here");
```

#### Exemple
#### Example

```js
cancelMarginOrder("1");
Expand All @@ -229,7 +229,7 @@ This function retrieves information about a specific margin order by querying a
getMarginOrder("your_order_id_here");
```

#### Exemple
#### Example

```js
getMarginOrder("2");
Expand All @@ -250,7 +250,7 @@ This function retrieves information about a specific margin order by querying a
getMarginPosition("your_address", "your_order_id_here");
```

#### Exemple
#### Example

```js
getMarginPosition("elys1x5fehwug2vtkyn4vpunwkfn9zxkpxl8jg0lwuu", "255");
Expand All @@ -270,7 +270,7 @@ This function retrieves multiple margin orders by querying a CosmWasm contract o
getMarginPositions("pagination");
```

#### Exemple
#### Example

```js
getMarginPositions({ count_total: true, limit: 10, reverse: false, key: null });
Expand All @@ -292,7 +292,7 @@ This function retrieves an estimation of the value obtained by swapping one asse
SwapEstimationByDenom({"amount", "denom"}, "denom_in", "denom_out")
```

#### Exemple
#### Example

```js
SwapEstimationByDenom({
Expand All @@ -319,7 +319,7 @@ This function retrieves information about multiple order by querying a CosmWasm
getMarginOrders({"count_total", "limit", "reverse", "key"}, "order_type", "order_owner", status)
```

#### Exemple
#### Example

```js
getMarginOrders(
Expand Down Expand Up @@ -356,7 +356,7 @@ marginOpenEstimation(
);
```

#### Exemple
#### Example

```js
marginOpenEstimation(
Expand Down

0 comments on commit f1584c6

Please sign in to comment.