Skip to content

Commit

Permalink
add skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
hinto-janai committed Dec 4, 2024
1 parent 1bc0536 commit 2d7b95c
Show file tree
Hide file tree
Showing 116 changed files with 245 additions and 16 deletions.
2 changes: 1 addition & 1 deletion books/user/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Cuprate's user book
This book is the end-user documentation for Cuprate, aka, "how to use `cuprated`".
This book is the end-user documentation for Cuprate.

See:
- <https://user.cuprate.org>
Expand Down
24 changes: 11 additions & 13 deletions books/user/book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,15 @@ authors = ["hinto-janai"]
language = "en"
multilingual = false
src = "src"
title = "Cuprate's user book"
git-repository-url = "https://github.com/Cuprate/user-book"
title = "Cuprate User Book"
git-repository-url = "https://github.com/Cuprate/cuprate/books/user"

# TODO: fix after importing real files.
#
# [preprocessor.last-changed]
# command = "mdbook-last-changed"
# renderer = ["html"]
#
# [output.html]
# default-theme = "ayu"
# preferred-dark-theme = "ayu"
# git-repository-url = "https://github.com/hinto-janai/cuprate-user"
# additional-css = ["last-changed.css"]
[preprocessor.last-changed]
command = "mdbook-last-changed"
renderer = ["html"]

[output.html]
default-theme = "ayu"
preferred-dark-theme = "ayu"
additional-css = ["last-changed.css"]
no-section-label = true
7 changes: 7 additions & 0 deletions books/user/last-changed.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
footer {
font-size: 0.8em;
text-align: center;
border-top: 1px solid;
margin-top: 4%;
padding: 5px 0;
}
105 changes: 104 additions & 1 deletion books/user/src/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,106 @@
# Summary

- [TODO](todo.md)
[Introduction](introduction.md)

