Code samples: copy edit descriptions

This commit is contained in:
mDuo13
2022-05-10 14:23:59 -07:00
parent 8eda87fe60
commit cafb714104
8 changed files with 13 additions and 5 deletions

View File

@@ -1,3 +1,3 @@
# 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.)

View 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.

View File

@@ -1,6 +1,6 @@
# 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:

View File

@@ -1,5 +1,5 @@
# 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).

View File

@@ -1,5 +1,5 @@
# 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).

View File

@@ -0,0 +1,3 @@
# NFToken Test Harness
Build an interface that can mint and trade non-fungible tokens (NFTs) on the NFT-Devnet.

View File

@@ -1,5 +1,7 @@
# 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:
1.get-accounts-send--xrp.html

View File

@@ -1,6 +1,6 @@
# 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-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.