mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
6c68e41758
* most audit revisions * remove expected income * update begin block spec * filter queryAtomicSwaps, add queryAssetSupplies * update old address * update test * Remove legacy method * remove legacy comment * address PR comments * IsValid for SwapDirection, SwapStatus * fix rng logging * query asset supplies * return [64]byte from rng * remove cross chain field from MsgCreateAtomicSwap * move swap filtering to querier * rename Limit field to SupplyLimit
230 lines
7.9 KiB
Go
230 lines
7.9 KiB
Go
package keeper
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
"github.com/cosmos/cosmos-sdk/store/prefix"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/x/params/subspace"
|
|
|
|
"github.com/tendermint/tendermint/libs/log"
|
|
|
|
"github.com/kava-labs/kava/x/bep3/types"
|
|
)
|
|
|
|
// Keeper of the bep3 store
|
|
type Keeper struct {
|
|
key sdk.StoreKey
|
|
cdc *codec.Codec
|
|
paramSubspace subspace.Subspace
|
|
supplyKeeper types.SupplyKeeper
|
|
accountKeeper types.AccountKeeper
|
|
}
|
|
|
|
// NewKeeper creates a bep3 keeper
|
|
func NewKeeper(cdc *codec.Codec, key sdk.StoreKey,
|
|
sk types.SupplyKeeper, ak types.AccountKeeper,
|
|
paramstore subspace.Subspace,
|
|
) Keeper {
|
|
if !paramstore.HasKeyTable() {
|
|
paramstore = paramstore.WithKeyTable(types.ParamKeyTable())
|
|
}
|
|
|
|
keeper := Keeper{
|
|
key: key,
|
|
cdc: cdc,
|
|
paramSubspace: paramstore,
|
|
supplyKeeper: sk,
|
|
accountKeeper: ak,
|
|
}
|
|
return keeper
|
|
}
|
|
|
|
// Logger returns a module-specific logger.
|
|
func (k Keeper) Logger(ctx sdk.Context) log.Logger {
|
|
return ctx.Logger().With("module", fmt.Sprintf("x/%s", types.ModuleName))
|
|
}
|
|
|
|
// ------------------------------------------
|
|
// Atomic Swaps
|
|
// ------------------------------------------
|
|
|
|
// SetAtomicSwap puts the AtomicSwap into the store, and updates any indexes.
|
|
func (k Keeper) SetAtomicSwap(ctx sdk.Context, atomicSwap types.AtomicSwap) {
|
|
store := prefix.NewStore(ctx.KVStore(k.key), types.AtomicSwapKeyPrefix)
|
|
bz := k.cdc.MustMarshalBinaryLengthPrefixed(atomicSwap)
|
|
store.Set(atomicSwap.GetSwapID(), bz)
|
|
}
|
|
|
|
// GetAtomicSwap gets an AtomicSwap from the store.
|
|
func (k Keeper) GetAtomicSwap(ctx sdk.Context, swapID []byte) (types.AtomicSwap, bool) {
|
|
var atomicSwap types.AtomicSwap
|
|
|
|
store := prefix.NewStore(ctx.KVStore(k.key), types.AtomicSwapKeyPrefix)
|
|
bz := store.Get(swapID)
|
|
if bz == nil {
|
|
return atomicSwap, false
|
|
}
|
|
|
|
k.cdc.MustUnmarshalBinaryLengthPrefixed(bz, &atomicSwap)
|
|
return atomicSwap, true
|
|
}
|
|
|
|
// RemoveAtomicSwap removes an AtomicSwap from the AtomicSwapKeyPrefix.
|
|
func (k Keeper) RemoveAtomicSwap(ctx sdk.Context, swapID []byte) {
|
|
store := prefix.NewStore(ctx.KVStore(k.key), types.AtomicSwapKeyPrefix)
|
|
store.Delete(swapID)
|
|
}
|
|
|
|
// IterateAtomicSwaps provides an iterator over all stored AtomicSwaps.
|
|
// For each AtomicSwap, cb will be called. If cb returns true, the iterator will close and stop.
|
|
func (k Keeper) IterateAtomicSwaps(ctx sdk.Context, cb func(atomicSwap types.AtomicSwap) (stop bool)) {
|
|
iterator := sdk.KVStorePrefixIterator(ctx.KVStore(k.key), types.AtomicSwapKeyPrefix)
|
|
|
|
defer iterator.Close()
|
|
for ; iterator.Valid(); iterator.Next() {
|
|
var atomicSwap types.AtomicSwap
|
|
k.cdc.MustUnmarshalBinaryLengthPrefixed(iterator.Value(), &atomicSwap)
|
|
|
|
if cb(atomicSwap) {
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
// GetAllAtomicSwaps returns all AtomicSwaps from the store
|
|
func (k Keeper) GetAllAtomicSwaps(ctx sdk.Context) (atomicSwaps types.AtomicSwaps) {
|
|
k.IterateAtomicSwaps(ctx, func(atomicSwap types.AtomicSwap) bool {
|
|
atomicSwaps = append(atomicSwaps, atomicSwap)
|
|
return false
|
|
})
|
|
return
|
|
}
|
|
|
|
// ------------------------------------------
|
|
// Atomic Swap Block Index
|
|
// ------------------------------------------
|
|
|
|
// InsertIntoByBlockIndex adds a swap ID and expiration time into the byBlock index.
|
|
func (k Keeper) InsertIntoByBlockIndex(ctx sdk.Context, atomicSwap types.AtomicSwap) {
|
|
store := prefix.NewStore(ctx.KVStore(k.key), types.AtomicSwapByBlockPrefix)
|
|
store.Set(types.GetAtomicSwapByHeightKey(atomicSwap.ExpireHeight, atomicSwap.GetSwapID()), atomicSwap.GetSwapID())
|
|
}
|
|
|
|
// RemoveFromByBlockIndex removes an AtomicSwap from the byBlock index.
|
|
func (k Keeper) RemoveFromByBlockIndex(ctx sdk.Context, atomicSwap types.AtomicSwap) {
|
|
store := prefix.NewStore(ctx.KVStore(k.key), types.AtomicSwapByBlockPrefix)
|
|
store.Delete(types.GetAtomicSwapByHeightKey(atomicSwap.ExpireHeight, atomicSwap.GetSwapID()))
|
|
}
|
|
|
|
// IterateAtomicSwapsByBlock provides an iterator over AtomicSwaps ordered by AtomicSwap expiration block
|
|
// For each AtomicSwap cb will be called. If cb returns true the iterator will close and stop.
|
|
func (k Keeper) IterateAtomicSwapsByBlock(ctx sdk.Context, inclusiveCutoffTime uint64, cb func(swapID []byte) (stop bool)) {
|
|
store := prefix.NewStore(ctx.KVStore(k.key), types.AtomicSwapByBlockPrefix)
|
|
iterator := store.Iterator(
|
|
nil, // start at the very start of the prefix store
|
|
sdk.PrefixEndBytes(sdk.Uint64ToBigEndian(inclusiveCutoffTime)), // end of range
|
|
)
|
|
|
|
defer iterator.Close()
|
|
for ; iterator.Valid(); iterator.Next() {
|
|
|
|
id := iterator.Value()
|
|
|
|
if cb(id) {
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
// ------------------------------------------
|
|
// Atomic Swap Longterm Storage Index
|
|
// ------------------------------------------
|
|
|
|
// InsertIntoLongtermStorage adds a swap ID and deletion time into the longterm storage index.
|
|
// Completed swaps are stored for 1 week.
|
|
func (k Keeper) InsertIntoLongtermStorage(ctx sdk.Context, atomicSwap types.AtomicSwap) {
|
|
store := prefix.NewStore(ctx.KVStore(k.key), types.AtomicSwapLongtermStoragePrefix)
|
|
deletionHeight := uint64(atomicSwap.ClosedBlock) + types.DefaultLongtermStorageDuration
|
|
store.Set(types.GetAtomicSwapByHeightKey(deletionHeight, atomicSwap.GetSwapID()), atomicSwap.GetSwapID())
|
|
}
|
|
|
|
// RemoveFromLongtermStorage removes a swap from the into the longterm storage index
|
|
func (k Keeper) RemoveFromLongtermStorage(ctx sdk.Context, atomicSwap types.AtomicSwap) {
|
|
store := prefix.NewStore(ctx.KVStore(k.key), types.AtomicSwapLongtermStoragePrefix)
|
|
deletionHeight := uint64(atomicSwap.ClosedBlock) + types.DefaultLongtermStorageDuration
|
|
store.Delete(types.GetAtomicSwapByHeightKey(deletionHeight, atomicSwap.GetSwapID()))
|
|
}
|
|
|
|
// IterateAtomicSwapsLongtermStorage provides an iterator over AtomicSwaps ordered by deletion height.
|
|
// For each AtomicSwap cb will be called. If cb returns true the iterator will close and stop.
|
|
func (k Keeper) IterateAtomicSwapsLongtermStorage(ctx sdk.Context, inclusiveCutoffTime uint64,
|
|
cb func(swapID []byte) (stop bool)) {
|
|
store := prefix.NewStore(ctx.KVStore(k.key), types.AtomicSwapLongtermStoragePrefix)
|
|
iterator := store.Iterator(
|
|
nil, // start at the very start of the prefix store
|
|
sdk.PrefixEndBytes(sdk.Uint64ToBigEndian(inclusiveCutoffTime)), // end of range
|
|
)
|
|
|
|
defer iterator.Close()
|
|
for ; iterator.Valid(); iterator.Next() {
|
|
|
|
id := iterator.Value()
|
|
|
|
if cb(id) {
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
// ------------------------------------------
|
|
// Asset Supplies
|
|
// ------------------------------------------
|
|
|
|
// GetAssetSupply gets an asset's current supply from the store.
|
|
func (k Keeper) GetAssetSupply(ctx sdk.Context, denom []byte) (types.AssetSupply, bool) {
|
|
var supply types.AssetSupply
|
|
|
|
store := prefix.NewStore(ctx.KVStore(k.key), types.AssetSupplyKeyPrefix)
|
|
bz := store.Get(denom)
|
|
if bz == nil {
|
|
return types.AssetSupply{}, false
|
|
}
|
|
|
|
k.cdc.MustUnmarshalBinaryLengthPrefixed(bz, &supply)
|
|
return supply, true
|
|
}
|
|
|
|
// SetAssetSupply updates an asset's current active supply
|
|
func (k Keeper) SetAssetSupply(ctx sdk.Context, supply types.AssetSupply, denom []byte) {
|
|
store := prefix.NewStore(ctx.KVStore(k.key), types.AssetSupplyKeyPrefix)
|
|
bz := k.cdc.MustMarshalBinaryLengthPrefixed(supply)
|
|
store.Set(denom, bz)
|
|
}
|
|
|
|
// IterateAssetSupplies provides an iterator over current asset supplies.
|
|
// For each asset supply, cb will be called. If cb returns true, the iterator will close and stop.
|
|
func (k Keeper) IterateAssetSupplies(ctx sdk.Context, cb func(supply types.AssetSupply) (stop bool)) {
|
|
iterator := sdk.KVStorePrefixIterator(ctx.KVStore(k.key), types.AssetSupplyKeyPrefix)
|
|
|
|
defer iterator.Close()
|
|
for ; iterator.Valid(); iterator.Next() {
|
|
var supply types.AssetSupply
|
|
k.cdc.MustUnmarshalBinaryLengthPrefixed(iterator.Value(), &supply)
|
|
|
|
if cb(supply) {
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
// GetAllAssetSupplies returns current asset supplies from the store as an array of sdk.Coin
|
|
func (k Keeper) GetAllAssetSupplies(ctx sdk.Context) (supplies types.AssetSupplies) {
|
|
k.IterateAssetSupplies(ctx, func(supply types.AssetSupply) bool {
|
|
supplies = append(supplies, supply)
|
|
return false
|
|
})
|
|
return
|
|
}
|