> For the complete documentation index, see [llms.txt](https://docs.decentraland.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.decentraland.org/contributor/contributor-zh/nei-rong/shi-ti-lei-xing/stores.md).

# 商店

商店是链下的 [实体](https://github.com/decentraland/docs/blob/main/contributor/entities/README.md) 用于表示由用户管理的市场站点。它们包含用于向买家展示的描述和图片，以及有关商店所有者的信息。

### 指针 <a href="#pointers" id="pointers"></a>

商店指针是命名空间中的 URN，位于 `链下` 中，格式如下：

```
urn:decentraland:off-chain:marketplace-stores:<owner-address>
```

地址段是商店所有者的 Ethereum 地址。例如：

```
urn:decentraland:off-chain:marketplace-stores:0xa2a1dc503be6fdb7878f58f053ded40564e3b9b2
```

### 元数据字段

| 字段    | 值                                                                                                       |
| ----- | ------------------------------------------------------------------------------------------------------- |
| `id`  | 该 [指针](https://github.com/decentraland/docs/blob/main/contributor/pointers/README.md) 可解析到（或曾经可解析到）此商店。 |
| `描述`  | 此商店的显示标题。                                                                                               |
| `所有者` | 所有者的 Ethereum 地址。                                                                                       |
| `图片`  | 一个包含 `{ file, name }` 引用图片的对象（见下文）。                                                                     |
| `链接`  | 一个包含 `{ name, url }` 包含社交媒体或网站链接的对象（见下文）。                                                               |

#### 图片

商店会有一张图片在市场中展示给买家，每张图片都有一个标识其角色的名称。常见的 `图片` 数组只有一个元素，名称为 `cover`，如下所示：

```json
[
  {
    "name": "cover",
    "file": "imgs/store-logo.png"
  }
]
```

#### 链接

所有者可以为商店添加外部链接，例如社交媒体资料和外部网站。通常会包含 Facebook 和 Discord 的 URL。示例：

```json
[
  {
    "name": "facebook",
    "url": "https://www.facebook.com/mydclstore"
  },
  {
    "name": "website",
    "url": "https://mydclstore.com"
  }
]
```


---

# 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://docs.decentraland.org/contributor/contributor-zh/nei-rong/shi-ti-lei-xing/stores.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.
