Documentation ¶
Index ¶
- Constants
- Variables
- func NewAminoCodec() *amino.Codec
- func NewGRPCServer(logger *logging.Logger) *grpc.Server
- type AccountHumanReadable
- type Block
- type BlockMeta
- type Codec
- type GRPCConfig
- type MetricsConfig
- type ProfilerConfig
- type RPCConfig
- type RPCError
- type RPCErrorResponse
- type RPCRequest
- type RPCResponse
- type RPCResultResponse
- type ResultAccount
- type ResultAccountHumanReadable
- type ResultAccountStats
- type ResultAccounts
- type ResultBlock
- type ResultBlocks
- type ResultChainId
- type ResultConsensusState
- type ResultDumpStorage
- type ResultGeneratePrivateAccount
- type ResultGenesis
- type ResultName
- type ResultNames
- type ResultNetwork
- type ResultPeers
- type ResultSignTx
- type ResultStatus
- func (*ResultStatus) Descriptor() ([]byte, []int)
- func (m *ResultStatus) GetBurrowVersion() string
- func (m *ResultStatus) GetChainID() string
- func (m *ResultStatus) GetNodeInfo() *tendermint.NodeInfo
- func (m *ResultStatus) GetRunID() string
- func (m *ResultStatus) GetSyncInfo() *SyncInfo
- func (m *ResultStatus) GetValidatorInfo() *validator.Validator
- func (m *ResultStatus) Marshal() (dAtA []byte, err error)
- func (m *ResultStatus) MarshalTo(dAtA []byte) (int, error)
- func (*ResultStatus) ProtoMessage()
- func (m *ResultStatus) Reset()
- func (m *ResultStatus) Size() (n int)
- func (m *ResultStatus) String() string
- func (m *ResultStatus) Unmarshal(dAtA []byte) error
- func (m *ResultStatus) XXX_DiscardUnknown()
- func (m *ResultStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ResultStatus) XXX_Merge(src proto.Message)
- func (*ResultStatus) XXX_MessageName() string
- func (m *ResultStatus) XXX_Size() int
- func (m *ResultStatus) XXX_Unmarshal(b []byte) error
- type ResultStorage
- type ResultSubscribe
- type ResultUnconfirmedTxs
- type ResultUnsubscribe
- type ResultValidators
- type RoundState
- type ServerConfig
- type Service
- func (s *Service) Account(address crypto.Address) (*ResultAccount, error)
- func (s *Service) AccountHumanReadable(address crypto.Address) (*ResultAccountHumanReadable, error)
- func (s *Service) AccountStats() (*ResultAccountStats, error)
- func (s *Service) Accounts(predicate func(*acm.Account) bool) (*ResultAccounts, error)
- func (s *Service) Block(height uint64) (*ResultBlock, error)
- func (s *Service) BlockchainInfo() bcm.BlockchainInfo
- func (s *Service) Blocks(minHeight, maxHeight int64) (*ResultBlocks, error)
- func (s *Service) ChainID() string
- func (s *Service) ChainIdentifiers() (*ResultChainId, error)
- func (s *Service) ConsensusState() (*ResultConsensusState, error)
- func (s *Service) DumpStorage(address crypto.Address) (*ResultDumpStorage, error)
- func (s *Service) GeneratePrivateAccount() (*ResultGeneratePrivateAccount, error)
- func (s *Service) Genesis() (*ResultGenesis, error)
- func (s *Service) Name(name string) (*ResultName, error)
- func (s *Service) Names(predicate func(*names.Entry) bool) (*ResultNames, error)
- func (s *Service) Network() (*ResultNetwork, error)
- func (s *Service) Peers() []core_types.Peer
- func (s *Service) State() state.IterableStatsReader
- func (s *Service) Status() (*ResultStatus, error)
- func (s *Service) StatusWithin(blockTimeWithin, blockSeenTimeWithin string) (*ResultStatus, error)
- func (s *Service) Storage(address crypto.Address, key []byte) (*ResultStorage, error)
- func (s *Service) UnconfirmedTxs(maxTxs int64) (*ResultUnconfirmedTxs, error)
- func (s *Service) Validators() (*ResultValidators, error)
- type StorageItem
- type SyncInfo
- func (*SyncInfo) Descriptor() ([]byte, []int)
- func (m *SyncInfo) GetCatchingUp() bool
- func (m *SyncInfo) GetLatestBlockHeight() uint64
- func (m *SyncInfo) GetLatestBlockSeenTime() time.Time
- func (m *SyncInfo) GetLatestBlockTime() time.Time
- func (m *SyncInfo) Marshal() (dAtA []byte, err error)
- func (m *SyncInfo) MarshalTo(dAtA []byte) (int, error)
- func (*SyncInfo) ProtoMessage()
- func (m *SyncInfo) Reset()
- func (m *SyncInfo) Size() (n int)
- func (m *SyncInfo) String() string
- func (m *SyncInfo) Unmarshal(dAtA []byte) error
- func (m *SyncInfo) XXX_DiscardUnknown()
- func (m *SyncInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *SyncInfo) XXX_Merge(src proto.Message)
- func (*SyncInfo) XXX_MessageName() string
- func (m *SyncInfo) XXX_Size() int
- func (m *SyncInfo) XXX_Unmarshal(b []byte) error
Constants ¶
const ( INVALID_REQUEST = -32600 METHOD_NOT_FOUND = -32601 INVALID_PARAMS = -32602 INTERNAL_ERROR = -32603 PARSE_ERROR = -32700 )
JSON-RPC 2.0 error codes.
const MaxBlockLookback = 1000
Magic! Should probably be configurable, but not shouldn't be so huge we end up DoSing ourselves.
Variables ¶
var ( ErrInvalidLengthRpc = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowRpc = fmt.Errorf("proto: integer overflow") )
Functions ¶
func NewAminoCodec ¶
Types ¶
type AccountHumanReadable ¶
type Block ¶
Needed for go-amino handling of interface types
func (Block) MarshalJSON ¶
func (*Block) UnmarshalJSON ¶
type Codec ¶
type Codec interface { EncodeBytes(interface{}) ([]byte, error) Encode(interface{}, io.Writer) error DecodeBytes(interface{}, []byte) error Decode(interface{}, io.Reader) error }
Used for rpc request and response data.
type GRPCConfig ¶
type MetricsConfig ¶
type MetricsConfig struct { Enabled bool ListenAddress string MetricsPath string BlockSampleSize uint64 }
func DefaultMetricsConfig ¶
func DefaultMetricsConfig() *MetricsConfig
type ProfilerConfig ¶
type RPCConfig ¶
type RPCConfig struct { Info *ServerConfig `json:",omitempty" toml:",omitempty"` Profiler *ServerConfig `json:",omitempty" toml:",omitempty"` GRPC *ServerConfig `json:",omitempty" toml:",omitempty"` Metrics *MetricsConfig `json:",omitempty" toml:",omitempty"` }
func DefaultRPCConfig ¶
func DefaultRPCConfig() *RPCConfig
type RPCErrorResponse ¶
type RPCErrorResponse struct { Error *RPCError `json:"error"` Id string `json:"id"` JSONRPC string `json:"jsonrpc"` }
RPCErrorResponse MUST NOT contain the result member if an error occured
func (*RPCErrorResponse) AssertIsRPCResponse ¶
func (rpcErrorResponse *RPCErrorResponse) AssertIsRPCResponse() bool
AssertIsRPCResponse implements a marker method for RPCErrorResponse to implement the interface RPCResponse
type RPCRequest ¶
type RPCRequest struct { JSONRPC string `json:"jsonrpc"` Method string `json:"method"` Params json.RawMessage `json:"params"` Id string `json:"id"` }
Request and Response objects. Id is a string. Error data not used. Refer to JSON-RPC specification http://www.jsonrpc.org/specification
func NewRPCRequest ¶
func NewRPCRequest(id string, method string, params json.RawMessage) *RPCRequest
Create a new RPC request. This is the generic struct that is passed to RPC methods
type RPCResponse ¶
type RPCResponse interface {
AssertIsRPCResponse() bool
}
RPCResponse MUST follow the JSON-RPC specification for Response object reference: http://www.jsonrpc.org/specification#response_object
func NewRPCErrorResponse ¶
func NewRPCErrorResponse(id string, code int, message string) RPCResponse
NewRPCErrorResponse creates a new error-response object from the error code and message
func NewRPCResponse ¶
func NewRPCResponse(id string, res interface{}) RPCResponse
NewRPCResponse creates a new response object from a result
type RPCResultResponse ¶
type RPCResultResponse struct { Result interface{} `json:"result"` Id string `json:"id"` JSONRPC string `json:"jsonrpc"` }
RPCResultResponse MUST NOT contain the error member if no error occurred
func (*RPCResultResponse) AssertIsRPCResponse ¶
func (rpcResultResponse *RPCResultResponse) AssertIsRPCResponse() bool
AssertIsRPCResponse implements a marker method for RPCResultResponse to implement the interface RPCResponse
type ResultAccount ¶
type ResultAccountHumanReadable ¶
type ResultAccountHumanReadable struct {
Account *AccountHumanReadable
}
type ResultAccountStats ¶
type ResultAccounts ¶
type ResultBlock ¶
type ResultBlocks ¶
type ResultChainId ¶
type ResultConsensusState ¶
type ResultConsensusState struct {
*core_types.ResultDumpConsensusState
}
type ResultDumpStorage ¶
type ResultDumpStorage struct {
StorageItems []StorageItem
}
type ResultGeneratePrivateAccount ¶
type ResultGeneratePrivateAccount struct {
PrivateAccount *acm.ConcretePrivateAccount
}
type ResultGenesis ¶
type ResultGenesis struct {
Genesis genesis.GenesisDoc
}
type ResultName ¶
type ResultNames ¶
type ResultNetwork ¶
type ResultNetwork struct { ThisNode *tendermint.NodeInfo *core_types.ResultNetInfo }
type ResultPeers ¶
type ResultPeers struct {
Peers []core_types.Peer
}
type ResultSignTx ¶
type ResultStatus ¶
type ResultStatus struct { ChainID string `protobuf:"bytes,1,opt,name=ChainID,proto3" json:"ChainID,omitempty"` RunID string `protobuf:"bytes,2,opt,name=RunID,proto3" json:"RunID,omitempty"` BurrowVersion string `protobuf:"bytes,3,opt,name=BurrowVersion,proto3" json:"BurrowVersion,omitempty"` GenesisHash github_com_hyperledger_burrow_binary.HexBytes `protobuf:"bytes,4,opt,name=GenesisHash,proto3,customtype=github.com/hyperledger/burrow/binary.HexBytes" json:"GenesisHash"` NodeInfo *tendermint.NodeInfo `protobuf:"bytes,5,opt,name=NodeInfo" json:"NodeInfo,omitempty"` SyncInfo *SyncInfo `protobuf:"bytes,6,opt,name=SyncInfo" json:"SyncInfo,omitempty"` ValidatorInfo *validator.Validator `protobuf:"bytes,7,opt,name=ValidatorInfo" json:"ValidatorInfo,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func Status ¶
func Status(blockchain bcm.BlockchainInfo, nodeView *tendermint.NodeView, blockTimeWithin, blockSeenTimeWithin string) (*ResultStatus, error)
func (*ResultStatus) Descriptor ¶
func (*ResultStatus) Descriptor() ([]byte, []int)
func (*ResultStatus) GetBurrowVersion ¶
func (m *ResultStatus) GetBurrowVersion() string
func (*ResultStatus) GetChainID ¶
func (m *ResultStatus) GetChainID() string
func (*ResultStatus) GetNodeInfo ¶
func (m *ResultStatus) GetNodeInfo() *tendermint.NodeInfo
func (*ResultStatus) GetRunID ¶
func (m *ResultStatus) GetRunID() string
func (*ResultStatus) GetSyncInfo ¶
func (m *ResultStatus) GetSyncInfo() *SyncInfo
func (*ResultStatus) GetValidatorInfo ¶
func (m *ResultStatus) GetValidatorInfo() *validator.Validator
func (*ResultStatus) Marshal ¶
func (m *ResultStatus) Marshal() (dAtA []byte, err error)
func (*ResultStatus) ProtoMessage ¶
func (*ResultStatus) ProtoMessage()
func (*ResultStatus) Reset ¶
func (m *ResultStatus) Reset()
func (*ResultStatus) Size ¶
func (m *ResultStatus) Size() (n int)
func (*ResultStatus) String ¶
func (m *ResultStatus) String() string
func (*ResultStatus) Unmarshal ¶
func (m *ResultStatus) Unmarshal(dAtA []byte) error
func (*ResultStatus) XXX_DiscardUnknown ¶
func (m *ResultStatus) XXX_DiscardUnknown()
func (*ResultStatus) XXX_Marshal ¶
func (m *ResultStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*ResultStatus) XXX_Merge ¶
func (dst *ResultStatus) XXX_Merge(src proto.Message)
func (*ResultStatus) XXX_MessageName ¶
func (*ResultStatus) XXX_MessageName() string
func (*ResultStatus) XXX_Size ¶
func (m *ResultStatus) XXX_Size() int
func (*ResultStatus) XXX_Unmarshal ¶
func (m *ResultStatus) XXX_Unmarshal(b []byte) error
type ResultSubscribe ¶
type ResultUnconfirmedTxs ¶
type ResultUnsubscribe ¶
type ResultUnsubscribe struct {
SubscriptionID string
}
type ResultValidators ¶
type RoundState ¶
type RoundState struct {
*ctypes.RoundState
}
TODO use round state in ResultConsensusState - currently there are some part of RoundState have no Unmarshal
func (RoundState) MarshalJSON ¶
func (rs RoundState) MarshalJSON() ([]byte, error)
func (*RoundState) UnmarshalJSON ¶
func (rs *RoundState) UnmarshalJSON(data []byte) (err error)
type ServerConfig ¶
func DefaultGRPCConfig ¶
func DefaultGRPCConfig() *ServerConfig
func DefaultInfoConfig ¶
func DefaultInfoConfig() *ServerConfig
func DefaultProfilerConfig ¶
func DefaultProfilerConfig() *ServerConfig
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
Base service that provides implementation for all underlying RPC methods
func NewService ¶
func NewService(state state.IterableStatsReader, nameReg names.IterableReader, blockchain bcm.BlockchainInfo, nodeView *tendermint.NodeView, logger *logging.Logger) *Service
Service provides an internal query and information service with serialisable return types on which can accomodate a number of transport front ends
func (*Service) Account ¶
func (s *Service) Account(address crypto.Address) (*ResultAccount, error)
Accounts
func (*Service) AccountHumanReadable ¶
func (s *Service) AccountHumanReadable(address crypto.Address) (*ResultAccountHumanReadable, error)
func (*Service) AccountStats ¶
func (s *Service) AccountStats() (*ResultAccountStats, error)
func (*Service) BlockchainInfo ¶
func (s *Service) BlockchainInfo() bcm.BlockchainInfo
func (*Service) Blocks ¶
func (s *Service) Blocks(minHeight, maxHeight int64) (*ResultBlocks, error)
Returns the current blockchain height and metadata for a range of blocks between minHeight and maxHeight. Only returns maxBlockLookback block metadata from the top of the range of blocks. Passing 0 for maxHeight sets the upper height of the range to the current blockchain height.
func (*Service) ChainIdentifiers ¶
func (s *Service) ChainIdentifiers() (*ResultChainId, error)
func (*Service) ConsensusState ¶
func (s *Service) ConsensusState() (*ResultConsensusState, error)
func (*Service) DumpStorage ¶
func (s *Service) DumpStorage(address crypto.Address) (*ResultDumpStorage, error)
func (*Service) GeneratePrivateAccount ¶
func (s *Service) GeneratePrivateAccount() (*ResultGeneratePrivateAccount, error)
func (*Service) Genesis ¶
func (s *Service) Genesis() (*ResultGenesis, error)
func (*Service) Network ¶
func (s *Service) Network() (*ResultNetwork, error)
func (*Service) Peers ¶
func (s *Service) Peers() []core_types.Peer
func (*Service) State ¶
func (s *Service) State() state.IterableStatsReader
func (*Service) Status ¶
func (s *Service) Status() (*ResultStatus, error)
func (*Service) StatusWithin ¶
func (s *Service) StatusWithin(blockTimeWithin, blockSeenTimeWithin string) (*ResultStatus, error)
func (*Service) UnconfirmedTxs ¶
func (s *Service) UnconfirmedTxs(maxTxs int64) (*ResultUnconfirmedTxs, error)
func (*Service) Validators ¶
func (s *Service) Validators() (*ResultValidators, error)
type SyncInfo ¶
type SyncInfo struct { LatestBlockHeight uint64 `protobuf:"varint,1,opt,name=LatestBlockHeight,proto3" json:""` LatestBlockHash github_com_hyperledger_burrow_binary.HexBytes `` /* 130-byte string literal not displayed */ LatestAppHash github_com_hyperledger_burrow_binary.HexBytes `` /* 126-byte string literal not displayed */ // Timestamp of block as set by the block proposer LatestBlockTime time.Time `protobuf:"bytes,4,opt,name=LatestBlockTime,stdtime" json:"LatestBlockTime"` // Time at which we committed the last block LatestBlockSeenTime time.Time `protobuf:"bytes,5,opt,name=LatestBlockSeenTime,stdtime" json:"LatestBlockSeenTime"` // When catching up in fast sync CatchingUp bool `protobuf:"varint,6,opt,name=CatchingUp,proto3" json:""` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*SyncInfo) Descriptor ¶
func (*SyncInfo) GetCatchingUp ¶
func (*SyncInfo) GetLatestBlockHeight ¶
func (*SyncInfo) GetLatestBlockSeenTime ¶
func (*SyncInfo) GetLatestBlockTime ¶
func (*SyncInfo) ProtoMessage ¶
func (*SyncInfo) ProtoMessage()
func (*SyncInfo) XXX_DiscardUnknown ¶
func (m *SyncInfo) XXX_DiscardUnknown()