From d470a0b490568866956894f17b43767775c3eb24 Mon Sep 17 00:00:00 2001 From: mDuo13 Date: Wed, 1 Nov 2023 16:12:42 -0700 Subject: [PATCH 1/5] ledger method: update for 1.12.0 --- .../ledger/jsonrpc-response.json | 22 +++ content/_api-examples/ledger/ws-response.json | 24 ++++ .../ledger-methods/ledger.md | 133 ++++-------------- .../protocol/ledger-data/ledger-header.md | 26 ++-- dactyl-config.yml | 1 + 5 files changed, 84 insertions(+), 122 deletions(-) create mode 100644 content/_api-examples/ledger/jsonrpc-response.json create mode 100644 content/_api-examples/ledger/ws-response.json diff --git a/content/_api-examples/ledger/jsonrpc-response.json b/content/_api-examples/ledger/jsonrpc-response.json new file mode 100644 index 0000000000..b8730a95fb --- /dev/null +++ b/content/_api-examples/ledger/jsonrpc-response.json @@ -0,0 +1,22 @@ +{ + "result": { + "ledger": { + "account_hash": "23C1C8F8ACCEFACBDD9A1804CC25E652A324F9EABD7D0BEF103DA56D6E0306E7", + "close_flags": 0, + "close_time": 752188801, + "close_time_human": "2023-Nov-01 21:20:01.000000000 UTC", + "close_time_resolution": 10, + "closed": true, + "ledger_hash": "140B769E9ED61FCD675A6EEC1F005084614314C1D675C2CFDD11A1024BBD2C96", + "ledger_index": "83626952", + "parent_close_time": 752188800, + "parent_hash": "7D169A530960AFA8A0E38D036D8EF960BC2C2E02C4A0CE848A4200B9376AC99C", + "total_coins": "99988256304478252", + "transaction_hash": "77226182F58D9B5C798262F0E9D8C575D174E434F0C3C7119FB658BA70004CE9" + }, + "ledger_hash": "140B769E9ED61FCD675A6EEC1F005084614314C1D675C2CFDD11A1024BBD2C96", + "ledger_index": 83626952, + "status": "success", + "validated": true + } +} diff --git a/content/_api-examples/ledger/ws-response.json b/content/_api-examples/ledger/ws-response.json new file mode 100644 index 0000000000..129103171b --- /dev/null +++ b/content/_api-examples/ledger/ws-response.json @@ -0,0 +1,24 @@ +{ + "id": "example_ledger_req", + "result": { + "ledger": { + "account_hash": "B8B2C0C3F9E75E3AEE31D467B2544AB56244E618890BA58679707D6BFC0AF41D", + "close_flags": 0, + "close_time": 752188602, + "close_time_human": "2023-Nov-01 21:16:42.000000000 UTC", + "close_time_resolution": 10, + "closed": true, + "ledger_hash": "1BEECD5D21592EABDEF98D8E4BC038AD10B5700FF7E98011870DF5D6C2A2F39B", + "ledger_index": "83626901", + "parent_close_time": 752188601, + "parent_hash": "6B32CFC42B32C5FB90019AE17F701D96B499A4C8E148A002E18135A434A19D98", + "total_coins": "99988256314388830", + "transaction_hash": "21586C664DC47E12AF34F22EBF1DB55D23F8C98972542BAC0C39B1009CAC84D4" + }, + "ledger_hash": "1BEECD5D21592EABDEF98D8E4BC038AD10B5700FF7E98011870DF5D6C2A2F39B", + "ledger_index": 83626901, + "validated": true + }, + "status": "success", + "type": "response" +} diff --git a/content/references/http-websocket-apis/public-api-methods/ledger-methods/ledger.md b/content/references/http-websocket-apis/public-api-methods/ledger-methods/ledger.md index 0d055b0d80..b37bb0674c 100644 --- a/content/references/http-websocket-apis/public-api-methods/ledger-methods/ledger.md +++ b/content/references/http-websocket-apis/public-api-methods/ledger-methods/ledger.md @@ -19,11 +19,9 @@ An example of the request format: ```json { - "id": 14, + "id": "example_ledger_req", "command": "ledger", "ledger_index": "validated", - "full": false, - "accounts": false, "transactions": false, "expand": false, "owner_funds": false @@ -38,8 +36,6 @@ An example of the request format: "params": [ { "ledger_index": "validated", - "accounts": false, - "full": false, "transactions": false, "expand": false, "owner_funds": false @@ -67,17 +63,14 @@ The request can contain the following parameters: |:---------------|:-----------------|:----------|-------------| | `ledger_hash` | [Hash][] | No | A 20-byte hex string for the ledger version to use. (See [Specifying Ledgers][]). | | `ledger_index` | [Ledger Index][] | No | The [ledger index][] of the ledger to use, or a shortcut string to choose a ledger automatically. (See [Specifying Ledgers][]) | -| `full` | Boolean | No | **Admin only** If `true`, return full information on the entire ledger. Ignored if you did not specify a ledger version. The default is `false`. (Equivalent to enabling `transactions`, `accounts`, and `expand`.) The [Clio server](the-clio-server.html) does not support this field. **Caution:** On Mainnet, this can be gigabytes worth of data, so the request is likely to time out. | -| `accounts` | Boolean | No | **Admin only.** If `true`, return the ledger's entire state data. Ignored if you did not specify a ledger version. The default is `false`. **Caution:** On Mainnet, this can be gigabytes worth of data, so the request is likely to time out. Use [ledger_data][ledger_data method] instead to fetch state data across multiple paginated requests. | | `transactions` | Boolean | No | If `true`, return information on transactions in the specified ledger version. The default is `false`. Ignored if you did not specify a ledger version. | | `expand` | Boolean | No | Provide full JSON-formatted information for transaction/account information instead of only hashes. The default is `false`. Ignored unless you request transactions, accounts, or both. | | `owner_funds` | Boolean | No | If `true`, include `owner_funds` field in the metadata of OfferCreate transactions in the response. The default is `false`. Ignored unless transactions are included and `expand` is true. | -| `binary` | Boolean | No | If `true`, and `transactions` and `expand` are both also `true`, return transaction information in binary format (hexadecimal string) instead of JSON format. [New in: rippled 0.28.0][] | +| `binary` | Boolean | No | If `true`, and `transactions` and `expand` are both also `true`, return transaction information in binary format (hexadecimal string) instead of JSON format. | | `queue` | Boolean | No | If `true`, and the command is requesting the `current` ledger, includes an array of [queued transactions](transaction-cost.html#queued-transactions) in the results. | -| `type` | String | No | Filter by a ledger entry type. {% include '_snippets/lowercase-types.md' %} Ignored unless you request `accounts` (state data). | -The `ledger` field is deprecated and may be removed without further notice. +The `ledger` field is deprecated and may be removed without further notice. The `full`, `accounts`, and `type` fields (admin-only) are also deprecated; the Clio server does not implement these parameters. ## Response Format @@ -88,34 +81,7 @@ An example of a successful response: *WebSocket* ```json -{ - "id": 14, - "result": { - "ledger": { - "accepted": true, - "account_hash": "53BD4650A024E27DEB52DBB6A52EDB26528B987EC61C895C48D1EB44CEDD9AD3", - "close_flags": 0, - "close_time": 638329241, - "close_time_human": "2020-Mar-24 01:40:41.000000000 UTC", - "close_time_resolution": 10, - "closed": true, - "hash": "1723099E269C77C4BDE86C83FA6415D71CF20AA5CB4A94E5C388ED97123FB55B", - "ledger_hash": "1723099E269C77C4BDE86C83FA6415D71CF20AA5CB4A94E5C388ED97123FB55B", - "ledger_index": "54300932", - "parent_close_time": 638329240, - "parent_hash": "DF68B3BCABD31097634BABF0BDC87932D43D26E458BFEEFD36ADF2B3D94998C0", - "seqNum": "54300932", - "totalCoins": "99991024049648900", - "total_coins": "99991024049648900", - "transaction_hash": "50B3A8FE2C5620E43AA57564209AEDFEA3E868CFA2F6E4AB4B9E55A7A62AAF7B" - }, - "ledger_hash": "1723099E269C77C4BDE86C83FA6415D71CF20AA5CB4A94E5C388ED97123FB55B", - "ledger_index": 54300932, - "validated": true - }, - "status": "success", - "type": "response" -} +{% include '_api-examples/ledger/ws-response.json' %} ``` *JSON-RPC* @@ -123,66 +89,16 @@ An example of a successful response: ```json 200 OK -{ - "result": { - "ledger": { - "accepted": true, - "account_hash": "B258A8BB4743FB74CBBD6E9F67E4A56C4432EA09E5805E4CC2DA26F2DBE8F3D1", - "close_flags": 0, - "close_time": 638329271, - "close_time_human": "2020-Mar-24 01:41:11.000000000 UTC", - "close_time_resolution": 10, - "closed": true, - "hash": "3652D7FD0576BC452C0D2E9B747BDD733075971D1A9A1D98125055DEF428721A", - "ledger_hash": "3652D7FD0576BC452C0D2E9B747BDD733075971D1A9A1D98125055DEF428721A", - "ledger_index": "54300940", - "parent_close_time": 638329270, - "parent_hash": "AE996778246BC81F85D5AF051241DAA577C23BCA04C034A7074F93700194520D", - "seqNum": "54300940", - "totalCoins": "99991024049618156", - "total_coins": "99991024049618156", - "transaction_hash": "FC6FFCB71B2527DDD630EE5409D38913B4D4C026AA6C3B14A3E9D4ED45CFE30D" - }, - "ledger_hash": "3652D7FD0576BC452C0D2E9B747BDD733075971D1A9A1D98125055DEF428721A", - "ledger_index": 54300940, - "status": "success", - "validated": true - } -} +{% include '_api-examples/ledger/jsonrpc-response.json' %} ``` *Commandline* ```json Loading: "/etc/opt/ripple/rippled.cfg" -2020-Mar-24 01:42:42.622264591 UTC HTTPClient:NFO Connecting to 127.0.0.1:5005 +2023-Nov-01 21:38:14.638871262 UTC HTTPClient:NFO Connecting to 127.0.0.1:5005 -{ - "result" : { - "ledger" : { - "accepted" : true, - "account_hash" : "6B3101BE8F1431C5AC5B43D9731F1F3A747D24B3BEF89B687F0F3039E10EB65A", - "close_flags" : 0, - "close_time" : 638329360, - "close_time_human" : "2020-Mar-24 01:42:40.000000000 UTC", - "close_time_resolution" : 10, - "closed" : true, - "hash" : "C88A0EEC0E785A4C3E99F2A8B8EE0D7BDF3DE6C786C39B1B01547F6DAE5A4B7F", - "ledger_hash" : "C88A0EEC0E785A4C3E99F2A8B8EE0D7BDF3DE6C786C39B1B01547F6DAE5A4B7F", - "ledger_index" : "54300962", - "parent_close_time" : 638329352, - "parent_hash" : "96D2D70DC540BA4614A00C77FCFDED20E7D58AF3238E36655C38C407A56982A3", - "seqNum" : "54300962", - "totalCoins" : "99991024049218063", - "total_coins" : "99991024049218063", - "transaction_hash" : "47AC79011652D2A56AE04D3DD618C60A6669E3F94308C803554E890D2BD94481" - }, - "ledger_hash" : "C88A0EEC0E785A4C3E99F2A8B8EE0D7BDF3DE6C786C39B1B01547F6DAE5A4B7F", - "ledger_index" : 54300962, - "status" : "success", - "validated" : true - } -} +{% include '_api-examples/ledger/jsonrpc-response.json' %} ``` @@ -191,27 +107,28 @@ The response follows the [standard format][], with a successful result containin | `Field` | Type | Description | |:-------------------------------|:--------|:----------------------------------| -| `ledger` | Object | The complete header data of this ledger. | -| `ledger.account_hash` | String | Hash of all account state information in this ledger, as hex | -| `ledger.accountState` | Array | (Omitted unless requested) All the [account-state information](ledger-data-formats.html) in this ledger. | -| `ledger.close_flags` | Integer | A bit-map of [flags relating to the closing of this ledger](ledger-header.html#close-flags). | -| `ledger.close_time` | Integer | The time this ledger was closed, in [seconds since the Ripple Epoch][] | -| `ledger.close_time_human` | String | The time this ledger was closed, in human-readable format. Always uses the UTC time zone. [Updated in: rippled 1.5.0][] | -| `ledger.close_time_resolution` | Integer | Ledger close times are rounded to within this many seconds. | -| `ledger.closed` | Boolean | Whether or not this ledger has been closed | +| `ledger` | Object | The complete [ledger header data](ledger-header.html) of this ledger, with some additional fields added for convenience. | +| `ledger.account_hash` | String | [Hash](basic-data-types.html#hashes) of all account state information in this ledger, as hexadecimal. | +| `ledger.close_flags` | Number | A bit-map of [flags relating to the closing of this ledger](ledger-header.html#close-flags). | +| `ledger.close_time` | Number | The time this ledger was closed, in [seconds since the Ripple Epoch][]. | +| `ledger.close_time_human` | String | The time this ledger was closed, in human-readable format. Always uses the UTC time zone. | +| `ledger.close_time_resolution` | Number | Ledger close times are rounded to within this many seconds. | +| `ledger.closed` | Boolean | Whether or not this ledger has been closed. | | `ledger.ledger_hash` | String | Unique identifying hash of the entire ledger. | -| `ledger.ledger_index` | String | The [Ledger Index][] of this ledger, as a quoted integer | -| `ledger.parent_close_time` | Integer | The time at which the previous ledger was closed. | -| `ledger.parent_hash` | String | Unique identifying hash of the ledger that came immediately before this one. | +| `ledger.ledger_index` | String | The [Ledger Index][] of this ledger, as a quoted integer. | +| `ledger.parent_close_time` | Number | The time at which the previous ledger was closed. | +| `ledger.parent_hash` | String | The unique identifying hash of the ledger that came immediately before this one, as hexadecimal. | | `ledger.total_coins` | String | Total number of XRP drops in the network, as a quoted integer. (This decreases as transaction costs destroy XRP.) | -| `ledger.transaction_hash` | String | Hash of the transaction information included in this ledger, as hex | -| `ledger.transactions` | Array | (Omitted unless requested) Transactions applied in this ledger version. By default, members are the transactions' identifying [Hash][] strings. If the request specified `expand` as true, members are full representations of the transactions instead, in either JSON or binary depending on whether the request specified `binary` as true. | -| `ledger_hash` | String | Unique identifying hash of the entire ledger. | +| `ledger.transaction_hash` | String | [Hash](basic-data-types.html#hashes) of the transaction information included in this ledger. | +| `ledger.transactions` | Array | _(Omitted unless requested)_ Transactions applied in this ledger version. By default, members are the transactions' identifying [Hash][] strings. If the request specified `expand` as true, members are full representations of the transactions instead, in either JSON or binary depending on whether the request specified `binary` as true. | +| `ledger_hash` | String | The unique identifying hash of the entire ledger, as hexadecimal. | | `ledger_index` | Number | The [Ledger Index][] of this ledger. | | `validated` | Boolean | _(May be omitted)_ If `true`, this is a validated ledger version. If omitted or set to `false`, this ledger's data is not final. | -| `queue_data` | Array | _(Omitted unless requested with the `queue` parameter)_ Array of objects describing queued transactions, in the same order as the queue. If the request specified `expand` as true, members contain full representations of the transactions, in either JSON or binary depending on whether the request specified `binary` as true. Added by the [FeeEscalation amendment][]. [New in: rippled 0.70.0][] | +| `queue_data` | Array | _(Omitted unless requested with the `queue` parameter)_ Array of objects describing queued transactions, in the same order as the queue. If the request specified `expand` as true, members contain full representations of the transactions, in either JSON or binary depending on whether the request specified `binary` as true. | -The following fields are deprecated and may be removed without further notice: `accepted`, `hash` (use `ledger_hash` instead), `seqNum` (use `ledger_index` instead), `totalCoins` (use `total_coins` instead). +The `ledger.accountState` field (omitted unless requested with `"full": true` or `"accounts": true`) is deprecated. + +The following deprecated fields have been removed: `accepted`, `hash` (use `ledger_hash` instead), `seqNum` (use `ledger_index` instead), `totalCoins` (use `total_coins` instead). [Updated in: rippled 1.12.0][] Each member of the `queue_data` array represents one transaction in the queue. Some fields of this object may be omitted because they have not yet been calculated. The fields of this object are as follows: @@ -238,7 +155,7 @@ If the request specified `"owner_funds": true` and expanded transactions, the re * Any of the [universal error types][]. * `invalidParams` - One or more fields are specified incorrectly, or one or more required fields are missing. * `lgrNotFound` - The ledger specified by the `ledger_hash` or `ledger_index` does not exist, or it does exist but the server does not have it. -* `noPermission` - If you specified `full` or `accounts` as true, but are not connected to the server as an admin (usually, admin requires connecting on a local port). +* `noPermission` - If you specified `full` or `accounts` as true, but are not connected to the server as an admin (usually, admin requires connecting on localhost). diff --git a/content/references/protocol/ledger-data/ledger-header.md b/content/references/protocol/ledger-data/ledger-header.md index 3b927c78fc..eb4c3f7e59 100644 --- a/content/references/protocol/ledger-data/ledger-header.md +++ b/content/references/protocol/ledger-data/ledger-header.md @@ -11,18 +11,18 @@ labels: Every [ledger version](ledgers.html) has a unique header that describes the contents. You can look up a ledger's header information with the [ledger method][]. The contents of the ledger header are as follows: -| Field | JSON Type | [Internal Type][] | Description | -|:-----------------------------|:----------|:------------------|:--------------| -| `ledger_index` | String | UInt32 | The [ledger index][Ledger Index] of the ledger. Some API methods display this as a quoted integer; some display it as a native JSON number. | -| `ledger_hash` | String | Hash256 | The [SHA-512Half][] of this ledger version. This serves as a unique identifier for this ledger and all its contents. | -| `account_hash` | String | Hash256 | The [SHA-512Half][] of this ledger's state tree information. | -| `close_time` | Number | UInt32 | The approximate time this ledger version closed, as the number of seconds since the Ripple Epoch of 2000-01-01 00:00:00. This value is rounded based on the `close_time_resolution`. | -| `closed` | Boolean | Boolean | If `true`, this ledger version is no longer accepting new transactions. (However, unless this ledger version is validated, it might be replaced by a different ledger version with a different set of transactions.) | -| `parent_hash` | String | Hash256 | The `ledger_hash` value of the previous ledger version that is the direct predecessor of this one. If there are different versions of the previous ledger index, this indicates from which one the ledger was derived. | -| `total_coins` | String | UInt64 | The total number of [drops of XRP][] owned by accounts in the ledger. This omits XRP that has been destroyed by transaction fees. The actual amount of XRP in circulation is lower because some accounts are "black holes" whose keys are not known by anyone. | -| `transaction_hash` | String | Hash256 | The [SHA-512Half][] of the transactions included in this ledger. | -| `close_time_resolution` | Number | Uint8 | An integer in the range \[2,120\] indicating the maximum number of seconds by which the `close_time` could be rounded. | -| [`closeFlags`](#close-flags) | (Omitted) | UInt8 | A bit-map of flags relating to the closing of this ledger. | +| Field | JSON Type | [Internal Type][] | Description | +|:------------------------------|:----------|:------------------|:--------------| +| `ledger_index` | String | UInt32 | The [ledger index][Ledger Index] of the ledger. Some API methods display this as a quoted integer; some display it as a native JSON number. | +| `ledger_hash` | String | Hash256 | The [SHA-512Half][] of this ledger version. This serves as a unique identifier for this ledger and all its contents. | +| `account_hash` | String | Hash256 | The [SHA-512Half][] of this ledger's state tree information. | +| [`close_flags`](#close-flags) | Number | UInt8 | A bit-map of flags relating to the closing of this ledger. | +| `close_time` | Number | UInt32 | The [approximate time this ledger version closed](ledger-close-times.html), as the number of seconds since the Ripple Epoch of 2000-01-01 00:00:00 UTC. This value is rounded based on the `close_time_resolution`. | +| `close_time_resolution` | Number | Uint8 | An integer in the range \[2,120\] indicating the maximum number of seconds by which the `close_time` could be rounded. | +| `closed` | Boolean | Boolean | If `true`, this ledger version is no longer accepting new transactions. (However, unless this ledger version is validated, it might be replaced by a different ledger version with a different set of transactions.) | +| `parent_hash` | String | Hash256 | The `ledger_hash` value of the previous ledger version that is the direct predecessor of this one. If there are different versions of the previous ledger index, this indicates from which one the ledger was derived. | +| `total_coins` | String | UInt64 | The total number of [drops of XRP][] owned by accounts in the ledger. This omits XRP that has been destroyed by transaction fees. The actual amount of XRP in circulation is lower because some accounts are "black holes" whose keys are not known by anyone. | +| `transaction_hash` | String | Hash256 | The [SHA-512Half][] of the transactions included in this ledger. | ## Ledger Index @@ -34,8 +34,6 @@ Every [ledger version](ledgers.html) has a unique header that describes the cont The ledger has only one flag defined for `closeFlags`: **`sLCF_NoConsensusTime`** (value `1`). If this flag is enabled, it means that validators had different [close times for the ledger](ledger-close-times.html), but built otherwise the same ledger, so they declared consensus while "agreeing to disagree" on the close time. In this case, official `close_time` value of the ledger is 1 second after that of the parent ledger. -The `closeFlags` field is not included in any JSON representations of a ledger, but is included in the binary representation of a ledger, and is one of the fields that determine the ledger's hash. - ## See Also diff --git a/dactyl-config.yml b/dactyl-config.yml index 33060c8cae..e6e7d802de 100644 --- a/dactyl-config.yml +++ b/dactyl-config.yml @@ -3144,6 +3144,7 @@ pages: - en - md: "@i18n/ja/references/http-websocket-apis/public-api-methods/ledger-methods/ledger.md" + outdated_translation: true targets: - ja From 8cbc3ae67d2b58a2da4324d6f3325465b5b95c8f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Nov 2023 22:13:17 +0000 Subject: [PATCH 2/5] Bump django in /content/_code-samples/airgapped-wallet/py Bumps [django](https://github.com/django/django) from 3.2.20 to 3.2.23. - [Commits](https://github.com/django/django/compare/3.2.20...3.2.23) --- updated-dependencies: - dependency-name: django dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- content/_code-samples/airgapped-wallet/py/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/_code-samples/airgapped-wallet/py/requirements.txt b/content/_code-samples/airgapped-wallet/py/requirements.txt index aa87f9e5f2..e3eb82cdb0 100644 --- a/content/_code-samples/airgapped-wallet/py/requirements.txt +++ b/content/_code-samples/airgapped-wallet/py/requirements.txt @@ -5,7 +5,7 @@ certifi==2023.7.22 cffi==1.15.0 colorama==0.4.4 cryptography==41.0.4 -Django==3.2.20 +Django==3.2.23 ECPy==1.2.5 h11==0.12.0 httpcore==0.13.6 From 5d0ddceea55fabbeac99dc8506da06043cec5f85 Mon Sep 17 00:00:00 2001 From: mDuo13 Date: Wed, 8 Nov 2023 16:33:32 -0800 Subject: [PATCH 3/5] Reorg infrastructure folders --- .../index.md => ledger-history.md} | 0 .../{rippled => }/commandline-usage.md | 0 .../configure-amendment-voting.md | 0 ...onnect-your-rippled-to-the-xrp-test-net.md | 0 .../configure-advisory-deletion.md | 0 .../data-retention}/configure-full-history.md | 0 .../configure-history-sharding.md | 0 .../configure-online-deletion.md | 0 .../data-retention}/history-sharding.md | 0 .../data-retention/index.md | 0 .../data-retention}/online-deletion.md | 0 .../configuration/enable-public-signing.md | 0 .../index.md | 0 .../peering}/cluster-rippled-servers.md | 0 .../peering}/configure-a-private-server.md | 0 .../peering}/forward-ports-for-peering.md | 0 .../peering/index.md} | 0 .../manually-connect-to-a-specific-peer.md | 0 .../peering}/set-max-number-of-peers.md | 0 .../peering}/use-a-peer-reservation.md | 0 .../server-modes/index.md | 0 .../run-rippled-as-a-stock-server.md} | 0 .../run-rippled-as-a-validator.md | 0 .../installation/capacity-planning.md | 0 .../index.md | 0 ...install-rippled-on-centos-rhel-with-yum.md | 0 .../installation/install-rippled-on-ubuntu.md | 0 .../rippled-1-3-migration-instructions.md | 0 .../installation/system-requirements.md | 0 .../update-rippled-automatically-on-linux.md | 0 .../update-rippled-manually-on-centos-rhel.md | 0 .../update-rippled-manually-on-ubuntu.md | 0 .../advance-the-ledger-in-stand-alone-mode.md | 0 ...load-a-saved-ledger-in-stand-alone-mode.md | 0 ...-new-genesis-ledger-in-stand-alone-mode.md | 0 .../test-amendments.md | 0 .../troubleshooting/diagnosing-problems.md | 0 .../fix-sqlite-tx-db-page-size-issue.md | 0 .../troubleshooting/server-doesnt-sync.md | 0 .../troubleshooting/server-wont-start.md | 0 .../understanding-log-messages.md | 0 .../index.md => ledger-history.md} | 0 .../{rippled => }/commandline-usage.md | 0 .../configure-amendment-voting.md | 0 .../configuration/configure-grpc.md | 0 .../configuration/configure-statsd.md | 0 ...onnect-your-rippled-to-the-xrp-test-net.md | 0 .../configure-advisory-deletion.md | 0 .../data-retention}/configure-full-history.md | 0 .../configure-history-sharding.md | 0 .../configure-online-deletion.md | 0 .../data-retention}/history-sharding.md | 0 .../data-retention/index.md | 0 .../data-retention}/online-deletion.md | 0 .../configuration/enable-public-signing.md | 0 content/infrastructure/configuration/index.md | 9 + .../peering}/cluster-rippled-servers.md | 0 .../peering}/configure-a-private-server.md | 0 .../peering}/configure-the-peer-crawler.md | 0 .../peering}/enable-link-compression.md | 0 .../peering}/forward-ports-for-peering.md | 0 .../peering/index.md} | 2 +- .../manually-connect-to-a-specific-peer.md | 0 .../peering}/set-max-number-of-peers.md | 0 .../peering}/use-a-peer-reservation.md | 0 .../server-modes/index.md | 0 .../run-rippled-as-a-stock-server.md | 0 .../run-rippled-as-a-validator.md | 0 .../infrastructure/configure-rippled/index.md | 9 - .../infrastructure/install-rippled/index.md | 10 - .../build-on-linux-mac-windows.md | 0 .../build-run-rippled-in-reporting-mode.md | 0 .../installation/capacity-planning.md | 0 content/infrastructure/installation/index.md | 10 + .../install-clio-on-ubuntu.md | 2 +- ...install-rippled-on-centos-rhel-with-yum.md | 0 .../installation/install-rippled-on-ubuntu.md | 0 .../rippled-1-3-migration-instructions.md | 0 .../installation/system-requirements.md | 0 .../update-rippled-automatically-on-linux.md | 0 .../update-rippled-manually-on-centos-rhel.md | 0 .../update-rippled-manually-on-ubuntu.md | 0 .../advance-the-ledger-in-stand-alone-mode.md | 0 ...load-a-saved-ledger-in-stand-alone-mode.md | 0 .../run-private-network-with-docker.md | 2 +- ...-new-genesis-ledger-in-stand-alone-mode.md | 0 .../test-amendments.md | 2 +- .../troubleshooting/diagnosing-problems.md | 0 .../fix-sqlite-tx-db-page-size-issue.md | 0 .../health-check-interventions.md | 0 .../troubleshooting/server-doesnt-sync.md | 0 .../server-is-amendment-blocked.md | 0 .../troubleshooting/server-wont-start.md | 0 .../understanding-log-messages.md | 0 dactyl-config.yml | 483 +++++++++--------- 95 files changed, 263 insertions(+), 266 deletions(-) rename content/@i18n/ja/concepts/networks-and-servers/{ledger-history/index.md => ledger-history.md} (100%) rename content/@i18n/ja/infrastructure/{rippled => }/commandline-usage.md (100%) rename content/@i18n/ja/infrastructure/{rippled => }/configuration/configure-amendment-voting.md (100%) rename content/@i18n/ja/infrastructure/{rippled => }/configuration/connect-your-rippled-to-the-xrp-test-net.md (100%) rename content/@i18n/ja/infrastructure/{rippled/configuration => configuration/data-retention}/configure-advisory-deletion.md (100%) rename content/@i18n/ja/infrastructure/{rippled/configuration => configuration/data-retention}/configure-full-history.md (100%) rename content/@i18n/ja/infrastructure/{rippled/configuration => configuration/data-retention}/configure-history-sharding.md (100%) rename content/@i18n/ja/infrastructure/{rippled/configuration => configuration/data-retention}/configure-online-deletion.md (100%) rename content/@i18n/ja/{concepts/networks-and-servers/ledger-history => infrastructure/configuration/data-retention}/history-sharding.md (100%) rename content/@i18n/ja/infrastructure/{configure-rippled => configuration}/data-retention/index.md (100%) rename content/@i18n/ja/{concepts/networks-and-servers/ledger-history => infrastructure/configuration/data-retention}/online-deletion.md (100%) rename content/@i18n/ja/infrastructure/{rippled => }/configuration/enable-public-signing.md (100%) rename content/@i18n/ja/infrastructure/{configure-rippled => configuration}/index.md (100%) rename content/@i18n/ja/infrastructure/{rippled/configure-peering => configuration/peering}/cluster-rippled-servers.md (100%) rename content/@i18n/ja/infrastructure/{rippled/configure-peering => configuration/peering}/configure-a-private-server.md (100%) rename content/@i18n/ja/infrastructure/{rippled/configure-peering => configuration/peering}/forward-ports-for-peering.md (100%) rename content/@i18n/ja/infrastructure/{rippled/configure-peering/configure-peering.md => configuration/peering/index.md} (100%) rename content/@i18n/ja/infrastructure/{rippled/configure-peering => configuration/peering}/manually-connect-to-a-specific-peer.md (100%) rename content/@i18n/ja/infrastructure/{rippled/configure-peering => configuration/peering}/set-max-number-of-peers.md (100%) rename content/@i18n/ja/infrastructure/{rippled/configure-peering => configuration/peering}/use-a-peer-reservation.md (100%) rename content/@i18n/ja/infrastructure/{configure-rippled => configuration}/server-modes/index.md (100%) rename content/@i18n/ja/infrastructure/{rippled/configuration/run-rippled-as-a-wallet-server.md => configuration/server-modes/run-rippled-as-a-stock-server.md} (100%) rename content/@i18n/ja/infrastructure/{rippled/configuration => configuration/server-modes}/run-rippled-as-a-validator.md (100%) rename content/@i18n/ja/infrastructure/{rippled => }/installation/capacity-planning.md (100%) rename content/@i18n/ja/infrastructure/{install-rippled => installation}/index.md (100%) rename content/@i18n/ja/infrastructure/{rippled => }/installation/install-rippled-on-centos-rhel-with-yum.md (100%) rename content/@i18n/ja/infrastructure/{rippled => }/installation/install-rippled-on-ubuntu.md (100%) rename content/@i18n/ja/infrastructure/{rippled => }/installation/rippled-1-3-migration-instructions.md (100%) rename content/@i18n/ja/infrastructure/{rippled => }/installation/system-requirements.md (100%) rename content/@i18n/ja/infrastructure/{rippled => }/installation/update-rippled-automatically-on-linux.md (100%) rename content/@i18n/ja/infrastructure/{rippled => }/installation/update-rippled-manually-on-centos-rhel.md (100%) rename content/@i18n/ja/infrastructure/{rippled => }/installation/update-rippled-manually-on-ubuntu.md (100%) rename content/@i18n/ja/infrastructure/{rippled/stand-alone-mode => testing-and-auditing}/advance-the-ledger-in-stand-alone-mode.md (100%) rename content/@i18n/ja/infrastructure/{rippled/stand-alone-mode => testing-and-auditing}/load-a-saved-ledger-in-stand-alone-mode.md (100%) rename content/@i18n/ja/infrastructure/{rippled/stand-alone-mode => testing-and-auditing}/start-a-new-genesis-ledger-in-stand-alone-mode.md (100%) rename content/@i18n/ja/infrastructure/{rippled/configuration => testing-and-auditing}/test-amendments.md (100%) rename content/@i18n/ja/infrastructure/{rippled => }/troubleshooting/diagnosing-problems.md (100%) rename content/@i18n/ja/infrastructure/{rippled => }/troubleshooting/fix-sqlite-tx-db-page-size-issue.md (100%) rename content/@i18n/ja/infrastructure/{rippled => }/troubleshooting/server-doesnt-sync.md (100%) rename content/@i18n/ja/infrastructure/{rippled => }/troubleshooting/server-wont-start.md (100%) rename content/@i18n/ja/infrastructure/{rippled => }/troubleshooting/understanding-log-messages.md (100%) rename content/concepts/networks-and-servers/{ledger-history/index.md => ledger-history.md} (100%) rename content/infrastructure/{rippled => }/commandline-usage.md (100%) rename content/infrastructure/{rippled => }/configuration/configure-amendment-voting.md (100%) rename content/infrastructure/{rippled => }/configuration/configure-grpc.md (100%) rename content/infrastructure/{rippled => }/configuration/configure-statsd.md (100%) rename content/infrastructure/{rippled => }/configuration/connect-your-rippled-to-the-xrp-test-net.md (100%) rename content/infrastructure/{rippled/configuration => configuration/data-retention}/configure-advisory-deletion.md (100%) rename content/infrastructure/{rippled/configuration => configuration/data-retention}/configure-full-history.md (100%) rename content/infrastructure/{rippled/configuration => configuration/data-retention}/configure-history-sharding.md (100%) rename content/infrastructure/{rippled/configuration => configuration/data-retention}/configure-online-deletion.md (100%) rename content/{concepts/networks-and-servers/ledger-history => infrastructure/configuration/data-retention}/history-sharding.md (100%) rename content/infrastructure/{configure-rippled => configuration}/data-retention/index.md (100%) rename content/{concepts/networks-and-servers/ledger-history => infrastructure/configuration/data-retention}/online-deletion.md (100%) rename content/infrastructure/{rippled => }/configuration/enable-public-signing.md (100%) create mode 100644 content/infrastructure/configuration/index.md rename content/infrastructure/{rippled/configure-peering => configuration/peering}/cluster-rippled-servers.md (100%) rename content/infrastructure/{rippled/configure-peering => configuration/peering}/configure-a-private-server.md (100%) rename content/infrastructure/{rippled/configure-peering => configuration/peering}/configure-the-peer-crawler.md (100%) rename content/infrastructure/{rippled/configure-peering => configuration/peering}/enable-link-compression.md (100%) rename content/infrastructure/{rippled/configure-peering => configuration/peering}/forward-ports-for-peering.md (100%) rename content/infrastructure/{rippled/configure-peering/configure-peering.md => configuration/peering/index.md} (96%) rename content/infrastructure/{rippled/configure-peering => configuration/peering}/manually-connect-to-a-specific-peer.md (100%) rename content/infrastructure/{rippled/configure-peering => configuration/peering}/set-max-number-of-peers.md (100%) rename content/infrastructure/{rippled/configure-peering => configuration/peering}/use-a-peer-reservation.md (100%) rename content/infrastructure/{configure-rippled => configuration}/server-modes/index.md (100%) rename content/infrastructure/{rippled/configuration => configuration/server-modes}/run-rippled-as-a-stock-server.md (100%) rename content/infrastructure/{rippled/configuration => configuration/server-modes}/run-rippled-as-a-validator.md (100%) delete mode 100644 content/infrastructure/configure-rippled/index.md delete mode 100644 content/infrastructure/install-rippled/index.md rename content/infrastructure/{rippled => }/installation/build-on-linux-mac-windows.md (100%) rename content/infrastructure/{rippled => }/installation/build-run-rippled-in-reporting-mode.md (100%) rename content/infrastructure/{rippled => }/installation/capacity-planning.md (100%) create mode 100644 content/infrastructure/installation/index.md rename content/infrastructure/{clio => installation}/install-clio-on-ubuntu.md (99%) rename content/infrastructure/{rippled => }/installation/install-rippled-on-centos-rhel-with-yum.md (100%) rename content/infrastructure/{rippled => }/installation/install-rippled-on-ubuntu.md (100%) rename content/infrastructure/{rippled => }/installation/rippled-1-3-migration-instructions.md (100%) rename content/infrastructure/{rippled => }/installation/system-requirements.md (100%) rename content/infrastructure/{rippled => }/installation/update-rippled-automatically-on-linux.md (100%) rename content/infrastructure/{rippled => }/installation/update-rippled-manually-on-centos-rhel.md (100%) rename content/infrastructure/{rippled => }/installation/update-rippled-manually-on-ubuntu.md (100%) rename content/infrastructure/{rippled/stand-alone-mode => testing-and-auditing}/advance-the-ledger-in-stand-alone-mode.md (100%) rename content/infrastructure/{rippled/stand-alone-mode => testing-and-auditing}/load-a-saved-ledger-in-stand-alone-mode.md (100%) rename content/infrastructure/{rippled => testing-and-auditing}/run-private-network-with-docker.md (99%) rename content/infrastructure/{rippled/stand-alone-mode => testing-and-auditing}/start-a-new-genesis-ledger-in-stand-alone-mode.md (100%) rename content/infrastructure/{rippled/configuration => testing-and-auditing}/test-amendments.md (88%) rename content/infrastructure/{rippled => }/troubleshooting/diagnosing-problems.md (100%) rename content/infrastructure/{rippled => }/troubleshooting/fix-sqlite-tx-db-page-size-issue.md (100%) rename content/infrastructure/{rippled => }/troubleshooting/health-check-interventions.md (100%) rename content/infrastructure/{rippled => }/troubleshooting/server-doesnt-sync.md (100%) rename content/infrastructure/{rippled => }/troubleshooting/server-is-amendment-blocked.md (100%) rename content/infrastructure/{rippled => }/troubleshooting/server-wont-start.md (100%) rename content/infrastructure/{rippled => }/troubleshooting/understanding-log-messages.md (100%) diff --git a/content/@i18n/ja/concepts/networks-and-servers/ledger-history/index.md b/content/@i18n/ja/concepts/networks-and-servers/ledger-history.md similarity index 100% rename from content/@i18n/ja/concepts/networks-and-servers/ledger-history/index.md rename to content/@i18n/ja/concepts/networks-and-servers/ledger-history.md diff --git a/content/@i18n/ja/infrastructure/rippled/commandline-usage.md b/content/@i18n/ja/infrastructure/commandline-usage.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/commandline-usage.md rename to content/@i18n/ja/infrastructure/commandline-usage.md diff --git a/content/@i18n/ja/infrastructure/rippled/configuration/configure-amendment-voting.md b/content/@i18n/ja/infrastructure/configuration/configure-amendment-voting.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/configuration/configure-amendment-voting.md rename to content/@i18n/ja/infrastructure/configuration/configure-amendment-voting.md diff --git a/content/@i18n/ja/infrastructure/rippled/configuration/connect-your-rippled-to-the-xrp-test-net.md b/content/@i18n/ja/infrastructure/configuration/connect-your-rippled-to-the-xrp-test-net.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/configuration/connect-your-rippled-to-the-xrp-test-net.md rename to content/@i18n/ja/infrastructure/configuration/connect-your-rippled-to-the-xrp-test-net.md diff --git a/content/@i18n/ja/infrastructure/rippled/configuration/configure-advisory-deletion.md b/content/@i18n/ja/infrastructure/configuration/data-retention/configure-advisory-deletion.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/configuration/configure-advisory-deletion.md rename to content/@i18n/ja/infrastructure/configuration/data-retention/configure-advisory-deletion.md diff --git a/content/@i18n/ja/infrastructure/rippled/configuration/configure-full-history.md b/content/@i18n/ja/infrastructure/configuration/data-retention/configure-full-history.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/configuration/configure-full-history.md rename to content/@i18n/ja/infrastructure/configuration/data-retention/configure-full-history.md diff --git a/content/@i18n/ja/infrastructure/rippled/configuration/configure-history-sharding.md b/content/@i18n/ja/infrastructure/configuration/data-retention/configure-history-sharding.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/configuration/configure-history-sharding.md rename to content/@i18n/ja/infrastructure/configuration/data-retention/configure-history-sharding.md diff --git a/content/@i18n/ja/infrastructure/rippled/configuration/configure-online-deletion.md b/content/@i18n/ja/infrastructure/configuration/data-retention/configure-online-deletion.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/configuration/configure-online-deletion.md rename to content/@i18n/ja/infrastructure/configuration/data-retention/configure-online-deletion.md diff --git a/content/@i18n/ja/concepts/networks-and-servers/ledger-history/history-sharding.md b/content/@i18n/ja/infrastructure/configuration/data-retention/history-sharding.md similarity index 100% rename from content/@i18n/ja/concepts/networks-and-servers/ledger-history/history-sharding.md rename to content/@i18n/ja/infrastructure/configuration/data-retention/history-sharding.md diff --git a/content/@i18n/ja/infrastructure/configure-rippled/data-retention/index.md b/content/@i18n/ja/infrastructure/configuration/data-retention/index.md similarity index 100% rename from content/@i18n/ja/infrastructure/configure-rippled/data-retention/index.md rename to content/@i18n/ja/infrastructure/configuration/data-retention/index.md diff --git a/content/@i18n/ja/concepts/networks-and-servers/ledger-history/online-deletion.md b/content/@i18n/ja/infrastructure/configuration/data-retention/online-deletion.md similarity index 100% rename from content/@i18n/ja/concepts/networks-and-servers/ledger-history/online-deletion.md rename to content/@i18n/ja/infrastructure/configuration/data-retention/online-deletion.md diff --git a/content/@i18n/ja/infrastructure/rippled/configuration/enable-public-signing.md b/content/@i18n/ja/infrastructure/configuration/enable-public-signing.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/configuration/enable-public-signing.md rename to content/@i18n/ja/infrastructure/configuration/enable-public-signing.md diff --git a/content/@i18n/ja/infrastructure/configure-rippled/index.md b/content/@i18n/ja/infrastructure/configuration/index.md similarity index 100% rename from content/@i18n/ja/infrastructure/configure-rippled/index.md rename to content/@i18n/ja/infrastructure/configuration/index.md diff --git a/content/@i18n/ja/infrastructure/rippled/configure-peering/cluster-rippled-servers.md b/content/@i18n/ja/infrastructure/configuration/peering/cluster-rippled-servers.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/configure-peering/cluster-rippled-servers.md rename to content/@i18n/ja/infrastructure/configuration/peering/cluster-rippled-servers.md diff --git a/content/@i18n/ja/infrastructure/rippled/configure-peering/configure-a-private-server.md b/content/@i18n/ja/infrastructure/configuration/peering/configure-a-private-server.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/configure-peering/configure-a-private-server.md rename to content/@i18n/ja/infrastructure/configuration/peering/configure-a-private-server.md diff --git a/content/@i18n/ja/infrastructure/rippled/configure-peering/forward-ports-for-peering.md b/content/@i18n/ja/infrastructure/configuration/peering/forward-ports-for-peering.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/configure-peering/forward-ports-for-peering.md rename to content/@i18n/ja/infrastructure/configuration/peering/forward-ports-for-peering.md diff --git a/content/@i18n/ja/infrastructure/rippled/configure-peering/configure-peering.md b/content/@i18n/ja/infrastructure/configuration/peering/index.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/configure-peering/configure-peering.md rename to content/@i18n/ja/infrastructure/configuration/peering/index.md diff --git a/content/@i18n/ja/infrastructure/rippled/configure-peering/manually-connect-to-a-specific-peer.md b/content/@i18n/ja/infrastructure/configuration/peering/manually-connect-to-a-specific-peer.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/configure-peering/manually-connect-to-a-specific-peer.md rename to content/@i18n/ja/infrastructure/configuration/peering/manually-connect-to-a-specific-peer.md diff --git a/content/@i18n/ja/infrastructure/rippled/configure-peering/set-max-number-of-peers.md b/content/@i18n/ja/infrastructure/configuration/peering/set-max-number-of-peers.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/configure-peering/set-max-number-of-peers.md rename to content/@i18n/ja/infrastructure/configuration/peering/set-max-number-of-peers.md diff --git a/content/@i18n/ja/infrastructure/rippled/configure-peering/use-a-peer-reservation.md b/content/@i18n/ja/infrastructure/configuration/peering/use-a-peer-reservation.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/configure-peering/use-a-peer-reservation.md rename to content/@i18n/ja/infrastructure/configuration/peering/use-a-peer-reservation.md diff --git a/content/@i18n/ja/infrastructure/configure-rippled/server-modes/index.md b/content/@i18n/ja/infrastructure/configuration/server-modes/index.md similarity index 100% rename from content/@i18n/ja/infrastructure/configure-rippled/server-modes/index.md rename to content/@i18n/ja/infrastructure/configuration/server-modes/index.md diff --git a/content/@i18n/ja/infrastructure/rippled/configuration/run-rippled-as-a-wallet-server.md b/content/@i18n/ja/infrastructure/configuration/server-modes/run-rippled-as-a-stock-server.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/configuration/run-rippled-as-a-wallet-server.md rename to content/@i18n/ja/infrastructure/configuration/server-modes/run-rippled-as-a-stock-server.md diff --git a/content/@i18n/ja/infrastructure/rippled/configuration/run-rippled-as-a-validator.md b/content/@i18n/ja/infrastructure/configuration/server-modes/run-rippled-as-a-validator.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/configuration/run-rippled-as-a-validator.md rename to content/@i18n/ja/infrastructure/configuration/server-modes/run-rippled-as-a-validator.md diff --git a/content/@i18n/ja/infrastructure/rippled/installation/capacity-planning.md b/content/@i18n/ja/infrastructure/installation/capacity-planning.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/installation/capacity-planning.md rename to content/@i18n/ja/infrastructure/installation/capacity-planning.md diff --git a/content/@i18n/ja/infrastructure/install-rippled/index.md b/content/@i18n/ja/infrastructure/installation/index.md similarity index 100% rename from content/@i18n/ja/infrastructure/install-rippled/index.md rename to content/@i18n/ja/infrastructure/installation/index.md diff --git a/content/@i18n/ja/infrastructure/rippled/installation/install-rippled-on-centos-rhel-with-yum.md b/content/@i18n/ja/infrastructure/installation/install-rippled-on-centos-rhel-with-yum.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/installation/install-rippled-on-centos-rhel-with-yum.md rename to content/@i18n/ja/infrastructure/installation/install-rippled-on-centos-rhel-with-yum.md diff --git a/content/@i18n/ja/infrastructure/rippled/installation/install-rippled-on-ubuntu.md b/content/@i18n/ja/infrastructure/installation/install-rippled-on-ubuntu.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/installation/install-rippled-on-ubuntu.md rename to content/@i18n/ja/infrastructure/installation/install-rippled-on-ubuntu.md diff --git a/content/@i18n/ja/infrastructure/rippled/installation/rippled-1-3-migration-instructions.md b/content/@i18n/ja/infrastructure/installation/rippled-1-3-migration-instructions.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/installation/rippled-1-3-migration-instructions.md rename to content/@i18n/ja/infrastructure/installation/rippled-1-3-migration-instructions.md diff --git a/content/@i18n/ja/infrastructure/rippled/installation/system-requirements.md b/content/@i18n/ja/infrastructure/installation/system-requirements.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/installation/system-requirements.md rename to content/@i18n/ja/infrastructure/installation/system-requirements.md diff --git a/content/@i18n/ja/infrastructure/rippled/installation/update-rippled-automatically-on-linux.md b/content/@i18n/ja/infrastructure/installation/update-rippled-automatically-on-linux.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/installation/update-rippled-automatically-on-linux.md rename to content/@i18n/ja/infrastructure/installation/update-rippled-automatically-on-linux.md diff --git a/content/@i18n/ja/infrastructure/rippled/installation/update-rippled-manually-on-centos-rhel.md b/content/@i18n/ja/infrastructure/installation/update-rippled-manually-on-centos-rhel.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/installation/update-rippled-manually-on-centos-rhel.md rename to content/@i18n/ja/infrastructure/installation/update-rippled-manually-on-centos-rhel.md diff --git a/content/@i18n/ja/infrastructure/rippled/installation/update-rippled-manually-on-ubuntu.md b/content/@i18n/ja/infrastructure/installation/update-rippled-manually-on-ubuntu.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/installation/update-rippled-manually-on-ubuntu.md rename to content/@i18n/ja/infrastructure/installation/update-rippled-manually-on-ubuntu.md diff --git a/content/@i18n/ja/infrastructure/rippled/stand-alone-mode/advance-the-ledger-in-stand-alone-mode.md b/content/@i18n/ja/infrastructure/testing-and-auditing/advance-the-ledger-in-stand-alone-mode.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/stand-alone-mode/advance-the-ledger-in-stand-alone-mode.md rename to content/@i18n/ja/infrastructure/testing-and-auditing/advance-the-ledger-in-stand-alone-mode.md diff --git a/content/@i18n/ja/infrastructure/rippled/stand-alone-mode/load-a-saved-ledger-in-stand-alone-mode.md b/content/@i18n/ja/infrastructure/testing-and-auditing/load-a-saved-ledger-in-stand-alone-mode.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/stand-alone-mode/load-a-saved-ledger-in-stand-alone-mode.md rename to content/@i18n/ja/infrastructure/testing-and-auditing/load-a-saved-ledger-in-stand-alone-mode.md diff --git a/content/@i18n/ja/infrastructure/rippled/stand-alone-mode/start-a-new-genesis-ledger-in-stand-alone-mode.md b/content/@i18n/ja/infrastructure/testing-and-auditing/start-a-new-genesis-ledger-in-stand-alone-mode.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/stand-alone-mode/start-a-new-genesis-ledger-in-stand-alone-mode.md rename to content/@i18n/ja/infrastructure/testing-and-auditing/start-a-new-genesis-ledger-in-stand-alone-mode.md diff --git a/content/@i18n/ja/infrastructure/rippled/configuration/test-amendments.md b/content/@i18n/ja/infrastructure/testing-and-auditing/test-amendments.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/configuration/test-amendments.md rename to content/@i18n/ja/infrastructure/testing-and-auditing/test-amendments.md diff --git a/content/@i18n/ja/infrastructure/rippled/troubleshooting/diagnosing-problems.md b/content/@i18n/ja/infrastructure/troubleshooting/diagnosing-problems.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/troubleshooting/diagnosing-problems.md rename to content/@i18n/ja/infrastructure/troubleshooting/diagnosing-problems.md diff --git a/content/@i18n/ja/infrastructure/rippled/troubleshooting/fix-sqlite-tx-db-page-size-issue.md b/content/@i18n/ja/infrastructure/troubleshooting/fix-sqlite-tx-db-page-size-issue.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/troubleshooting/fix-sqlite-tx-db-page-size-issue.md rename to content/@i18n/ja/infrastructure/troubleshooting/fix-sqlite-tx-db-page-size-issue.md diff --git a/content/@i18n/ja/infrastructure/rippled/troubleshooting/server-doesnt-sync.md b/content/@i18n/ja/infrastructure/troubleshooting/server-doesnt-sync.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/troubleshooting/server-doesnt-sync.md rename to content/@i18n/ja/infrastructure/troubleshooting/server-doesnt-sync.md diff --git a/content/@i18n/ja/infrastructure/rippled/troubleshooting/server-wont-start.md b/content/@i18n/ja/infrastructure/troubleshooting/server-wont-start.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/troubleshooting/server-wont-start.md rename to content/@i18n/ja/infrastructure/troubleshooting/server-wont-start.md diff --git a/content/@i18n/ja/infrastructure/rippled/troubleshooting/understanding-log-messages.md b/content/@i18n/ja/infrastructure/troubleshooting/understanding-log-messages.md similarity index 100% rename from content/@i18n/ja/infrastructure/rippled/troubleshooting/understanding-log-messages.md rename to content/@i18n/ja/infrastructure/troubleshooting/understanding-log-messages.md diff --git a/content/concepts/networks-and-servers/ledger-history/index.md b/content/concepts/networks-and-servers/ledger-history.md similarity index 100% rename from content/concepts/networks-and-servers/ledger-history/index.md rename to content/concepts/networks-and-servers/ledger-history.md diff --git a/content/infrastructure/rippled/commandline-usage.md b/content/infrastructure/commandline-usage.md similarity index 100% rename from content/infrastructure/rippled/commandline-usage.md rename to content/infrastructure/commandline-usage.md diff --git a/content/infrastructure/rippled/configuration/configure-amendment-voting.md b/content/infrastructure/configuration/configure-amendment-voting.md similarity index 100% rename from content/infrastructure/rippled/configuration/configure-amendment-voting.md rename to content/infrastructure/configuration/configure-amendment-voting.md diff --git a/content/infrastructure/rippled/configuration/configure-grpc.md b/content/infrastructure/configuration/configure-grpc.md similarity index 100% rename from content/infrastructure/rippled/configuration/configure-grpc.md rename to content/infrastructure/configuration/configure-grpc.md diff --git a/content/infrastructure/rippled/configuration/configure-statsd.md b/content/infrastructure/configuration/configure-statsd.md similarity index 100% rename from content/infrastructure/rippled/configuration/configure-statsd.md rename to content/infrastructure/configuration/configure-statsd.md diff --git a/content/infrastructure/rippled/configuration/connect-your-rippled-to-the-xrp-test-net.md b/content/infrastructure/configuration/connect-your-rippled-to-the-xrp-test-net.md similarity index 100% rename from content/infrastructure/rippled/configuration/connect-your-rippled-to-the-xrp-test-net.md rename to content/infrastructure/configuration/connect-your-rippled-to-the-xrp-test-net.md diff --git a/content/infrastructure/rippled/configuration/configure-advisory-deletion.md b/content/infrastructure/configuration/data-retention/configure-advisory-deletion.md similarity index 100% rename from content/infrastructure/rippled/configuration/configure-advisory-deletion.md rename to content/infrastructure/configuration/data-retention/configure-advisory-deletion.md diff --git a/content/infrastructure/rippled/configuration/configure-full-history.md b/content/infrastructure/configuration/data-retention/configure-full-history.md similarity index 100% rename from content/infrastructure/rippled/configuration/configure-full-history.md rename to content/infrastructure/configuration/data-retention/configure-full-history.md diff --git a/content/infrastructure/rippled/configuration/configure-history-sharding.md b/content/infrastructure/configuration/data-retention/configure-history-sharding.md similarity index 100% rename from content/infrastructure/rippled/configuration/configure-history-sharding.md rename to content/infrastructure/configuration/data-retention/configure-history-sharding.md diff --git a/content/infrastructure/rippled/configuration/configure-online-deletion.md b/content/infrastructure/configuration/data-retention/configure-online-deletion.md similarity index 100% rename from content/infrastructure/rippled/configuration/configure-online-deletion.md rename to content/infrastructure/configuration/data-retention/configure-online-deletion.md diff --git a/content/concepts/networks-and-servers/ledger-history/history-sharding.md b/content/infrastructure/configuration/data-retention/history-sharding.md similarity index 100% rename from content/concepts/networks-and-servers/ledger-history/history-sharding.md rename to content/infrastructure/configuration/data-retention/history-sharding.md diff --git a/content/infrastructure/configure-rippled/data-retention/index.md b/content/infrastructure/configuration/data-retention/index.md similarity index 100% rename from content/infrastructure/configure-rippled/data-retention/index.md rename to content/infrastructure/configuration/data-retention/index.md diff --git a/content/concepts/networks-and-servers/ledger-history/online-deletion.md b/content/infrastructure/configuration/data-retention/online-deletion.md similarity index 100% rename from content/concepts/networks-and-servers/ledger-history/online-deletion.md rename to content/infrastructure/configuration/data-retention/online-deletion.md diff --git a/content/infrastructure/rippled/configuration/enable-public-signing.md b/content/infrastructure/configuration/enable-public-signing.md similarity index 100% rename from content/infrastructure/rippled/configuration/enable-public-signing.md rename to content/infrastructure/configuration/enable-public-signing.md diff --git a/content/infrastructure/configuration/index.md b/content/infrastructure/configuration/index.md new file mode 100644 index 0000000000..181302690e --- /dev/null +++ b/content/infrastructure/configuration/index.md @@ -0,0 +1,9 @@ +--- +html: configure-rippled.html +parent: infrastructure.html +template: pagetype-category.html.jinja +blurb: Customize the configuration of an XRP Ledger server. +--- +# Configuration + +Customize the configuration of an XRP Ledger server. \ No newline at end of file diff --git a/content/infrastructure/rippled/configure-peering/cluster-rippled-servers.md b/content/infrastructure/configuration/peering/cluster-rippled-servers.md similarity index 100% rename from content/infrastructure/rippled/configure-peering/cluster-rippled-servers.md rename to content/infrastructure/configuration/peering/cluster-rippled-servers.md diff --git a/content/infrastructure/rippled/configure-peering/configure-a-private-server.md b/content/infrastructure/configuration/peering/configure-a-private-server.md similarity index 100% rename from content/infrastructure/rippled/configure-peering/configure-a-private-server.md rename to content/infrastructure/configuration/peering/configure-a-private-server.md diff --git a/content/infrastructure/rippled/configure-peering/configure-the-peer-crawler.md b/content/infrastructure/configuration/peering/configure-the-peer-crawler.md similarity index 100% rename from content/infrastructure/rippled/configure-peering/configure-the-peer-crawler.md rename to content/infrastructure/configuration/peering/configure-the-peer-crawler.md diff --git a/content/infrastructure/rippled/configure-peering/enable-link-compression.md b/content/infrastructure/configuration/peering/enable-link-compression.md similarity index 100% rename from content/infrastructure/rippled/configure-peering/enable-link-compression.md rename to content/infrastructure/configuration/peering/enable-link-compression.md diff --git a/content/infrastructure/rippled/configure-peering/forward-ports-for-peering.md b/content/infrastructure/configuration/peering/forward-ports-for-peering.md similarity index 100% rename from content/infrastructure/rippled/configure-peering/forward-ports-for-peering.md rename to content/infrastructure/configuration/peering/forward-ports-for-peering.md diff --git a/content/infrastructure/rippled/configure-peering/configure-peering.md b/content/infrastructure/configuration/peering/index.md similarity index 96% rename from content/infrastructure/rippled/configure-peering/configure-peering.md rename to content/infrastructure/configuration/peering/index.md index 1d614ff0a1..dea021d96c 100644 --- a/content/infrastructure/rippled/configure-peering/configure-peering.md +++ b/content/infrastructure/configuration/peering/index.md @@ -1,7 +1,7 @@ --- html: configure-peering.html name: Peering -parent: infrastructure.html +parent: configure-rippled.html template: pagetype-category.html.jinja blurb: Configure how your server connects to the peer-to-peer network. labels: diff --git a/content/infrastructure/rippled/configure-peering/manually-connect-to-a-specific-peer.md b/content/infrastructure/configuration/peering/manually-connect-to-a-specific-peer.md similarity index 100% rename from content/infrastructure/rippled/configure-peering/manually-connect-to-a-specific-peer.md rename to content/infrastructure/configuration/peering/manually-connect-to-a-specific-peer.md diff --git a/content/infrastructure/rippled/configure-peering/set-max-number-of-peers.md b/content/infrastructure/configuration/peering/set-max-number-of-peers.md similarity index 100% rename from content/infrastructure/rippled/configure-peering/set-max-number-of-peers.md rename to content/infrastructure/configuration/peering/set-max-number-of-peers.md diff --git a/content/infrastructure/rippled/configure-peering/use-a-peer-reservation.md b/content/infrastructure/configuration/peering/use-a-peer-reservation.md similarity index 100% rename from content/infrastructure/rippled/configure-peering/use-a-peer-reservation.md rename to content/infrastructure/configuration/peering/use-a-peer-reservation.md diff --git a/content/infrastructure/configure-rippled/server-modes/index.md b/content/infrastructure/configuration/server-modes/index.md similarity index 100% rename from content/infrastructure/configure-rippled/server-modes/index.md rename to content/infrastructure/configuration/server-modes/index.md diff --git a/content/infrastructure/rippled/configuration/run-rippled-as-a-stock-server.md b/content/infrastructure/configuration/server-modes/run-rippled-as-a-stock-server.md similarity index 100% rename from content/infrastructure/rippled/configuration/run-rippled-as-a-stock-server.md rename to content/infrastructure/configuration/server-modes/run-rippled-as-a-stock-server.md diff --git a/content/infrastructure/rippled/configuration/run-rippled-as-a-validator.md b/content/infrastructure/configuration/server-modes/run-rippled-as-a-validator.md similarity index 100% rename from content/infrastructure/rippled/configuration/run-rippled-as-a-validator.md rename to content/infrastructure/configuration/server-modes/run-rippled-as-a-validator.md diff --git a/content/infrastructure/configure-rippled/index.md b/content/infrastructure/configure-rippled/index.md deleted file mode 100644 index e39f13e8cb..0000000000 --- a/content/infrastructure/configure-rippled/index.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -html: configure-rippled.html -parent: infrastructure.html -template: pagetype-category.html.jinja -blurb: Customize your rippled server configuration. ---- -# Configure rippled - -Customize your rippled server configuration. \ No newline at end of file diff --git a/content/infrastructure/install-rippled/index.md b/content/infrastructure/install-rippled/index.md deleted file mode 100644 index e4cec7fcfe..0000000000 --- a/content/infrastructure/install-rippled/index.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -html: install-rippled.html -parent: infrastructure.html -top_nav_name: Install & Configure -template: pagetype-category.html.jinja -blurb: Install and update the rippled server. ---- -# Install rippled - -Install and update the rippled server. \ No newline at end of file diff --git a/content/infrastructure/rippled/installation/build-on-linux-mac-windows.md b/content/infrastructure/installation/build-on-linux-mac-windows.md similarity index 100% rename from content/infrastructure/rippled/installation/build-on-linux-mac-windows.md rename to content/infrastructure/installation/build-on-linux-mac-windows.md diff --git a/content/infrastructure/rippled/installation/build-run-rippled-in-reporting-mode.md b/content/infrastructure/installation/build-run-rippled-in-reporting-mode.md similarity index 100% rename from content/infrastructure/rippled/installation/build-run-rippled-in-reporting-mode.md rename to content/infrastructure/installation/build-run-rippled-in-reporting-mode.md diff --git a/content/infrastructure/rippled/installation/capacity-planning.md b/content/infrastructure/installation/capacity-planning.md similarity index 100% rename from content/infrastructure/rippled/installation/capacity-planning.md rename to content/infrastructure/installation/capacity-planning.md diff --git a/content/infrastructure/installation/index.md b/content/infrastructure/installation/index.md new file mode 100644 index 0000000000..d0a1f12b23 --- /dev/null +++ b/content/infrastructure/installation/index.md @@ -0,0 +1,10 @@ +--- +html: install-rippled.html +parent: infrastructure.html +top_nav_name: Install & Configure +template: pagetype-category.html.jinja +blurb: Install and update XRP Ledger servers including the core server, rippled, and API server, Clio. +--- +# Installation + +Install and update XRP Ledger servers including the core server, rippled, and API server, Clio. \ No newline at end of file diff --git a/content/infrastructure/clio/install-clio-on-ubuntu.md b/content/infrastructure/installation/install-clio-on-ubuntu.md similarity index 99% rename from content/infrastructure/clio/install-clio-on-ubuntu.md rename to content/infrastructure/installation/install-clio-on-ubuntu.md index afe597295d..38b48e5811 100644 --- a/content/infrastructure/clio/install-clio-on-ubuntu.md +++ b/content/infrastructure/installation/install-clio-on-ubuntu.md @@ -1,6 +1,6 @@ --- html: install-clio-on-ubuntu.html -parent: infrastructure.html +parent: install-rippled.html blurb: Install a precompiled Clio binary on Ubuntu Linux. labels: - Clio Server diff --git a/content/infrastructure/rippled/installation/install-rippled-on-centos-rhel-with-yum.md b/content/infrastructure/installation/install-rippled-on-centos-rhel-with-yum.md similarity index 100% rename from content/infrastructure/rippled/installation/install-rippled-on-centos-rhel-with-yum.md rename to content/infrastructure/installation/install-rippled-on-centos-rhel-with-yum.md diff --git a/content/infrastructure/rippled/installation/install-rippled-on-ubuntu.md b/content/infrastructure/installation/install-rippled-on-ubuntu.md similarity index 100% rename from content/infrastructure/rippled/installation/install-rippled-on-ubuntu.md rename to content/infrastructure/installation/install-rippled-on-ubuntu.md diff --git a/content/infrastructure/rippled/installation/rippled-1-3-migration-instructions.md b/content/infrastructure/installation/rippled-1-3-migration-instructions.md similarity index 100% rename from content/infrastructure/rippled/installation/rippled-1-3-migration-instructions.md rename to content/infrastructure/installation/rippled-1-3-migration-instructions.md diff --git a/content/infrastructure/rippled/installation/system-requirements.md b/content/infrastructure/installation/system-requirements.md similarity index 100% rename from content/infrastructure/rippled/installation/system-requirements.md rename to content/infrastructure/installation/system-requirements.md diff --git a/content/infrastructure/rippled/installation/update-rippled-automatically-on-linux.md b/content/infrastructure/installation/update-rippled-automatically-on-linux.md similarity index 100% rename from content/infrastructure/rippled/installation/update-rippled-automatically-on-linux.md rename to content/infrastructure/installation/update-rippled-automatically-on-linux.md diff --git a/content/infrastructure/rippled/installation/update-rippled-manually-on-centos-rhel.md b/content/infrastructure/installation/update-rippled-manually-on-centos-rhel.md similarity index 100% rename from content/infrastructure/rippled/installation/update-rippled-manually-on-centos-rhel.md rename to content/infrastructure/installation/update-rippled-manually-on-centos-rhel.md diff --git a/content/infrastructure/rippled/installation/update-rippled-manually-on-ubuntu.md b/content/infrastructure/installation/update-rippled-manually-on-ubuntu.md similarity index 100% rename from content/infrastructure/rippled/installation/update-rippled-manually-on-ubuntu.md rename to content/infrastructure/installation/update-rippled-manually-on-ubuntu.md diff --git a/content/infrastructure/rippled/stand-alone-mode/advance-the-ledger-in-stand-alone-mode.md b/content/infrastructure/testing-and-auditing/advance-the-ledger-in-stand-alone-mode.md similarity index 100% rename from content/infrastructure/rippled/stand-alone-mode/advance-the-ledger-in-stand-alone-mode.md rename to content/infrastructure/testing-and-auditing/advance-the-ledger-in-stand-alone-mode.md diff --git a/content/infrastructure/rippled/stand-alone-mode/load-a-saved-ledger-in-stand-alone-mode.md b/content/infrastructure/testing-and-auditing/load-a-saved-ledger-in-stand-alone-mode.md similarity index 100% rename from content/infrastructure/rippled/stand-alone-mode/load-a-saved-ledger-in-stand-alone-mode.md rename to content/infrastructure/testing-and-auditing/load-a-saved-ledger-in-stand-alone-mode.md diff --git a/content/infrastructure/rippled/run-private-network-with-docker.md b/content/infrastructure/testing-and-auditing/run-private-network-with-docker.md similarity index 99% rename from content/infrastructure/rippled/run-private-network-with-docker.md rename to content/infrastructure/testing-and-auditing/run-private-network-with-docker.md index 85b478ada7..70bc4e7f44 100644 --- a/content/infrastructure/rippled/run-private-network-with-docker.md +++ b/content/infrastructure/testing-and-auditing/run-private-network-with-docker.md @@ -1,7 +1,7 @@ --- html: private-network-with-docker.html name: Run a Private Network with Docker -parent: infrastructure.html +parent: use-stand-alone-mode.html blurb: Learn how to set up your own XRP private ledger network with Docker and Docker Compose. labels: - Core Server diff --git a/content/infrastructure/rippled/stand-alone-mode/start-a-new-genesis-ledger-in-stand-alone-mode.md b/content/infrastructure/testing-and-auditing/start-a-new-genesis-ledger-in-stand-alone-mode.md similarity index 100% rename from content/infrastructure/rippled/stand-alone-mode/start-a-new-genesis-ledger-in-stand-alone-mode.md rename to content/infrastructure/testing-and-auditing/start-a-new-genesis-ledger-in-stand-alone-mode.md diff --git a/content/infrastructure/rippled/configuration/test-amendments.md b/content/infrastructure/testing-and-auditing/test-amendments.md similarity index 88% rename from content/infrastructure/rippled/configuration/test-amendments.md rename to content/infrastructure/testing-and-auditing/test-amendments.md index 86b4d31fe2..e0d8d28520 100644 --- a/content/infrastructure/rippled/configuration/test-amendments.md +++ b/content/infrastructure/testing-and-auditing/test-amendments.md @@ -1,6 +1,6 @@ --- html: test-amendments.html -parent: configure-rippled.html +parent: use-stand-alone-mode.html # "Testing and Auditing" blurb: You can test proposed amendments before they're enabled on the network. labels: - Blockchain diff --git a/content/infrastructure/rippled/troubleshooting/diagnosing-problems.md b/content/infrastructure/troubleshooting/diagnosing-problems.md similarity index 100% rename from content/infrastructure/rippled/troubleshooting/diagnosing-problems.md rename to content/infrastructure/troubleshooting/diagnosing-problems.md diff --git a/content/infrastructure/rippled/troubleshooting/fix-sqlite-tx-db-page-size-issue.md b/content/infrastructure/troubleshooting/fix-sqlite-tx-db-page-size-issue.md similarity index 100% rename from content/infrastructure/rippled/troubleshooting/fix-sqlite-tx-db-page-size-issue.md rename to content/infrastructure/troubleshooting/fix-sqlite-tx-db-page-size-issue.md diff --git a/content/infrastructure/rippled/troubleshooting/health-check-interventions.md b/content/infrastructure/troubleshooting/health-check-interventions.md similarity index 100% rename from content/infrastructure/rippled/troubleshooting/health-check-interventions.md rename to content/infrastructure/troubleshooting/health-check-interventions.md diff --git a/content/infrastructure/rippled/troubleshooting/server-doesnt-sync.md b/content/infrastructure/troubleshooting/server-doesnt-sync.md similarity index 100% rename from content/infrastructure/rippled/troubleshooting/server-doesnt-sync.md rename to content/infrastructure/troubleshooting/server-doesnt-sync.md diff --git a/content/infrastructure/rippled/troubleshooting/server-is-amendment-blocked.md b/content/infrastructure/troubleshooting/server-is-amendment-blocked.md similarity index 100% rename from content/infrastructure/rippled/troubleshooting/server-is-amendment-blocked.md rename to content/infrastructure/troubleshooting/server-is-amendment-blocked.md diff --git a/content/infrastructure/rippled/troubleshooting/server-wont-start.md b/content/infrastructure/troubleshooting/server-wont-start.md similarity index 100% rename from content/infrastructure/rippled/troubleshooting/server-wont-start.md rename to content/infrastructure/troubleshooting/server-wont-start.md diff --git a/content/infrastructure/rippled/troubleshooting/understanding-log-messages.md b/content/infrastructure/troubleshooting/understanding-log-messages.md similarity index 100% rename from content/infrastructure/rippled/troubleshooting/understanding-log-messages.md rename to content/infrastructure/troubleshooting/understanding-log-messages.md diff --git a/dactyl-config.yml b/dactyl-config.yml index 33060c8cae..21f80eec5a 100644 --- a/dactyl-config.yml +++ b/dactyl-config.yml @@ -736,11 +736,11 @@ pages: targets: - ja - - md: concepts/networks-and-servers/ledger-history/index.md + - md: concepts/networks-and-servers/ledger-history.md targets: - en - - md: "@i18n/ja/concepts/networks-and-servers/ledger-history/index.md" + - md: "@i18n/ja/concepts/networks-and-servers/ledger-history.md" targets: - ja @@ -3803,356 +3803,307 @@ pages: targets: - ja - # Redirect old landing - - name: Manage the rippled server - html: manage-the-rippled-server.html - template: pagetype-redirect.html.jinja - nav_omit: true - redirect_url: install-rippled-on-ubuntu.html + + - md: infrastructure/commandline-usage.md + targets: + - en + + - md: "@i18n/ja/infrastructure/commandline-usage.md" + targets: + - ja + + - md: infrastructure/installation/index.md + targets: + - en + + - md: "@i18n/ja/infrastructure/installation/index.md" + targets: + - ja + + - md: infrastructure/installation/system-requirements.md + targets: + - en + + - md: "@i18n/ja/infrastructure/installation/system-requirements.md" + targets: + - ja + + - md: infrastructure/installation/install-rippled-on-centos-rhel-with-yum.md + targets: + - en + + - md: "@i18n/ja/infrastructure/installation/install-rippled-on-centos-rhel-with-yum.md" + targets: + - ja + + - md: infrastructure/installation/install-rippled-on-ubuntu.md + targets: + - en + + - md: "@i18n/ja/infrastructure/installation/install-rippled-on-ubuntu.md" + targets: + - ja + + # TODO: translate + - md: infrastructure/installation/install-clio-on-ubuntu.md targets: - en - ja - - md: infrastructure/rippled/commandline-usage.md + - md: infrastructure/installation/update-rippled-automatically-on-linux.md targets: - en - - md: "@i18n/ja/infrastructure/rippled/commandline-usage.md" + - md: "@i18n/ja/infrastructure/installation/update-rippled-automatically-on-linux.md" targets: - ja - - md: infrastructure/install-rippled/index.md + - md: infrastructure/installation/update-rippled-manually-on-centos-rhel.md targets: - en - - md: "@i18n/ja/infrastructure/install-rippled/index.md" + - md: "@i18n/ja/infrastructure/installation/update-rippled-manually-on-centos-rhel.md" targets: - ja - - md: infrastructure/rippled/installation/system-requirements.md + - md: infrastructure/installation/update-rippled-manually-on-ubuntu.md targets: - en - - md: "@i18n/ja/infrastructure/rippled/installation/system-requirements.md" - targets: - - ja - - - md: infrastructure/rippled/installation/install-rippled-on-centos-rhel-with-yum.md - targets: - - en - - - md: "@i18n/ja/infrastructure/rippled/installation/install-rippled-on-centos-rhel-with-yum.md" - targets: - - ja - - # Redirect old Alien-based install - - name: Install rippled on Ubuntu with Alien - html: install-rippled-on-ubuntu-with-alien.html - parent: install-rippled.html - template: pagetype-redirect.html.jinja - nav_omit: true - redirect_url: install-rippled-on-ubuntu.html - targets: - - en - - ja - - - md: infrastructure/rippled/installation/install-rippled-on-ubuntu.md - targets: - - en - - - md: "@i18n/ja/infrastructure/rippled/installation/install-rippled-on-ubuntu.md" - targets: - - ja - - # Redirect old CentOS/RHEL install - - name: Update rippled Automatically on CentOS/RHEL - html: update-rippled-automatically-on-centos-rhel.html - template: pagetype-redirect.html.jinja - nav_omit: true - redirect_url: update-rippled-automatically-on-linux.html - targets: - - en - - ja - - - md: infrastructure/rippled/installation/update-rippled-automatically-on-linux.md - targets: - - en - - - md: "@i18n/ja/infrastructure/rippled/installation/update-rippled-automatically-on-linux.md" - targets: - - ja - - - md: infrastructure/rippled/installation/update-rippled-manually-on-centos-rhel.md - targets: - - en - - - md: "@i18n/ja/infrastructure/rippled/installation/update-rippled-manually-on-centos-rhel.md" - targets: - - ja - - - md: infrastructure/rippled/installation/update-rippled-manually-on-ubuntu.md - targets: - - en - - - md: "@i18n/ja/infrastructure/rippled/installation/update-rippled-manually-on-ubuntu.md" + - md: "@i18n/ja/infrastructure/installation/update-rippled-manually-on-ubuntu.md" targets: - ja # TODO: translate - - md: infrastructure/rippled/installation/build-on-linux-mac-windows.md + - md: infrastructure/installation/build-on-linux-mac-windows.md targets: - en - ja - # Redirect to build instructions on rippled repo. - - name: Build and Run rippled on Ubuntu - html: build-run-rippled-ubuntu.html - template: pagetype-redirect.html.jinja - redirect_url: build-on-linux-mac-windows.html - targets: - - en - - ja - - # Redirect to build instructions on rippled repo. - - name: Build and Run rippled on macOS - html: build-run-rippled-macos.html - template: pagetype-redirect.html.jinja - redirect_url: build-on-linux-mac-windows.html - targets: - - en - - ja - - - md: infrastructure/rippled/installation/build-run-rippled-in-reporting-mode.md + - md: infrastructure/installation/build-run-rippled-in-reporting-mode.md targets: - en # TODO: translate - - md: infrastructure/rippled/installation/build-run-rippled-in-reporting-mode.md + - md: infrastructure/installation/build-run-rippled-in-reporting-mode.md top_nav_grouping: 人気ページ untranslated_warning: true targets: - ja - - md: infrastructure/rippled/installation/capacity-planning.md + - md: infrastructure/installation/capacity-planning.md targets: - en - - md: "@i18n/ja/infrastructure/rippled/installation/capacity-planning.md" + - md: "@i18n/ja/infrastructure/installation/capacity-planning.md" targets: - ja - - md: infrastructure/rippled/installation/rippled-1-3-migration-instructions.md + - md: infrastructure/installation/rippled-1-3-migration-instructions.md targets: - en - - md: "@i18n/ja/infrastructure/rippled/installation/rippled-1-3-migration-instructions.md" + - md: "@i18n/ja/infrastructure/installation/rippled-1-3-migration-instructions.md" targets: - ja - - md: infrastructure/configure-rippled/index.md + - md: infrastructure/configuration/index.md targets: - en - - md: "@i18n/ja/infrastructure/configure-rippled/index.md" + - md: "@i18n/ja/infrastructure/configuration/index.md" targets: - ja - - md: infrastructure/configure-rippled/server-modes/index.md + - md: infrastructure/configuration/server-modes/index.md targets: - en - - md: "@i18n/ja/infrastructure/configure-rippled/server-modes/index.md" + - md: "@i18n/ja/infrastructure/configuration/server-modes/index.md" targets: - ja - - md: infrastructure/rippled/configuration/run-rippled-as-a-validator.md + - md: infrastructure/configuration/server-modes/run-rippled-as-a-validator.md targets: - en - - md: "@i18n/ja/infrastructure/rippled/configuration/run-rippled-as-a-validator.md" + - md: "@i18n/ja/infrastructure/configuration/server-modes/run-rippled-as-a-validator.md" targets: - ja - - md: infrastructure/rippled/configuration/run-rippled-as-a-stock-server.md + - md: infrastructure/configuration/server-modes/run-rippled-as-a-stock-server.md targets: - en # TODO: update this translation and rename the file like in the English version - - md: "@i18n/ja/infrastructure/rippled/configuration/run-rippled-as-a-wallet-server.md" - targets: - - ja - - - md: infrastructure/configure-rippled/data-retention/index.md - targets: - - en - - - md: "@i18n/ja/infrastructure/configure-rippled/data-retention/index.md" - targets: - - ja - - - md: infrastructure/rippled/configuration/configure-full-history.md - targets: - - en - - - md: "@i18n/ja/infrastructure/rippled/configuration/configure-full-history.md" - targets: - - ja - - - md: concepts/networks-and-servers/ledger-history/online-deletion.md - targets: - - en - - - md: "@i18n/ja/concepts/networks-and-servers/ledger-history/online-deletion.md" - targets: - - ja - - - md: infrastructure/rippled/configuration/configure-online-deletion.md - targets: - - en - - - md: "@i18n/ja/infrastructure/rippled/configuration/configure-online-deletion.md" - targets: - - ja - - - md: infrastructure/rippled/configuration/configure-advisory-deletion.md - targets: - - en - - - md: "@i18n/ja/infrastructure/rippled/configuration/configure-advisory-deletion.md" - targets: - - ja - - - md: concepts/networks-and-servers/ledger-history/history-sharding.md - targets: - - en - - - md: "@i18n/ja/concepts/networks-and-servers/ledger-history/history-sharding.md" - targets: - - ja - - - md: infrastructure/rippled/configuration/configure-history-sharding.md - targets: - - en - - - md: "@i18n/ja/infrastructure/rippled/configuration/configure-history-sharding.md" - targets: - - ja - - - md: infrastructure/rippled/configuration/configure-amendment-voting.md - targets: - - en - - - md: "@i18n/ja/infrastructure/rippled/configuration/configure-amendment-voting.md" - targets: - - ja - - - md: infrastructure/rippled/configuration/test-amendments.md - targets: - - en - - - md: "@i18n/ja/infrastructure/rippled/configuration/test-amendments.md" - targets: - - ja - - # TODO: translate - - md: infrastructure/rippled/configuration/configure-statsd.md - targets: - - en - - ja - - - md: infrastructure/rippled/configuration/connect-your-rippled-to-the-xrp-test-net.md - targets: - - en - - - md: "@i18n/ja/infrastructure/rippled/configuration/connect-your-rippled-to-the-xrp-test-net.md" + - md: "@i18n/ja/infrastructure/configuration/server-modes/run-rippled-as-a-stock-server.md" outdated_translation: true targets: - ja - # TODO: translate page - - md: infrastructure/rippled/configuration/configure-grpc.md - targets: - - en - - ja - - - md: infrastructure/rippled/configuration/enable-public-signing.md + - md: infrastructure/configuration/data-retention/index.md targets: - en - - md: "@i18n/ja/infrastructure/rippled/configuration/enable-public-signing.md" + - md: "@i18n/ja/infrastructure/configuration/data-retention/index.md" targets: - ja - - md: infrastructure/rippled/configure-peering/configure-peering.md + - md: infrastructure/configuration/data-retention/configure-full-history.md targets: - en - - md: "@i18n/ja/infrastructure/rippled/configure-peering/configure-peering.md" + - md: "@i18n/ja/infrastructure/configuration/data-retention/configure-full-history.md" targets: - ja - - md: infrastructure/rippled/configure-peering/cluster-rippled-servers.md + - md: infrastructure/configuration/data-retention/online-deletion.md targets: - en - - md: "@i18n/ja/infrastructure/rippled/configure-peering/cluster-rippled-servers.md" + - md: "@i18n/ja/infrastructure/configuration/data-retention/online-deletion.md" targets: - ja - - md: infrastructure/rippled/configure-peering/configure-a-private-server.md + - md: infrastructure/configuration/data-retention/configure-online-deletion.md targets: - en - - md: "@i18n/ja/infrastructure/rippled/configure-peering/configure-a-private-server.md" + - md: "@i18n/ja/infrastructure/configuration/data-retention/configure-online-deletion.md" targets: - ja - - md: infrastructure/rippled/configure-peering/configure-the-peer-crawler.md + - md: infrastructure/configuration/data-retention/configure-advisory-deletion.md + targets: + - en + + - md: "@i18n/ja/infrastructure/configuration/data-retention/configure-advisory-deletion.md" + targets: + - ja + + - md: infrastructure/configuration/data-retention/history-sharding.md + targets: + - en + + - md: "@i18n/ja/infrastructure/configuration/data-retention/history-sharding.md" + targets: + - ja + + - md: infrastructure/configuration/data-retention/configure-history-sharding.md + targets: + - en + + - md: "@i18n/ja/infrastructure/configuration/data-retention/configure-history-sharding.md" + targets: + - ja + + - md: infrastructure/configuration/peering/index.md + targets: + - en + + - md: "@i18n/ja/infrastructure/configuration/peering/index.md" + targets: + - ja + + - md: infrastructure/configuration/peering/cluster-rippled-servers.md + targets: + - en + + - md: "@i18n/ja/infrastructure/configuration/peering/cluster-rippled-servers.md" + targets: + - ja + + - md: infrastructure/configuration/peering/configure-a-private-server.md + targets: + - en + + - md: "@i18n/ja/infrastructure/configuration/peering/configure-a-private-server.md" + targets: + - ja + + - md: infrastructure/configuration/peering/configure-the-peer-crawler.md targets: - en # TODO: translate this page. # For now we just have a translated blurb. - - md: infrastructure/rippled/configure-peering/configure-the-peer-crawler.md + - md: infrastructure/configuration/peering/configure-the-peer-crawler.md blurb: rippledサーバーがステータスとピアについてどの程度の情報を公表するか設定します。 untranslated_warning: true targets: - ja # TODO: translate this page - - md: infrastructure/rippled/configure-peering/enable-link-compression.md + - md: infrastructure/configuration/peering/enable-link-compression.md targets: - en - ja - - md: infrastructure/rippled/configure-peering/forward-ports-for-peering.md + - md: infrastructure/configuration/peering/forward-ports-for-peering.md targets: - en - - md: "@i18n/ja/infrastructure/rippled/configure-peering/forward-ports-for-peering.md" + - md: "@i18n/ja/infrastructure/configuration/peering/forward-ports-for-peering.md" targets: - ja - - md: infrastructure/rippled/configure-peering/manually-connect-to-a-specific-peer.md + - md: infrastructure/configuration/peering/manually-connect-to-a-specific-peer.md targets: - en - - md: "@i18n/ja/infrastructure/rippled/configure-peering/manually-connect-to-a-specific-peer.md" + - md: "@i18n/ja/infrastructure/configuration/peering/manually-connect-to-a-specific-peer.md" targets: - ja - - md: infrastructure/rippled/configure-peering/set-max-number-of-peers.md + - md: infrastructure/configuration/peering/set-max-number-of-peers.md targets: - en - - md: "@i18n/ja/infrastructure/rippled/configure-peering/set-max-number-of-peers.md" + - md: "@i18n/ja/infrastructure/configuration/peering/set-max-number-of-peers.md" targets: - ja - - md: infrastructure/rippled/configure-peering/use-a-peer-reservation.md + - md: infrastructure/configuration/peering/use-a-peer-reservation.md targets: - en - - md: "@i18n/ja/infrastructure/rippled/configure-peering/use-a-peer-reservation.md" + - md: "@i18n/ja/infrastructure/configuration/peering/use-a-peer-reservation.md" + targets: + - ja + + - md: infrastructure/configuration/configure-amendment-voting.md + targets: + - en + + - md: "@i18n/ja/infrastructure/configuration/configure-amendment-voting.md" + targets: + - ja + + # TODO: translate + - md: infrastructure/configuration/configure-statsd.md + targets: + - en + - ja + + - md: infrastructure/configuration/connect-your-rippled-to-the-xrp-test-net.md + targets: + - en + + - md: "@i18n/ja/infrastructure/configuration/connect-your-rippled-to-the-xrp-test-net.md" + outdated_translation: true + targets: + - ja + + # TODO: translate page + - md: infrastructure/configuration/configure-grpc.md + targets: + - en + - ja + + - md: infrastructure/configuration/enable-public-signing.md + targets: + - en + + - md: "@i18n/ja/infrastructure/configuration/enable-public-signing.md" targets: - ja @@ -4164,30 +4115,44 @@ pages: targets: - ja - - md: infrastructure/rippled/stand-alone-mode/start-a-new-genesis-ledger-in-stand-alone-mode.md + - md: infrastructure/testing-and-auditing/start-a-new-genesis-ledger-in-stand-alone-mode.md targets: - en - - md: "@i18n/ja/infrastructure/rippled/stand-alone-mode/start-a-new-genesis-ledger-in-stand-alone-mode.md" + - md: "@i18n/ja/infrastructure/testing-and-auditing/start-a-new-genesis-ledger-in-stand-alone-mode.md" targets: - ja - - md: infrastructure/rippled/stand-alone-mode/load-a-saved-ledger-in-stand-alone-mode.md + - md: infrastructure/testing-and-auditing/load-a-saved-ledger-in-stand-alone-mode.md targets: - en - - md: "@i18n/ja/infrastructure/rippled/stand-alone-mode/load-a-saved-ledger-in-stand-alone-mode.md" + - md: "@i18n/ja/infrastructure/testing-and-auditing/load-a-saved-ledger-in-stand-alone-mode.md" targets: - ja - - md: infrastructure/rippled/stand-alone-mode/advance-the-ledger-in-stand-alone-mode.md + - md: infrastructure/testing-and-auditing/advance-the-ledger-in-stand-alone-mode.md targets: - en - - md: "@i18n/ja/infrastructure/rippled/stand-alone-mode/advance-the-ledger-in-stand-alone-mode.md" + - md: "@i18n/ja/infrastructure/testing-and-auditing/advance-the-ledger-in-stand-alone-mode.md" targets: - ja + - md: infrastructure/testing-and-auditing/test-amendments.md + targets: + - en + + - md: "@i18n/ja/infrastructure/testing-and-auditing/test-amendments.md" + targets: + - ja + + # TODO: translate + - md: infrastructure/testing-and-auditing/run-private-network-with-docker.md + targets: + - en + - ja + - md: infrastructure/troubleshooting/index.md targets: - en @@ -4196,71 +4161,103 @@ pages: targets: - ja - - md: infrastructure/rippled/troubleshooting/diagnosing-problems.md + - md: infrastructure/troubleshooting/diagnosing-problems.md targets: - en - - md: "@i18n/ja/infrastructure/rippled/troubleshooting/diagnosing-problems.md" + - md: "@i18n/ja/infrastructure/troubleshooting/diagnosing-problems.md" targets: - ja # TODO: translate - - md: infrastructure/rippled/troubleshooting/health-check-interventions.md + - md: infrastructure/troubleshooting/health-check-interventions.md targets: - en - ja - - md: infrastructure/rippled/troubleshooting/understanding-log-messages.md + - md: infrastructure/troubleshooting/understanding-log-messages.md targets: - en - - md: "@i18n/ja/infrastructure/rippled/troubleshooting/understanding-log-messages.md" + - md: "@i18n/ja/infrastructure/troubleshooting/understanding-log-messages.md" targets: - ja - - md: infrastructure/rippled/troubleshooting/server-doesnt-sync.md + - md: infrastructure/troubleshooting/server-doesnt-sync.md targets: - en # TODO: translate the blurb in this page's frontmatter - - md: "@i18n/ja/infrastructure/rippled/troubleshooting/server-doesnt-sync.md" + - md: "@i18n/ja/infrastructure/troubleshooting/server-doesnt-sync.md" targets: - ja # TODO: translate - - md: infrastructure/rippled/troubleshooting/server-is-amendment-blocked.md + - md: infrastructure/troubleshooting/server-is-amendment-blocked.md targets: - en - ja - - md: infrastructure/rippled/troubleshooting/server-wont-start.md + - md: infrastructure/troubleshooting/server-wont-start.md targets: - en - - md: "@i18n/ja/infrastructure/rippled/troubleshooting/server-wont-start.md" + - md: "@i18n/ja/infrastructure/troubleshooting/server-wont-start.md" targets: - ja - - md: infrastructure/rippled/troubleshooting/fix-sqlite-tx-db-page-size-issue.md + - md: infrastructure/troubleshooting/fix-sqlite-tx-db-page-size-issue.md targets: - en - - md: "@i18n/ja/infrastructure/rippled/troubleshooting/fix-sqlite-tx-db-page-size-issue.md" + - md: "@i18n/ja/infrastructure/troubleshooting/fix-sqlite-tx-db-page-size-issue.md" targets: - ja - # TODO: translate - - md: infrastructure/clio/install-clio-on-ubuntu.md + # Redirects for old infrastructure pages + + - name: Manage the rippled server + html: manage-the-rippled-server.html + template: pagetype-redirect.html.jinja + nav_omit: true + redirect_url: install-rippled-on-ubuntu.html targets: - en - ja - # TODO: translate - - md: infrastructure/rippled/run-private-network-with-docker.md + - name: Build and Run rippled on Ubuntu + html: build-run-rippled-ubuntu.html + template: pagetype-redirect.html.jinja + redirect_url: build-on-linux-mac-windows.html targets: - - en - - ja + - en + - ja + - name: Build and Run rippled on macOS + html: build-run-rippled-macos.html + template: pagetype-redirect.html.jinja + redirect_url: build-on-linux-mac-windows.html + targets: + - en + - ja + + - name: Update rippled Automatically on CentOS/RHEL + html: update-rippled-automatically-on-centos-rhel.html + template: pagetype-redirect.html.jinja + nav_omit: true + redirect_url: update-rippled-automatically-on-linux.html + targets: + - en + - ja + + - name: Install rippled on Ubuntu with Alien + html: install-rippled-on-ubuntu-with-alien.html + template: pagetype-redirect.html.jinja + nav_omit: true + redirect_url: install-rippled-on-ubuntu.html + targets: + - en + - ja # # Landing pages for labels ------------------------------------------------- # - name: Accounts From e88b7f34d25b438dd4fd5d561ac2333734a6dfe7 Mon Sep 17 00:00:00 2001 From: Arihant Kothari Date: Mon, 13 Nov 2023 13:25:29 -0300 Subject: [PATCH 4/5] fix --- .../path-and-order-book-methods/amm_info.md | 4 ++-- .../path-and-order-book-methods/amm_info.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/content/@i18n/ja/references/http-websocket-apis/public-api-methods/path-and-order-book-methods/amm_info.md b/content/@i18n/ja/references/http-websocket-apis/public-api-methods/path-and-order-book-methods/amm_info.md index dc1b723253..a52ec62e96 100644 --- a/content/@i18n/ja/references/http-websocket-apis/public-api-methods/path-and-order-book-methods/amm_info.md +++ b/content/@i18n/ja/references/http-websocket-apis/public-api-methods/path-and-order-book-methods/amm_info.md @@ -83,7 +83,7 @@ _([AMM amendment][] :not_enabled:が必要です。)_ { "result": { "amm": { - "amm_account": "rp9E3FN3gNmvePGhYnf414T2TkUuoxu8vM", + "account": "rp9E3FN3gNmvePGhYnf414T2TkUuoxu8vM", "amount": "296890496", "amount2": { "currency": "TST", @@ -140,7 +140,7 @@ _([AMM amendment][] :not_enabled:が必要です。)_ { "result": { "amm": { - "amm_account": "rp9E3FN3gNmvePGhYnf414T2TkUuoxu8vM", + "account": "rp9E3FN3gNmvePGhYnf414T2TkUuoxu8vM", "amount": "296890496", "amount2": { "currency": "TST", diff --git a/content/references/http-websocket-apis/public-api-methods/path-and-order-book-methods/amm_info.md b/content/references/http-websocket-apis/public-api-methods/path-and-order-book-methods/amm_info.md index e4dc6c5126..f9858afebc 100644 --- a/content/references/http-websocket-apis/public-api-methods/path-and-order-book-methods/amm_info.md +++ b/content/references/http-websocket-apis/public-api-methods/path-and-order-book-methods/amm_info.md @@ -83,7 +83,7 @@ An example of a successful response: { "result": { "amm": { - "amm_account": "rp9E3FN3gNmvePGhYnf414T2TkUuoxu8vM", + "account": "rp9E3FN3gNmvePGhYnf414T2TkUuoxu8vM", "amount": "296890496", "amount2": { "currency": "TST", @@ -140,7 +140,7 @@ An example of a successful response: { "result": { "amm": { - "amm_account": "rp9E3FN3gNmvePGhYnf414T2TkUuoxu8vM", + "account": "rp9E3FN3gNmvePGhYnf414T2TkUuoxu8vM", "amount": "296890496", "amount2": { "currency": "TST", @@ -207,7 +207,7 @@ The `amm` field is an object describing the current status of an Automated Marke | Field | Type | Description | |-----------------|---------------------|-------------| -| `amm_account` | String | The [Address][] of the AMM Account. | +| `account` | String | The [Address][] of the AMM Account. | | `amount` | [Currency Amount][] | The total amount of one asset in the AMM's pool. (Note: This could be `asset` _or_ `asset2` from the request.) | | `amount2` | [Currency Amount][] | The total amount of the other asset in the AMM's pool. (Note: This could be `asset` _or_ `asset2` from the request.) | | `asset_frozen` | Boolean | _(Omitted for XRP)_ If `true`, the `amount` currency is currently [frozen](freezes.html). | From c2fe0f666ff3aa65d8964c61bebee65761e8ac4c Mon Sep 17 00:00:00 2001 From: Arihant Kothari Date: Mon, 13 Nov 2023 14:04:14 -0300 Subject: [PATCH 5/5] fix typo --- .../public-api-methods/path-and-order-book-methods/amm_info.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/references/http-websocket-apis/public-api-methods/path-and-order-book-methods/amm_info.md b/content/references/http-websocket-apis/public-api-methods/path-and-order-book-methods/amm_info.md index f9858afebc..4f569cfb59 100644 --- a/content/references/http-websocket-apis/public-api-methods/path-and-order-book-methods/amm_info.md +++ b/content/references/http-websocket-apis/public-api-methods/path-and-order-book-methods/amm_info.md @@ -1,7 +1,7 @@ --- html: amm_info.html parent: path-and-order-book-methods.html -blurb: Get info about an Automted Market Maker (AMM) instance. +blurb: Get info about an Automated Market Maker (AMM) instance. status: not_enabled labels: - Decentralized Exchange