changedInput schema / properties / fromId / description
Previous value: -"Cursor-like starting id for incremental pagination streams."New value: +"Optional continuation cursor (order `id` / opaque string from prior browsing). Use with `limit` when the API supports stable cursor paging instead of only offset."
changedInput schema / properties / isFulfilled / description
Previous value: -"Filter by order lifecycle state: `FULFILLED` or `UNFULFILLED`."New value: +"Lifecycle filter: `FULFILLED` completed orders vs `UNFULFILLED` still open/active."
changedInput schema / properties / isMatching / description
Previous value: -"Filter by matching capability/status according to backend semantics."New value: +"When true with `myAddress` set, narrow to orders where that address participates in matching context (provider/counterparty semantics per TronSave). Omit when not needed."
changedInput schema / properties / isOwner / description
Previous value: -"If true, keep only orders where `myAddress` is owner/requester."New value: +"When true with `myAddress` set, return only orders where that address is the owner/requester side. Ignored or ineffective if `myAddress` is omitted (backend-dependent)."
changedInput schema / properties / limit / description
Previous value: -"Page size (max 100). Use small values for iterative browsing."New value: +"Maximum rows to return in one call (hard cap 100). Prefer modest limits to avoid huge payloads; page with `offset` and/or `fromId`."
changedInput schema / properties / myAddress / description
Previous value: -"Viewer/anchor wallet address used by backend ownership/matching context."New value: +"TRON base58 viewer address for ownership/matching filters. Often required for meaningful results when using `isOwner` or `isMatching`."
changedInput schema / properties / offset / description
Previous value: -"Zero-based pagination offset (skip N rows)."New value: +"Zero-based row offset for page N (skip first `offset` matches). Omit when starting from the first page."
changedInput schema / properties / receivers / description
Previous value: -"Optional receiver-address allowlist."New value: +"Optional allowlist of receiver TRON addresses; only orders whose receiver is in this list are returned."
addedInput schema / properties / receivers / items / minLength
Added value: +1
changedInput schema / properties / resourceType / description
Previous value: -"Filter by resource type (`ENERGY` or `BANDWIDTH`)."New value: +"Restrict to `ENERGY` or `BANDWIDTH` orders; omit for both."
changedInput schema / properties / sortFilterBy / description
Previous value: -"Optional sort list, applied in order."New value: +"Ordered list of `{ fieldType, arrangeType }` entries; sorts are applied in sequence (primary, then tie-breakers)."
addedInput schema / properties / sortFilterBy / items / properties / arrangeType / description
Added value: +"`ASC` ascending or `DESC` descending for `fieldType`."
addedInput schema / properties / sortFilterBy / items / properties / fieldType / description
Added value: +"Which order field to sort by (e.g. `CREATE_AT`, `PRICE`, `RESOURCE_AMOUNT`)."
addedOutput schema / properties / orders / description
Added value: +"Matching orders for this page; may be large—use pagination inputs to chunk."
addedOutput schema / properties / orders / items / properties / apy / description
Added value: +"Annualized yield hint as returned by the API (see TronSave semantics)."
addedOutput schema / properties / orders / items / properties / createdAt / description
Added value: +"Order creation time (ISO-8601)."
addedOutput schema / properties / orders / items / properties / durationSec / description
Added value: +"Delegation duration in seconds."
addedOutput schema / properties / orders / items / properties / id / description
Added value: +"Order id (`MObjectId`); use with `tronsave_get_order` or mutate tools."
addedOutput schema / properties / orders / items / properties / isMatching / description
Added value: +"Whether this order matches the viewer/matching filter used in the query."
addedOutput schema / properties / orders / items / properties / isOwner / description
Added value: +"Whether the list query’s viewer context treats this row as owned by `myAddress`."
addedOutput schema / properties / orders / items / properties / receiver / description
Added value: +"Receiver wallet and related party info for the delegation leg."
addedOutput schema / properties / orders / items / properties / receiver / properties / address / description
Added value: +"TRON base58 address for this party."
addedOutput schema / properties / orders / items / properties / remainAmount / description
Added value: +"Resource not yet consumed or remaining to fulfill."
changedOutput schema / properties / orders / items / properties / requester / anyOf
Previous value: -[
- {
- "additionalProperties": false,
- "properties": {
- "address": {
- "type": "string"
- }
- },
- "required": [
- "address"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "properties": {
+ "address": {
+ "description": "TRON base58 address for this party.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "address"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
addedOutput schema / properties / orders / items / properties / requester / description
Added value: +"Requester party when present."
addedOutput schema / properties / orders / items / properties / resourceAmount / description
Added value: +"Original resource amount on the order."
addedOutput schema / properties / orders / items / properties / resourceType / description
Added value: +"`ENERGY` or `BANDWIDTH`."
addedOutput schema / properties / orders / items / properties / typeOrder / description
Added value: +"Market order flavor."
addedOutput schema / properties / orders / items / properties / unitPrice / description
Added value: +"Unit price in SUN."