Skip to content
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

docs: core-geth features, generated API method docs #306

Merged
merged 13 commits into from
Feb 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ build/_vendor/pkg
/build/_workspace/
/build/cache/
/build/bin/
/build/static/
/geth*.zip

# travis
Expand Down Expand Up @@ -54,4 +55,4 @@ les/transactions.rlp
# Files generated by docs build
/MANIFEST
/manifest.json
/site
/site
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,9 @@ clean: clean-evmc
mkdocs-serve: ## Serve generated documentation (during development)
@build/mkdocs-serve.sh

docs-generate: ## Generate JSON RPC API documentation from the OpenRPC service discovery document.
env COREGETH_GEN_OPENRPC_DOCS=on go test -count=1 -run BuildStatic ./ethclient

# The devtools target installs tools required for 'go generate'.
# You need to put $GOBIN (or $GOPATH/bin) in your PATH to use 'go generate'.

Expand Down
2 changes: 1 addition & 1 deletion docs/apis/jsonrpc-apis.md → docs/JSON-RPC-API/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ hide:
- toc # Hide table of contents
---

# JSON-RPC APIs
# Using JSON-RPC APIs

## Programmatically interfacing `geth` nodes

Expand Down
Loading