Skip to content

Commit

Permalink
Update ethereum-kit
Browse files Browse the repository at this point in the history
  • Loading branch information
abdrasulov committed Oct 18, 2024
1 parent 1c24e61 commit 4a3f3c4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
resValue "string", "twitterBearerToken", "AAAAAAAAAAAAAAAAAAAAAJgeNwEAAAAA6xVpR6xLKTrxIA3kkSyRA92LDpA%3Da6auybDwcymUyh2BcS6zZwicUdxGtrzJC0qvOSdRwKLeqBGhwB"
resValue "string", "uniswapGraphUrl", "https://api.thegraph.com/subgraphs/name/uniswap/uniswap-v2"
resValue "string", "etherscanKey", "TTH1114D5VD5ZMCJZ4B74SGIDRCGSKWGX9"
resValue "string", "bscscanKey", "HBQQN4GTKCHYSRZCKFVQJ3FWGPY4T8237Y"
resValue "string", "etherscanKey", "TTH1114D5VD5ZMCJZ4B74SGIDRCGSKWGX9,1PRTF75E98DGVU949KJC4JFAUCD7WRWC29,ZU3W2V51PJXBXYUX7V5WPRB46HTMM6EYN9"
resValue "string", "bscscanKey", "HBQQN4GTKCHYSRZCKFVQJ3FWGPY4T8237Y,EKDCS2UQJHK8XQ8NFUE2RYHMS11E6J9CWZ,R4S82NMI18ECKX86C9GRJ8FFFPWXCU2YWV"
resValue "string", "polygonscanKey", "2JM7USE5YRI59RWFZQI2RECAZSNI5QEQGV"
resValue "string", "snowtraceApiKey", "47IXTRAAFT1E1J4RNSPZPNB5EWUIQR16FG"
resValue "string", "optimisticEtherscanApiKey", "745EUI4781T147M9QJRNS5G3Q5NFF2SJXP"
Expand Down Expand Up @@ -283,7 +283,7 @@ dependencies {
// Wallet kits
implementation 'com.github.horizontalsystems:ton-kit-android:763a5c3'
implementation 'com.github.horizontalsystems:bitcoin-kit-android:47db768'
implementation 'com.github.horizontalsystems:ethereum-kit-android:a30cc3a71'
implementation 'com.github.horizontalsystems:ethereum-kit-android:a5eff38'
implementation 'com.github.horizontalsystems:blockchain-fee-rate-kit-android:1d3bd49'
implementation 'com.github.horizontalsystems:binance-chain-kit-android:c1509a2'
implementation 'com.github.horizontalsystems:market-kit-android:5fe87c2'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,31 +35,31 @@ class AppConfigProvider(localStorage: ILocalStorage) {
Translator.getString(R.string.twitterBearerToken)
}
val etherscanApiKey by lazy {
Translator.getString(R.string.etherscanKey)
Translator.getString(R.string.etherscanKey).split(",")
}
val bscscanApiKey by lazy {
Translator.getString(R.string.bscscanKey)
Translator.getString(R.string.bscscanKey).split(",")
}
val polygonscanApiKey by lazy {
Translator.getString(R.string.polygonscanKey)
Translator.getString(R.string.polygonscanKey).split(",")
}
val snowtraceApiKey by lazy {
Translator.getString(R.string.snowtraceApiKey)
Translator.getString(R.string.snowtraceApiKey).split(",")
}
val optimisticEtherscanApiKey by lazy {
Translator.getString(R.string.optimisticEtherscanApiKey)
Translator.getString(R.string.optimisticEtherscanApiKey).split(",")
}
val arbiscanApiKey by lazy {
Translator.getString(R.string.arbiscanApiKey)
Translator.getString(R.string.arbiscanApiKey).split(",")
}
val gnosisscanApiKey by lazy {
Translator.getString(R.string.gnosisscanApiKey)
Translator.getString(R.string.gnosisscanApiKey).split(",")
}
val ftmscanApiKey by lazy {
Translator.getString(R.string.ftmscanApiKey)
Translator.getString(R.string.ftmscanApiKey).split(",")
}
val basescanApiKey by lazy {
Translator.getString(R.string.basescanApiKey)
Translator.getString(R.string.basescanApiKey).split(",")
}
val guidesUrl by lazy {
Translator.getString(R.string.guidesUrl)
Expand Down

0 comments on commit 4a3f3c4

Please sign in to comment.