Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ErisKeyClient ¶
type ErisKeyClient struct {
// contains filtered or unexported fields
}
func NewErisKeyClient ¶
func NewErisKeyClient(rpcString string) *ErisKeyClient
ErisKeyClient.New returns a new eris-keys client for provided rpc location Eris-keys connects over http request-responses
type HTTPResponse ¶
type KeyClient ¶
type KeyClient interface {
// Sign needs to return the signature bytes for given message to sign
// and the address to sign it with.
Sign(signBytesString string, signAddress []byte) (signature []byte, err error)
// PublicKey needs to return the public key associated with a given address
PublicKey(address []byte) (publicKey []byte, err error)
}
Click to show internal directories.
Click to hide internal directories.