Skip to content

Commit 7a559a8

Browse files
committed
Merge remote-tracking branch 'origin' into events-updates-02-05-24
2 parents cc5a0b9 + 1131707 commit 7a559a8

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

@theme/plugins/code-samples.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function codeSamples() {
2828
samples.push({
2929
path: dirPath,
3030
title: title || toTitleCase(dirname(dirPath)),
31-
description: getInnerText([data.ast.children[1]]).replace(title, '').trim(),
31+
description: getInnerText([data.ast.children[1]]).trim(),
3232
href: joinPath('content', dirPath),
3333
langs,
3434
});
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Build a Browser Wallet
22

3-
Implement a non-custodial wallet application that runs on in a web browser and can check an account's balances, send XRP, and notify when the account receives incoming transactions.
3+
Implement a non-custodial wallet application that runs in a web browser and can check an account's balances, send XRP, and notify when the account receives incoming transactions.

_code-samples/did/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Create, Update, and Delete Decentralized Identifiers (DIDs)
22

3-
Create, Update, and Delete Decentralized Identifiers (DIDs). A Decentralized Identifier (DID) is a new type of identifier defined by the World Wide Web Consortium (W3C) that enables verifiable, digital identities.
3+
Create, update, and delete decentralized identifiers (DIDs). A Decentralized Identifier (DID) is a new type of identifier defined by the World Wide Web Consortium (W3C) that enables verifiable, digital identities.

_code-samples/price_oracles/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Create, Update, and Delete Price Oracles
22

3-
Create, Update, and Delete Price Oracles. A price oracle is a mechanism that feeds external data, such as asset prices, and exchange rates, onto the XRPLedger.
3+
Create, update, and delete Price Oracles. A price oracle is a mechanism that feeds external data, such as asset prices, and exchange rates, onto the XRPLedger.

docs/references/http-websocket-apis/public-api-methods/account-methods/account_lines.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,7 @@ The response follows the [standard format][], with a successful result containin
419419
| `ledger_index` | Integer - [Ledger Index][] | _(Omitted if `ledger_current_index` provided instead)_ The ledger index of the ledger version that was used when retrieving this data. |
420420
| `ledger_hash` | String - [Hash][] | _(May be omitted)_ The identifying hash the ledger version that was used when retrieving this data. |
421421
| `marker` | [Marker][] | Server-defined value indicating the response is paginated. Pass this to the next call to resume where this call left off. Omitted when there are no additional pages after this one. |
422+
|`limit` | Unsigned Integer | The maximum number of trust lines retrieved. The server may return fewer than the specified limit, even if more results are available. If no limit was specified in the request, this defaults to 200. |
422423

423424
Each trust line object has some combination of the following fields:
424425

@@ -427,8 +428,8 @@ Each trust line object has some combination of the following fields:
427428
| `account` | String | The unique [Address][] of the counterparty to this trust line. |
428429
| `balance` | String | Representation of the numeric balance currently held against this line. A positive balance means that the perspective account holds value; a negative balance means that the perspective account owes value. |
429430
| `currency` | String | A [Currency Code][] identifying what currency this trust line can hold. |
430-
| `limit` | String | The maximum amount of the given currency that this account is willing to owe the peer account |
431-
| `limit_peer` | String | The maximum amount of currency that the counterparty account is willing to owe the perspective account |
431+
| `limit` | String | The maximum amount of the given currency that this account is willing to owe the peer account. |
432+
| `limit_peer` | String | The maximum amount of currency that the counterparty account is willing to owe the perspective account. |
432433
| `quality_in` | Unsigned Integer | Rate at which the account values incoming balances on this trust line, as a ratio of this value per 1 billion units. (For example, a value of 500 million represents a 0.5:1 ratio.) As a special case, 0 is treated as a 1:1 ratio. |
433434
| `quality_out` | Unsigned Integer | Rate at which the account values outgoing balances on this trust line, as a ratio of this value per 1 billion units. (For example, a value of 500 million represents a 0.5:1 ratio.) As a special case, 0 is treated as a 1:1 ratio. |
434435
| `no_ripple` | Boolean | _(May be omitted)_ If `true`, this account has enabled the [No Ripple flag](../../../../concepts/tokens/fungible-tokens/rippling.md) for this trust line. If present and `false`, this account has disabled the No Ripple flag, but, because the account also has the Default Ripple flag disabled, that is not considered [the default state](../../../protocol/ledger-data/ledger-entry-types/ripplestate.md#contributing-to-the-owner-reserve). If omitted, the account has the No Ripple flag disabled for this trust line and Default Ripple enabled. {% badge href="https://github.com/XRPLF/rippled/releases/tag/1.7.0" %}Updated in: rippled 1.7.0{% /badge %} |

resources/code-samples.page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export default function CodeSamples() {
2929
const { codeSamples, langs } = usePageSharedData<any>('code-samples');
3030

3131
return (
32-
<div className="landing page-community">
32+
<main className="landing page-code-samples">
3333
<div className="">
3434
<section className="py-26">
3535
<div className="col-lg-8 mx-auto text-lg-center">
@@ -126,6 +126,6 @@ export default function CodeSamples() {
126126
</div>
127127
</section>
128128
</div>
129-
</div>
129+
</main>
130130
);
131131
}

0 commit comments

Comments
 (0)