2024-05-21 21:11:13 +00:00
|
|
|
package keeper
|
|
|
|
|
|
|
|
import (
|
2024-07-10 18:14:17 +00:00
|
|
|
sdkmath "cosmossdk.io/math"
|
2024-09-25 15:31:20 +00:00
|
|
|
"github.com/0glabs/0g-chain/x/precisebank/types"
|
2024-05-21 21:11:13 +00:00
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
// GetBalance returns the balance of a specific denom for an address. This will
|
|
|
|
// return the extended balance for the ExtendedCoinDenom, and the regular
|
|
|
|
// balance for all other denoms.
|
|
|
|
func (k Keeper) GetBalance(
|
|
|
|
ctx sdk.Context,
|
|
|
|
addr sdk.AccAddress,
|
|
|
|
denom string,
|
|
|
|
) sdk.Coin {
|
2024-07-10 18:14:17 +00:00
|
|
|
// Module balance should display as empty for extended denom. Module
|
|
|
|
// balances are **only** for the reserve which backs the fractional
|
|
|
|
// balances. Returning the backing balances if querying extended denom would
|
|
|
|
// result in a double counting of the fractional balances.
|
|
|
|
if denom == types.ExtendedCoinDenom && addr.Equals(k.ak.GetModuleAddress(types.ModuleName)) {
|
|
|
|
return sdk.NewCoin(denom, sdkmath.ZeroInt())
|
|
|
|
}
|
|
|
|
|
2024-05-21 21:11:13 +00:00
|
|
|
// Pass through to x/bank for denoms except ExtendedCoinDenom
|
|
|
|
if denom != types.ExtendedCoinDenom {
|
|
|
|
return k.bk.GetBalance(ctx, addr, denom)
|
|
|
|
}
|
|
|
|
|
2024-06-29 01:06:48 +00:00
|
|
|
// x/bank for integer balance - full balance, including locked
|
|
|
|
integerCoins := k.bk.GetBalance(ctx, addr, types.IntegerCoinDenom)
|
2024-05-21 21:11:13 +00:00
|
|
|
|
|
|
|
// x/precisebank for fractional balance
|
2024-05-24 19:03:09 +00:00
|
|
|
fractionalAmount := k.GetFractionalBalance(ctx, addr)
|
2024-05-21 21:11:13 +00:00
|
|
|
|
|
|
|
// (Integer * ConversionFactor) + Fractional
|
2024-06-29 01:06:48 +00:00
|
|
|
fullAmount := integerCoins.
|
|
|
|
Amount.
|
|
|
|
Mul(types.ConversionFactor()).
|
|
|
|
Add(fractionalAmount)
|
|
|
|
|
|
|
|
return sdk.NewCoin(types.ExtendedCoinDenom, fullAmount)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SpendableCoins returns the total balances of spendable coins for an account
|
|
|
|
// by address. If the account has no spendable coins, an empty Coins slice is
|
|
|
|
// returned.
|
|
|
|
func (k Keeper) SpendableCoin(
|
|
|
|
ctx sdk.Context,
|
|
|
|
addr sdk.AccAddress,
|
|
|
|
denom string,
|
|
|
|
) sdk.Coin {
|
2024-07-10 18:14:17 +00:00
|
|
|
// Same as GetBalance, extended denom balances are transparent to consumers.
|
|
|
|
if denom == types.ExtendedCoinDenom && addr.Equals(k.ak.GetModuleAddress(types.ModuleName)) {
|
|
|
|
return sdk.NewCoin(denom, sdkmath.ZeroInt())
|
|
|
|
}
|
|
|
|
|
2024-06-29 01:06:48 +00:00
|
|
|
// Pass through to x/bank for denoms except ExtendedCoinDenom
|
|
|
|
if denom != types.ExtendedCoinDenom {
|
|
|
|
return k.bk.SpendableCoin(ctx, addr, denom)
|
|
|
|
}
|
|
|
|
|
|
|
|
// x/bank for integer balance - excluding locked
|
|
|
|
integerCoin := k.bk.SpendableCoin(ctx, addr, types.IntegerCoinDenom)
|
|
|
|
|
|
|
|
// x/precisebank for fractional balance
|
|
|
|
fractionalAmount := k.GetFractionalBalance(ctx, addr)
|
|
|
|
|
|
|
|
// Spendable = (Integer * ConversionFactor) + Fractional
|
|
|
|
fullAmount := integerCoin.Amount.
|
2024-05-21 21:11:13 +00:00
|
|
|
Mul(types.ConversionFactor()).
|
|
|
|
Add(fractionalAmount)
|
|
|
|
|
|
|
|
return sdk.NewCoin(types.ExtendedCoinDenom, fullAmount)
|
|
|
|
}
|