Label Browsing: better views, tag cloud, more tags

This commit is contained in:
mDuo13
2021-06-03 18:50:30 -07:00
parent d48c3d57a1
commit 366ff1d2d0
65 changed files with 413 additions and 26 deletions

View File

@@ -2,6 +2,8 @@
html: currency-formats.html
parent: protocol-reference.html
blurb: Precision and range for currency numbers, plus formats of custom currency codes.
label:
- Tokens
---
# Currency Formats

View File

@@ -2,6 +2,9 @@
html: accountroot.html
parent: ledger-object-types.html
blurb: The settings, XRP balance, and other metadata for one account.
labels:
- Payments
- XRP
---
# AccountRoot
[[Source]](https://github.com/ripple/rippled/blob/5d2d88209f1732a0f8d592012094e345cbe3e675/src/ripple/protocol/impl/LedgerFormats.cpp#L27 "Source")

View File

@@ -2,6 +2,8 @@
html: check.html
parent: ledger-object-types.html
blurb: A check that can be redeemed for money by its destination.
labels:
- Checks
---
# Check
[[Source]](https://github.com/ripple/rippled/blob/master/src/ripple/protocol/impl/LedgerFormats.cpp#L157-L170 "Source")

View File

@@ -2,6 +2,8 @@
html: depositpreauth-object.html #depositpreauth.html is taken by the tx type
parent: ledger-object-types.html
blurb: A record of preauthorization for sending payments to an account that requires authorization.
labels:
- Security
---
# DepositPreauth
[[Source]](https://github.com/ripple/rippled/blob/master/src/ripple/protocol/impl/LedgerFormats.cpp#L172-L178 "Source")

View File

@@ -2,6 +2,8 @@
html: directorynode.html
parent: ledger-object-types.html
blurb: Contains links to other objects.
labels:
- Decentralized Exchange
---
# DirectoryNode
[[Source]](https://github.com/ripple/rippled/blob/5d2d88209f1732a0f8d592012094e345cbe3e675/src/ripple/protocol/impl/LedgerFormats.cpp#L44 "Source")
@@ -10,8 +12,8 @@ The `DirectoryNode` object type provides a list of links to other objects in the
There are two kinds of Directories:
* **Owner directories** list other objects owned by an account, such as `RippleState` or `Offer` objects.
* **Offer directories** list the offers available in the distributed exchange. A single Offer directory contains all the offers that have the same exchange rate for the same issued currency.
* **Owner directories** list other objects owned by an account, such as [`RippleState` (trust line)](ripplestate.html) or [`Offer`](offer.html) objects.
* **Offer directories** list the offers available in the [decentralized exchange](decentralized-exchange.html). A single Offer directory contains all the offers that have the same exchange rate for the same issued currency.
## Example {{currentpage.name}} JSON

View File

@@ -2,6 +2,8 @@
html: feesettings.html
parent: ledger-object-types.html
blurb: Singleton object with consensus-approved base transaction cost and reserve requirements.
labels:
- Fees
---
# FeeSettings
[[Source]](https://github.com/ripple/rippled/blob/master/src/ripple/protocol/impl/LedgerFormats.cpp#L115-L120 "Source")

View File

@@ -2,6 +2,8 @@
html: offer.html
parent: ledger-object-types.html
blurb: An order to make a currency trade.
labels:
- Decentralized Exchange
---
# Offer
[[Source]](https://github.com/ripple/rippled/blob/5d2d88209f1732a0f8d592012094e345cbe3e675/src/ripple/protocol/impl/LedgerFormats.cpp#L57 "Source")

View File

@@ -2,6 +2,8 @@
html: paychannel.html
parent: ledger-object-types.html
blurb: A channel for asynchronous XRP payments.
labels:
- Payment Channels
---
# PayChannel
[[Source]](https://github.com/ripple/rippled/blob/c0a0b79d2d483b318ce1d82e526bd53df83a4a2c/src/ripple/protocol/impl/LedgerFormats.cpp#L180-L198 "Source")

View File

@@ -2,6 +2,8 @@
html: ripplestate.html
parent: ledger-object-types.html
blurb: Links two accounts, tracking the balance of one currency between them. The concept of a trust line is an abstraction of this object type.
labels:
- Tokens
---
# RippleState
[[Source]](https://github.com/ripple/rippled/blob/5d2d88209f1732a0f8d592012094e345cbe3e675/src/ripple/protocol/impl/LedgerFormats.cpp#L70 "Source")

View File

@@ -2,6 +2,8 @@
html: signerlist.html
parent: ledger-object-types.html
blurb: A list of addresses for multi-signing transactions.
labels:
- Security
---
# SignerList
[[Source]](https://github.com/ripple/rippled/blob/6d2e3da30696bd10e3bb11a5ff6d45d2c4dae90f/src/ripple/protocol/impl/LedgerFormats.cpp#L127 "Source")

View File

@@ -2,6 +2,8 @@
html: setfee.html
parent: pseudo-transaction-types.html
blurb: Change global reserve and transaction cost settings.
labels:
- Fees
---
# SetFee

View File

@@ -2,6 +2,8 @@
html: checkcancel.html
parent: transaction-types.html
blurb: Cancel a check.
labels:
- Checks
---
# CheckCancel
[[Source]](https://github.com/ripple/rippled/blob/master/src/ripple/app/tx/impl/CancelCheck.cpp "Source")

View File

@@ -2,6 +2,8 @@
html: checkcash.html
parent: transaction-types.html
blurb: Redeem a check.
labels:
- Checks
---
# CheckCash
[[Source]](https://github.com/ripple/rippled/blob/master/src/ripple/app/tx/impl/CashCheck.cpp "Source")

View File

@@ -2,6 +2,8 @@
html: checkcreate.html
parent: transaction-types.html
blurb: Create a check.
labels:
- Checks
---
# CheckCreate
[[Source]](https://github.com/ripple/rippled/blob/master/src/ripple/app/tx/impl/CreateCheck.cpp "Source")

View File

@@ -2,6 +2,8 @@
html: depositpreauth.html
parent: transaction-types.html
blurb: Preauthorizes an account to send payments to this one.
labels:
- Security
---
# DepositPreauth
[[Source]](https://github.com/ripple/rippled/blob/master/src/ripple/app/tx/impl/DepositPreauth.cpp "Source")

View File

@@ -2,6 +2,8 @@
html: offercancel.html
parent: transaction-types.html
blurb: Withdraw a currency-exchange order.
labels:
- Decentralized Exchange
---
# OfferCancel

View File

@@ -2,6 +2,8 @@
html: offercreate.html
parent: transaction-types.html
blurb: Submit an order to exchange currency.
labels:
- Decentralized Exchange
---
# OfferCreate

View File

@@ -2,6 +2,11 @@
html: payment.html
parent: transaction-types.html
blurb: Send funds from one account to another.
labels:
- Payments
- XRP
- Cross-Currency
- Tokens
---
# Payment
[[Source]](https://github.com/ripple/rippled/blob/5425a90f160711e46b2c1f1c93d68e5941e4bfb6/src/ripple/app/transactors/Payment.cpp "Source")

View File

@@ -2,6 +2,8 @@
html: paymentchannelclaim.html
parent: transaction-types.html
blurb: Claim money from a payment channel.
labels:
- Payment Channels
---
# PaymentChannelClaim
[[Source]](https://github.com/ripple/rippled/blob/master/src/ripple/app/tx/impl/PayChan.cpp "Source")

View File

@@ -2,6 +2,8 @@
html: paymentchannelcreate.html
parent: transaction-types.html
blurb: Open a new payment channel.
labels:
- Payment Channels
---
# PaymentChannelCreate
[[Source]](https://github.com/ripple/rippled/blob/master/src/ripple/app/tx/impl/PayChan.cpp "Source")

View File

@@ -2,6 +2,8 @@
html: paymentchannelfund.html
parent: transaction-types.html
blurb: Add more XRP to a payment channel.
labels:
- Payment Channels
---
# PaymentChannelFund
[[Source]](https://github.com/ripple/rippled/blob/master/src/ripple/app/tx/impl/PayChan.cpp "Source")

View File

@@ -2,6 +2,8 @@
html: setregularkey.html
parent: transaction-types.html
blurb: Add, remove, or modify an account's regular key pair.
labels:
- Security
---
# SetRegularKey

View File

@@ -2,6 +2,8 @@
html: signerlistset.html
parent: transaction-types.html
blurb: Add, remove, or modify an account's multi-signing list.
labels:
- Security
---
# SignerListSet
[[Source]](https://github.com/ripple/rippled/blob/ef511282709a6a0721b504c6b7703f9de3eecf38/src/ripple/app/tx/impl/SetSignerList.cpp "Source")

View File

@@ -2,6 +2,8 @@
html: trustset.html
parent: transaction-types.html
blurb: Add or modify a trust line.
labels:
- Tokens
---
# TrustSet