Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 177 Bytes

signer.mdx

File metadata and controls

11 lines (8 loc) · 177 Bytes

Signers

The Signer represents an abstract entity that can sign arbitrary messages.

type Key interface {
	Address() Address
	Sign(hash []byte) ([]byte, error)
}