diff --git a/app/build.gradle b/app/build.gradle index 51082968..7786e964 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -55,7 +55,7 @@ dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" - implementation 'com.github.horizontalsystems:hd-wallet-kit-android:a74b51f' + implementation 'com.github.horizontalsystems:hd-wallet-kit-android:a74b51f3' implementation 'androidx.appcompat:appcompat:1.4.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.2' diff --git a/ethereumkit/build.gradle b/ethereumkit/build.gradle index be19db3b..30fd5f55 100644 --- a/ethereumkit/build.gradle +++ b/ethereumkit/build.gradle @@ -57,7 +57,7 @@ dependencies { implementation 'org.bouncycastle:bcpkix-jdk15on:1.65' - implementation 'com.github.horizontalsystems:hd-wallet-kit-android:a74b51f' + implementation 'com.github.horizontalsystems:hd-wallet-kit-android:a74b51f3' implementation 'io.reactivex.rxjava2:rxjava:2.2.19' implementation 'io.reactivex.rxjava2:rxandroid:2.1.1' diff --git a/ethereumkit/src/main/java/io/horizontalsystems/ethereumkit/models/TransactionSource.kt b/ethereumkit/src/main/java/io/horizontalsystems/ethereumkit/models/TransactionSource.kt index 29124596..44f4351c 100644 --- a/ethereumkit/src/main/java/io/horizontalsystems/ethereumkit/models/TransactionSource.kt +++ b/ethereumkit/src/main/java/io/horizontalsystems/ethereumkit/models/TransactionSource.kt @@ -50,6 +50,10 @@ class TransactionSource(val name: String, val type: SourceType) { return etherscan("basescan.org", "https://basescan.org", apiKeys) } + fun fantom(apiKeys: List): TransactionSource { + return etherscan("ftmscan.com", "https://ftmscan.com", apiKeys) + } + fun zkSync(apiKeys: List): TransactionSource { return etherscan("era.zksync.network", "https://era.zksync.network", apiKeys) }