SShortSingh.
Back to feed

Lido Finance Holds $27B in TVL But Faces Growing Liquidity and Governance Risks

0
·4 views

Lido Finance, the leading liquid-staking protocol on Ethereum, manages approximately $26.99 billion in total value locked (TVL) across its mainnet and Layer 2 deployments including Optimism, Arbitrum, and zkSync as of September 2026. A DeFi security research team has published a risk assessment highlighting that TVL has grown 125% since January 2023, largely driven by institutional adoption and L2 expansion. The report flags several key vulnerabilities, including governance concentration where the top 10 LDO token holders control roughly 38% of voting power, and withdrawal queue delays that can stretch beyond 30 days during periods of high stress. Additional concerns include Lido's dependence on Chainlink price oracles for fee calculations and its exposure to bridge congestion that could cause stETH to trade at a discount to ETH on secondary markets. Analysts note that while the protocol has operated reliably for over two years, the scale of assets under management amplifies the potential impact of any systemic liquidity event.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

How to Properly Test Afriex Payment Integrations Using Sandbox and Idempotency Checks

Payment integration bugs rarely surface during manual testing, with 63% of async API failures linked to race conditions that synchronous tools cannot detect. Afriex's sandbox environment, accessible via business.afriex.com, allows developers to test integrations immediately using a staging API key without any approval process. A key focus of robust testing is idempotency verification, which ensures that duplicate requests produce only one transaction rather than relying solely on HTTP response codes. Developers are advised to confirm that repeated calls with the same idempotency key return the same transaction ID and that only one record exists in the system. Webhook simulation is also recommended to test out-of-order event delivery without waiting for real transactions to change state.

0
ProgrammingDEV Community ·

Developer shares 5 fixes for running a WhatsApp AI bot reliably on Windows 24/7

A developer documented five key challenges encountered while self-hosting a WhatsApp AI chatbot continuously on a Windows PC using Node.js and the local LLM tool Ollama. The bot would stop running whenever the terminal was closed, a problem solved by using the process manager PM2 to keep it alive persistently. Repeated QR code authentication was avoided by enabling local session storage through whatsapp-web.js, while sluggish response times were addressed by switching to a smaller, faster language model. Robust error handling was also added to prevent a single failed request from crashing the unattended bot. The setup requires no VPS, paid AI API, or cloud hosting fees, relying entirely on existing hardware to handle inference locally.

0
ProgrammingDEV Community ·

AI Agent Navigates Contradictory Pharma Documents to Make Cold-Chain Shipment Calls

A developer working in pharmaceutical cold chain has built an AI disposition agent for a fictional drug company, Ilmenau Therapeutics GmbH, as part of the Sanity Challenge. The agent evaluates temperature-excursion events on biological shipments — such as a 2–8 °C product spending 30 hours at 13 °C — and recommends whether to release, quarantine, or reject the shipment. The core problem it solves is document conflict: real quality binders often contain superseded stability limits, mismatched temperature ceilings, and contradictory carrier terms sitting alongside current effective procedures. Rather than relying on keyword search, the agent uses a content graph that links each product to its current stability profile, each shipping configuration to its qualification report, and each route to its risk assessment, resolving conflicts via a hierarchy rule that favors evidence over derived data and stricter regulation over internal policy. The tool was tested against 17 controlled documents and four held shipments, with results showing that disposition outcomes can flip entirely depending on whether the agent reads the superseded appendix or the governing effective summary.

0
ProgrammingDEV Community ·

Inside Archon: How a Workflow Engine Handles the Hard Parts Beyond Graph Sorting

A deep-dive into the Archon workflow engine reveals that topological sorting — the core graph algorithm — accounts for only a small fraction of the codebase, with most complexity lying in error handling, lock management, and process recovery. Every execution passes through four phases: discovery, routing, setup, and node execution, with the engine applying the same code path regardless of how a workflow is triggered. Malformed YAML files are isolated and logged as load errors rather than halting the entire discovery pass, ensuring one broken workflow cannot block others. When no explicit workflow name is provided, a model-based router selects the correct workflow from a structured prompt, with tool use deliberately disabled so it can only return text. Setup alone performs seven tasks before any node runs, including config resolution, run-row creation, path locking, and git-native worktree branching.