Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ Transaction methods to perform actions on the V3 Pool contract

### supplyBundle

A [bundle method](#bundle-methods) for supply, formerly deposit, which supplies
A bundle method for supply, formerly deposit, which supplies
the underlying asset into the Pool reserve. For every token that is supplied, a
corresponding amount of aTokens is minted.

Expand Down Expand Up @@ -540,8 +540,7 @@ const supplyBundle: ActionBundle = await poolBundle.supplyBundle({
amount,
onBehalfOf,
});

// Submit bundle components as shown in #bundle-methods section
```

</details>

Expand Down Expand Up @@ -1135,7 +1134,7 @@ transactions

### depositBundle

A [bundle method](#bundle-methods) for deposit, which supplies the underlying
A bundle method for deposit, which supplies the underlying
asset into the Pool reserve. For every token that is supplied, a corresponding
amount of aTokens is minted.

Expand Down Expand Up @@ -1165,8 +1164,7 @@ const depositBundle: ActionBundle = await lendingPoolBundle.depositBundle({
amount,
onBehalfOf,
});

// Submit bundle components as shown in #bundle-methods section
```

</details>

Expand Down