cosmos-sdk/x/distribution/types/keys.go

16 lines
343 B
Go

package types
const (
// StoreKey is the store key string for distribution
StoreKey = "distr"
// TStoreKey is the transient store key for distribution
TStoreKey = "transient_distr"
// RouterKey is the message route for distribution
RouterKey = "distr"
// QuerierRoute is the querier route for distribution
QuerierRoute = "distr"
)