From c9ce0d065ec8a6188ef86b0ed7d3b6ad133e8352 Mon Sep 17 00:00:00 2001 From: surbhi Date: Sun, 26 Oct 2025 16:55:34 -0400 Subject: [PATCH] adding about section --- src/app/about/page.tsx | 204 ++++++++++++++++++++++++++++++++++++++ src/components/header.tsx | 27 ++++- 2 files changed, 226 insertions(+), 5 deletions(-) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..36ea365 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,204 @@ +'use client'; + +import { useTranslation } from 'react-i18next'; +import { Card } from '@/components/ui/card'; + +export default function AboutPage() { + const { t } = useTranslation(); + + return ( +
+ {/* Header */} +
+

+ About Liquidity Party +

+

+ A game-theoretic multi-asset AMM revolutionizing decentralized exchange +

+
+ + {/* Introduction */} + +

Introduction

+

+ Liquidity Party is a new game-theoretic multi-asset AMM based on the groundbreaking paper: +

+
+ + Logarithmic Market Scoring Rules for Modular Combinatorial Information Aggregation (R. Hanson, 2002) + +
+

+ A Logarithmic Market Scoring Rule (LMSR) is a pricing formula for AMMs that know only their current asset + inventories and no other information, naturally supporting multi-asset pools. +

+
+ + {/* Key Advantages */} + +

Advantages Over Constant Product Markets

+
+
+

Less Slippage

+

+ Reduced slippage for small and medium trade sizes compared to CP markets +

+
+
+

N-Asset Pools

+

+ Trade long-tail pairs in a single hop with multi-asset support +

+
+
+

Lower Fees

+

+ Smaller spread means more cost-effective trading +

+
+
+

Deeper Liquidity

+

+ Enhanced liquidity depth for better trading execution +

+
+
+

+ According to game theory, CP's slope at the current marginal price is too steep, overcharging takers + with too much slippage at small and medium trade sizes. LMSR pools offer less slippage and cheaper + liquidity for the small and medium trade sizes common for arbitrageurs and aggregators. +

+
+ + {/* Multi-Asset */} + +
+

Multi-Asset Capabilities

+

+ Naturally multi-asset, Liquidity Party altcoin pools provide direct, one-hop swaps on otherwise + illiquid multi-hop pairs. Pools will quote any pair combination available in the pool: +

+
+ + {/* Performance Table */} +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AssetsPairsSwap GasMint Gas
21131,000143,000
2*1118,000143,000
1045142,000412,000
20190157,000749,000
501,225199,0001,760,000
1004,950269,0002,684,000
+

* Stablecoin pair pool optimization

+
+ +

+ Liquidity Party aggregates scarce, low market cap assets into a single pool, providing one-hop liquidity + for exotic pairs without fragmenting LP assets. CP pools would need 190x the LP assets to provide the same + pairwise liquidity as a single 20-asset Liquidity Party pool, due to asset fragmentation. +

+
+ + {/* Lower Fees & Minimized IL */} + +
+

Lower Fees

+

+ Since market makers offer the option to take either side of the market, they must receive a subsidy + or charge a fee (spread) to compensate for adverse selection (impermanent loss). By protecting LPs + against common value-extraction scenarios, LMSR pools have a reduced risk premium resulting in lower + fees for takers. +

+
+ +
+

Minimized Impermanent Loss

+

No Intra-Pool Arbitrage

+

+ LMSR minimizes impermanent loss for liquidity providers. Traditional CP pools expose LPs to value + extraction, leading to higher fee demands than theoretically necessary. By minimizing impermanent + loss for LPs, LMSR pools reduce the risk premium, providing lower fees and higher liquidity for takers. +

+
+
+ + {/* Open Source Development */} + +

Open Source Development

+

+ Liquidity Party is built in the open — transparently, collaboratively, and for the benefit of the broader DeFi ecosystem. + Our full codebase is available under open-source licenses found here:{' '} + + https://git.dxod.org/explore/repos + . +

+

+ We believe that decentralized finance should be verifiable and permissionless from the ground up. + By open-sourcing our smart contracts, math models, and protocol components, we empower developers, researchers, and liquidity providers to audit, extend, and innovate on top of Liquidity Party. +

+

+ Contributions, audits, and discussions are welcome — join the party and help shape the future of multi-asset liquidity. +

+
+ + {/* Footer */} +
+

+ Ready to experience the future of decentralized trading? +

+
+
+ ); +} \ No newline at end of file diff --git a/src/components/header.tsx b/src/components/header.tsx index 290995b..94d904a 100644 --- a/src/components/header.tsx +++ b/src/components/header.tsx @@ -6,6 +6,7 @@ import { Button } from '@/components/ui/button'; import { LanguageSelector } from '@/components/language-selector'; import { Moon, Sun } from 'lucide-react'; import { useEffect, useState } from 'react'; +import Link from 'next/link'; export function Header() { const { theme, setTheme } = useTheme(); @@ -29,14 +30,30 @@ export function Header() {
- Liquidity Party + + Liquidity Party +
+ {/* Navigation Links */} + + {/* Language Selector */}