Skip to content

Commit 1f98209

Browse files
authored
ENG-522 Add volume to place order event (#820)
1 parent cea8e9c commit 1f98209

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ allprojects {
5353
}
5454

5555
group = "exchange.dydx.abacus"
56-
version = "1.14.10"
56+
version = "1.14.11"
5757

5858
repositories {
5959
google()

src/commonMain/kotlin/exchange.dydx.abacus/utils/AnalyticsUtils.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ class AnalyticsUtils {
138138
"timeInForce" to payload.timeInForce,
139139
"triggerPrice" to payload.triggerPrice,
140140
"type" to payload.type,
141+
"volume" to payload.price * payload.size,
141142
) as IMap<String, Any>?
142143
}
143144

@@ -244,6 +245,7 @@ class AnalyticsUtils {
244245
"postOnly" to order.postOnly,
245246
"reduceOnly" to order.reduceOnly,
246247
"cancelReason" to order.cancelReason,
248+
"volume" to order.price * order.size,
247249
) as IMap<String, Any>?
248250
}
249251
}

v4_abacus.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'v4_abacus'
3-
spec.version = '1.14.10'
3+
spec.version = '1.14.11'
44
spec.homepage = 'https://github.com/dydxprotocol/v4-abacus'
55
spec.source = { :http=> ''}
66
spec.authors = ''

0 commit comments

Comments
 (0)