70 lines
2.3 KiB
Go
70 lines
2.3 KiB
Go
// Package v040 is copy-pasted from:
|
|
// https://github.com/cosmos/cosmos-sdk/blob/v0.41.0/x/slashing/types/keys.go
|
|
package v040
|
|
|
|
import (
|
|
"encoding/binary"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/types/kv"
|
|
v040auth "github.com/cosmos/cosmos-sdk/x/auth/migrations/v040"
|
|
)
|
|
|
|
const (
|
|
// ModuleName is the name of the module
|
|
ModuleName = "slashing"
|
|
|
|
// StoreKey is the store key string for slashing
|
|
StoreKey = ModuleName
|
|
|
|
// RouterKey is the message route for slashing
|
|
RouterKey = ModuleName
|
|
|
|
// QuerierRoute is the querier route for slashing
|
|
QuerierRoute = ModuleName
|
|
)
|
|
|
|
// Keys for slashing store
|
|
// Items are stored with the following key: values
|
|
//
|
|
// - 0x01<consAddress_Bytes>: ValidatorSigningInfo
|
|
//
|
|
// - 0x02<consAddress_Bytes><period_Bytes>: bool
|
|
//
|
|
// - 0x03<accAddr_Bytes>: crypto.PubKey
|
|
var (
|
|
ValidatorSigningInfoKeyPrefix = []byte{0x01} // Prefix for signing info
|
|
ValidatorMissedBlockBitArrayKeyPrefix = []byte{0x02} // Prefix for missed block bit array
|
|
AddrPubkeyRelationKeyPrefix = []byte{0x03} // Prefix for address-pubkey relation
|
|
)
|
|
|
|
// ValidatorSigningInfoKey - stored by *Consensus* address (not operator address)
|
|
func ValidatorSigningInfoKey(v sdk.ConsAddress) []byte {
|
|
return append(ValidatorSigningInfoKeyPrefix, v.Bytes()...)
|
|
}
|
|
|
|
// ValidatorSigningInfoAddress - extract the address from a validator signing info key
|
|
func ValidatorSigningInfoAddress(key []byte) (v sdk.ConsAddress) {
|
|
kv.AssertKeyAtLeastLength(key, 2)
|
|
addr := key[1:]
|
|
kv.AssertKeyLength(addr, v040auth.AddrLen)
|
|
return sdk.ConsAddress(addr)
|
|
}
|
|
|
|
// ValidatorMissedBlockBitArrayPrefixKey - stored by *Consensus* address (not operator address)
|
|
func ValidatorMissedBlockBitArrayPrefixKey(v sdk.ConsAddress) []byte {
|
|
return append(ValidatorMissedBlockBitArrayKeyPrefix, v.Bytes()...)
|
|
}
|
|
|
|
// ValidatorMissedBlockBitArrayKey - stored by *Consensus* address (not operator address)
|
|
func ValidatorMissedBlockBitArrayKey(v sdk.ConsAddress, i int64) []byte {
|
|
b := make([]byte, 8)
|
|
binary.LittleEndian.PutUint64(b, uint64(i))
|
|
return append(ValidatorMissedBlockBitArrayPrefixKey(v), b...)
|
|
}
|
|
|
|
// AddrPubkeyRelationKey gets pubkey relation key used to get the pubkey from the address
|
|
func AddrPubkeyRelationKey(address []byte) []byte {
|
|
return append(AddrPubkeyRelationKeyPrefix, address...)
|
|
}
|