diff --git a/README.md b/README.md index e37708b..cb5dd64 100644 --- a/README.md +++ b/README.md @@ -121,6 +121,11 @@ EOS APIs inspired by Key Storage inspired by [Secure Device Storage](https://github.com/adorsys/secure-storage-android) +# Developer Chat + +We have a telegram channel dedicated to Proton development here: +[https://t.me/protondev](https://t.me/protondev) + # MIT License Copyright (c) 2021 Proton Chain LLC, Delaware diff --git a/buildSrc/src/main/kotlin/Dependencies.kt b/buildSrc/src/main/kotlin/Dependencies.kt index 0a78678..e0b23df 100644 --- a/buildSrc/src/main/kotlin/Dependencies.kt +++ b/buildSrc/src/main/kotlin/Dependencies.kt @@ -23,8 +23,8 @@ const val kotlinVersion = "1.5.21" const val orchidVersion = "0.21.1" object ProtonSdk { - const val versionCode = 44 - const val versionName = "1.0.6" + const val versionCode = 46 + const val versionName = "1.0.8" } object BuildPlugins { diff --git a/protonsdk/src/main/java/com/metallicus/protonsdk/Proton.kt b/protonsdk/src/main/java/com/metallicus/protonsdk/Proton.kt index 577bce7..4a2a111 100644 --- a/protonsdk/src/main/java/com/metallicus/protonsdk/Proton.kt +++ b/protonsdk/src/main/java/com/metallicus/protonsdk/Proton.kt @@ -244,7 +244,7 @@ class Proton private constructor(context: Context) { val tokenContracts = getTokenContractsAsync() val marketContracts = tokenContracts.filter { - it.contract == "eosio.token" || it.contract == "xtokens" + it.contract == "eosio.token" || it.contract == "xtokens" || it.contract=="loan.token" } if (updateExchangeRates) { @@ -797,6 +797,7 @@ class Proton private constructor(context: Context) { .connectTimeout(30, TimeUnit.SECONDS) .readTimeout(30, TimeUnit.SECONDS) .writeTimeout(30, TimeUnit.SECONDS) + .pingInterval(5, TimeUnit.SECONDS) .addInterceptor(logging) .build()