Skip to content

Commit

Permalink
release sora v3.8.0.0 108
Browse files Browse the repository at this point in the history
  • Loading branch information
arvifox committed Dec 4, 2023
1 parent 41ab5a0 commit 9d4284b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ buildscript {

ext {
// soralution 124 3.8.0.2 2023.12.02
// sora dae 107 3.7.0.0 2023.11.09
// sora dae 108 3.8.0.0 2023.12.04
// appVersionCode = Integer.valueOf(System.env.BUILD_NUMBER ?: 96)
appVersionCode = Integer.valueOf(System.env.CI_BUILD_ID ?: 107)
appVersionName = '3.7.0.0'
appVersionCode = Integer.valueOf(System.env.CI_BUILD_ID ?: 108)
appVersionName = '3.8.0.0'

compileVersion = 34
minVersion = 24
Expand Down
2 changes: 1 addition & 1 deletion common/src/production/assets/sora2_metadata

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ import jp.co.soramitsu.common.domain.Token
import jp.co.soramitsu.common.domain.getByIdOrEmpty
import jp.co.soramitsu.common.util.BuildUtils
import jp.co.soramitsu.common.util.ext.snakeCaseToCamelCase
import jp.co.soramitsu.common.util.mapBalance
import jp.co.soramitsu.feature_blockexplorer_api.presentation.txhistory.Transaction
import jp.co.soramitsu.feature_blockexplorer_api.presentation.txhistory.TransactionBase
import jp.co.soramitsu.feature_blockexplorer_api.presentation.txhistory.TransactionLiquidityType
Expand Down Expand Up @@ -74,7 +73,9 @@ private fun mapHistoryItemToTransaction(
val transactionBase = TransactionBase(
txHash = tx.id,
blockHash = tx.blockHash,
fee = mapBalance(tx.networkFee.toBigIntegerOrDefault(), feePrecision),
// todo fix it when SubQuery is done
// fee = mapBalance(tx.networkFee.toBigIntegerOrDefault(), feePrecision),
fee = tx.networkFee.toBigDecimalOrDefault(),
status = tx.getSuccess(),
timestamp = tx.getTimestamp(),
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ object TestTransactions {
module="poolXYK",
method="depositLiquidity",
timestamp="1675442934",
networkFee="70000000000000000",
networkFee="0.07",
success=true,
data=listOf(
TxHistoryItemParam(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ package jp.co.soramitsu.feature_ecosystem_impl.presentation.explore

import android.os.Bundle
import android.view.View
import androidx.compose.animation.ExperimentalAnimationApi
import androidx.compose.foundation.ExperimentalFoundationApi
import androidx.compose.foundation.ScrollState
import androidx.compose.foundation.horizontalScroll
Expand Down

0 comments on commit 9d4284b

Please sign in to comment.