Skip to content

Commit 722e9b8

Browse files
authored
Update transfer event param sourceAssetChainId (#815)
1 parent 556da79 commit 722e9b8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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.5"
56+
version = "1.14.6"
5757

5858
repositories {
5959
google()

src/commonMain/kotlin/exchange.dydx.abacus/functional/ClientAnalyticEvents.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ class ClientTrackableEventType {
154154
override val name: String get() = "DepositInitiated"
155155
override val customParameters: Map<String, Any> get() = mapOf(
156156
"sourceAssetDenom" to transferInput.token,
157-
"sourceAssetChainID" to transferInput.chain,
157+
"sourceAssetChainId" to transferInput.chain,
158158
"amountIn" to transferInput.size?.size,
159159
"amountOut" to summary?.toAmount,
160160
"usdAmountOut" to summary?.toAmountUSDC,
@@ -211,7 +211,7 @@ class ClientTrackableEventType {
211211
override val name: String get() = "WithdrawInitiated"
212212
override val customParameters: Map<String, Any> get() = mapOf(
213213
"sourceAssetDenom" to transferInput.token,
214-
"sourceAssetChainID" to transferInput.chain,
214+
"sourceAssetChainId" to transferInput.chain,
215215
"amountIn" to transferInput.size?.size,
216216
"amountOut" to summary?.toAmount,
217217
"usdAmountOut" to summary?.toAmountUSDC,

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.5'
3+
spec.version = '1.14.6'
44
spec.homepage = 'https://github.com/dydxprotocol/v4-abacus'
55
spec.source = { :http=> ''}
66
spec.authors = ''

0 commit comments

Comments
 (0)