-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
keys.go
44 lines (35 loc) · 1.13 KB
/
keys.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package types
const (
// ModuleName defines the module name
ModuleName = "pricefeed"
// StoreKey defines the primary module store key
StoreKey = ModuleName
// RouterKey is the message route for slashing
RouterKey = ModuleName
// QuerierRoute defines the module's query routing key
QuerierRoute = ModuleName
// MemStoreKey defines the in-memory store key
MemStoreKey = "mem_capability"
)
func KeyPrefix(p string) []byte {
return []byte(p)
}
const (
ParamsKey = "Params-value-"
MarketKey = "Market-value-"
MarketCountKey = "Market-count-"
OracleKey = "Oracle-value-"
PriceKey = "Price-value-"
PriceCountKey = "Price-count-"
RawPriceKey = "RawPrice-value-"
CurrentPriceKey = "CurrentPrice-value-"
RawPriceFeedKey = "RawPriceFeed-value-"
)
// CurrentPriceKeySuffix returns the prefix for the current price
func CurrentPriceKeySuffix(marketID string) []byte {
return append(KeyPrefix(CurrentPriceKey), []byte(marketID)...)
}
// RawPriceKeySuffix returns the prefix for the raw price
func RawPriceKeySuffix(marketID string) []byte {
return append(KeyPrefix(RawPriceFeedKey), []byte(marketID)...)
}