Skip to content

Commit

Permalink
Add tradingRewardsLearnMore link (#758)
Browse files Browse the repository at this point in the history
  • Loading branch information
ruixhuang authored Nov 19, 2024
1 parent 8c7beb5 commit b13648b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ allprojects {
}

group = "exchange.dydx.abacus"
version = "1.13.32"
version = "1.13.33"

repositories {
google()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ data class EnvironmentLinks(
val statusPage: String?,
val withdrawalGateLearnMore: String?,
val equityTiersLearnMore: String?,
val tradingRewardsLearnMore: String?,
) {
companion object {
fun parse(
Expand All @@ -109,6 +110,7 @@ data class EnvironmentLinks(
val withdrawalGateLearnMore = parser.asString(data["withdrawalGateLearnMore"])
val equityTiersLearnMore = parser.asString(data["equityTiersLearnMore"])
val vaultTos = parser.asString(data["vaultTos"])
val tradingRewardsLearnMore = parser.asString(data["tradingRewardsLearnMore"])
return EnvironmentLinks(
tos,
privacy,
Expand All @@ -126,6 +128,7 @@ data class EnvironmentLinks(
statusPage,
withdrawalGateLearnMore,
equityTiersLearnMore,
tradingRewardsLearnMore,
)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ class AbacusMockData {
statusPage = "https://status.v4testnet.dydx.exchange/",
withdrawalGateLearnMore = "https://help.dydx.exchange/en/articles/8981384-withdrawals-on-dydx-chain#h_23e97bc665",
equityTiersLearnMore = "https://help.dydx.trade/en/articles/171918-equity-tiers-and-rate-limits",
tradingRewardsLearnMore = "https://docs.dydx.exchange/concepts-trading/rewards_fees_and_parameters",
),
walletConnection = WalletConnection(
WalletConnect(
Expand Down
2 changes: 1 addition & 1 deletion v4_abacus.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'v4_abacus'
spec.version = '1.13.32'
spec.version = '1.13.33'
spec.homepage = 'https://github.com/dydxprotocol/v4-abacus'
spec.source = { :http=> ''}
spec.authors = ''
Expand Down

0 comments on commit b13648b

Please sign in to comment.