Skip to content

Commit 31c5283

Browse files
authored
Add simpleTradeLearnMore link (#779)
1 parent b82141c commit 31c5283

File tree

4 files changed

+23
-19
lines changed

4 files changed

+23
-19
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.13.52"
55+
version = "1.13.53"
5656

5757
repositories {
5858
google()

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

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ data class EnvironmentLinks(
8282
val blogs: String?,
8383
val help: String?,
8484
val vaultLearnMore: String?,
85+
val simpleTradeLearnMore: String?,
8586
val vaultTos: String?,
8687
val vaultOperatorLearnMore: String?,
8788
val launchIncentive: String?,
@@ -105,6 +106,7 @@ data class EnvironmentLinks(
105106
val blogs = parser.asString(data["blogs"])
106107
val help = parser.asString(data["help"])
107108
val vaultLearnMore = parser.asString(data["vaultLearnMore"])
109+
val simpleTradeLearnMore = parser.asString(data["simpleTradeLearnMore"])
108110
val vaultOperatorLearnMore = parser.asString(data["vaultOperatorLearnMore"])
109111
val launchIncentive = parser.asString(data["launchIncentive"])
110112
val statusPage = parser.asString(data["statusPage"])
@@ -113,23 +115,24 @@ data class EnvironmentLinks(
113115
val vaultTos = parser.asString(data["vaultTos"])
114116
val tradingRewardsLearnMore = parser.asString(data["tradingRewardsLearnMore"])
115117
return EnvironmentLinks(
116-
tos,
117-
privacy,
118-
mintscan,
119-
mintscanBase,
120-
documentation,
121-
community,
122-
feedback,
123-
blogs,
124-
help,
125-
vaultLearnMore,
126-
vaultTos,
127-
vaultOperatorLearnMore,
128-
launchIncentive,
129-
statusPage,
130-
withdrawalGateLearnMore,
131-
equityTiersLearnMore,
132-
tradingRewardsLearnMore,
118+
tos = tos,
119+
privacy = privacy,
120+
mintscan = mintscan,
121+
mintscanBase = mintscanBase,
122+
documentation = documentation,
123+
community = community,
124+
feedback = feedback,
125+
blogs = blogs,
126+
help = help,
127+
vaultLearnMore = vaultLearnMore,
128+
simpleTradeLearnMore = simpleTradeLearnMore,
129+
vaultTos = vaultTos,
130+
vaultOperatorLearnMore = vaultOperatorLearnMore,
131+
launchIncentive = launchIncentive,
132+
statusPage = statusPage,
133+
withdrawalGateLearnMore = withdrawalGateLearnMore,
134+
equityTiersLearnMore = equityTiersLearnMore,
135+
tradingRewardsLearnMore = tradingRewardsLearnMore,
133136
)
134137
}
135138
}

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ class AbacusMockData {
8787
vaultLearnMore = "https://help.dydx.exchange/",
8888
vaultTos = "https://help.dydx.exchange/",
8989
vaultOperatorLearnMore = "https://help.dydx.exchange/",
90+
simpleTradeLearnMore = "https://help.dydx.exchange/",
9091
launchIncentive = "https://dydx.exchange/v4-launch-incentive",
9192
statusPage = "https://status.v4testnet.dydx.exchange/",
9293
withdrawalGateLearnMore = "https://help.dydx.exchange/en/articles/8981384-withdrawals-on-dydx-chain#h_23e97bc665",

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

0 commit comments

Comments
 (0)