Skip to content

Commit

Permalink
Fix Solana token balance sync
Browse files Browse the repository at this point in the history
- token auto enabling fixed
- pending transaction syncer added
  • Loading branch information
omurovch committed Jan 29, 2024
1 parent 4a1722c commit a1b14f9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Expand Up @@ -17,8 +17,8 @@ android {
compileSdk compile_sdk_version
minSdkVersion min_sdk_version
targetSdkVersion compile_sdk_version
versionCode 96
versionName "0.37.2"
versionCode 97
versionName "0.37.3"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

kapt {
Expand Down Expand Up @@ -278,7 +278,7 @@ dependencies {
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:746d398'
implementation 'com.github.horizontalsystems:solana-kit-android:34ef394'
implementation 'com.github.horizontalsystems:solana-kit-android:6401968'
implementation 'com.github.horizontalsystems:tron-kit-android:f2f7c9a'
// Zcash SDK
implementation "cash.z.ecc.android:zcash-android-sdk:2.0.1"
Expand Down
Expand Up @@ -21,6 +21,10 @@ class SplAdapter(

private val mintAddress = Address(mintAddressString)

init {
solanaKit.addTokenAccount(mintAddressString, wallet.decimal)
}

// IAdapter

override fun start() {
Expand Down

0 comments on commit a1b14f9

Please sign in to comment.