mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-12-01 00:55:50 +00:00
Get started reorg: fix typos, move some other files to match nav
This commit is contained in:
@@ -8,7 +8,7 @@ cta_text: Get Started
|
|||||||
|
|
||||||
If you don't have or don't want to use a [client library](client-libraries.html) in your preferred programming language, you can access the XRP Ledger directly through the APIs of its core server software, [`rippled`](the-rippled-server.html). The server provides APIs over JSON-RPC and WebSocket protocols. If you don't [run your own instance of `rippled`](install-rippled.html) you can still use a [public server][public servers].
|
If you don't have or don't want to use a [client library](client-libraries.html) in your preferred programming language, you can access the XRP Ledger directly through the APIs of its core server software, [`rippled`](the-rippled-server.html). The server provides APIs over JSON-RPC and WebSocket protocols. If you don't [run your own instance of `rippled`](install-rippled.html) you can still use a [public server][public servers].
|
||||||
|
|
||||||
**Tip:** You can dive right into the API is with the [**WebSocket API Tool**](websocket-api-tool.html), or use the [XRP Ledger Explorer](https://livenet.xrpl.org/) to watch the progress of the ledger live.
|
**Tip:** You can dive right into the API with the [**WebSocket API Tool**](websocket-api-tool.html), or use the [XRP Ledger Explorer](https://livenet.xrpl.org/) to watch the progress of the ledger live.
|
||||||
|
|
||||||
## Differences Between JSON-RPC and WebSocket
|
## Differences Between JSON-RPC and WebSocket
|
||||||
|
|
||||||
@@ -41,7 +41,7 @@ Example WebSocket API request:
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
The response to shows you the current status of the server.
|
The response shows you the current status of the server.
|
||||||
|
|
||||||
Read more: [Request Formatting >](request-formatting.html) [Response Formatting >](response-formatting.html) [About the server_info method >][server_info method]
|
Read more: [Request Formatting >](request-formatting.html) [Response Formatting >](response-formatting.html) [About the server_info method >][server_info method]
|
||||||
|
|
||||||
@@ -65,7 +65,7 @@ Content-Type: application/json
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
The response to shows you the current status of the server.
|
The response shows you the current status of the server.
|
||||||
|
|
||||||
Read more: [Request Formatting >](request-formatting.html#json-rpc-format) [Response Formatting >](response-formatting.html) [About the server_info method >][server_info method]
|
Read more: [Request Formatting >](request-formatting.html#json-rpc-format) [Response Formatting >](response-formatting.html) [About the server_info method >][server_info method]
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ category: Get Started
|
|||||||
blurb: Build a simple Java app that interacts with the XRP Ledger.
|
blurb: Build a simple Java app that interacts with the XRP Ledger.
|
||||||
cta_text: Build an XRP Ledger-connected app
|
cta_text: Build an XRP Ledger-connected app
|
||||||
filters:
|
filters:
|
||||||
- interactive_steps
|
|
||||||
- include_code
|
- include_code
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -41,7 +40,7 @@ The [`xrpl4j` library](https://github.com/XRPLF/xrpl4j) is available on [Maven C
|
|||||||
In this tutorial, you will need the [xrpl4j-client](https://javadoc.io/doc/org.xrpl/xrpl4j-client/latest/index.html),
|
In this tutorial, you will need the [xrpl4j-client](https://javadoc.io/doc/org.xrpl/xrpl4j-client/latest/index.html),
|
||||||
[xrpl4j-address-codec](https://javadoc.io/doc/org.xrpl/xrpl4j-address-codec/latest/index.html),
|
[xrpl4j-address-codec](https://javadoc.io/doc/org.xrpl/xrpl4j-address-codec/latest/index.html),
|
||||||
[xrpl4j-keypairs](https://javadoc.io/doc/org.xrpl/xrpl4j-keypairs/latest/index.html), and
|
[xrpl4j-keypairs](https://javadoc.io/doc/org.xrpl/xrpl4j-keypairs/latest/index.html), and
|
||||||
[xrpl4j-model](https://javadoc.io/doc/org.xrpl/xrpl4j-model/latest/index.html) modules.
|
[xrpl4j-model](https://javadoc.io/doc/org.xrpl/xrpl4j-model/latest/index.html) modules.
|
||||||
|
|
||||||
To install with Maven, add the following to your project's `pom.xml` file and then run `mvn install`:
|
To install with Maven, add the following to your project's `pom.xml` file and then run `mvn install`:
|
||||||
|
|
||||||
@@ -145,7 +144,7 @@ In order to fund the account on the XRP Ledger, you can use a `FaucetClient` con
|
|||||||
|
|
||||||
### {{n.next()}}. Query the XRP Ledger
|
### {{n.next()}}. Query the XRP Ledger
|
||||||
|
|
||||||
You can query the XRP Ledger to get information about [a specific account](account-methods.html), [a specific transaction](tx.html), the state of a [current or a historical ledger](ledger-methods.html), and [the XRP Ledger's decentralized exhange](path-and-order-book-methods.html). You need to make these queries, among other reasons, to look up account info to follow best practices for [reliable transaction submission](reliable-transaction-submission.html).
|
You can query the XRP Ledger to get information about [a specific account](account-methods.html), [a specific transaction](tx.html), the state of a [current or a historical ledger](ledger-methods.html), and [the XRP Ledger's decentralized exhange](path-and-order-book-methods.html). You need to make these queries, among other reasons, to look up account info to follow best practices for [reliable transaction submission](reliable-transaction-submission.html).
|
||||||
|
|
||||||
Here, we'll use the [`XrplClient` we constructed](#1-connect-to-the-xrp-ledger) to look up information about the [wallet we generated](#2-generate-wallet) in the previous step.
|
Here, we'll use the [`XrplClient` we constructed](#1-connect-to-the-xrp-ledger) to look up information about the [wallet we generated](#2-generate-wallet) in the previous step.
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ parent: get-started.html
|
|||||||
blurb: Build a simple Python app that interacts with the XRP Ledger.
|
blurb: Build a simple Python app that interacts with the XRP Ledger.
|
||||||
cta_text: Build an XRP Ledger-connected app
|
cta_text: Build an XRP Ledger-connected app
|
||||||
filters:
|
filters:
|
||||||
- interactive_steps
|
|
||||||
- include_code
|
- include_code
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1057,11 +1057,11 @@ pages:
|
|||||||
- en
|
- en
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
- md: tutorials/use-simple-xrp-payments/send-xrp.md
|
- md: tutorials/get-started/send-xrp.md
|
||||||
targets:
|
targets:
|
||||||
- en
|
- en
|
||||||
|
|
||||||
- md: tutorials/use-simple-xrp-payments/send-xrp.ja.md
|
- md: tutorials/get-started/send-xrp.ja.md
|
||||||
targets:
|
targets:
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
@@ -1093,27 +1093,27 @@ pages:
|
|||||||
- en
|
- en
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
- md: tutorials/get-started/set-up-secure-signing.md
|
- md: tutorials/production-readiness/set-up-secure-signing.md
|
||||||
targets:
|
targets:
|
||||||
- en
|
- en
|
||||||
|
|
||||||
- md: tutorials/get-started/set-up-secure-signing.ja.md
|
- md: tutorials/production-readiness/set-up-secure-signing.ja.md
|
||||||
targets:
|
targets:
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
- md: tutorials/get-started/look-up-transaction-results.md
|
- md: tutorials/production-readiness/look-up-transaction-results.md
|
||||||
targets:
|
targets:
|
||||||
- en
|
- en
|
||||||
|
|
||||||
- md: tutorials/get-started/look-up-transaction-results.ja.md
|
- md: tutorials/production-readiness/look-up-transaction-results.ja.md
|
||||||
targets:
|
targets:
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
- md: tutorials/use-simple-xrp-payments/reliable-transaction-submission.md
|
- md: tutorials/production-readiness/reliable-transaction-submission.md
|
||||||
targets:
|
targets:
|
||||||
- en
|
- en
|
||||||
|
|
||||||
- md: tutorials/use-simple-xrp-payments/reliable-transaction-submission.ja.md
|
- md: tutorials/production-readiness/reliable-transaction-submission.ja.md
|
||||||
targets:
|
targets:
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
@@ -1176,11 +1176,11 @@ pages:
|
|||||||
targets:
|
targets:
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
- md: tutorials/use-simple-xrp-payments/send-a-multi-signed-transaction.md
|
- md: tutorials/manage-account-settings/send-a-multi-signed-transaction.md
|
||||||
targets:
|
targets:
|
||||||
- en
|
- en
|
||||||
|
|
||||||
- md: tutorials/use-simple-xrp-payments/send-a-multi-signed-transaction.ja.md
|
- md: tutorials/manage-account-settings/send-a-multi-signed-transaction.ja.md
|
||||||
targets:
|
targets:
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
@@ -1249,110 +1249,110 @@ pages:
|
|||||||
targets:
|
targets:
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-escrows/send-a-time-held-escrow.md
|
- md: tutorials/use-specialized-payment-types/use-escrows/send-a-time-held-escrow.md
|
||||||
targets:
|
targets:
|
||||||
- en
|
- en
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-escrows/send-a-time-held-escrow.ja.md
|
- md: tutorials/use-specialized-payment-types/use-escrows/send-a-time-held-escrow.ja.md
|
||||||
targets:
|
targets:
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-escrows/send-a-conditionally-held-escrow.md
|
- md: tutorials/use-specialized-payment-types/use-escrows/send-a-conditionally-held-escrow.md
|
||||||
targets:
|
targets:
|
||||||
- en
|
- en
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-escrows/send-a-conditionally-held-escrow.ja.md
|
- md: tutorials/use-specialized-payment-types/use-escrows/send-a-conditionally-held-escrow.ja.md
|
||||||
targets:
|
targets:
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-escrows/cancel-an-expired-escrow.md
|
- md: tutorials/use-specialized-payment-types/use-escrows/cancel-an-expired-escrow.md
|
||||||
targets:
|
targets:
|
||||||
- en
|
- en
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-escrows/cancel-an-expired-escrow.ja.md
|
- md: tutorials/use-specialized-payment-types/use-escrows/cancel-an-expired-escrow.ja.md
|
||||||
targets:
|
targets:
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-escrows/look-up-escrows.md
|
- md: tutorials/use-specialized-payment-types/use-escrows/look-up-escrows.md
|
||||||
targets:
|
targets:
|
||||||
- en
|
- en
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-escrows/look-up-escrows.ja.md
|
- md: tutorials/use-specialized-payment-types/use-escrows/look-up-escrows.ja.md
|
||||||
targets:
|
targets:
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-escrows/use-an-escrow-as-a-smart-contract.md
|
- md: tutorials/use-specialized-payment-types/use-escrows/use-an-escrow-as-a-smart-contract.md
|
||||||
targets:
|
targets:
|
||||||
- en
|
- en
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
#TODO: split concept info off of the paychan tutorial
|
#TODO: split concept info off of the paychan tutorial
|
||||||
- md: tutorials/use-complex-payment-types/use-payment-channels.md
|
- md: tutorials/use-specialized-payment-types/use-payment-channels.md
|
||||||
targets:
|
targets:
|
||||||
- en
|
- en
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-payment-channels.ja.md
|
- md: tutorials/use-specialized-payment-types/use-payment-channels.ja.md
|
||||||
targets:
|
targets:
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/open-a-payment-channel-to-enable-an-inter-exchange-network.md
|
- md: tutorials/use-specialized-payment-types/open-a-payment-channel-to-enable-an-inter-exchange-network.md
|
||||||
targets:
|
targets:
|
||||||
- en
|
- en
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-checks/use-checks.md
|
- md: tutorials/use-specialized-payment-types/use-checks/use-checks.md
|
||||||
targets:
|
targets:
|
||||||
- en
|
- en
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-checks/use-checks.ja.md
|
- md: tutorials/use-specialized-payment-types/use-checks/use-checks.ja.md
|
||||||
targets:
|
targets:
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-checks/send-a-check.md
|
- md: tutorials/use-specialized-payment-types/use-checks/send-a-check.md
|
||||||
targets:
|
targets:
|
||||||
- en
|
- en
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-checks/send-a-check.ja.md
|
- md: tutorials/use-specialized-payment-types/use-checks/send-a-check.ja.md
|
||||||
targets:
|
targets:
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-checks/cash-a-check-for-an-exact-amount.md
|
- md: tutorials/use-specialized-payment-types/use-checks/cash-a-check-for-an-exact-amount.md
|
||||||
targets:
|
targets:
|
||||||
- en
|
- en
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-checks/cash-a-check-for-an-exact-amount.ja.md
|
- md: tutorials/use-specialized-payment-types/use-checks/cash-a-check-for-an-exact-amount.ja.md
|
||||||
targets:
|
targets:
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-checks/cash-a-check-for-a-flexible-amount.md
|
- md: tutorials/use-specialized-payment-types/use-checks/cash-a-check-for-a-flexible-amount.md
|
||||||
targets:
|
targets:
|
||||||
- en
|
- en
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-checks/cash-a-check-for-a-flexible-amount.ja.md
|
- md: tutorials/use-specialized-payment-types/use-checks/cash-a-check-for-a-flexible-amount.ja.md
|
||||||
targets:
|
targets:
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-checks/cancel-a-check.md
|
- md: tutorials/use-specialized-payment-types/use-checks/cancel-a-check.md
|
||||||
targets:
|
targets:
|
||||||
- en
|
- en
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-checks/cancel-a-check.ja.md
|
- md: tutorials/use-specialized-payment-types/use-checks/cancel-a-check.ja.md
|
||||||
targets:
|
targets:
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-checks/look-up-checks-by-sender.md
|
- md: tutorials/use-specialized-payment-types/use-checks/look-up-checks-by-sender.md
|
||||||
targets:
|
targets:
|
||||||
- en
|
- en
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-checks/look-up-checks-by-sender.ja.md
|
- md: tutorials/use-specialized-payment-types/use-checks/look-up-checks-by-sender.ja.md
|
||||||
targets:
|
targets:
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-checks/look-up-checks-by-recipient.md
|
- md: tutorials/use-specialized-payment-types/use-checks/look-up-checks-by-recipient.md
|
||||||
targets:
|
targets:
|
||||||
- en
|
- en
|
||||||
|
|
||||||
- md: tutorials/use-complex-payment-types/use-checks/look-up-checks-by-recipient.ja.md
|
- md: tutorials/use-specialized-payment-types/use-checks/look-up-checks-by-recipient.ja.md
|
||||||
targets:
|
targets:
|
||||||
- ja
|
- ja
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user