Skip to content

Commit

Permalink
Update app version
Browse files Browse the repository at this point in the history
  • Loading branch information
ssq0-0 committed Jan 25, 2025
1 parent 7f606a7 commit 0bb5419
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions globals/globals.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func init() {
}

const (
SoftVersion = "v2.7.0"
SoftVersion = "v2.8.0"
LinkRepo = "https://api.github.com/repos/ssq0-0/Lisk/releases/latest"
Format = "02.01.2006"
TotalSuccess = 0
Expand Down Expand Up @@ -55,6 +55,9 @@ var (
// Need for gas in tx. If ETH < MinETHForTx - the execution of the count will end as a whole
MinETHForTx = big.NewInt(1e13) // 0.00001.

// Need for gas in tx. If ETH < MinETHForTx - the execution of the count will end as a whole
MinUsdtForTx big.Int

// need for oku swaps config percent use
// OkuPercentUsage int // default 50%

Expand Down Expand Up @@ -101,8 +104,8 @@ var (

MinBalances = map[common.Address]*big.Int{
WETH: big.NewInt(1e14), // 0.00001
USDT: big.NewInt(1e5), // 0.1
USDC: big.NewInt(1e5), // 0.1
USDT: &MinUsdtForTx, // 0.1
USDC: &MinUsdtForTx, // 0.1
LISK: big.NewInt(1e17), // 0.1
}

Expand Down

0 comments on commit 0bb5419

Please sign in to comment.