github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/libs/cosmos-sdk/store/reexport.go (about)

     1  package store
     2  
     3  import (
     4  	"github.com/fibonacci-chain/fbc/libs/cosmos-sdk/store/types"
     5  )
     6  
     7  // Import cosmos-sdk/types/store.go for convenience.
     8  // nolint
     9  type (
    10  	PruningOptions   = types.PruningOptions
    11  	Store            = types.Store
    12  	Committer        = types.Committer
    13  	CommitStore      = types.CommitStore
    14  	MultiStore       = types.MultiStore
    15  	CacheMultiStore  = types.CacheMultiStore
    16  	CommitMultiStore = types.CommitMultiStore
    17  	KVStore          = types.KVStore
    18  	KVPair           = types.KVPair
    19  	Iterator         = types.Iterator
    20  	CacheKVStore     = types.CacheKVStore
    21  	CommitKVStore    = types.CommitKVStore
    22  	CacheWrapper     = types.CacheWrapper
    23  	CacheWrap        = types.CacheWrap
    24  	CommitID         = types.CommitID
    25  	StoreKey         = types.StoreKey
    26  	StoreType        = types.StoreType
    27  	Queryable        = types.Queryable
    28  	TraceContext     = types.TraceContext
    29  	Gas              = types.Gas
    30  	GasMeter         = types.GasMeter
    31  	GasConfig        = types.GasConfig
    32  )