mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 11:45:50 +00:00
Code samples: copy edit descriptions
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
# Address Encoding
|
# Address Encoding
|
||||||
|
|
||||||
Demonstrates how to encode XRP Ledger addresses in base58.
|
Encode and decode XRP Ledger addresses in base58. (This implementation is equivalent to the ones included in most client libraries.)
|
||||||
|
|||||||
3
content/_code-samples/build-a-wallet/README.md
Normal file
3
content/_code-samples/build-a-wallet/README.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Build a Wallet
|
||||||
|
|
||||||
|
Implement a non-custodial wallet application that can check an account's balances, send XRP, and notify when the account receives incoming transactions.
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
# Get Started
|
# Get Started
|
||||||
|
|
||||||
Introductory code samples showing how to connect to the XRP Ledger and query it for data.
|
Connect to the XRP Ledger and query it for data.
|
||||||
|
|
||||||
For more context, see the Get Started tutorial for your preferred language:
|
For more context, see the Get Started tutorial for your preferred language:
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# Issue a Fungible Token
|
# Issue a Fungible Token
|
||||||
|
|
||||||
Configure issuer settings and issue fungible tokens to a hot wallet.
|
Configure issuer settings and issue fungible tokens to another account.
|
||||||
|
|
||||||
For an interactive tutorial demonstrating the function of these code samples, see [Issue a Fungible Token](https://xrpl.org/issue-a-fungible-token.html).
|
For an interactive tutorial demonstrating the function of these code samples, see [Issue a Fungible Token](https://xrpl.org/issue-a-fungible-token.html).
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# Cryptographic Key Derivation
|
# Cryptographic Key Derivation
|
||||||
|
|
||||||
Derive secp256k1 or Ed25519 key pairs from seeds in any of the XRP Ledger's encodings and formats.
|
Derive secp256k1 or Ed25519 key pairs from seeds in any of the XRP Ledger's encodings and formats. (This implementation is equivalent to the ones included in most client libraries.)
|
||||||
|
|
||||||
For background and diagrams, see [Key Derivation](https://xrpl.org/cryptographic-keys.html#key-derivation).
|
For background and diagrams, see [Key Derivation](https://xrpl.org/cryptographic-keys.html#key-derivation).
|
||||||
|
|||||||
3
content/_code-samples/nftoken-tester/README.md
Normal file
3
content/_code-samples/nftoken-tester/README.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# NFToken Test Harness
|
||||||
|
|
||||||
|
Build an interface that can mint and trade non-fungible tokens (NFTs) on the NFT-Devnet.
|
||||||
@@ -1,5 +1,7 @@
|
|||||||
# Quickstart Samples Archive
|
# Quickstart Samples Archive
|
||||||
|
|
||||||
|
Build a simple test interface for the XRPL.
|
||||||
|
|
||||||
This folder contains the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/content/_code-samples/quickstart/quickstart.zip) archive, which includes 4 iterative HTML pages as a test harness for XRPL features, with accompanying JavaScript files. The archive includes the following files:
|
This folder contains the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/content/_code-samples/quickstart/quickstart.zip) archive, which includes 4 iterative HTML pages as a test harness for XRPL features, with accompanying JavaScript files. The archive includes the following files:
|
||||||
|
|
||||||
1.get-accounts-send--xrp.html
|
1.get-accounts-send--xrp.html
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# Submit and Verify
|
# Submit and Verify
|
||||||
|
|
||||||
Example code to submit a signed transaction blob and wait until it has a final result.
|
Submit a signed transaction blob and wait until it has a final result.
|
||||||
|
|
||||||
- [submit-and-verify.js](js/submit-and-verify.js): ripple-lib 1.x version.
|
- [submit-and-verify.js](js/submit-and-verify.js): ripple-lib 1.x version.
|
||||||
- [submit-and-verify2.js](js/submit-and-verify2.js): xrpl.js 2.x version. Unlike the submitAndWait() method built into xrpl.js, this checks the server's available history and returns a different code when the transaction's status is unknowable with the server's available history versus if the transaction was _definitely_ not confirmed by consensus.
|
- [submit-and-verify2.js](js/submit-and-verify2.js): xrpl.js 2.x version. Unlike the submitAndWait() method built into xrpl.js, this checks the server's available history and returns a different code when the transaction's status is unknowable with the server's available history versus if the transaction was _definitely_ not confirmed by consensus.
|
||||||
|
|||||||
Reference in New Issue
Block a user