2022-12-16 09:48:38 +00:00
|
|
|
// Copyright 2021 Evmos Foundation
|
|
|
|
// This file is part of Evmos' Ethermint library.
|
|
|
|
//
|
|
|
|
// The Ethermint library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// The Ethermint library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the Ethermint library. If not, see https://github.com/evmos/ethermint/blob/main/LICENSE
|
2022-06-27 09:58:44 +00:00
|
|
|
package types
|
|
|
|
|
|
|
|
import (
|
|
|
|
fmt "fmt"
|
|
|
|
math "math"
|
|
|
|
"math/big"
|
|
|
|
|
2022-11-14 19:40:14 +00:00
|
|
|
errorsmod "cosmossdk.io/errors"
|
2022-07-28 13:43:49 +00:00
|
|
|
sdkmath "cosmossdk.io/math"
|
2022-11-14 19:40:14 +00:00
|
|
|
errortypes "github.com/cosmos/cosmos-sdk/types/errors"
|
2022-06-27 09:58:44 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const maxBitLen = 256
|
|
|
|
|
|
|
|
// SafeInt64 checks for overflows while casting a uint64 to int64 value.
|
|
|
|
func SafeInt64(value uint64) (int64, error) {
|
|
|
|
if value > uint64(math.MaxInt64) {
|
2022-11-14 19:40:14 +00:00
|
|
|
return 0, errorsmod.Wrapf(errortypes.ErrInvalidHeight, "uint64 value %v cannot exceed %v", value, int64(math.MaxInt64))
|
2022-06-27 09:58:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return int64(value), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SafeNewIntFromBigInt constructs Int from big.Int, return error if more than 256bits
|
2022-07-28 13:43:49 +00:00
|
|
|
func SafeNewIntFromBigInt(i *big.Int) (sdkmath.Int, error) {
|
2022-06-27 09:58:44 +00:00
|
|
|
if !IsValidInt256(i) {
|
2022-07-28 13:43:49 +00:00
|
|
|
return sdkmath.NewInt(0), fmt.Errorf("big int out of bound: %s", i)
|
2022-06-27 09:58:44 +00:00
|
|
|
}
|
2022-07-28 13:43:49 +00:00
|
|
|
return sdkmath.NewIntFromBigInt(i), nil
|
2022-06-27 09:58:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsValidInt256 check the bound of 256 bit number
|
|
|
|
func IsValidInt256(i *big.Int) bool {
|
|
|
|
return i == nil || i.BitLen() <= maxBitLen
|
|
|
|
}
|