'use client'; import { useTranslation } from 'react-i18next'; import { Card } from '@/components/ui/card'; import {useTheme} from "next-themes"; import {useState} from "react"; export default function AboutPage() { const { t } = useTranslation(); const { theme, setTheme } = useTheme(); const logoSrc = theme === 'dark' ? '/logo-dark.svg' : '/logo-light.svg'; return (
{/* Header */}
Liquidity Party Logo

Multi-asset AMM based on Party Game Theory

{/* 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) .

Our formulation and implementation is described in the{' '} Liquidity Party whitepaper.

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

Multi-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, the initial price slope of a Constant Product AMM 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 used by real traders.

Slippage Comparison Chart
{/* 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 */}
Assets Pairs Swap Gas Mint Gas
2 1 131,000 143,000
2* 1 118,000 143,000
10 45 142,000 412,000
20 190 157,000 749,000
50 1,225 199,000 1,760,000
100 4,950 269,000 2,684,000

* Stablecoin pair optimization

Liquidity Party aggregates scarce, low market cap assets into a single pool, providing one-hop liquidity for exotic pairs without fragmenting LP assets. Constant Product 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

Adverse Selection Protection

All AMM's suffer from Impermanent Loss (IL), also known as adverse selection or toxic order flow. Liquidity Party uses game theory to minimize IL for LPs, by charging lower fees to small legitimate traders, and higher fees to large adversarial traders during market dislocation. This means a higher effective rate for LP's and cheaper swaps for legitimate small traders.

Liquidity Party swaps guarantee a bounded maximum loss of κ*S*ln(N) where κ is the pool's liquidity parameter, S is the total size of the pool, and N is the number of assets in the pool.

No Intra-Pool Arbitrage

Other multi-asset systems can provide inconsistent price quotes, allowing arbitragers to extract value from LP's by trading assets inside the same pool against each other. With Liquidity Party, no intra-pool arbitrage is possible, because the mathematics guarantee fully consistent price quotes on all pairs in the pool.

{/* Open Source Development */}

Transparent Open Source

The Liquidity Party contract source code fully transparent to the public and verified by Etherscan.

View our contracts on{' '} GitHub

Verify our contracts on{' '} Etherscan (Sepolia)

{/* Footer */}

Liquidity Party is offered by Dexorder Trading Services, Ltd. (British Virgin Islands)

); }