> For the complete documentation index, see [llms.txt](https://docs.paddlefi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.paddlefi.com/api-documentation/tutorials.md).

# Tutorials

This tutorial will guide you through quickly completing the following operations:

#### **OTC Market**

1. Listing Assets for Sale
2. Buying Assets
3. Closing My Listing

#### **Loan Market**

1. Creating a Loan Order
2. Lending an Asset
3. Repaying a Loan
4. Liquidating Overdue Orders
5. Closing My Lending Order

***

This tutorial is intended for **front-end developers**, and requires a basic understanding of front-end development as well as knowledge of interacting with smart contracts.

For reference, check out the **web3.js documentation**: <https://docs.web3js.org/>

**Example Code Snippet for Connecting to a Web3 Provider:**

```javascript
javascriptCopy codeconst web3 = new Web3(Provider || new Web3.providers.HttpProvider(RPCUrl));
```
