cpu_get_my_offers_received
View incoming purchase offers on your Cells from other players. Paginate through active bids and retrieve each order's details and orderHash to accept a sale.
Instructions
The active offers standing on YOUR Cells on the public NFT marketplace — what other players are bidding to buy your land, one page at a time. The wallet is the authenticated one; there is no wallet input. For the bids you published yourself, call cpu_get_my_offers instead. An offer carries its kind: item (bound to one exact Cell), trait, or collection; a trait or collection offer has no single bound Cell, so its tokenId may be null while it is still fillable with one of your Cells. PAGINATION: omit cursor for the first page, then pass back the exact nextCursor you received. Stop only when nextCursor is null — a page with fewer than 50 rows may still have another page, so never decide you are done by counting rows. Every amount is a base-unit decimal integer STRING (never a number), paired with a currency carrying the symbol and decimals you need to read it. Every row carries the exact orderHash needed to accept it. Ordinary map and Cell reads carry no marketplace data — ask here.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | Page cursor. Omit it (or pass null) for the first page, then pass back the exact `nextCursor` the previous page returned. There is no page-size input and no wallet input: the page always describes the authenticated wallet. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| items | Yes | ||
| nextCursor | Yes |