Skip to content

Commit

Permalink
merge(#32): chore(par): change base widget url to https://app.ramp.ne…
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubsta authored Jul 4, 2023
2 parents a2156d3 + 4fe75f1 commit 61a8b33
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rampsdk/src/main/java/network/ramp/sdk/facade/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,6 @@ data class Config(

companion object {
const val SEND_CRYPTO_CALLBACK_VERSION = 1
const val DEFAULT_URL = "https://buy.ramp.network"
const val DEFAULT_URL = "https://app.ramp.network"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ object UrlSafeChecker {
private val listOfSafeUrls = listOf(
"https://ri-widget-dev2.firebaseapp.com",
"https://ri-widget-staging.firebaseapp.com",
"https://buy.ramp.network",
"https://app.ramp.network",
"https://app.dev.ramp-network.org",
"https://app.demo.ramp.network",
"https://app.ramp.network"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ internal class UrlSafeCheckerTest {
fun `isUrlSafe should return true fore safe urls`() {
val safeUrl1 = "https://ri-widget-dev2.firebaseapp.com"
val safeUrl2 = "https://ri-widget-staging.firebaseapp.com"
val safeUrl3 = "https://buy.ramp.network"
val safeUrl3 = "https://app.ramp.network"
val safeUrl4 = "https://ri-widget-dev-5.firebaseapp.com"
val safeUrl5 = "https://ri-widget-dev-42.firebaseapp.com"
val safeUrl6 = "https://app.33.dev.ramp-network.org"
Expand Down

0 comments on commit 61a8b33

Please sign in to comment.