status-go/src/types.go

35 lines
717 B
Go
Raw Normal View History

package main
type AccountInfo struct {
Address string `json:"address"`
PubKey string `json:"pubkey"`
Error string `json:"error"`
}
type JSONError struct {
Error string `json:"error"`
}
2016-07-04 16:00:29 +00:00
type AddPeerResult struct {
Success bool `json:"success"`
Error string `json:"error"`
}
2016-07-12 18:10:37 +00:00
type AddWhisperFilterResult struct {
Id int `json:"id"`
Error string `json:"error"`
}
type WhisperMessageEvent struct {
Payload string `json:"payload"`
To string `json:"to"`
From string `json:"from"`
Sent int64 `json:"sent"`
TTL int64 `json:"ttl"`
Hash string `json:"hash"`
}
type GethEvent struct {
Type string `json:"type"`
Event interface{} `json:"event"`
}