# Trade Offer (TradeOffer)

A **sell order** that allows users to list NFTs for sale at a specified price.

Structure Definition

```
public struct TradeOffer has key, store {
    id: UID,                           // Unique identifier for the trade offer
    offerer: address,                  // Address of the seller listing the NFTs
    collection_id: ID,                 // ID of the NFT collection
    offered_asset_ids: vector<u64>,    // List of NFT asset IDs being sold
    requested_currency: TypeName,      // Currency type required for payment
    requested_amount: u64,             // Price per NFT in the specified currency
    status: u8,                        // Current status of the offer (OPEN, FILLED, etc.)
    timestamp: u64,                    // Timestamp when the offer was created
    trade_ledger_id: ID                 // Reference to the corresponding trade ledger
}

```

#### **Purpose**

* Allows NFT owners to list their assets for sale.
* Defines the price per NFT and accepted currency.
* Supports **status updates** (`open`, `filled`, `cancelled`).


---

# Agent Instructions: 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:

```
GET https://docs.artinals.com/artinals-protocol/market-module/data-structures/trade-offer-tradeoffer.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
