Files
M. J. Fromberger 783ab230d8 Prepare documentation for v0.36.x backport branch. (#8705)
- Remove RFCs and ADRs from v0.36.x backport branch.
- Update branch-relative links.
2022-06-07 09:42:46 -07:00

799 B

order
order
9

RPC

The RPC documentation is hosted here:

To update the documentation, edit the relevant godoc comments in the rpc directory.

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