The secure enclave is designed to securely contain secret cryptographic material, it offers safe interfaces for the rest of the node to interact with.
The node’s network consists of 3 components:
-
Intercommunication API (GRPC)
-
Public client API (REST)
-
Control client API (REST)
This interface is an binary interface using the protobuf format and GRPC standard. The protobuf files schema are available in the source code.
The interface is responsible to communicate with other nodes in the network:
-
block sending and receiving
-
fragments (transaction, certificates) broadcast
-
peer2peer gossip
This interface is for simple queries for clients like:
-
Wallet Client & Middleware
-
Analytics & Debugging tools
-
Explorer
it’s recommended for this interface to not be opened to the public.