- [Getting started](getting-started/intro.md)
- [System requirements](getting-started/sys-req.md)
- [Pre-built binaries](getting-started/pre-build.md)
- [Building from source](getting-started/source.md)
- [Verifying](getting-started/verify.md)
- [Running](getting-started/run.md)
- [Configuration](config.md)
- [File structure](file-structure.md)
- [Ports](ports/intro.md)
- [P2P](ports/p2p.md)
- [ZMQ](ports/zmq.md)
- [RPC](ports/rpc.md)
- [Command line](cli/intro.md)
- [Runtime input](cli/runtime.md)
- [CLI arguments](cli/args.md)
- [Deployment](deploy/intro.md)
- [Docker](deploy/docker.md)
- [systemd](deploy/systemd.md)
- [Anonymity networks](anon-net/intro.md)
- [SOCKS proxy](anon-net/socks.md)
- [Tor](anon-net/tor.md)
- [Instrumentation](instrumentation/intro.md)
- [Console logs](instrumentation/console-logs.md)
- [File logs](instrumentation/file-logs.md)
- [RPC](rpc/intro.md)
- [`monerod` & `cuprated`](rpc/comparison.md)
- [JSON objects](rpc/objects/intro.md)
- [Block](rpc/objects/block.md)
- [BlockHeader](rpc/objects/block_header.md)
- [Histogram](rpc/objects/histogram.md)
- [Chain](rpc/objects/chain.md)
- [Connection](rpc/objects/connection.md)
- [JSON-RPC 2.0](rpc/json-rpc/intro.md)
- [get_block_count](rpc/json-rpc/get_block_count.md)
- [on_get_block_hash](rpc/json-rpc/on_get_block_hash.md)
- [get_block_template](rpc/json-rpc/get_block_template.md)
- [submit_block](rpc/json-rpc/submit_block.md)
- [generateblocks](rpc/json-rpc/generateblocks.md)
- [get_last_block_header](rpc/json-rpc/get_last_block_header.md)
- [get_block_header_by_hash](rpc/json-rpc/get_block_header_by_hash.md)
- [get_block_header_by_height](rpc/json-rpc/get_block_header_by_height.md)
- [get_block_headers_range](rpc/json-rpc/get_block_headers_range.md)
- [get_block](rpc/json-rpc/get_block.md)
- [get_connections](rpc/json-rpc/get_connections.md)
- [get_info](rpc/json-rpc/get_info.md)
- [hard_fork_info](rpc/json-rpc/hard_fork_info.md)
- [set_bans](rpc/json-rpc/set_bans.md)
- [get_bans](rpc/json-rpc/get_bans.md)
- [banned](rpc/json-rpc/banned.md)
- [flush_txpool](rpc/json-rpc/flush_txpool.md)
- [get_output_histogram](rpc/json-rpc/get_output_histogram.md)
- [get_version](rpc/json-rpc/get_version.md)
- [get_coinbase_tx_sum](rpc/json-rpc/get_coinbase_tx_sum.md)
- [get_fee_estimate](rpc/json-rpc/get_fee_estimate.md)
- [get_alternate_chains](rpc/json-rpc/get_alternate_chains.md)
- [relay_tx](rpc/json-rpc/relay_tx.md)
- [sync_info](rpc/json-rpc/sync_info.md)
- [get_txpool_backlog](rpc/json-rpc/get_txpool_backlog.md)
- [get_output_distribution](rpc/json-rpc/get_output_distribution.md)
- [get_miner_data](rpc/json-rpc/get_miner_data.md)
- [prune_blockchain](rpc/json-rpc/prune_blockchain.md)
- [calc_pow](rpc/json-rpc/calc_pow.md)
- [flush_cache](rpc/json-rpc/flush_cache.md)
- [add_aux_pow](rpc/json-rpc/add_aux_pow.md)
- [Binary endpoints](rpc/bin/intro.md)
- [/get_blocks.bin](rpc/bin/get_blocks.md)
- [/get_blocks_by_height.bin](rpc/bin/get_blocks_by_height.md)
- [/get_hashes.bin](rpc/bin/get_hashes.md)
- [/get_o_indexes.bin](rpc/bin/get_o_indexes.md)
- [/get_outs.bin](rpc/bin/get_outs.md)
- [/get_transaction_pool_hashes.bin](rpc/bin/get_transaction_pool_hashes.md)
- [JSON endpoints](rpc/json/intro.md)
- [/get_height](rpc/json/get_height.md)
- [/get_transactions](rpc/json/get_transactions.md)
- [/get_alt_blocks_hashes](rpc/json/get_alt_blocks_hashes.md)
- [/is_key_image_spent](rpc/json/is_key_image_spent.md)
- [/send_raw_transaction](rpc/json/send_raw_transaction.md)
- [/save_bc](rpc/json/save_bc.md)
- [/get_peer_list](rpc/json/get_peer_list.md)
- [/set_log_level](rpc/json/set_log_level.md)
- [/set_log_categories](rpc/json/set_log_categories.md)
- [/set_bootstrap_daemon](rpc/json/set_bootstrap_daemon.md)
- [/get_transaction_pool](rpc/json/get_transaction_pool.md)
- [/get_transaction_pool_stats](rpc/json/get_transaction_pool_stats.md)
- [/stop_daemon](rpc/json/stop_daemon.md)
- [/get_limit](rpc/json/get_limit.md)
- [/set_limit](rpc/json/set_limit.md)
- [/out_peers](rpc/json/out_peers.md)
- [/in_peers](rpc/json/in_peers.md)
- [/get_net_stats](rpc/json/get_net_stats.md)
- [/get_outs](rpc/json/get_outs.md)
- [/update](rpc/json/update.md)
- [/pop_blocks](rpc/json/pop_blocks.md)
- [Unsupported](rpc/unsupported/intro.md)
- [/start_mining](rpc/unsupported/start_mining.md)
- [/stop_mining](rpc/unsupported/stop_mining.md)
- [/mining_status](rpc/unsupported/mining_status.md)
- [/set_log_hash_rate](rpc/unsupported/set_log_hash_rate.md)
- [/get_info](rpc/unsupported/get_info.md)
- [/start_save_graph](rpc/unsupported/start_save_graph.md)
- [/stop_save_graph](rpc/unsupported/stop_save_graph.md)
- [Appendix](appendix/intro.md)
1 change: 1 addition & 0 deletions books/user/src/anon-net/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Anonymity networks
1 change: 1 addition & 0 deletions books/user/src/anon-net/socks.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# SOCKS proxy
1 change: 1 addition & 0 deletions books/user/src/anon-net/tor.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Tor
1 change: 1 addition & 0 deletions books/user/src/appendix/devs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Developers
1 change: 1 addition & 0 deletions books/user/src/appendix/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Appendix
1 change: 1 addition & 0 deletions books/user/src/cli/args.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# CLI arguments
1 change: 1 addition & 0 deletions books/user/src/cli/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Command line
1 change: 1 addition & 0 deletions books/user/src/cli/runtime.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Runtime input
1 change: 1 addition & 0 deletions books/user/src/config.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Configuration
1 change: 1 addition & 0 deletions books/user/src/deploy/docker.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Docker
1 change: 1 addition & 0 deletions books/user/src/deploy/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Deployment
1 change: 1 addition & 0 deletions books/user/src/deploy/systemd.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# systemd
1 change: 1 addition & 0 deletions books/user/src/file-structure.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# File structure
1 change: 1 addition & 0 deletions books/user/src/getting-started/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Getting started
1 change: 1 addition & 0 deletions books/user/src/getting-started/pre-build.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Pre-built binaries
1 change: 1 addition & 0 deletions books/user/src/getting-started/run.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Running
1 change: 1 addition & 0 deletions books/user/src/getting-started/source.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Building from source
1 change: 1 addition & 0 deletions books/user/src/getting-started/sys-req.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# System requirements
1 change: 1 addition & 0 deletions books/user/src/getting-started/verify.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Verifying
1 change: 1 addition & 0 deletions books/user/src/gs/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Getting started
1 change: 1 addition & 0 deletions books/user/src/gs/pre-build.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Pre-built binaries}
1 change: 1 addition & 0 deletions books/user/src/gs/run.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Running
1 change: 1 addition & 0 deletions books/user/src/gs/source.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Building from source
1 change: 1 addition & 0 deletions books/user/src/gs/sys-req.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# System requirements
1 change: 1 addition & 0 deletions books/user/src/gs/verify.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Verifying
1 change: 1 addition & 0 deletions books/user/src/images/CuprateLogo.svg
1 change: 1 addition & 0 deletions books/user/src/instrumentation/console-logs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Console logs
1 change: 1 addition & 0 deletions books/user/src/instrumentation/file-logs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# File logs
1 change: 1 addition & 0 deletions books/user/src/instrumentation/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Instrumentation
12 changes: 12 additions & 0 deletions books/user/src/introduction.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<div align="center">
<img src="images/CuprateLogo.svg" width="50%"/>

