We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dedddf commit 0e9475eCopy full SHA for 0e9475e
lazer/sdk/rust/protocol/src/jrpc.rs
@@ -278,7 +278,10 @@ mod tests {
278
"type": "funding_rate",
279
"price": 1234567890,
280
"rate": 1234567891,
281
- "funding_rate_interval": 28800
+ "funding_rate_interval": {
282
+ "secs": 28800,
283
+ "nanos": 0
284
+ }
285
}
286
},
287
"id": 1
lazer/sdk/rust/protocol/src/payload.rs
@@ -52,6 +52,7 @@ pub struct AggregatedPriceFeedData {
52
pub confidence: Option<Price>,
53
pub funding_rate: Option<Rate>,
54
pub funding_timestamp: Option<TimestampUs>,
55
+ pub funding_rate_interval: Option<u64>,
56
57
58
/// First bytes of a payload's encoding
0 commit comments