status-go/geth/types.go

95 lines
2.0 KiB
Go
Raw Normal View History

package geth
import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/les/status"
)
type SignalEnvelope struct {
Type string `json:"type"`
Event interface{} `json:"event"`
}
type AccountInfo struct {
Address string `json:"address"`
PubKey string `json:"pubkey"`
Mnemonic string `json:"mnemonic"`
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-04 16:00:29 +00:00
}
2016-07-12 18:10:37 +00:00
type AddWhisperFilterResult struct {
Id int `json:"id"`
Error string `json:"error"`
2016-07-12 18:10:37 +00:00
}
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 SendTransactionEvent struct {
Id string `json:"id"`
Args status.SendTxArgs `json:"args"`
MessageId string `json:"message_id"`
2016-07-12 18:10:37 +00:00
}
type ReturnSendTransactionEvent struct {
Id string `json:"id"`
Args status.SendTxArgs `json:"args"`
MessageId string `json:"message_id"`
ErrorMessage string `json:"error_message"`
ErrorCode string `json:"error_code"`
}
2016-08-09 16:41:42 +00:00
type CompleteTransactionResult struct {
Id string `json:"id"`
2016-08-09 16:41:42 +00:00
Hash string `json:"hash"`
Error string `json:"error"`
}
type RawCompleteTransactionResult struct {
Hash common.Hash
Error error
}
type CompleteTransactionsResult struct {
Results map[string]CompleteTransactionResult `json:"results"`
}
type RawDiscardTransactionResult struct {
Error error
}
type DiscardTransactionResult struct {
Id string `json:"id"`
Error string `json:"error"`
}
type DiscardTransactionsResult struct {
Results map[string]DiscardTransactionResult `json:"results"`
}
type LocalStorageSetEvent struct {
ChatId string `json:"chat_id"`
Data string `json:"data"`
}
type RPCCall struct {
Id int64
Method string
Params []interface{}
}