mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 03:35:51 +00:00
Add line breaks after initial h1's consistently
This commit is contained in:
@@ -4,4 +4,5 @@ parent: admin-api-methods.html
|
||||
template: pagetype-category.html.jinja
|
||||
---
|
||||
# Key Generation Methods
|
||||
|
||||
Use these methods to generate and manage keys.
|
||||
@@ -4,4 +4,5 @@ parent: admin-api-methods.html
|
||||
template: pagetype-category.html.jinja
|
||||
---
|
||||
# Logging and Data Management Methods
|
||||
|
||||
Use these methods to manage log levels and other data, such as ledgers.
|
||||
@@ -4,4 +4,5 @@ parent: admin-api-methods.html
|
||||
template: pagetype-category.html.jinja
|
||||
---
|
||||
# Peer Management Methods
|
||||
|
||||
Use these methods to manage your server's peer-to-peer connections.
|
||||
@@ -4,4 +4,5 @@ parent: admin-api-methods.html
|
||||
template: pagetype-category.html.jinja
|
||||
---
|
||||
# Server Control Methods
|
||||
|
||||
Use these methods to manage the rippled server.
|
||||
@@ -7,6 +7,7 @@ labels:
|
||||
- Core Server
|
||||
---
|
||||
# validation_seed
|
||||
|
||||
[[Source]](https://github.com/XRPLF/rippled/blob/a61ffab3f9010d8accfaa98aa3cacc7d38e74121/src/ripple/rpc/handlers/ValidationSeed.cpp "Source")
|
||||
|
||||
The `validation_seed` command temporarily sets the secret value that rippled uses to sign validations. This value resets based on the config file when you restart the server. [Disabled since: rippled 0.29.1](https://github.com/XRPLF/rippled/releases/tag/0.29.1-rc1 "BADGE_RED")
|
||||
|
||||
@@ -4,4 +4,5 @@ parent: admin-api-methods.html
|
||||
template: pagetype-category.html.jinja
|
||||
---
|
||||
# Signing Methods
|
||||
|
||||
Use these methods to work with transactions.
|
||||
@@ -4,4 +4,5 @@ parent: admin-api-methods.html
|
||||
template: pagetype-category.html.jinja
|
||||
---
|
||||
# Status and Debugging Methods
|
||||
|
||||
Use these methods to check the status of the network and server.
|
||||
@@ -4,4 +4,5 @@ parent: references.html
|
||||
template: pagetype-category.html.jinja
|
||||
---
|
||||
# HTTP / WebSocket APIs
|
||||
|
||||
Communicate directly with rippled, the core peer-to-peer server that manages the XRP Ledger.
|
||||
@@ -4,4 +4,5 @@ parent: public-api-methods.html
|
||||
template: pagetype-category.html.jinja
|
||||
---
|
||||
# Account Methods
|
||||
|
||||
An account in the XRP Ledger represents a holder of XRP and a sender of transactions. Use these methods to work with account info.
|
||||
@@ -4,4 +4,5 @@ parent: public-api-methods.html
|
||||
template: pagetype-category.html.jinja
|
||||
---
|
||||
# Clio Server
|
||||
|
||||
Use these methods to retrieve information using Clio server APIs.
|
||||
@@ -4,4 +4,5 @@ parent: public-api-methods.html
|
||||
template: pagetype-category.html.jinja
|
||||
---
|
||||
# Ledger Methods
|
||||
|
||||
A ledger version contains a header, a transaction tree, and a state tree, which contain account settings, trustlines, balances, transactions, and other data. Use these methods to retrieve ledger info.
|
||||
@@ -4,4 +4,5 @@ parent: public-api-methods.html
|
||||
template: pagetype-category.html.jinja
|
||||
---
|
||||
# Path and Order Book Methods
|
||||
|
||||
Paths define a way for payments to flow through intermediary steps on their way from sender to receiver. Paths enable cross-currency payments by connecting sender and receiver through order books. Use these methods to work with paths and other books.
|
||||
@@ -4,4 +4,5 @@ parent: public-api-methods.html
|
||||
template: pagetype-category.html.jinja
|
||||
---
|
||||
# Payment Channel Methods
|
||||
|
||||
Payment channels are a tool for facilitating repeated, unidirectional payments, or temporary credit between two parties. Use these methods to work with payment channels.
|
||||
@@ -4,4 +4,5 @@ parent: public-api-methods.html
|
||||
template: pagetype-category.html.jinja
|
||||
---
|
||||
# Server Info Methods
|
||||
|
||||
Use these methods to retrieve information about the current state of the rippled server.
|
||||
@@ -6,6 +6,7 @@ labels:
|
||||
- Core Server
|
||||
---
|
||||
# server_state
|
||||
|
||||
[[Source]](https://github.com/XRPLF/rippled/blob/master/src/ripple/rpc/handlers/ServerState.cpp "Source")
|
||||
|
||||
The `server_state` command asks the server for various machine-readable information about the `rippled` server's current state. The response is almost the same as the [server_info method][], but uses units that are easier to process instead of easier to read. (For example, XRP values are given in integer drops instead of scientific notation or decimal values, and time is given in milliseconds instead of seconds.)
|
||||
|
||||
@@ -4,4 +4,5 @@ parent: public-api-methods.html
|
||||
template: pagetype-category.html.jinja
|
||||
---
|
||||
# Subscription Methods
|
||||
|
||||
Use these methods to enable the server to push updates to your client when various events happen, so that you can know and react right away. WebSocket API only.
|
||||
@@ -9,6 +9,7 @@ labels:
|
||||
- Smart Contracts
|
||||
---
|
||||
# unsubscribe
|
||||
|
||||
[[Source]](https://github.com/XRPLF/rippled/blob/master/src/ripple/rpc/handlers/Unsubscribe.cpp "Source")
|
||||
|
||||
The `unsubscribe` command tells the server to stop sending messages for a particular subscription or set of subscriptions.
|
||||
|
||||
@@ -4,4 +4,5 @@ parent: public-api-methods.html
|
||||
template: pagetype-category.html.jinja
|
||||
---
|
||||
# Transaction Methods
|
||||
|
||||
Transactions are the only thing that can modify the shared state of the XRP Ledger. All business on the XRP Ledger takes the form of transactions. Use these methods to work with transactions.
|
||||
@@ -7,6 +7,7 @@ labels:
|
||||
- Payments
|
||||
---
|
||||
# tx
|
||||
|
||||
[[Source]](https://github.com/XRPLF/rippled/blob/master/src/ripple/rpc/handlers/Tx.cpp "Source")
|
||||
|
||||
The `tx` method retrieves information on a single [transaction](transaction-formats.html), by its [identifying hash][].
|
||||
|
||||
@@ -4,4 +4,5 @@ parent: public-api-methods.html
|
||||
template: pagetype-category.html.jinja
|
||||
---
|
||||
# Utility Methods
|
||||
|
||||
Use these methods to perform convenient tasks, such as ping and random number generation.
|
||||
@@ -6,6 +6,7 @@ labels:
|
||||
- Core Server
|
||||
---
|
||||
# random
|
||||
|
||||
[[Source]](https://github.com/XRPLF/rippled/blob/master/src/ripple/rpc/handlers/Random.cpp "Source")
|
||||
|
||||
The `random` command provides a random number to be used as a source of entropy for random number generation by clients.
|
||||
|
||||
@@ -6,4 +6,5 @@ eyebrow_text: Features and Rules
|
||||
blurb: Features and rules of the XRP Ledger protocol, regardless of how you access it.
|
||||
---
|
||||
# XRP Ledger Protocol Reference
|
||||
|
||||
Features and rules of the XRP Ledger protocol, regardless of how you access it.
|
||||
@@ -6,6 +6,7 @@ labels:
|
||||
- Security
|
||||
---
|
||||
# SignerListSet
|
||||
|
||||
[[Source]](https://github.com/XRPLF/rippled/blob/master/src/ripple/app/tx/impl/SetSignerList.cpp "Source")
|
||||
|
||||
The SignerListSet transaction creates, replaces, or removes a list of signers that can be used to [multi-sign](multi-signing.html) a transaction. This transaction type was introduced by the [MultiSign amendment][].
|
||||
|
||||
Reference in New Issue
Block a user