mirror of
https://github.com/tendermint/tendermint.git
synced 2026-02-03 18:42:14 +00:00
28 lines
809 B
Markdown
28 lines
809 B
Markdown
---
|
|
order: 9
|
|
---
|
|
|
|
# RPC
|
|
|
|
The RPC documentation is hosted here:
|
|
|
|
- [https://docs.tendermint.com/master/rpc/](https://docs.tendermint.com/master/rpc/)
|
|
|
|
To update the documentation, edit the relevant `godoc` comments in the [rpc/core directory](https://github.com/tendermint/tendermint/tree/master/rpc/core).
|
|
|
|
If you are using Tendermint in-process, you will need to set the version to be displayed in the RPC.
|
|
|
|
If you are using a makefile with your go project, this can be done by using sed and `ldflags`.
|
|
|
|
Example:
|
|
|
|
```
|
|
VERSION := $(shell go list -m github.com/tendermint/tendermint | sed 's:.* ::')
|
|
LD_FLAGS = -X github.com/tendermint/tendermint/version.TMCoreSemVer=$(VERSION)
|
|
|
|
install:
|
|
@echo "Installing the brr machine"
|
|
@go install -mod=readonly -ldflags "$(LD_FLAGS)" ./cmd/<app>
|
|
.PHONY: install
|
|
```
|