Skip to content

Commit d219270

Browse files
authored
Merge branch 'master' into deprecate-sharding
2 parents d3b86a0 + 2969d81 commit d219270

File tree

9 files changed

+31
-7
lines changed

9 files changed

+31
-7
lines changed

_code-samples/partial-payment/py/partial-payment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
# References
1010
# - https://xrpl.org/partial-payments.html#partial-payments
11-
# - https://xrpl.org/payment.html#payment-flags
11+
# - https://xrpl.org/docs/references/protocol/transactions/types/payment#payment-flags
1212
# - https://xrpl.org/trustset.html#trustset
1313
# - https://xrpl.org/account_lines.html#account_lines
1414

blog/2019/discover-xrp-ledger-explorer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The new explorer serves as a tool to help people look up: historical transaction
2525

2626
Check out the new Explorer today:
2727

28-
- [Production XRP Ledger Explorer](http://livenet.xrpl.org/)
28+
- [Production XRP Ledger Explorer](https://livenet.xrpl.org/)
2929
- [Test Net XRP Ledger Explorer](https://testnet.xrpl.org/)
3030

3131
Other similar tools that allow people to look up XRP Ledger historical information include:

blog/2021/introducing-xrpl-js.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ xrpl.js will continue to support all ripple-lib features, such as:
2626

2727
- Serializing, signing, and submitting transactions to the XRPL
2828
- Retrieving information from the XRPL
29-
- Helpful utility functions (such as converting between [drops](https://xrpl.org/xrp.html#xrp-properties) and XRP)
29+
- Helpful utility functions (such as converting between [drops](https://xrpl.org/docs/introduction/what-is-xrp) and XRP)
3030
- Support for Node.js, web browsers, and React
3131

3232
It also introduces a number of new features, including:

community/events.page.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1052,6 +1052,17 @@ const events = [
10521052
image: require('../static/img/events/commons-building.png'),
10531053
end_date: "January 28, 2025",
10541054
},
1055+
{
1056+
name: "XRPL Commons Soirée",
1057+
description:
1058+
"XRPL Commons Soiree hosted by XRPL Commons, Deloitte and Pyratz Labs, focusing on: Exploring the Agentic Web: Blockchain, AI & Digital Identity",
1059+
type: "meetup",
1060+
link: "https://xrpl.at/XRPL-Commons-soiree-20250212",
1061+
location: "Paris, France",
1062+
date: "February 12, 2025",
1063+
image: require("../static/img/events/commons-soiree.png"),
1064+
end_date: "February 12, 2025",
1065+
},
10551066
];
10561067

10571068

docs/concepts/tokens/decentralized-exchange/automated-market-makers.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,17 @@ The diagram below illustrates how an offer interacts with other offers and AMM l
6969
<iframe width="560" height="315" src="https://www.youtube.com/embed/tJ1mQxYpt-A" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
7070
</div>
7171

72+
<script type="application/ld+json">
73+
{
74+
"@context": "https://schema.org",
75+
"@type": "VideoObject",
76+
"name": "AMM CLOB Demo",
77+
"description": "AMM CLOB Demo on XRPL",
78+
"thumbnailUrl": "https://i.ytimg.com/vi/tJ1mQxYpt-A/hqdefault.jpg",
79+
"uploadDate": "2024-12-13",
80+
"embedUrl": "https://youtu.be/tJ1mQxYpt-A?feature=shared"
81+
}
82+
</script>
7283

7384
### Restrictions on Assets
7485

docs/img/decentralized-exchange-example-trade.svg

Lines changed: 4 additions & 2 deletions
Loading

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ The response follows the [standard format][], with a successful result containin
105105
| `ledger.close_time_resolution` | Number | Ledger close times are rounded to within this many seconds. |
106106
| `ledger.closed` | Boolean | Whether or not this ledger has been closed. |
107107
| `ledger.ledger_hash` | String | Unique identifying hash of the entire ledger. |
108-
| `ledger.ledger_index` | [API v1][]: String <br> [API v2][]: Number | The [Ledger Index][] of this ledger, as a quoted integer. |
108+
| `ledger.ledger_index` | [API v1][]: String <br> [API v2][]: Number | The [Ledger Index][] of this ledger. |
109109
| `ledger.parent_close_time` | Number | The time at which the previous ledger was closed. |
110110
| `ledger.parent_hash` | String | The unique identifying hash of the ledger that came immediately before this one, as hexadecimal. |
111111
| `ledger.total_coins` | String | Total number of XRP drops in the network, as a quoted integer. (This decreases as transaction costs destroy XRP.) |

index.page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export default function Index() {
112112
<div className="overflow-hidden">
113113
<section className="container-new pb-26-until-sm mt-10 mb-10-sm text-center">
114114
<div className="w-100">
115-
<img id="home-hero-graphic" alt="(stylized X graphic surrounded by a diverse mix of people)" width="856" height="469" loading="lazy" />
115+
<img id="home-hero-graphic" alt="(stylized X graphic surrounded by a diverse mix of people)" width="856" height="469" loading='eager' />
116116
</div>
117117
<div className="col-lg-6 mx-auto text-center pl-0 pr-0">
118118
<div className="d-flex flex-column-reverse">

static/img/events/commons-soiree.png

26.7 KB
Loading

0 commit comments

Comments
 (0)