File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ needs-hedera-review: Yes
1111status : Last Call
1212last-call-date-time : 2025-12-30T07:00:00Z
1313created : 2025-10-17
14- updated : 2025-12 -16
14+ updated : 2026-01 -16
1515requires : 1261
1616---
1717
@@ -316,8 +316,28 @@ For high-volume transactions:
316316## Mirror Node Changes
3173171 . Add high volume fields to relevant APIs (e.g. ` /api/v1/transactions ` ,
318318 ` /api/v1/transactions/{id} ` and the list of transactions
319- within ` /api/v1/accounts/{id} ` )
320- 2 . Incorporate high volume as an estimation option in fee estimation.
319+ within ` /api/v1/accounts/{id} ` ). An example response is shown below with
320+ other fields omitted:
321+ ``` json
322+ {
323+ ...
324+ "high_volume" : true
325+ }
326+ ```
327+
328+ 2 . Incorporate high volume as an estimation option in fee estimation. The existing
329+ fee estimate JSON response will be enhanced to add a new ` high_volume_multiplier ` field.
330+ The actual totals in the response will not be multiplied by the multiplier.
331+ If users want to see how their fees are impacted by high volume pricing they only need
332+ to multiply the fee ` total ` by the new multiplier to get the final pricing. This allows
333+ users to get both the regular and high-volume pricing with a single call and simplifies
334+ the API by not requiring another parameter.
335+ ``` json
336+ {
337+ ...
338+ "high_volume_multiplier" : 100
339+ }
340+ ```
321341
322342## Backwards Compatibility
323343No changes for transactions without the ` high_volume ` flag. Existing
You can’t perform that action at this time.
0 commit comments