cosmos-sdk/types/tx_msg.go

67 lines
1.8 KiB
Go
Raw Normal View History

package types
2018-01-14 19:49:57 -08:00
import (
crypto "github.com/tendermint/go-crypto"
)
2018-01-06 14:22:21 -08:00
2018-02-04 16:59:11 -08:00
// Transactions messages must fulfill the Msg
type Msg interface {
// Return the message type.
// Must be alphanumeric or empty.
Type() string
// Get some property of the Msg.
Get(key interface{}) (value interface{})
// Get the canonical byte representation of the Msg.
2018-01-10 20:11:44 -08:00
GetSignBytes() []byte
// ValidateBasic does a simple validation check that
// doesn't require access to any other information.
2018-01-26 04:19:33 -08:00
ValidateBasic() Error
// Signers returns the addrs of signers that must sign.
// CONTRACT: All signatures must be present to be valid.
// CONTRACT: Returns addrs in some deterministic order.
GetSigners() []crypto.Address
}
2018-02-04 16:59:11 -08:00
// Transactions objects must fulfill the Tx
type Tx interface {
2018-01-26 06:22:56 -08:00
// Gets the Msg.
GetMsg() Msg
// The address that pays the base fee for this message. The fee is
// deducted before the Msg is processed.
GetFeePayer() crypto.Address
// Signatures returns the signature of signers who signed the Msg.
// CONTRACT: Length returned is same as length of
// pubkeys returned from MsgKeySigners, and the order
// matches.
// CONTRACT: If the signature is missing (ie the Msg is
// invalid), then the corresponding signature is
// .Empty().
GetSignatures() []StdSignature
}
2018-01-14 19:49:57 -08:00
var _ Tx = (*StdTx)(nil)
2018-02-04 16:59:11 -08:00
// standard transaction form
type StdTx struct {
Msg
Signatures []StdSignature
}
2018-02-04 16:59:11 -08:00
//nolint
2018-01-26 06:22:56 -08:00
func (tx StdTx) GetMsg() Msg { return tx.Msg }
func (tx StdTx) GetFeePayer() crypto.Address { return tx.Signatures[0].PubKey.Address() }
2018-01-14 19:49:57 -08:00
func (tx StdTx) GetSignatures() []StdSignature { return tx.Signatures }
2018-02-04 16:59:11 -08:00
//-------------------------------------
// Application function variable used to unmarshal transaction bytes
2018-01-26 04:19:33 -08:00
type TxDecoder func(txBytes []byte) (Tx, Error)