Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ android {
applicationId = "to.bitkit"
minSdk = 28
targetSdk = 36
versionCode = 169
versionName = "2.0.0-rc.3"
versionCode = 170
versionName = "2.0.0-rc.4"
testInstrumentationRunner = "to.bitkit.test.HiltTestRunner"
vectorDrawables {
useSupportLibrary = true
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/java/to/bitkit/env/Env.kt
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ internal object Env {
get() {
val isE2eLocal = isE2eTest && e2eBackend == "local"
return when (network) {
Network.BITCOIN -> ElectrumServers.MAINNET.FULCRUM
Network.BITCOIN -> ElectrumServers.MAINNET.ESPLORA
Network.REGTEST -> if (isE2eLocal) ElectrumServers.REGTEST.LOCAL else ElectrumServers.REGTEST.STAG
Network.TESTNET -> ElectrumServers.TESTNET
else -> TODO("${network.name} network not implemented")
Expand Down Expand Up @@ -211,11 +211,11 @@ object Peers {

private object ElectrumServers {
object MAINNET {
const val FULCRUM = "ssl://fulcrum.bitkit.blocktank.to:8900"
const val ESPLORA = "ssl://bitkit.to:9999"
}

object REGTEST {
const val STAG = "tcp://34.65.252.32:18483"
const val STAG = "ssl://electrs.bitkit.stag0.blocktank.to:9999"
const val LOCAL = "tcp://127.0.0.1:60001"
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ ktor-client-core = { module = "io.ktor:ktor-client-core", version.ref = "ktor" }
ktor-client-logging = { module = "io.ktor:ktor-client-logging", version.ref = "ktor" }
ktor-client-okhttp = { module = "io.ktor:ktor-client-okhttp", version.ref = "ktor" }
ktor-serialization-kotlinx-json = { module = "io.ktor:ktor-serialization-kotlinx-json", version.ref = "ktor" }
ldk-node-android = { module = "com.github.synonymdev:ldk-node", version = "v0.7.0-rc.6" } # fork | local: remove `v`
ldk-node-android = { module = "com.github.synonymdev:ldk-node", version = "v0.7.0-rc.8" } # fork | local: remove `v`
lifecycle-process = { group = "androidx.lifecycle", name = "lifecycle-process", version.ref = "lifecycle" }
lifecycle-runtime-compose = { module = "androidx.lifecycle:lifecycle-runtime-compose", version.ref = "lifecycle" }
lifecycle-runtime-ktx = { module = "androidx.lifecycle:lifecycle-runtime-ktx", version.ref = "lifecycle" }
Expand Down
Loading