From 984048bb3b34f053844730d562a567e0bc4dbac1 Mon Sep 17 00:00:00 2001 From: Julie Driscoll <392830+penelopus@users.noreply.github.com> Date: Fri, 31 Oct 2025 12:35:40 -0700 Subject: [PATCH] update param to align with Futures aggs endpoint update (transaction_count -> transactions) --- rest/models/futures.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest/models/futures.go b/rest/models/futures.go index 34bd2d39..39ccad7a 100644 --- a/rest/models/futures.go +++ b/rest/models/futures.go @@ -56,7 +56,7 @@ type FuturesAggregate struct { SessionEndDate string `json:"session_end_date,omitempty"` SettlementPrice float64 `json:"settlement_price,omitempty"` Ticker string `json:"ticker,omitempty"` - Transactions int64 `json:"transaction_count,omitempty"` + Transactions int64 `json:"transactions,omitempty"` Volume int64 `json:"volume,omitempty"` WindowStart Nanos `json:"window_start,omitempty"` }