> For the complete documentation index, see [llms.txt](https://taas-docs.stokr.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://taas-docs.stokr.io/asset-origination/examples-of-asset-structures.md).

# Examples of asset structures

Depending on your use case, you can organize your assets in different ways. Here are common patterns and recommended setups:

## **Tokenized funds**

**When to use:** You're tokenizing a fund with variable token supply based on investor participation:

* Asset represents fund ownership
* Fixed investor criteria
* Token pool adjusts as investors buy or sell units

{% columns %}
{% column width="33.33333333333333%" %}

<figure><picture><source srcset="/files/SP1JYeyzskR3H8WKsbPg" media="(prefers-color-scheme: dark)"><img src="/files/koN9ULz2gSY0tQ1ffQ5W" alt=""></picture><figcaption></figcaption></figure>
{% endcolumn %}

{% column width="66.66666666666667%" %}
**Recommended setup:** One issuer, one asset (the fund), one whitelist. Mint tokens when investors purchase units and burn tokens when they sell or redeem, adjusting the pool continuously based on investor activity.
{% endcolumn %}
{% endcolumns %}

## **Structured products with tranches**

**When to use:** You're issuing assets with multiple risk/return profiles, such as structured debt securities where:

* Each tranche has different investor criteria
* Each tranche has different conditions (e.g., interest rates, risk levels)

{% columns %}
{% column width="33.33333333333333%" %}

<figure><picture><source srcset="/files/jWrNRyoxHPnyRSTfwLqy" media="(prefers-color-scheme: dark)"><img src="/files/Z6oeTN0q8rFhQS4QrBGF" alt=""></picture><figcaption></figcaption></figure>
{% endcolumn %}

{% column width="66.66666666666667%" %}
**Recommended setup:** One issuer, multiple assets (one per tranche), with tailored whitelists. For example, if tranches range from low-risk to high-risk, create whitelists where high-risk includes only qualified investors, while low-risk includes those investors plus additional ones qualified for conservative investments.
{% endcolumn %}
{% endcolumns %}

## **Working capital for production batches**

**When to use:** You regularly produce batches of the same product and need working capital for each batch, such as annual wine vintages where each vintage represents a separate investment opportunity:

* Each production batch becomes its own asset
* Same investor criteria across all batches (same risk profile and investor type)
* Investors participate in specific batches and receive returns tied to that batch's performance
* Each batch has its own primary distribution period

{% columns %}
{% column width="33.33333333333333%" %}

<figure><picture><source srcset="/files/ygOPw212Ku4gNNRQBiOq" media="(prefers-color-scheme: dark)"><img src="/files/ooGdYV9NNQHSTdhwZMht" alt=""></picture><figcaption></figcaption></figure>
{% endcolumn %}

{% column width="66.66666666666667%" %}
**Recommended setup:** One issuer, one asset per production batch, one whitelist shared across all batches. This allows the same pool of qualified investors to participate in whichever batches they choose, while keeping the economics of each batch separate.
{% endcolumn %}
{% endcolumns %}

## **Series issuance**

**When to use:** You're issuing tokens in multiple batches over time, such as expanding your equity share pool through multiple rounds:

* Same investor criteria across all batches
* Identical asset conditions (same class of shares, same rights, same profit sharing)
* Time-spaced primary market distributions to gradually increase total supply

{% columns %}
{% column width="33.33333333333333%" %}

<figure><picture><source srcset="/files/XxxJxjG3Q1KSZhZpuQWe" media="(prefers-color-scheme: dark)"><img src="/files/atgc4acGpGwsZoW4GHg6" alt=""></picture><figcaption></figcaption></figure>
{% endcolumn %}

{% column width="66.66666666666667%" %}
**Recommended setup:** One issuer, one asset, one whitelist. Mint new token batches as needed and proceed through the distribution process for each batch.

{% endcolumn %}
{% endcolumns %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://taas-docs.stokr.io/asset-origination/examples-of-asset-structures.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
