-
Notifications
You must be signed in to change notification settings - Fork 2
/
alias.go
41 lines (36 loc) · 1.22 KB
/
alias.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
package executionlayer
import (
"github.com/hdac-io/friday/x/executionlayer/types"
)
const (
ModuleName = types.ModuleName
RouterKey = types.RouterKey
HashMapStoreKey = types.HashMapStoreKey
)
var (
// function aliases
NewMsgExecute = types.NewMsgExecute
NewMsgTransfer = types.NewMsgTransfer
NewMsgBond = types.NewMsgBond
NewMsgUnBond = types.NewMsgUnBond
RegisterCodec = types.RegisterCodec
NewUnitHashMap = types.NewUnitHashMap
// variable aliases
ModuleCdc = types.ModuleCdc
ValidatorKey = types.ValidatorKey
)
type (
MsgExecute = types.MsgExecute
MsgBond = types.MsgBond
MsgUnBond = types.MsgUnBond
MsgCreateValidator = types.MsgCreateValidator
MsgEditValidator = types.MsgEditValidator
UnitHashMap = types.UnitHashMap
QueryExecutionLayerDetail = types.QueryExecutionLayerDetail
QueryGetBalanceDetail = types.QueryGetBalanceDetail
QueryValidatorParams = types.QueryValidatorParams
QueryDelegatorParams = types.QueryDelegatorParams
QueryVoterParams = types.QueryVoterParams
QueryVoterParamsUref = types.QueryVoterParamsUref
QueryVoterParamsHash = types.QueryVoterParamsHash
)