mirror of
https://github.com/galacticship/terra.git
synced 2024-11-09 01:37:51 +00:00
18 lines
326 B
Go
18 lines
326 B
Go
package cosmos
|
|
|
|
import (
|
|
sdktypes "github.com/cosmos/cosmos-sdk/types"
|
|
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
|
|
)
|
|
|
|
type (
|
|
Msg = sdktypes.Msg
|
|
Send = banktypes.MsgSend
|
|
MultiSend = banktypes.MsgMultiSend
|
|
)
|
|
|
|
var (
|
|
NewMsgSend = banktypes.NewMsgSend
|
|
NewMsgMultiSend = banktypes.NewMsgMultiSend
|
|
)
|