diff --git a/description.md b/description.md index 875be29b..e1a4695b 100644 --- a/description.md +++ b/description.md @@ -87,7 +87,7 @@ The `makerTraits` property contains order settings as bit flags and compacted nu | --- | --- | --- | | NO_PARTIAL_FILLS | 255 | If set, the order does not allow partial fills.
Partial fill only occurs when part of the required maker’s asset amount is swapped. This could be useful for large orders that can be hardly filled by only one taker. | | ALLOW_MULTIPLE_FILLS | 254 | If set, the order permits multiple fills.
More than one fill is only possible for an order that was partially filled previously. It is not possible to fill an order that was already fully filled. The flag usually works in combination with allowPartialFills flag. It doesn’t make sense to allow multiple fills without the permission for partial fills. | -| NO_IMPROVE_RATE | 253 | If set, the order does not allow the taker’s interaction to improve the rate.

By default, a taker can return more tokens to a maker, and limit order protocol allows it. But in some cases, this may lead to unpredictable results. For example, if a maker wants to buy NFT, changing amount will change the NFT token that the taker should transfer to the maker, because [ERC-721](https://ethereum.org/en/developers/docs/standards/tokens/erc-721/) uses tokenId instead of amount. Use this flag to avoid it. | +| unused | 253 | Reserved for future use. | | PRE_INTERACTION_CALL | 252 | If set, the order requires pre-interaction call.
Set the flag to execute maker’s pre-interaction call.
See [Interactions](#interactions) section for details. | | POST_INTERACTION_CALL | 251 | If set, the order requires post-interaction call.
Set the flag to execute maker’s post-interaction call.
See [Interactions](#interactions) section for details. | | NEED_CHECK_EPOCH_MANAGER | 250 | If set, an order uses epoch manager for cancelling.
See [Cancelling an order](#cancelling-an-order) for details. |