File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -286,8 +286,15 @@ export type BaseOrder = {
286
286
buyToken : OrderToken
287
287
/** @description The URL to the explorer page of the order */
288
288
explorerUrl : string
289
- /** @description The amount of fees paid for this order. */
290
- executedSurplusFee ?: string | null
289
+ /**
290
+ * @deprecated Use `executedFee` instead
291
+ * @description The amount of fees paid for this order.
292
+ */
293
+ executedSurplusFee : string | null
294
+ /** @description The amount of fees paid for this order */
295
+ executedFee : string | null
296
+ /** @description The token in which the fee was paid, expressed by SURPLUS tokens (BUY tokens for SELL orders and SELL tokens for BUY orders). */
297
+ executedFeeToken : OrderToken
291
298
/** @description The (optional) address to receive the proceeds of the trade */
292
299
receiver ?: string | null
293
300
owner : string
You can’t perform that action at this time.
0 commit comments