-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Architecture RPC info #140
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
docs/architecture/rpc.md
Outdated
Tezos nodes act as servers and accept HTTP requests from clients and other nodes via this protocol. | ||
|
||
- Clients use it to submit transactions and get information about the state of the blockchain, such as account balances and contract storage | ||
- Nodes use it to bake blocks and communicate with other nodes |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are you sure that node use RPCs to bake blocks?
And they communicate with other nodes using RPCs? (normally, they use the P2P protocol)
Maybe you mean to the fact that baker daemons use RPCs to bake blocks and to communicate with the node?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
* First draft of planned topic on RPC protocol * CLarify based on Nic's comments * Missing period Co-authored-by: NicNomadic <[email protected]> * Format for updated date * Add link to full RPC API doc --------- Co-authored-by: NicNomadic <[email protected]>
Still looking into what info is needed about the RPC interface.