Skip to content

Commit 1db6139

Browse files
authored
Add config urls (#800)
1 parent 18a6f73 commit 1db6139

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

build.gradle.kts

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

5454
group = "exchange.dydx.abacus"
55-
version = "1.12.72"
55+
version = "1.12.73"
5656

5757
repositories {
5858
google()

src/commonMain/kotlin/exchange.dydx.abacus/state/manager/Environment.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,8 @@ data class EnvironmentLinks(
8787
val withdrawalGateLearnMore: String?,
8888
val equityTiersLearnMore: String?,
8989
val tradingRewardsLearnMore: String?,
90+
val incentiveProgram: String?,
91+
val incentiveProgramLeaderboard: String?,
9092
) {
9193
companion object {
9294
fun parse(
@@ -111,6 +113,8 @@ data class EnvironmentLinks(
111113
val equityTiersLearnMore = parser.asString(data["equityTiersLearnMore"])
112114
val vaultTos = parser.asString(data["vaultTos"])
113115
val tradingRewardsLearnMore = parser.asString(data["tradingRewardsLearnMore"])
116+
val incentiveProgram = parser.asString(data["incentiveProgram"])
117+
val incentiveProgramLeaderboard = parser.asString(data["incentiveProgramLeaderboard"])
114118
return EnvironmentLinks(
115119
tos = tos,
116120
privacy = privacy,
@@ -130,6 +134,8 @@ data class EnvironmentLinks(
130134
withdrawalGateLearnMore = withdrawalGateLearnMore,
131135
equityTiersLearnMore = equityTiersLearnMore,
132136
tradingRewardsLearnMore = tradingRewardsLearnMore,
137+
incentiveProgram = incentiveProgram,
138+
incentiveProgramLeaderboard = incentiveProgramLeaderboard,
133139
)
134140
}
135141
}

src/commonTest/kotlin/exchange.dydx.abacus/tests/payloads/AbacusMockData.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ class AbacusMockData {
8686
withdrawalGateLearnMore = "https://help.dydx.exchange/en/articles/8981384-withdrawals-on-dydx-chain#h_23e97bc665",
8787
equityTiersLearnMore = "https://help.dydx.trade/en/articles/171918-equity-tiers-and-rate-limits",
8888
tradingRewardsLearnMore = "https://docs.dydx.exchange/concepts-trading/rewards_fees_and_parameters",
89+
incentiveProgram = null,
90+
incentiveProgramLeaderboard = null,
8991
),
9092
walletConnection = WalletConnection(
9193
walletConnect = WalletConnect(

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

0 commit comments

Comments
 (0)