Add AMM links to documentation and blog posts

This commit is contained in:
akcodez
2025-02-03 16:37:10 -08:00
parent fc05d7434e
commit cc88efac80
6 changed files with 6 additions and 6 deletions

View File

@@ -10,7 +10,7 @@ markdown:
---
# AMM Status Update
As previously expected, the [AMM Amendment to the XRP Ledger](./get-ready-for-amm.md) went live on 2024-03-22. However, soon after, a community member identified a discrepancy in a few AMM pools which indicated transactions were not executing as intended. A team including RippleX, Orchestra Finance, tequ, and other members of the XRP Ledger community moved quickly to identify the source of the problem, which involves how the DEX payment engine routes liquidity through AMM pools and order books in some complex payment path scenarios.
As previously expected, the [AMM Amendment to the XRP Ledger](./get-ready-for-amm.md) went live on 2024-03-22. However, soon after, a community member identified a discrepancy in a few [AMM](/docs/concepts/tokens/decentralized-exchange/automated-market-makers) pools which indicated transactions were not executing as intended. A team including RippleX, Orchestra Finance, tequ, and other members of the XRP Ledger community moved quickly to identify the source of the problem, which involves how the DEX payment engine routes liquidity through AMM pools and order books in some complex payment path scenarios.
A fix has been developed and [is being reviewed, tested, and prepared for release](https://github.com/XRPLF/rippled/pull/4968) as soon as possible. The fix requires an amendment to the XRP Ledger protocol, which must be voted in by network validators and maintain over 80% support for the normal 2-week period before activation. Until the fix is enabled on the network, it's best for users to redeem LP tokens and not deposit new funds into AMM pools.

View File

@@ -12,7 +12,7 @@ markdown:
---
# XLS-30 Overview: XRP Ledger Automated Market Maker
XLS-30 is live on Mainnet, bringing with it new avenues for liquidity and trading on the network. Designed as a native protocol, XLS-30 enables developers to integrate with the AMM and establish their own front-end trading and liquidity provision interfaces.
XLS-30 is live on Mainnet, bringing with it new avenues for liquidity and trading on the network. Designed as a native protocol, XLS-30 enables developers to integrate with the [AMM](/docs/concepts/tokens/decentralized-exchange/automated-market-makers) and establish their own front-end trading and liquidity provision interfaces.
<!-- BREAK -->

View File

@@ -11,7 +11,7 @@ labels:
# amm_info
[[Source]](https://github.com/XRPLF/rippled/blob/master/src/ripple/rpc/handlers/AMMInfo.cpp "Source")
The {% code-page-name /%} method gets information about an Automated Market Maker (AMM) instance.
The {% code-page-name /%} method gets information about an [Automated Market Maker (AMM)](/docs/concepts/tokens/decentralized-exchange/automated-market-makers) instance.
_(Added by the [AMM amendment][])_

View File

@@ -4,7 +4,7 @@ Follow the steps from the [Create an AMM](/docs/tutorials/javascript/amm/create-
This example shows how to:
1. Deposit assets to an existing AMM and receive LP tokens.
1. Deposit assets to an existing [AMM](/docs/concepts/tokens/decentralized-exchange/automated-market-makers) and receive LP tokens.
2. Vote on AMM trading fees.
3. Check the value of your LP tokens.
4. Redeem LP tokens for assets in the AMM pair.

View File

@@ -2,7 +2,7 @@
This example shows how to:
1. Check if an AMM pair exists.
1. Check if an [AMM](/docs/concepts/tokens/decentralized-exchange/automated-market-makers) pair exists.
2. Issue a token.
3. Create an AMM pair with the issued tokens and XRP.
4. Create another AMM pair with two issued tokens.

View File

@@ -4,7 +4,7 @@ Follow the steps from the [Create an AMM](/docs/tutorials/javascript/amm/create-
This example shows how to:
1. Calculate the exact cost of swapping one token for another in an AMM pool.
1. Calculate the exact cost of swapping one token for another in an [AMM](/docs/concepts/tokens/decentralized-exchange/automated-market-makers) pool.
2. Check the difference in trading fees with and without an auction slot.
3. Bid on an auction slot with LP tokens.
4. Create an offer to swap tokens with the AMM.