Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ApproveAPIGossipMessages ¶
ApproveAPIGossipMessages registers the gossip api test protocol and approves every message as valid
Types ¶
type ActivationAPI ¶
ActivationAPI is an API for activation module.
type GenesisTimeAPI ¶
GenesisTimeAPI is an API to get genesis time and current layer of the system
type LoggingAPI ¶
LoggingAPI is an API to system loggers
type MempoolAPI ¶ added in v0.1.16
type MempoolAPI interface { Get(types.TransactionID) (*types.Transaction, error) GetTxIdsByAddress(types.Address) []types.TransactionID GetProjection(types.Address, uint64, uint64) (uint64, uint64) }
MempoolAPI is an API for reading mempool data that's useful for API services
type NetworkAPI ¶
type NetworkAPI interface { Broadcast(ctx context.Context, channel string, data []byte) error SubscribePeerEvents() (conn, disc chan p2pcrypto.PublicKey) }
NetworkAPI is an API to nodes gossip network
type PeerCounter ¶
type PeerCounter interface { Close() PeerCount() uint64 }
PeerCounter is an api to get amount of connected peers
type PostSetupAPI ¶
type PostSetupAPI = activation.PostSetupProvider
PostSetupAPI is an alias to PostSetupProvider.
type Service ¶
type Service interface {
RegisterGossipProtocol(string, priorityq.Priority) chan service.GossipMessage
}
Service is an interface for receiving messages via gossip
type SmeshingAPI ¶
type SmeshingAPI = activation.SmeshingProvider
SmeshingAPI is an alias to SmeshingProvider.
type TxAPI ¶
type TxAPI interface { AddressExists(types.Address) bool ValidateNonceAndBalance(*types.Transaction) error GetATXs(context.Context, []types.ATXID) (map[types.ATXID]*types.ActivationTx, []types.ATXID) GetLayer(types.LayerID) (*types.Layer, error) GetRewards(types.Address) ([]types.Reward, error) GetTransactions([]types.TransactionID) ([]*types.Transaction, map[types.TransactionID]struct{}) GetMeshTransactions([]types.TransactionID) ([]*types.MeshTransaction, map[types.TransactionID]struct{}) GetTransactionsByDestination(types.LayerID, types.Address) []types.TransactionID GetTransactionsByOrigin(types.LayerID, types.Address) []types.TransactionID LatestLayer() types.LayerID GetLayerApplied(types.TransactionID) *types.LayerID GetMeshTransaction(types.TransactionID) (*types.MeshTransaction, error) GetProjection(types.Address, uint64, uint64) (uint64, uint64, error) LatestLayerInState() types.LayerID ProcessedLayer() types.LayerID GetStateRoot() types.Hash32 GetLayerStateRoot(types.LayerID) (types.Hash32, error) GetBalance(types.Address) uint64 GetNonce(types.Address) uint64 GetAllAccounts() (*types.MultipleAccountsState, error) GetRewardsBySmesherID(types.NodeID) ([]types.Reward, error) }
TxAPI is an api for getting transaction status
Directories ¶
Path | Synopsis |
---|---|
Package config provides configuration for GRPC and HTTP api servers
|
Package config provides configuration for GRPC and HTTP api servers |
Click to show internal directories.
Click to hide internal directories.