[![Matrix](https://img.shields.io/badge/Matrix-Cuprate-white?logo=matrix&labelColor=grey&logoColor=white)](https://matrix.to/#/#cuprate:monero.social)

Cuprate is an alternative [Monero](https://getmonero.org) node implementation that independently validates consensus rules, providing a layer of security and redundancy for the network. It is focused on being fast, user-friendly, and backwards compatability with [`monerod`](https://github.com/monero-project/monero).

Check warning on line 6 in books/user/src/introduction.md

View workflow job for this annotation

GitHub Actions / typo

"compatability" should be "compatibility".

This project is currently a work-in-progress; documentation will be changing/unfinished and the `cuprated` node itself is not yet production ready.

Feel free to join our Matrix channel or read our [documentation](https://github.com/Cuprate/cuprate?tab=readme-ov-file#documentation) to learn more.

</div>
1 change: 1 addition & 0 deletions books/user/src/ports/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Ports
1 change: 1 addition & 0 deletions books/user/src/ports/p2p.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# P2P
1 change: 1 addition & 0 deletions books/user/src/ports/rpc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# RPC
1 change: 1 addition & 0 deletions books/user/src/ports/zmq.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# ZMQ
1 change: 1 addition & 0 deletions books/user/src/rpc/bin/get_blocks.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /get_blocks.bin
1 change: 1 addition & 0 deletions books/user/src/rpc/bin/get_blocks_by_height.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /get_blocks_by_height.bin
1 change: 1 addition & 0 deletions books/user/src/rpc/bin/get_hashes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /get_hashes.bin
1 change: 1 addition & 0 deletions books/user/src/rpc/bin/get_o_indexes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /get_o_indexes.bin
1 change: 1 addition & 0 deletions books/user/src/rpc/bin/get_outs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /get_outs.bin
1 change: 1 addition & 0 deletions books/user/src/rpc/bin/get_transaction_pool_hashes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /get_transaction_pool_hashes.bin
1 change: 1 addition & 0 deletions books/user/src/rpc/bin/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Binary endpoints
1 change: 1 addition & 0 deletions books/user/src/rpc/comparison.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# monerod & cuprated
1 change: 1 addition & 0 deletions books/user/src/rpc/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# RPC
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/add_aux_pow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# add_aux_pow
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/banned.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# banned
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/calc_pow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# calc_pow
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/flush_cache.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# flush_cache
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/flush_txpool.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# flush_txpool
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/generateblocks.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# generateblocks
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/get_alternate_chains.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# get_alternate_chains
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/get_bans.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# get_bans
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/get_block.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# get_block
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/get_block_count.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# get_block_count
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/get_block_header_by_hash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# get_block_header_by_hash
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/get_block_header_by_height.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# get_block_header_by_height
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/get_block_headers_range.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# get_block_headers_range
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/get_block_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# get_block_template
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/get_coinbase_tx_sum.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# get_coinbase_tx_sum
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/get_connections.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# get_connections
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/get_fee_estimate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# get_fee_estimate
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/get_info.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# get_info
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/get_last_block_header.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# get_last_block_header
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/get_miner_data.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# get_miner_data
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/get_output_distribution.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# get_output_distribution
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/get_output_histogram.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# get_output_histogram
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/get_txpool_backlog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# get_txpool_backlog
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/get_version.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# get_version
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/hard_fork_info.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# hard_fork_info
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# JSON-RPC 2.0
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/on_get_block_hash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# on_get_block_hash
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/prune_blockchain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# prune_blockchain
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/relay_tx.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# relay_tx
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/set_bans.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# set_bans
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/submit_block.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# submit_block
1 change: 1 addition & 0 deletions books/user/src/rpc/json-rpc/sync_info.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# sync_info
1 change: 1 addition & 0 deletions books/user/src/rpc/json/get_alt_blocks_hashes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /get_alt_blocks_hashes
1 change: 1 addition & 0 deletions books/user/src/rpc/json/get_height.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /get_height
1 change: 1 addition & 0 deletions books/user/src/rpc/json/get_limit.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /get_limit
1 change: 1 addition & 0 deletions books/user/src/rpc/json/get_net_stats.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /get_net_stats
1 change: 1 addition & 0 deletions books/user/src/rpc/json/get_outs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /get_outs
1 change: 1 addition & 0 deletions books/user/src/rpc/json/get_peer_list.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /get_peer_list
1 change: 1 addition & 0 deletions books/user/src/rpc/json/get_transaction_pool.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /get_transaction_pool
1 change: 1 addition & 0 deletions books/user/src/rpc/json/get_transaction_pool_stats.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /get_transaction_pool_stats
1 change: 1 addition & 0 deletions books/user/src/rpc/json/get_transactions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /get_transactions
1 change: 1 addition & 0 deletions books/user/src/rpc/json/in_peers.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /in_peers
1 change: 1 addition & 0 deletions books/user/src/rpc/json/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# JSON endpoints
1 change: 1 addition & 0 deletions books/user/src/rpc/json/is_key_image_spent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /is_key_image_spent
1 change: 1 addition & 0 deletions books/user/src/rpc/json/out_peers.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /out_peers
1 change: 1 addition & 0 deletions books/user/src/rpc/json/pop_blocks.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /pop_blocks
1 change: 1 addition & 0 deletions books/user/src/rpc/json/save_bc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /save_bc
1 change: 1 addition & 0 deletions books/user/src/rpc/json/send_raw_transaction.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /send_raw_transaction
1 change: 1 addition & 0 deletions books/user/src/rpc/json/set_bootstrap_daemon.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /set_bootstrap_daemon
1 change: 1 addition & 0 deletions books/user/src/rpc/json/set_limit.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /set_limit
1 change: 1 addition & 0 deletions books/user/src/rpc/json/set_log_categories.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /set_log_categories
1 change: 1 addition & 0 deletions books/user/src/rpc/json/set_log_level.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /set_log_level
1 change: 1 addition & 0 deletions books/user/src/rpc/json/stop_daemon.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /stop_daemon
1 change: 1 addition & 0 deletions books/user/src/rpc/json/update.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /update
1 change: 1 addition & 0 deletions books/user/src/rpc/objects/block.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Block
1 change: 1 addition & 0 deletions books/user/src/rpc/objects/block_header.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# BlockHeader
1 change: 1 addition & 0 deletions books/user/src/rpc/objects/chain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chain
1 change: 1 addition & 0 deletions books/user/src/rpc/objects/connection.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Connection
1 change: 1 addition & 0 deletions books/user/src/rpc/objects/histogram.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Histogram
1 change: 1 addition & 0 deletions books/user/src/rpc/objects/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# JSON objects
1 change: 1 addition & 0 deletions books/user/src/rpc/unsupported/get_info.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /get_info
1 change: 1 addition & 0 deletions books/user/src/rpc/unsupported/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Unsupported
1 change: 1 addition & 0 deletions books/user/src/rpc/unsupported/mining_status.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /mining_status
1 change: 1 addition & 0 deletions books/user/src/rpc/unsupported/set_log_hash_rate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /set_log_hash_rate
1 change: 1 addition & 0 deletions books/user/src/rpc/unsupported/start_mining.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /start_mining
1 change: 1 addition & 0 deletions books/user/src/rpc/unsupported/start_save_graph.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /start_save_graph
1 change: 1 addition & 0 deletions books/user/src/rpc/unsupported/stop_mining.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /stop_mining
1 change: 1 addition & 0 deletions books/user/src/rpc/unsupported/stop_save_graph.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# /stop_save_graph
1 change: 0 additions & 1 deletion books/user/src/todo.md

This file was deleted.

0 comments on commit 2d7b95c

Please sign in to comment.