From 6ac2eedf990f9f7d4815b5e8a7355f3c31246bdb Mon Sep 17 00:00:00 2001 From: Amarantha Kulkarni Date: Wed, 20 Oct 2021 14:17:17 -0700 Subject: [PATCH] Add sign and sign_for to admin methods --- .../admin-rippled-methods/admin-rippled-methods.md | 9 +++++++++ .../public-rippled-methods/public-rippled-methods.md | 7 +++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/content/references/rippled-api/admin-rippled-methods/admin-rippled-methods.md b/content/references/rippled-api/admin-rippled-methods/admin-rippled-methods.md index 2da05ed97a..c0b1876b96 100644 --- a/content/references/rippled-api/admin-rippled-methods/admin-rippled-methods.md +++ b/content/references/rippled-api/admin-rippled-methods/admin-rippled-methods.md @@ -39,6 +39,15 @@ Use these methods to manage the `rippled` server. * **[`ledger_accept`](ledger_accept.html)** - Close and advance the ledger in stand-alone mode. * **[`stop`](stop.html)** - Shut down the `rippled` server. +## [Transaction Methods](transaction-methods.html) + +Use these methods to work with transactions. + +* **[`sign`](sign.html)** - Cryptographically sign a transaction. +* **[`sign_for`](sign_for.html)** - Contribute to a multi-signature. + +By default, these methods are [admin-only](admin-rippled-methods.html). They can be used as public methods if the server has [enabled public signing](enable-public-signing.html). + ## [Peer Management Methods](peer-management-methods.html) Use these methods to manage the server's connections in the peer-to-peer XRP Ledger network. diff --git a/content/references/rippled-api/public-rippled-methods/public-rippled-methods.md b/content/references/rippled-api/public-rippled-methods/public-rippled-methods.md index b80bd5609e..abed5c6992 100644 --- a/content/references/rippled-api/public-rippled-methods/public-rippled-methods.md +++ b/content/references/rippled-api/public-rippled-methods/public-rippled-methods.md @@ -42,14 +42,17 @@ A ledger version contains a header, a transaction tree, and a state tree, which 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. -* **[`sign`](sign.html)** - Cryptographically sign a transaction. -* **[`sign_for`](sign_for.html)** - Contribute to a multi-signature. * **[`submit`](submit.html)** - Send a transaction to the network. * **[`submit_multisigned`](submit_multisigned.html)** - Send a multi-signed transaction to the network. * **[`transaction_entry`](transaction_entry.html)** - Retrieve info about a transaction from a particular ledger version. * **[`tx`](tx.html)** - Retrieve info about a transaction from all the ledgers on hand. * **[`tx_history`](tx_history.html)** - Retrieve info about all recent transactions. +By default, the following methods are [admin-only](admin-rippled-methods.html). They can be used as public methods if the server has [enabled public signing](enable-public-signing.html). + +* **[`sign`](sign.html)** - Cryptographically sign a transaction. +* **[`sign_for`](sign_for.html)** - Contribute to a multi-signature. + ## [Path and Order Book Methods](path-and-order-book-methods.html)