Label browsing: proof of concept

This commit is contained in:
mDuo13
2021-06-02 18:17:16 -07:00
parent ec5b68d876
commit d48c3d57a1
19 changed files with 137 additions and 0 deletions

View File

@@ -2,6 +2,9 @@
html: cryptographic-keys.html
parent: accounts.html
blurb: Use cryptographic keys to approve transactions so the XRP Ledger can execute them.
labels:
- Smart Contracts
- Security
---
# Cryptographic Keys

View File

@@ -2,6 +2,9 @@
html: multi-signing.html
parent: accounts.html
blurb: Use multi-signing for greater security sending transactions.
labels:
- Smart Contracts
- Security
---
# Multi-Signing

View File

@@ -2,6 +2,9 @@
html: escrow.html
parent: payment-types.html
blurb: Escrows set aside XRP and deliver it later when certain conditions are met. Escrows can depend on time limits, cryptographic conditions, or both.
labels:
- Escrow
- Smart Contracts
---
# Escrow

View File

@@ -2,6 +2,8 @@
html: escrow-object.html #escrow.html is taken by the concept page
parent: ledger-object-types.html
blurb: Contains XRP held for a conditional payment.
labels:
- Escrow
---
# Escrow
[[Source]](https://github.com/ripple/rippled/blob/c6b6d82a754fe449cc533e18659df483c10a5c98/src/ripple/protocol/impl/LedgerFormats.cpp#L90-L101 "Source")

View File

@@ -2,6 +2,8 @@
html: escrowcancel.html
parent: transaction-types.html
blurb: Reclaim escrowed XRP.
labels:
- Escrow
---
# EscrowCancel

View File

@@ -2,6 +2,8 @@
html: escrowcreate.html
parent: transaction-types.html
blurb: Create an escrowed XRP payment.
labels:
- Escrow
---
# EscrowCreate

View File

@@ -2,6 +2,8 @@
html: escrowfinish.html
parent: transaction-types.html
blurb: Deliver escrowed XRP to recipient.
labels:
- Escrow
---
# EscrowFinish

View File

@@ -2,6 +2,8 @@
html: set-up-secure-signing.html
parent: production-readiness.html
blurb: Set up an environment where you can submit transactions securely.
labels:
- Security
---
# Set Up Secure Signing

View File

@@ -2,6 +2,9 @@
html: cancel-an-expired-escrow.html
parent: use-escrows.html
blurb: Cancel an expired escrow.
labels:
- Escrow
- Smart Contracts
---
# Cancel an Expired Escrow

View File

@@ -2,6 +2,9 @@
html: look-up-escrows.html
parent: use-escrows.html
blurb: Look up pending escrows by sender or destination address.
labels:
- Escrow
- Smart Contracts
---
# Look up escrows

View File

@@ -2,6 +2,9 @@
html: send-a-conditionally-held-escrow.html
parent: use-escrows.html
blurb: Create an escrow whose release is based on a condition being fulfilled.
labels:
- Escrow
- Smart Contracts
---
# Send a Conditionally-Held Escrow

View File

@@ -2,6 +2,9 @@
html: send-a-time-held-escrow.html
parent: use-escrows.html
blurb: Create an escrow whose only condition for release is that a specific time has passed.
labels:
- Escrow
- Smart Contracts
---
# Send a Time-Held Escrow

View File

@@ -2,6 +2,9 @@
html: use-an-escrow-as-a-smart-contract.html
parent: use-escrows.html
blurb: Use a cryptographic escrow as a smart contract to ensure a recipient gets paid only if they successfully perform a service.
labels:
- Escrow
- Smart Contracts
---
# Use an Escrow as a Smart Contract

View File

@@ -2,6 +2,9 @@
html: use-payment-channels.html
parent: use-specialized-payment-types.html
blurb: Payment Channels are an advanced feature for sending "asynchronous" XRP payments that can be divided into very small increments and settled later. This tutorial walks through the entire process of using a payment channel, with examples using the JSON-RPC API of a local rippled server.
labels:
- Payment Channels
- Smart Contracts
---
# Use Payment Channels