terra-oracle/pkg/signer/signer.go

13 lines
231 B
Go
Raw Permalink Normal View History

2019-06-20 11:25:58 -07:00
package signer
import (
ctypes "github.com/cosmos/cosmos-sdk/types"
"github.com/tendermint/tendermint/crypto"
)
type Signer interface {
Address() ctypes.AccAddress
PubKey() crypto.PubKey
Sign(bytes []byte) ([]byte, error)
}