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

19 lines
442 B
Go
Raw Normal View History

2019-01-11 12:08:01 -08:00
package types
const (
// ModuleName is the name of the staking module
ModuleName = "staking"
2019-01-11 12:08:01 -08:00
// StoreKey is the string store representation
StoreKey = ModuleName
2019-01-11 12:08:01 -08:00
// TStoreKey is the string transient store representation
TStoreKey = "transient_" + ModuleName
2019-01-11 12:08:01 -08:00
// QuerierRoute is the querier route for the staking module
QuerierRoute = ModuleName
2019-01-11 12:08:01 -08:00
// RouterKey is the msg router key for the staking module
RouterKey = ModuleName
2019-01-11 12:08:01 -08:00
)