<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel>
        <title>Keyring Network</title>
        <link>https://paragraph.com/@keyringnetwork</link>
        <description>Building Trust</description>
        <lastBuildDate>Mon, 20 Apr 2026 04:11:37 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <image>
            <title>Keyring Network</title>
            <url>https://storage.googleapis.com/papyrus_images/1ad31137fd4a926194275807dd616976.jpg</url>
            <link>https://paragraph.com/@keyringnetwork</link>
        </image>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[DeFi Curation: Estimating Liquidation Size]]></title>
            <link>https://paragraph.com/@keyringnetwork/defi-curation-estimating-liquidation-size</link>
            <guid>QLOsT3LE9lzOtGIZW9Gh</guid>
            <pubDate>Sun, 21 Sep 2025 17:44:02 GMT</pubDate>
            <description><![CDATA[We set out to estimate how big liquidations really get in DeF using data from Kaiko. This helps design better stress tests and risk parameters for lending protocols.]]></description>
            <content:encoded><![CDATA[<h1 id="h-abstract" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Abstract</h1><p>This is the third in our series on DeFi curation, following our analyses of <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://paragraph.com/@keyringnetwork/defi-curation-setting-ltvs-and-caps-for-collaterals">setting LTVs and caps for collaterals</a> and the relevance of <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://paragraph.com/@keyringnetwork/defi-curation-the-relevance-of-jit-mev">JIT MEV</a>. We develop a quantitative framework for estimating liquidation sizes and their implications for risk parameter calibration in DeFi lending. Using over 6,400 liquidation events from Aave v3, we model the ratio of liquidation size to pool depth on the log scale and find it is best captured by a three-component Gaussian Mixture Model (GMM). This approach explains anomalies introduced by liquidator behaviour, most notably round-number clustering around $1,000. We show that while typical liquidations are nearly constant in dollar terms across pool sizes, the tails deviate, requiring conservative treatment. To address this, we impose a minimum floor on expected liquidation sizes, ensuring robustness for smaller or under-sampled pools. Our estimates indicate that for pools larger than $1 billion, liquidation events will remain below <strong>6 basis points with 99% certainty</strong> and below <strong>32 basis points with 99.9% certainty</strong>. For smaller pools, we extrapolate the values from the $1 billion pool size, offering a conservative and tractable framework for stress testing and setting collateral risk parameters.</p><h1 id="h-introduction" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Introduction</h1><p>Understanding the mechanics behind asset onboarding decisions provides valuable insight into risk management. In our previous work, we outlined how to use historical data to estimate the price slippage, $$S$$, for a given liquidation volume, $$L$$. We now focus instead on the conditional distribution of liquidation size given pool depth $$f_{L|D}(\ell|d)$$. Directly estimating this density is difficult, so we instead work with the normalised liquidation ratio $$R=\frac{L}{D}$$ whose density is related by $$f_{R|D}(r|d) = d\cdot f_{L|D}(rd|d)$$.</p><p>Inverting the CDF allows us to estimate the expected slippage $$\mathbb{E}[S | L &lt; X, D]$$ where $$X = F_{L|D}^{-1}(0.99|d)$$ is the 99th percentile of liquidation volumes for a given pool depth $$D$$.</p><h1 id="h-data-overview" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Data overview</strong></h1><p>We analysed 6400 liquidation events from Kaiko's Aave v3 dataset, filtering for:</p><ul><li><p>Minimum liquidation size of $10 (removing dust)</p></li><li><p>USD-denominated debt assets (USDT, USDC, DAI, etc.)</p></li></ul><p>In this analysis we discarded Compound data because it had an FX issue between cTokens and the underlying debt asset that couldn't be easily resolved. We will likely redo the analysis in the future when that is rectified.</p><h2 id="h-sources" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Sources</strong></h2><p>Columns taken from two of  <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.kaiko.com/">Kaiko's</a> endpoints: <code>/lending.v1/events</code> for <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://docs.kaiko.com/rest-api/data-feeds/level-1-and-level-2-data/level-1-tick-level/borrows-repayments-liquidations-and-withdrawals">liquidation data</a> and <code>/lending.v1/snapshots</code> for <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://docs.kaiko.com/rest-api/data-feeds/level-1-and-level-2-data/level-2-aggregations/interest-rates-borrowed-and-deposited-amounts#endpoint">snapshotting the total pool liquidity</a> to get the following columns:</p><ul><li><p><code>blockchain</code></p></li><li><p><code>protocol</code></p></li><li><p><code>address</code> (pool address)</p></li><li><p><code>liquidation_debt_asset_symbol</code></p></li><li><p><code>transaction_hash</code></p></li><li><p><code>total_liquidity</code> (deposits)</p></li><li><p><code>liquidation_debt_amount_in_asset</code> (liquidation amount)</p></li></ul><p>We grabbed data for blocks with liquidation events only and created a multi-index on <code>blockchain</code>, <code>protocol</code>, <code>address</code>, <code>liquidation_debt_asset_symbol</code>, <code>transaction_hash</code> with the values being <code>total_liquidity</code> from snapshots and <code>liquidation_debt_amount_in_asset</code> from events.</p><h2 id="h-data-preparation" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Data preparation</h2><ul><li><p><strong>Liquidation Ratio</strong>: <code>debt_amount / total_liquidity</code></p></li><li><p><strong>Depletion Percentage</strong>: <code>(initial_liquidity - min_liquidity) / initial_liquidity</code></p></li></ul><p>Note that if you use the Kaiko dataset, please be aware that liquidations need to be normalised into USD, do not simply divide <code>liquidation_debt_amount_in_asset / total_liquidity</code> - an easy workaround is to imply the FX rate from some existing fields:</p><pre data-type="codeBlock" text="# Calculate implied price (amount is in tokens and liq is in USD)
df['implied_price'] = df['liquidation_debt_amount_in_asset'] / df['amount']

# Convert total_liquidity to USD
df['total_liquidity_usd'] = df['total_liquidity'] * df['implied_price']

# Calculate correct liquidation ratio
df['liquidation_ratio'] = df['liquidation_debt_amount_in_asset'] / df['total_liquidity_usd']"><code><span class="hljs-comment"># Calculate implied price (amount is in tokens and liq is in USD)</span>
<span class="hljs-built_in">df</span>[<span class="hljs-string">'implied_price'</span>] = <span class="hljs-built_in">df</span>[<span class="hljs-string">'liquidation_debt_amount_in_asset'</span>] / <span class="hljs-built_in">df</span>[<span class="hljs-string">'amount'</span>]

<span class="hljs-comment"># Convert total_liquidity to USD</span>
<span class="hljs-built_in">df</span>[<span class="hljs-string">'total_liquidity_usd'</span>] = <span class="hljs-built_in">df</span>[<span class="hljs-string">'total_liquidity'</span>] * <span class="hljs-built_in">df</span>[<span class="hljs-string">'implied_price'</span>]

<span class="hljs-comment"># Calculate correct liquidation ratio</span>
<span class="hljs-built_in">df</span>[<span class="hljs-string">'liquidation_ratio'</span>] = <span class="hljs-built_in">df</span>[<span class="hljs-string">'liquidation_debt_amount_in_asset'</span>] / <span class="hljs-built_in">df</span>[<span class="hljs-string">'total_liquidity_usd'</span>]</code></pre><h1 id="h-distribution-of-liquidation-as-a-ratio-of-pool-size" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Distribution of liquidation as a ratio of pool size</h1><p>It is immediately clear that the data follows a log distribution but there are also interesting anomalies - notably the left of the peak in the transformed dataset.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/50234839e39930cc217d19f57e896f37e1f830afcaed426c2c5a44a1b111aee6.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAKCAIAAABaL8vzAAAACXBIWXMAAAsTAAALEwEAmpwYAAACfUlEQVR4nIWSPWzUMBiGv5GlMMBQfgYEQvyKhZUdED8DDKxMXZDoiBjYEIgVlZERIfYORe1VUK5KVBVK20saOXbscxzncrk4l5ZLT5cWo1yghxCi0jtYn1/50fv6A611r7fdjpRSW0ptdbs9QrjjkPV1x7ZdxyFJklVXSbKZZbnWOs/7o2HcdTdc28ZDM7YsFMepipXwA8r8TkeB1ppTvz5reDRCyEfIJyQkpEVIi9KI/h4i5DtOU8okz3NKA4RKURov1s0Xr575Iq3MlEYYh8jyvn6xDWPVdX0oigJZyJxfavKYkICQEGNJSICxrERKXimMZRiqfr8vRIRQ4LpC+Gpufv7GxDVMQtcVv/w4wCSsYFImZQKf+sacQVl779F/CiFfyuRPQLOZmMbygasHp969iYPvDuJ/+YWIQYbSQ9SsmR6L/g/AWDLWCgIhZVwBGOuYxjKcArgEtU+Lgeg6iFdZh4CgBGwP+pzwzzMLjO+bIOC8naaqAiDEhUinP8zAcYDDMHb9GKfx3usjwA+t7eX12ffTTCgX+ftWVBTFsKJyF/rZ4PbDO3AI4CTAONyavNsWWeUcAbTWno3fPp/yWOS6olqYPRMeucu5DEsAYyFvJiurzuTLxzAOcATgKMAJgDG4OXkvCXNKoypK+ck7u7uuhV4/emKtbFAWUiopLbuWMuE8qs7DuiNnw/Mw11pHkTLMbxfuX4HTAGcBzgBcBLgMcB7gHDx4OmEurVg2QYhzHpUJsizzKdsZDOK4k+f5YDBoNBqc87W1RpqmWuswDIui2Mw2O3FHa10UBfGIwxyXuaIlbGR/XFyom/XaQq2BGhaxZLullOr1elmW/QQ+Qgt5li8WCQAAAABJRU5ErkJggg==" nextheight="319" nextwidth="988" class="image-node embed"><figcaption htmlattributes="[object Object]" class="">Liquidations are log-distributed.</figcaption></figure><p>Interestingly if we look at the distribution of <strong>absolute USD</strong> amounts in this region of -14 to -16 we see a strange pattern!</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/84c1ac6004f75ed3695b80dcdc3778d63dbfc2c606f29361eb65717b4c8c2194.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAIAAAAUMWhjAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFMElEQVR4nKXWaWzTVhwA8CeqSSA+UMRVgRBi49gYjEmI6wMT+zQQoEmT2KVpHzY0MWlMA1EQTBOH2AbVEB09YIw2hTQKDUmTeW7IYRzjHA0uiRzHsVO7jiOTuMFxvJApnUrJMiUpXXcw0e6vv+RD8v+n/3t6zw+UJ0U+n3e5XHa73WAwWCwWn8/ncDggCMIwzGq14jgOQZAoijzPEwTBsmwgEAgGgzAMh0IhWZbz+TyKopqmTa4JapdS6fdyuVwsjsAwrNN1GY3GmzdNDoc9EAg4HA4EQZwOZzAYxHFcluVUKiUIgizLbDVisRjLspIkqWqOCBI5NVcrWMtx4GkRjUYDAV8g4AsG+yMRMhwOI4g7HA6j6G28GgiC4Pgdn89bKBSqdUt/qzAOjI091rSCquazaj77QM0OZ7OZVCqdssDW5ovXL7dda2lqheFbMHzLbLYGgwNGo8lstvb2QmazVa83mkwWUUzl878qipbLPdS0gqYVcrmHIyO/VQBBEHDcG49LETJOxyUv5NKdPMuSfoe7z+KB9QbS0t1vaYWERGZoKJ1IDMfjUiIxPDSUrmXtnqYFihYIz128y+S0udou6TquGjKZbAUolUrF4gjDiBTFs8LwnRu2D9ZvvOt1e/DbN5zWjg6iuxPtPm+iaCES4Z6WFMXHmCR1LxzD7KgTbWntuHy5K5PJVYB8Pi+KyXhcoiie4eWgzbH7hTWQWe/rx41Oa0fnPUMnajhvisVEmhaenjzDJP3EgA01W3/ua2q62N7eOQ7IshwKkRxXAWJV4I2lKyCz3t/vfXaAogWWETBvRGfym8zO89+1XLmiHwfK5fLo6KPaEMX49ADkfnVmvfH6pX7C/+xAlBIYNuH3RMw63GZBzp5rbm/XjQM8z6Ooh+PuUxT3BJjT0/1jcCA4lSES6JgQHmD87gEffs9qs9vt2L93QECuDbPnX2o+4fHYe9zQFIBqMqzIMCLH3WcYsQIUCgVVzUYi9JM5SBOQc+Ochsb9e6CfdCbPrY4OYkrAxJyTZLwC+Hy+aDQqSSmWnejAuaV+8a7tq4827rN4nNMFBJLkKsDg4KCiKBNDxArDtQ52vrZyxar6xuYTBj3ZffX29IFyuaxpOQy7w3ESywgITlw7d2ElAJvXLZi7AHx86rOeHkp/1T19oLaPjo4+omleSipfnvrmrW2vvwhmbFo7b94i8Obn75hM0e7O/9dBoVAgiAGGESVJOfrV6SVgxioAtq5bOKse1G2a39rS397cZ2y+SdOJaQJjY2OZjELTgiSpx06cWQLqasCchQAsA2s2HNy/r623zUpNpfo/gQc0LYiJB43HT9aAzesWzGsAYBEAYOuuHUddejcZ4SMRjqb5aQ4Rx0mSpOx9/8NlM2etrnSwaH4DAIsBAM/XgfVNB84JicxgXOI4iWGEiax6FXLSm9rGV9l6FUX7cyXTNH+t68bylS81ALAUgJeXP1c3G4C5AIDloBo/6PSI2++wYyQZryZHkhxNJzguPWnfHmQYMR6Xqh1UF1oN4Hk+mUx/febbAwcPHfpo3xdvv3f6+Kd73925fscrW7Yd3L39kz1rd134/uKRI8cOHz7S2wuFQlQyKXOcyLJDNlsfx4mplJJMyqmUEomwGOZnWWFoSCoUihM//VKxWFQUZeKxpnoxb2WSHo+pmqqqKoIger2e5zlZTsuyLIqiz+eFYXhkZGTyVzAMF4vFv/yTJ+pOiselyhqprBJN+8XpcGAYhqIoy7IEQQQCgeoBAGFZ9r+PDX8AQzbsh7/yY7UAAAAASUVORK5CYII=" nextheight="475" nextwidth="630" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>Plotting for all data, it becomes apparent that this due to liquidator preference for round numbers. When looked at in absolute terms, the liquidations show several spikes at different dollar thresholds. Most notably $1k which was hugely dominant in the wstETH liquidations.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/9408c2ea1d8086036d529b577b4456b21f45ca72fd96563b3092998d827fd07c.png" blurdataurl="data:image/png;base64,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" nextheight="470" nextwidth="627" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>As a side remark, running a liquidation bot to liquidate at $990 instead of $1k might be highly profitable!</p><p>This has implications for estimation of distributions because the fits tend to be incorrectly trying to fit this spike which is more related to liquidators rather than liquidations themselves. This also means that <strong>historical data kernels would likely misrepresent the tail risk.</strong></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/d31d92ff2bba9de128d4e6f8e2560b6890b8dc079b5103d27ebee397eb918ae6.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAIAAAAUMWhjAAAACXBIWXMAAAsTAAALEwEAmpwYAAAG7klEQVR4nG1VYVAU5xn+xjZoS3BGIr3WwQuIpLFt8sNO/UE7zMQfiYnt0Ka0MTVOh057tU7MhTCJF8JW0OnZAo03lR+RiT3S1bkFs6AbvGW9BVlCFsICLtSvxFvBpbIIy3mfyC2FPbivc/vZa6bp82tn9t3v+d7nfZ53Af5/sG0bYyyKYnFxcWlp6d69e4uLi8vKyg45KCkp2b9//65du0pLS/fs2cPzfOaTLwJkTlRVVXEgSZIsy5Zl/U8phFDTNOjANM0vnmUYBs/zsiyrqprhSxOYpqnr+pEjR7KysnJycgAAu3fvVhTFNE3Lsmzb1nUdIURRFAAgNzcXAOD1ehFCuq7btm1ZFnkIBoOkICcnR5Zl00GaQJZlCKEsyzRNK4qi6/ri/fu2bRMOjLGiKBDCnu7uttbWkeFhw5hJrq/ruj44MLCyugohFEVRVVWGYT5sa1MU5Z+6vryyAiFUFCVNoCiKLMt3Z2fn5uc72tshhBjj8bGxlmDQNE3btjmOU1V1cWlJkiShqysej0fHx9kLFyCElmVpmsbz/Md9fXPz85FIRBRFy7KuhcPhjg5d1wHP86qqDg4MYIzbGabm2LE7M3fCoQt0U5NpzhNBeZ6fuHlzcmLi7ddfhxMTvV1cqOlMPBZbSiR4npckSRTF6Tt3JEGor6mZnNYvnw+2NDauLC+nCRiGkWU5Eg6frqpqqKqauzt7ifnrgCAQcSVJ+rivT4hEPjhzpvrlX0xrt27fnuoJd9gOYgsLPM+3tbb29fefra8/8vwLD+JoTB3+tE9cS67Ztq1pGrhw/nx0crKRos7V1/dcu3Y1cnXiH3A9lVpZXUUISZLU0909NDT0p2PHhHBYiERkWZ6bnycECCGO41iWlWW57tVXwxx3RRBkWY7H48QdaYJgMHjr1q2lROKKILAsG1tYIB9jjC3LEkWR53lN02bn5s6HQkT0zxewLEvTtK7r5r177509CyFcSiQyBWmJIISSJHW0t48MD2e8zHGcLMuSJGkOGIYRuroQQsSynAPZgaZpkiQRoYjlIISkgOQp7SKWZXVdJ7lAKO71esvLy3meJ4GybZtl2UzuDGOmoqLiwIEDxLtERpqmM7ceHxsrLy/3eDyqA0AqWJZtbm4OBAJ/bmw87EmjoaGB4zjTNBFCjIMmB388daqiosLj8QQCAeJI0iLP82eampqbm/1+v8fj8Xq9wWBQkiSQGZcsyxzHEdtJkoQQInLjdFvINE1RFC9dvszzvCiKiqIgB6SAhJb/D0juLMtCCKUlQgjV1dX5fD7CT1E1TU1NXq9XUZTMFqNp2u/3MwxDUZTf7/f5fIFA4PM7TpblQCDQ0NBAUdS7p9+tra01DMOyrDQBhJBhGJZlP6BplmWpd44/v++FyjcqWZZFCGGML7axP/nxixRFhUKhYDDYEgy2tbaKoqhpGulSVVUIIXlL0/Q71b9/7rl9kiRBCIFhGJIk2ba9nkpd/vBiIrG0MBurpWoPvnKQYRiEkGHMtIXYqso3j7529NSJk/FYLJlMLi8vE8tZlgUhJA4c6O/vjUQwxmMj41WVb1JUTdpFlmWpqooQSiZXD/7op329AxivkWVnmvNkoaqqSk5867e/Y1svYZyKx+6tp1K6rhOhVVXFGHdeZP9QXbeeSsVjsURiicwf6LquKMrK6upacu0rYOuzz7yIMY7HYuuplGmahgNFUYhN9zxV8vQ3f/BgMbFsJUgHpmlCCAnBCcoPABgeGk8mVxfvLz4MGk3TmqatpZJ3Z8zH84u+kZc/qtxIJlfXUymyi3gnyWSY2/IKNoKvClwPxmvEHWTTaZqGMT78q9cAAId+7iEhf0igaZrDn+rs6N6Wtw0AUPu237FHkvxSDMMgBTfGtCcKn/zyhg2/eeVo5hdmGIamadFo9F/LKz989mcu19Ytj7imolO2vfKQACE04OxqX+WJzdmbH8t77ImCbz2I319PrRMFEEKDA4MY47+da8v+Uo7r63nbv1YUvxfPzEDXp6PRz8bV6K6ib7sLtgMA3jpa7TSxnJ6BaZqf3Zz4uzqRn1eYm7slf3s+AMB/vD4TH9M0VVVNPLC++52STRuzdu4sAgBUv3GcXHApkdD16du3p14q+2V2Vrbb7c5+9FEANk5Fp/7bQbgz/GTh05s25ezYUeh2u10u17at7kb/X5jQRUIQPBfc90wZABsLCgvc7sddLteWR1zB91o6P+q0LMs053996DAAG3YW79yxo8jtdm/OzvneU99veT8kCAJIJJZGR647obhx8sRJn89HUVRPb0+v2MtfuepskTjXwQmCoCiKz0FdXd2nQ4P8FeGT/k/IJAQhMjk1KQgCRVFOyE+PXh/t+qhrdOT6vwGT35kAu9pwEwAAAABJRU5ErkJggg==" nextheight="920" nextwidth="1237" class="image-node embed"><figcaption htmlattributes="[object Object]" class="">Fits are struggling to stay within error bounds</figcaption></figure><p>The models are largely behaviour like gaussians for example, a huge degree of freedom on a t-model converges it to a normal distribution. We can look instead at a Gaussian Mixture Model to model the "hole" that is left around $500-1k as liquidators leave opportunities on the table despite health deterioration. </p><p>We start the solver with two gaussians at -18 and -16 straddling the "hole" and one where the true mean appears to reside at -13 and obtained a significantly improved fit.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/b909c387208f48efb1e7d9ebb673a1af9ec5aaa8c03765d1e80e360bdd27f8c0.png" blurdataurl="data:image/png;base64,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" nextheight="953" nextwidth="1156" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>For a given pool depth $$D=d$$, we can now calculate $$X = F_{L|D}^{-1}(0.99 | d) = d\cdot F_{R|D}^{−1}​(0.99|d)$$ where $$F_{R|D}^{-1}$$ is the inverse CDF (quantile function) of the GMM distribution. This gives us the 99th percentile liquidation volume conditional on pool depth. </p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/62226723cfbeacfce6033e9e2436bb2767c3aa050e3d6be6cdb5f4cf59cd033f.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAIAAAAUMWhjAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFHElEQVR4nI1VQWzTVhj24NYblzJ6sDQsBU259JDDoimHReuyQ9CsadkQkTDQeZ1hUwClHSnF0og0KQJlSDMgQ8ES9UZl0RkVtyrpmkUFFw2XllQFOjAdJLCmSeqkcZo2sVJP8etCVmjYp//w/vd+v+9/3//7PahYLOq67nQ6IQhqbGyEIAhBEBiGIQhqaGjYvHkzhmHAbTTg9XpJksRxvLm5ecuWLYFAgKZpHMdRFAWbuAx4PB7dAAQIfD4fBEFms7nZgMPhQBDEZDLZ7fZAIIBhmM1mc7lcMAyLoijLst/vB/MMw4iiyDAMx3EEQSAIApYYhlkj0DdANBpFUZQgCJ/PR5IkTdMURXk8HhzHGYbx+/0YhrW2tpIkeayzMxgMulwuiqJe3WeNQFEUkAVAvyB4PB4IgmAYttvtVqv17W3bLBZLU1OTyWQym81NTU0Igmza9FbLhy3vbN+OIMjWrVt37Nhxlbs6MDAoCMLAwGDfr3w4HK4QcBz3FY73XLo0OzPz5OFDYPEns+lkMptOp+fmsun0YiYDBsuFQjadrtiC8uc9ke/rhiCo3fe1m9j1wc73P9v7yZ6Du/cc3P0ptrOv7wp7uadCoCiKJEkDwrVCXvnXsrlM8kX8qZKay2WSwJKJeDLxIpdJJRPxXCb5198v3rNA75qgBmgNyHb4+nW+uJJLJuKJuae5TJLjeteKHIvFQqHQOvlUVa11iwbAuLxa3tux//LPVGR4uL+39/ChQxzHrQvWNI3n+coJGIbx+XyRSKT4XyiKUuuqBpZXlnVdP3aq63zvReNkqcnRW1qpEpCpiQfBFYJQKMTzPMdxgiBU06xDoOt6eCx8gDyg63r82aPU/NzU2FhGUcDqawjMZrMkSaqq/n+J2rraZuQZXdcX5mcL+ezE6OhyoVBeXa0KWA2uEMAwTJIkwzChUKi+RIqi6LreK/QeD5K6rufUfHz2fi6Tun1jeDGTWV5Zef0J3G43SZIURb2RQDW+bz36JUg/p+YTz5+oWWVy9NZSPr8hAUEQsiwrivJGiXRDfe8PXtBFpZKmJOOFJfWBNK6VihtKZLPZGIaJRCL1CcqrZdA814avGROrpZI2//xxIZ+VwpF6NUBR1Ov1+v3++l2kaVoqnfri212LuUUwk88XQA3ujIzUq4HVan1jF5WN9Ad/Hzx+ulJekOk6iarxtSlWCILBoGygDkHR2LEj8J0QFjYgKG0oka7r4B4GBOskUlV1MbeoadpsbNb1zee1q4ZE06BNJybv3p64MxIeoWma53mWZRUDLMuu3UXVE5RXy1WrlYg4ToD0gVzgBAvzzwr57IPxye6e899TZGdXJwRBLR+12Gw2SZJEUawQgOjXXnbFYjG3lBsaHWrrausf6a+KUyUAEj26F318f2pJTfv9JywWi9PptFqtFosFhuE1AvCosizbw/fsO7KfOEoAO3zi8J5DGNF1YHxifCG1IMtyLBYDBTPG8am74nT0bv8vV7jLPX+MhDva2xEEsdls4NG1WCyBQKBCoKqqLMtnqbP78H0nfzx5gbkADHWhLMtOR6eHbgzdvHWToqjui93RaFQyQFHUT6dP/TYcunDmbL8gnDl3jiTJUCjEMAzP8zRNkyQpCMLLN1lRFJ/PJ8tydaajvUMUxaqGLpcLx/FIJMKyrCRJKIo6HB+XShoImJqa4nm+KmMikQDuSwKwUNsnwAWlpmna4XDgOO50Ou12u8fjwTDM7XaDDF79A6r4B8Ac7Jl2uFT0AAAAAElFTkSuQmCC" nextheight="395" nextwidth="523" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>We estimated the following percentiles analytically:</p><ul><li><p><strong>99.9th: </strong><code>-5.758</code></p></li><li><p><strong>99th</strong>: <code>-7.448</code></p></li><li><p><strong>95th</strong>: <code>-9.030</code></p></li></ul><p>which gives the following estimates for $$\ln{F_{R|D}^{−1}​(y|d)}$$ so when exponentiated we have (in basis points):</p><ul><li><p>$$X/d = 31.6$$ with 99.9% confidence</p></li><li><p>$$X/d = 5.8$$  with 99% confidence</p></li><li><p>$$X/d = 1.2$$  with 95% confidence</p></li></ul><p>Practically this means for a pool size of $10m you expect liquidations of just under $6k with 99% certainty.</p><h1 id="h-liquidation-ratio-as-a-function-of-pool-size" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Liquidation ratio as a function of pool size</h1><p>We also investigated whether the size of pool made a difference in liquidation to test the hypothesis that borrowers will tend to come in for a specific minimum size so we expect that small vaults will see a higher ratio of liquidation ratios. We expect that the liquidation ratio will decrease exponentially with respect to the pool size.</p><p>This would alter the expectation framework: rather than assuming a stationary conditional density $$f_{R|D}$$​, we should incorporate the power-law scaling $$R \sim D^{\beta}$$ and would change the quantile function to become $$X(d) \approx d^{\,1+\beta}\cdot F_{\tilde R}^{-1}(p)$$</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/ebd692e28a977d33e5f8fea4eda4175693b1d5a4fe00dd35c1ba17a66107af83.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAUCAIAAABj86gYAAAACXBIWXMAAAsTAAALEwEAmpwYAAAEbklEQVR4nI2VcWgbVRzHX/EfhTIE/xgoKnYOYf7lP/qHuE1FZxGGOoZgUKeDIpMOMv8pWtaMDCOLwtZaZVSSjmratTaFW7hq2p5d1natW9o0Ztfl1l1v1+Ql3qUvJtdcm3ttnty99Ayd033+OH483r3v+77f7/ceIHeBMSaECILQ0tLi9XrdFg6Hw2nR3NxMA4fD0dTU5PP5WltbRVG0f9wGoGuJoihb2AGEECGkKApCSJZlhmFYlg2Hw8FgkGVZhmGCwWA8Hqdz5BpCocuRyATLspHIFY7jAMaY53ld19fW1rGJYQe6rmOMdYvaDdIAb0Gn2SwsLAWDQz6fLxwOmwKEEAjTqprnuFlJyubzGsYbGG9sOzFcg71i7YTa+RBCnudFUeR5vupAVfNnzvSecvn93cOTk4lUStU0cxVCKrIsa5r2H1uu0atsU5VlmTqAmrY6P7/IcbPnzzNu94UvPT8ODIxHo8l8XhPFJYTytXssG2XbVo2DStkwNisVQgj9VgUwxvF4nArMzPD0y7LT59oH21z+bzuHXn3r00GGK68btVsuG2Vd10taKafmFEXBGBcKKsxKxRJ1Y5QNoyrAMAyEUNd1TVvNZtHNm3I0moxGk4nE0swMPzYSBQDU736z/yIXDl+juVGUbNkoQ4ucmoMQEkIW+Cu9Q9/fhirGeLNSPStTwOl00iqyNDSEVjIZRZKyc7HFyekbC7wEADhw6NjYSLTN5W9z+QMXueFhTisVp69en7h8NbWckpakzcpG6NLZzz3HescmtdJqybS45cDtdlMHdnKokqZpmUwunVYPfvBZZ9eQkFyeiy3+8uvvfYFR8NjTB95reuapxh11e443Hj39SSshxH268dmXHzrR7lPy+ZKV9u0O7CO2ZDaoJ1EUudHRlVzhj4Q4GxXY0YnMsgoA2LXvud07XwcA7ASPv/TkaxAVDr8LwA7w9slzEkyXDbOHqgJer1cUxXsVtSzLsfl5jA3Lkr6cSa/kCoc+fr+PYQ7uP/IgaHj+4b276l/s9IUeqQMmbxyJ3RL08vqadUQQpkE4HBYE4V4CpKYW6dEVioVYIpZDqKcn1NU12NbsOevqTN5O79v7qKXQcNT5DTceQ0j7p0xrj2hbE+GtEVsPoXx3T7ecuiOKUvR6IsEvXgpF5mKLX391ov6JOvBAw0dO78lT/pYvuqLRpKJkzUaTZbk2yf/qwKa/v39qaooQwjAMz/MhJnRHSsvLytBA4JXD74A9+9t7mN8m50PsdCqlmgL36cCGVj3LshzHBQKBSGSckMoKWrng++6HgP+FD4//xIwPj1yLTMRzub/MHFAH/5sDGypDuxchRAfX1tZ1fbW3r7fr58FbckqSMzcWpHxeU5Q/q1fFfQrgLe6+vQmp2Ld6oVgsFgv0ljMdiBa09e2AQp8gGiOEaCEpiqLruqIo9hz6QEEI0xAqiiKKS3REEARTwH5VdF2nXW1jL6dpWjAY7OjocLlcXq/X4/HQVFMlOsdGEASzayz+BsJbWD567ogxAAAAAElFTkSuQmCC" nextheight="886" nextwidth="1390" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>The size of AAVE presents some uncertainty issues at lower sizes but overall the regression seems to hold relatively stable.</p><p>On the log–log fit we get $$log_{10} R=\,-0.952\,\log_{10} D + 3.379$$ so the liquidation ratio scales almost inversely with pool size $$R \propto D^{-0.95}$$. Equivalently, the dollar size of a <em>typical</em> liquidation is nearly flat across depth at approximately $6k. Similarly, we find a lower bound of liquidation size to be defined by the line $$\log_{10}R=2-\log_{10}D$$ which we fitted heuristically. This aligns with the approximate cost of gas on AAVE since liquidations that are unprofitable will not occur due to flash mechanics.</p><p>The estimated slope $$\beta \approx -0.95 \pm 0.04$$ implies that liquidation ratios decline nearly inversely with pool size, such that dollar liquidation volumes remain almost constant across depths. </p><h1 id="h-can-we-ignore-dependence-on-pool-size" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Can we ignore dependence on pool size?</h1><p><strong>tldr </strong>no.</p><p>The standard error in the slope is 0.04 so it's within practical reason to estimate the gradient as -1.</p><p>From a modelling perspective, treating the gradient as $$\beta \approx -1$$ has clear implications. It indicates that liquidation events are executed in fixed-dollar lots, rather than as a fixed percentage of pool depth, implying that the conditional distribution $$f_{L|D}$$ scales sub-linearly with $$D$$. Formally, if $$\log R = \beta \log D + c$$, then liquidation sizes scale as $$L \propto D^{1+\beta}$$. With $$\beta \approx -1$$, this reduces to $$L \approx \text{constant}$$, reinforcing the interpretation that liquidations are bounded primarily by transaction cost economics and bot incentives rather than pool-specific dynamics. For risk calibration, this means that extrapolating liquidation risk across depth should account for a nearly depth-independent stress size, with deviations from $$-1$$ capturing only second-order effects. In practice, this provides justification for applying fixed-dollar stress tests across pools of different sizes, while reserving depth-scaled adjustments for the tail quantiles where empirical departures from the idealised $$-1$$ slope become material.</p><p>While the regression shows that liquidation ratios scale nearly inversely with depth $$\beta \approx -0.95$$, the practical implications differ depending on pool size.</p><p>When fitting the absolute dollar liquidations we see artefacts that perhaps that ratio captures the tail behaviour more accurately... see the tail distribution seems to underperform in the extreme for absolute dollar numbers.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/6c963327318f10f33d5b9e07af915b93f4a42381d6d93a38ab1bf5a90a6a7d1a.png" blurdataurl="data:image/png;base64,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" nextheight="1180" nextwidth="1389" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><h1 id="h-confidence-levels-with-size-uncertainty" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Confidence levels with size uncertainty</h1><p>For small pools (&lt;$50M), the flat $6k-lot structure implies disproportionately large liquidation ratios, however, these pools are not systemically important: their small liquidity base makes them less relevant to slippage-driven spirals that threaten protocol stability.</p><p>Given the nature of the dataset being strongly biased to $1bn + size pools it's possibly prudent to make a conservative assertion that the approximations of liquidation size are only valid for pools of &gt;1bn. </p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/e560c05abadf73b482925a8e01ee2d4eb24c9dcdd9b0ea4fa3a3a6e97bd26744.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAATCAIAAAB+9pigAAAACXBIWXMAAAsTAAALEwEAmpwYAAACjElEQVR4nLWVQUgUURjHv6sE0iU8CVGn6ObZ6GRHO3cLoaBTKG3RZTtsXUSQwEtEhwiTtsAw01Z3J912VTJxaRx33Ollvpp8Tj0nFt6Ovn34xc4sI+lg1tb/MHzv43vvx/u/780D9CWl9KIkhEDEdDrd09MTj8djsVhvb+/AwEAikejr64vFYslkUiklhPA8L3IRUEo5jmOaJmPM8RUGoWzbtnyZpmkYBiHEsixCiGmahJBgyibnKyVrpWRxzpkvzrllWTWAruuGYQRbQUSlVBjjvmFkgZRVRBx/nc/OLvh+VIMaxhgERYwxKWWDgLFM9unIRAQg2IuUUvkKg8ihiirwPA8RHw+PnzxzHhGD89gFEEJ0XT9gvjo0oLW9cy8g3EtjFklEfDaaaW47F2T+i0X99x4BtNrrG4i4tb1dB8zPzxu+GgFUfMDF7lsALd+4i7izC5ienvY8z3GcRiza8pe7dP02QMv3zR+IWA0tUkq5rksICaf9NeDyjTsRgKCLCoVCI11UqVsUB4CXmVzQSP/2oklEPN7eCQBDI5PBz+2XLmrQIkQ0P6zCsVMAkBxN7wVQSv/0okk/GX4RMXH3PjSdAIDuRD8iVg5v0X7tKQjOs+PCFYAjANDZdQ1xR4jKLkApRQgpl8tCiHK57LpuGAshXNflnIeZNfp5uVgaeaWR1U/5uXdFs1QsWVte5WhbB9TU3HT6bNfVm8USUapKKa0BpJSUUsbY1/X1NUoLhcIapbZtf7HtjdpTUVyqvQEfDcPQdT37Jjc49CT5fHT4xVhqcurtwuJkRsvPzC6+X8pM5bXs3MRU7sHDwSVj2bZtznndogMcCJOapuVzuZmZvKZpK6aZSqU457/tgp9BGnxp3grDrgAAAABJRU5ErkJggg==" nextheight="590" nextwidth="989" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>For smaller pools, we impose a conservative floor by taking the minimum liquidation size to be that of a $1bn pool $$\frac{X}{d} \;\;\geq\;\; \left(\frac{X}{d}\right)_{\text{1bn}}$$  where $$\left(\frac{X}{d}\right)_{\text{1bn}}$$ is the loss ratio inferred from a $1 bn pool.</p><p>Thus, the floored expected liquidation is</p><p>$$\frac{X}{d} \;\;=\;\; \max\!\Biggl\{\,\widehat{\frac{X}{d}}(S),\;\left(\frac{X}{d}\right)_{\text{1bn}}\,\Biggr\}$$ </p><p>where $$S$$ is the pool size, and</p><p>$$\left(\frac{X}{d}\right)_{\text{1bn}} \;=\;\begin{cases}31.6 &amp; \text{with 99.9\% confidence}, \\[6pt]5.8 &amp; \text{with 99\% confidence}, \\[6pt]1.2 &amp; \text{with 95\% confidence}.\end{cases}$$</p><h1 id="h-conclusion" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Conclusion</h1><p>We studied 6,400+ Aave v3 liquidations and modelled liquidation size as a ratio of pool depth $$R=L/D$$. On the log scale, the body of $$\ln R$$ is close to Gaussian but exhibits structure driven by liquidator behaviour, most visibly a round‑number spike around $1k and a “hole” just below that threshold. A 3‑component Gaussian Mixture Model (GMM) on $$\ln R$$ captures this behaviour and materially reduces tail error relative to single‑family fits. </p><p>We found typical dollar liquidation sizes are nearly flat across depth (≈$6k in our sample), while tail quantiles grow sub‑linearly with $$D$$.</p><p>For risk calibration, compute $$X_p(D)$$ from the GMM and pair it with a venue‑specific slippage curve to estimate $$\mathbb{E}[S\mid L\le X_p(D),D]$$.  For small or poorly represented pools, apply a minimum‑pool size floor of $1 billion.</p><p>We estimate the max single liquidation size, with 99% certainty, on pools smaller then $1 billion to be around $580k and scaling with sizes over $1 billion as 0.058% of the pool in dollar terms.</p><h1 id="h-future-work" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Future Work</h1><p>This framework opens several directions for refinement and validation. First, expanding coverage beyond Aave v3 to include Aave v2/v1 and Compound will test the portability of the fixed-lot interpretation across protocols. For Compound in particular, resolving the FX treatment of cTokens is essential to establish a comparable baseline.</p><p>Second, the methodology should be validated<strong> </strong>out-of-sample with newer data and across different market regimes. This will help identify whether the observed GMM structure is stable or if liquidation dynamics shift as gas costs, MEV opportunities, or liquidator strategies evolve. Such stress testing will clarify whether the fixed-dollar clustering remains robust or drifts with infrastructure changes and arbitrage competition.</p><p>Third, greater granularity in borrower and pool-level features such as: concentration risk; asset volatility; or liquidity fragmentation; would allow conditioning the mixture model on explanatory variables, rather than treating all liquidations as exchangeable. This would move the framework from a descriptive fit toward a predictive tool that distinguishes systemic pools from idiosyncratic ones.</p><p>Finally, incorporating this distributional framework into a full risk calibration pipeline, combining liquidation size distributions with venue-specific slippage models, will allow systematic derivation of supply caps and LTV limits. This end-to-end integration is the natural next step toward making liquidation modelling a standard component of protocol-level risk management.</p>]]></content:encoded>
            <author>keyringnetwork@newsletter.paragraph.com (Alex McFarlane)</author>
            <category>defi</category>
            <category>web3</category>
            <category>aave</category>
            <category>euler</category>
            <category>morpho</category>
            <category>kamino</category>
            <category>gearbox</category>
            <category>curation</category>
            <category>liquidations</category>
            <category>lending</category>
            <category>keyring</category>
            <category>keyring-network</category>
            <category>borrowing</category>
            <category>levered-looping</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/823119d22cd038f9f67c51d6ab6e2ada3c84cf8f0f2beaeea24dfc8e9a4220c2.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[DeFi Curation: The relevance of JIT / MeV]]></title>
            <link>https://paragraph.com/@keyringnetwork/defi-curation-the-relevance-of-jit-mev</link>
            <guid>UDBRgBQRjVpXo535Wgc3</guid>
            <pubDate>Mon, 25 Aug 2025 14:33:37 GMT</pubDate>
            <description><![CDATA[Do Just-In-Time (JIT) liquidity or Miner Extractable Value (MEV) strategies materially affect trading in Avalanche’s largest pool (wAVAX/USDC)?]]></description>
            <content:encoded><![CDATA[<p>In our last post we introduced the framework for analysing liquidation slippage in $wAVAX and began investigating the microstructure of trading on Avalanche’s primary DEX venue LGJ (formerly Trader Joe). This time, we turned to a question that often comes up when assessing new collateral assets:</p><div data-type="callout" type="info"><link rel="preload" as="image" href="https://paragraph.com/editor/callout/information-icon.png"><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.com/editor/callout/information-icon.png" class="callout-button"><div class="callout-content"><div><p><em>Do Just-In-Time (JIT) liquidity or Miner Extractable Value (MEV) strategies materially affect trading in Avalanche’s largest pool (wAVAX/USDC) ?</em></p></div></div></div></div><h2 id="h-why-this-matters-for-curators" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Why</strong> This Matters for Curators</h2><p>For curators setting risk parameters, the presence of JIT liquidity or MEV is extremely important for modelling</p><ul><li><p>On some chains, opportunistic liquidity providers or arbitrageurs jump in to smooth price impact, changing the effective slippage profile.</p></li><li><p>If that were the case on Avalanche, we might need to factor in centralised exchange (CEX) order flow or external arbitrage support.</p></li></ul><p>If these effects are absent, the modelling is much more straightforward: what you see on-chain is what you get. However, the lack of these effects can have profound impacts on the vault capacity.</p><h2 id="h-full-dataset-analysis" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Full Dataset Analysis</h2><p>We began with a large dataset of 1.26M transactions from LFJ’s wAVAX/USDC pool. From this, we identified:</p><ul><li><p>17,124 JIT-like events (≈1.4% of txs)</p></li><li><p>153,371 MEV-like events (≈12.1% of txs)</p></li></ul><p>We then regressed signed transaction volumes against prior activity, looking for the tell-tale diagonal “structure” that appears when JIT or MEV strategies are active.</p><p><strong>Result</strong></p><ul><li><p>JIT: Spearman <code>ρ ≈ 0.02, (R^2 ≈ 0.0004)</code></p></li><li><p>MEV: Spearman <code>ρ ≈ 0.10, (R^2 ≈ 0.015)</code></p></li></ul><p>Both relationships are statistically detectable thanks to the huge sample size, but economically negligible. In other words, the scatter plots look like Gaussian noise — no exploitable structure.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0a2e96bd8dac8e18a03dfa2eb7a347a5.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAASCAIAAAC1qksFAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFM0lEQVR4nHWVbUwTdxzHL9leLlnim+3FNM64JctieOWiZmHRPbhsybJkY5rFTUd0usXoQibCEuSxskqLpS1p8RCQipUCRVqslNpS2kJL8bCt7dVyd+3Z0gfbazmEVnpI/8txjKHOb74vLvf/5f+5/8P3dxAAIBqLjxpMBpPZZLZZbXa9wag3GA0mMzLjMo1ZaJoGL4lhVl5+uWmU1WqhAACAAAA0TYdIEsMJt+cB6n+I4QTqDyAzLoIIuj3ezDy9WigwzArDrKwWClwBhuN2h5MgSA62YW7SzWIBr9I8vajVWwa0RqV6pF9rUA8b7xgnxqdmoDUd/OaY3jw5oDVyVg2OKtUj6mHjMrOiNxi7uhVWm/05AAff+AqapqcRd2u7Ugor27r6pLDy/AXhjg/2Q5v09o69x05VCqWdYvl1KawUyRTdvcNpimoRy348+mtlVT3DMOuAbDbLMEx2TQCwAJIME0SQphdoeiGXy8XjKa93dnIS0estyIw3EAhaLVM2i9PtQgOBYDyeoqgMRWUAAGVlFXv2fOx03rdYpsLhKAvIzNO9/Zoe1aCsvVul1uRyOQCAaczicnvwUDg0F+OcSGYWFhdXVlcDGK6/e9c/i2WX84lkJvqYCs3FItE4Hgo/WcrV1FwsLi72+32RSIIgSBaQSGZq+fLyKkFlrWjLO7t7VcMAAIttUtU/xBPCEviGSKYQyRQNTW2lpyqLDx6BoHchCNr36eGjJ8+XVwn44g6ugC/uUKh0PJ6w5PuSEb0uEAitryAWT505x/v5ePnhY2Vbtn2k0RrZFZht15UDlbUivriDJ4Rr+fK/alu++u7kzl2fQdDrEATt3PX5Dz/9ceJ0VS1fzhPCPCF84aK084bm7NmKrVu3V1fXdXUpvd4AC1jO50NzsblY8nE6c8/lQWZc3Bbd7Bu02e8hbtQ+NePzY2arA3H79MbxSDSGh0J4iNTcHvWis+OTzlk8aLPfc3v8Pj+m7FXXN1waGNBOOd00vfDiNWUYhjsDikpzeeG0FgXG7XnQ2NhUU8evvSg8V1ndJBCFwxGGYTbCxWltpmeFAvuwDtgcls05UKh03arhDfdpjD1DY40NVV8UQc0iiVJjVqr1G6NXe24NGx3tspYzv5eShD+dCD7NPXll0EgybLXZ2660y9pg+b8Wt1yurygtKYb2b4OOfvlafUWpuEXEDbVdaZe2ym8NaVvF/KKiIodjmskvLi1QLIBhmNR/SnJrJIggRaUBeLbZhQKTW0pGw9jjZDIRC+WyzxXk8+zejmj7Dh06pNPpn2bnn2bnWQD5KCKFFbL2Gy2yaxJ5d2Z+HgDANTvE7feguBfFPCjuQXHf7CMymVbrJ4TSTo1hIhRPuTyoF8W4AsTtjySoq7Lm93Zub6ivGzfeTqfWrilFpWVtsEQqFjQ11lWeiAR9q4WC1Wa/2TcokMDwNZVEdvWy6HLTpfrzp0sOfAjteRPaDbH+5H3o7C8HLpw73thQJZHKmiXyrp4+xGmFZc12iyEVJ5ZzSywgmUq3wj1SWCGRX/u7sS4axgEAdocT7ugSiOVXOq9L5W2CpsaG6rLy377+dh+09y2WsX8ndOTgG7yaP4UCfqschruU8s5eRe/Qcj7/YjddzucJMkqQ0blYatRkcyLIcj5vGrPo9EbHtAtxozY74kUxk8U+PeNR68anvZhp4j6CEv1as8uHmayOhxhptU970VnE7YvHE9y5/n+73sgBTS+sFXEtdr0aw3Gz2Wx3OCw2VjrdHW66jZrVQuGFX8I/xlMtIubrBOoAAAAASUVORK5CYII=" nextheight="800" nextwidth="1400" class="image-node embed"><figcaption htmlattributes="[object Object]" class="">No visible JIT or MEV structure</figcaption></figure><h2 id="h-high-value-transactions-greaterdollar10k" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">High-Value Transactions (&gt;$10k)</h2><p>To stress test further, we isolated only:</p><ul><li><p>Correct-side JIT deposits (250 txs)</p></li><li><p>Same-direction MEV swaps (9,049 txs)</p></li></ul><p>Here again the signal was weak:</p><ul><li><p>JIT: no significant correlation <code>(ρ ≈ −0.05, p = 0.43)</code></p></li><li><p>MEV: statistically significant <code>ρ ≈ 0.33</code>, but still small in economic terms <code>R^2 ≈ 0.05</code></p></li></ul><p>This seems to confirm that even in larger trades, Avalanche pools aren’t seeing consistent JIT or MEV arbitrage flows.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/3b26ef6ad97dbab5afa9ef1121fd8b5f.png" blurdataurl="data:image/png;base64,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" nextheight="800" nextwidth="900" class="image-node embed"><figcaption htmlattributes="[object Object]" class="">High-value trades also show no pattern</figcaption></figure><h2 id="h-what-this-means" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">What This Means</h2><p>There is no evidence of traders moving capital from centralised exchanges “bailing out” large trades with arbitrage support, rather it seems to suggest that trading is done on a slower-moving inventory rebalancing basis. To confirm this we would ned CEX data and calculate the autocorrelation of bin movements with respect to price but that is beyond the point of this analysis.</p><p>From a curator’s perspective, this is helpful: models of slippage and liquidation risk can be built directly from observed on-chain liquidity.</p><p>We don’t need to supplement our analysis with Binance or other CEX data when setting vault parameters.</p><p>Lack of JIT also presents a slight complexity because the absence of JIT means we should possibly separately consider other AMMs like <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blackhole.xyz/">Blackhole</a> &amp; <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://dodoex.io/en">Dodo</a> as additive liquidity sources rather than assuming they will have commingled impact.</p><p>Their liquidity is non-trivial and can move liquidation costs down, but for now LFJ's exchange mechanics still dominate at scale due to the quantisation of the bin mechanics so we will continue to primarily focus on LFJ.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/c3860faca1d2fcfb29aa1713bdfa27b1.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAOCAIAAADBvonlAAAACXBIWXMAABYlAAAWJQFJUiTwAAAEPElEQVR4nI2S609bZRzHzzmj53lazqXl0ttpOe059EJhBMGVQVlHCy0tuAVRbpPLYEiADBkolNsKZRRWGIStTEXYwJC4qHGJQ4lsghiHW5RFiS/G3+ALE1/shdHkmJaKZPOFyefFc37P93y/z++XH4KTtFShVMooPYXrKKinIEcDLnrQUZCloCYKQwI1CRgKaKJFXZSYmAaHYpaCWhKoaSiVKyRSmZiikNS09Iqmxvmyzp8c/l33yC/usX3vxFNP8Gf3lR9cow+dg984fPcLe9dOdX9+6tKX9u4Hjt5th+9R0dCu27/nDux7gvveiT3P+G7J6Pcu/7ZzYPO07+PCrvqGZpvLBUkS4SyWV6ve6A0PfvB48f2dhVtPbq/sra7srSz9uPTew4Xw1s3ZjbnQFzPBu6HAJxPjd0Oh9WszD+bCW/M3dxYWHy8u762s7K3eenJ7YWdxfvvdG5vh2Y25sY/Gqxob8wodkKQRY2ZmW2tXzWZPs3DlvDDZIsy0CeE24foFYbpJCDUKwXN/jVY/81f+NvD6rwNVvw/X/jFSF1FONAvX3hRm24Vwe0Q82yRM1QuTNX+OVj27XPb07ZaeTqe7FBAEwlvSK2vru+b9Vx8tBr6+cXVr2r8z7ftuyrcV7Pkq0H3v8sVP+9vv9LV+2N2yfKl1taf9Tt/Fz/q77g11r4903x/r2w75tqf6tyZ714d9a8OBjbHpbwPBtcHaC+fzHcWRDvSmtLPVNf3tHcuBkXCf751Xmit5TyXrLtE4XIzNocx1qvIczMkCzYk8dY5V9ZJVmZWnzC5Q5BQZbCU5xRXHjS1WfasttdXj7GuonR/qXAoOzA29VXWuzmo/HQkQERSZkAQUUjIlmcs3uzu85R1e4wlenaqWq1Q6vUHP8hoFo0tmMlTcyxpjrsZs59KLOYvzpN1T/ZqhqFxZ3GAoazxTV9rYZLMW6NU6mkgkycREQEkjW4TiABXhaBxEUBxBMDQOajMMripn/pncLG+2y+VyWe1nuYxyS1aJxVJkNnvSMx3HM20ZloI8q81Z4nUw9V66wk5mm0lRPIUgEEEBKoIRTxEeDYAQheIYYjEKIYLFYfGkIkWr5/R6A2tK541pvJbTM2yKTMMAeQJGkyiIp5LlXFoaTkpRQGCSZBRPQgHEYISYJ4DRAAD/GwgxgsAoKkZ8FII6RtJxtAwjCBXPF5eW0XI1JpGiEhIF4HkHHBwNkByxBgf5h0koAJFJ4uCf22hRhCPYMRTHUShBoRg7mMGLAaoEudls0ZlMKlYXaYqQmI1MisGcoFRjYjEqgipdEp9mUut4EUGgIohJySQTq9SwEqnswEis5bQmM8PxVGJS7BFHA+KkGjlrYDhOKlegAGCAliUbGJ5TsTqcpFERLiflWpZX6zhClhD7H3/+pdEuXyA2ooMtOpxA5CKyALFipBIV/Pv5v4kG/A1PeiCNyuADdgAAAABJRU5ErkJggg==" nextheight="552" nextwidth="1236" class="image-node embed"><figcaption htmlattributes="[object Object]" class="">The optimal route of a $wAVAX 350k liquidation, determined by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.odos.xyz/market">Odos</a> as of 25-Aug-2025.</figcaption></figure><h2 id="h-final-thoughts" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Final Thoughts</h2><p>The absence of JIT/MEV is an opportunity for trading - both JIT and MeV are particularly crowded on Ethereum mainnet.</p><p>Yet, as of 24th August 2025 AVAX/USDC trades just under $1bn 24h total volume and &gt;$70m on LFJ alone. meaning the CEX-DEX arbitrage opportunity is approximately half of that of Pendle's total x-chain volume on this single pool. </p><p>Maybe there is in an error in the data, as it's unclear why traders are fighting so hard over mainnet and ignoring such an opportunity.</p>]]></content:encoded>
            <author>keyringnetwork@newsletter.paragraph.com (Alex McFarlane)</author>
            <category>defi</category>
            <category>web3</category>
            <category>lending</category>
            <category>borrowing</category>
            <category>leveraged-looping</category>
            <category>rates</category>
            <category>yield</category>
            <category>risk</category>
            <category>quant</category>
            <category>quantitative</category>
            <category>finance</category>
            <category>avalanche</category>
            <category>lfj</category>
            <category>trader-joe</category>
            <category>wavax</category>
            <category>usdc</category>
            <category>wavax/usdc</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/8b08f80bdb45a4dd6e331333988ac7eb.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[DeFi Curation: Setting LTVs and Caps for Collaterals]]></title>
            <link>https://paragraph.com/@keyringnetwork/defi-curation-setting-ltvs-and-caps-for-collaterals</link>
            <guid>yQzJxHHZvfQm7KgSpEp7</guid>
            <pubDate>Thu, 21 Aug 2025 10:47:46 GMT</pubDate>
            <description><![CDATA[This is an attempt at a more rigorous approach to onboarding new assets - specifically the "LTV Limits" (LLTVs) and "Supply Caps" (Caps).]]></description>
            <content:encoded><![CDATA[<p>This is the first of multiple blog posts concerning the addition of collaterals to the Keyring vaults.</p><p>Curators seemingly rarely publish their quantitative analysis publicly, but understanding the mechanics behind asset onboarding decisions provides valuable insight into risk management. We hope to document the process of bringing new assets onboard with modelling and market microstructure analysis.</p><p>This is an attempt at a more rigorous approach to onboarding new assets - specifically the "LTV Limits" (LLTVs) and "Supply Caps" (Caps).</p><div data-type="callout" type="info"><link rel="preload" as="image" href="https://paragraph.com/editor/callout/information-icon.png"><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.com/editor/callout/information-icon.png" class="callout-button"><div class="callout-content"><div><p><strong><em>tldr</em></strong><em> we’re using historical data to model how much $wAVAX might drop in a single block given a specific volume of sells. We'll measure the size of liquidations for various pools and estimate the expected max sell-off for a given vault capacity. We can then calculate the slippage we might get and use that to infer our LTV ratio and Vault capacity params.</em></p></div></div></div></div><p>The core objective is to estimate the price slippage $$S$$ for a given liquidation volume $$L$$ which is written as $$\mathbb{P}(S \leq s \mid L = \ell)$$ and it's conditional probability density $$f_{S|L}(s|\ell)$$. Then, we will calculate the expected slippage, $$\mathbb{E}[S \mid L &lt; X, D]$$ where $$X$$ is a percentile of liquidation volumes $$X = F_L^{-1}(0.99 \mid D)$$ for a given pool depth $$D$$, or determined via scenario analysis based on liquidation sizes from other platforms.</p><h2 id="h-trader-joe-lfj-venue-data" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Trader Joe (LFJ) Venue Data</strong></h2><p>The analysis proved more complex than initially anticipated due to numerous unusual market characteristics. Trader Joe is not a well documented trading venue and has several idiosyncrasies that create great benefits for users but also great doom-loops for analytics. Notably, the data revealed instances of large trades that moved markets 6% in favour of traders - a phenomenon that defies conventional market mechanics. The following examples illustrate these data anomalies.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/f041675a92ce080dc8edacab7beb87e8.png" blurdataurl="data:image/png;base64,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" nextheight="786" nextwidth="1376" class="image-node embed"><figcaption htmlattributes="[object Object]" class=""><strong>Buys that make the price go DOWN?!</strong></figcaption></figure><p>Another anomaly revealed what appears to be probability wave interference effects in the exchange, similar to quantum mechanics (except not in infinite dimensional Hilbert space!). In LFJ they have discretised (quantised) the liquidity bins with specific 10 basis point blocks and the result is a variety of harmonics around the "ground state". This unexpected phenomenon showed interference patterns that deviated dramatically from traditional "bell shaped" return distributions.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/a5f54755280cbb6352465faa8b258171.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAASCAIAAAC1qksFAAAACXBIWXMAAAsTAAALEwEAmpwYAAAEVUlEQVR4nJ1VXUzbVhS+2p73NmltJaBSK03V9rK+rpWmSpO2PazbNFWbtAltQ9ofXWFdNbWd9oBoBWzANkKABkggG/80XQrhr+Ef4tiJubFjSGI7DglQ8jugEByM48m5LGQV42FXn6zje79zPt/jc88FsiwripJW0sjIHbIsa3UGvbHbMjo+NDqhaWxtbuto7+hpM/ZYRscHhsbMgyO9D8xanaGpxTg08kg5agBFUVJ7qe5+858DY3wozAXWcoGRbus0jsNFO8lM2cg5wjVlI02PrOPzxBxBkZQHEaZszjkccsI6J4TVZ8aXD4UlSQL70n5aUURRjCY2bdCHQS4XOCU4mRBOCRkjgEEutLJxqfTtW01VrBC3QRYRnEwAp4SMC58BZ4MsQflFMQWSySTay04ymYnoz4Wd4u0Un2tME8zz75+9qb3r5WM26MsuodUcRz/JCKqAKO7Ksgwpxu5wEZT/GGCQZflYYdmX4CSoMjZ6+RiW+cwjgVP+BSagCsiyLO3v08ySjXA5KMFJ/ydwyLF8rKjyGjilCrB8DIfcMfwFZlkVmJ7FwpGooihPdo5IEZ4DG/R5+dgnd4pBniqwxEVRio7EYYr+6OpbWV1NianVcPSY6Pj/FujsMbGcf3xi9sHg2AKz7KT9WRAuLvfVnvkHRRXfIAGWj9khm0vOgM/OQCaQ2tsDXffNj9fDiqIkNjZxyOGQR3DSQdqzTlB+G+lDM/Okz8tGD3fARuYPlzykO0h7wll3TI2QKVOe96f29nLL1E7xDkqYxN3v3vqoxdzPLyfQ/Ixz8V8pYiMzziVcrS71cFQYtVdrbjrp4NMpQh1icck3Yp2B7hBJBwgXxwuJkt9ug5PgR13lTW05RvqctN/tWQsGEp8eCDQEAwm3Z83hEiZxV21Hs1q++aCuu41low4XR9IBF6oiJBCJRBd9LBKfXfD4hPgXlddBgSpw4r0zVmyB9qxXGRtxyBdVloBToKZDNzrn+LWrlRXivVZrwZVziH+3vZ7xRWzQe7iDbFdCKXJQAsmEAit/ldbdBnngjevvnPnw5UAwoTebwKsAg75rtT+AE6D9oblzeABcfHbKTuMUl3fl3GvFb4LT4JcuPSfEYaa7kOigZQVCj9eniMVxAjb0d5qn517/9jLIB6AAgFdAYdlX4IJqn//sArj0HMgHeR+8dL7oIsgDz7z1wsdln4MXATgNwFlQWP61aWLy3v3ucZzGoG8XCaQzAu4lj4Mhq/V1DX1NFmzIYNFfLS/R9GoMI/ranp+++/mGzqy7N6jVmDTlzRVND+vrzXVtQ203ar6v7ak2DLfoB1qL75QaLHoLZjEOG6v1GsbvVbvpU+17a3NLkqSDpG0ns5eEJEkpMbW1sSMmxXg8kdwWpV1JbTOpA3JaTm9vbSO+LMubm1uH90H2ekFbkf8ZaSUt7UsI6kFJJJpa2jv6+jGc0Bl+7+wzbe88UXI4iI98URxFUf4GNusz3WE3PpAAAAAASUVORK5CYII=" nextheight="650" nextwidth="1130" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>This analysis covers wAVAX / USDC, representing the most liquid DEX pair on Avalanche. The dataset encompasses the entire history of swaps until the previous evening, with block, $$b$$, returns calculated by $$r(b) = \text{VWAP}(b) - \text{VWAP}(b-1)$$ using <code>Swap</code> events from HyperSync. The exact cause of this strange return distribution remains unclear, but this anomaly alone delayed the wAVAX pool go-to-market by approximately 2-3 days due to the additional analysis required.</p><p>To validate the interference theory hypothesis, we modelled a Poisson distribution with triangular convolution of multiple swaps per block causing interference. This approach looked similar to the empirical observations (subject to proper parameter fitting), enabling a resemblance of sanity.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/4ccafd2402baf1c8b24c26b834f813ba.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAATCAIAAAB+9pigAAAACXBIWXMAAAsTAAALEwEAmpwYAAACrklEQVR4nLVVUUgUQRgeqEB6KPDlgl57kEKilx4SopeKIsV6D3pOkJB6rT18EhPaUlZBlkws0OqqhwON0AfhZJXFVaRDFq7r6M7G27vmdm6b23GdmJscz0vuLrL/YfZn9vvnm+//558BrGyUUkIIq2mU0rozf/4F4uM4TiKRkLMykpZN+IQQ4T8ceTRjzFTOSFjlRoUDUqmUqqqKosRiMUopxpgQIkbh4B0fIZTL53jMUXC16xpjLOtkJb4yRDocLNgghLZt11VQ9Io85gTofHCLMeZit76CdDo9NDg0MDBgGEZtBRhj5CIeEwLXu280qkBot8vWqIJm0N7T2agCCGEkEtF13bIsWTcxCofs+JUK2ns6GGP5H3mJrwyReA7GGCcSCcMw1tbW5O86BM21CDDGewgcx5mbm4tEIpZlHQgBqVLgOM78/Hw0Gj0QBX7J94pedYps247FYo0RFGoTiMOzhwBCGI1G/2+RIYTxePwvjmkItN/f/5jK07nnqhgbG1NV1TTNf6kBLmdmnxQJtnQ6LRUE24FYt6qDMMYVjcYJkFvwqV8F8356wXawq4BSOjExoSiKYRjBFl9adiOl1MUuzG7IFpV3Uce93RQJWCqTEjC/5AdbQbWC5NckwQScAXf7uhhjs4uzkx8nGWNPXj4FgGMymxntjbayvsJjALh45xJj7N2n9/qH54yxkbcjAoZc9OzV4HpyXex1l2DZWl41V5tOH+sOd5srZtvNC6G2k8kvyfDj8OGWJsM0hseHD7UcUV+oHvJaO871ar0LiwuXb19p7Txr27bSpxw/H1qylsZfj4NToH+0Px7/rOs6Qug3AZdG/e/fMn6J59TZdHCBC+RvQJa/AbwmHpmentY0bVQbnZqcopQWUEGkfiMDUY7XHyEEN6BY0LIsQsgvdAtQKq048vYAAAAASUVORK5CYII=" nextheight="704" nextwidth="1184" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>With a robust model of price movements for various sell sizes on the primary venue for wAVAX/USDC trading, stress testing under various market conditions becomes possible.</p><h2 id="h-kyles-lambda" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Kyle's Lambda</strong></h2><p>Kyle's Lambda is a core concept in market microstructure, measuring how trades affect prices in financial markets. It helps estimate execution costs, particularly for high-frequency trading (HFT) in single-state executions. The model uses regression to quantify price changes based on trade volume, expressed as $$r_b = \lambda \cdot \sqrt{|V_b|} \cdot \text{sign}(V_b) + \epsilon_b$$, where for a given block, $$r_b$$ represents slippage, $$\lambda$$ is the price impact coefficient, $$V_b$$ is the signed trade volume, and $$\epsilon_b$$ is the random noise term.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0eda6b42ef386d10a1c73971050a92e3.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAATCAIAAAB+9pigAAAACXBIWXMAABYlAAAWJQFJUiTwAAAEkElEQVR4nH1V21MbVRjf8cFx/AMcHR3Hx04f9NnR6YNjfdJxxkFbZ5BhShlALkK5FFoQEGstljsphJDdhM1mN5eT3Ww2l81uEhqJREqd0gJ1ynXEgaQQJNRGy2KPszlAUkC/+c2es78553zf7/u+s4vBZ+2fp08hhIFQWJQC0YnJQChstTnm5xecLgGw/FgkOnX33tTde8DBiZLs8UrRiUm3V2SsAG1RFOXQgRgaFEXhXd4Hc0uxeGJzc5s027+qaayub2ls+b7uUmufZrjuctup0x8VFFf1aYab29pz80tOvf/hxzlfXL3eW13f8smZ/LyCstz8ksWllVg8EYsnnuzsHOMAN7FGRjAyAg1Elz8C3KN2IQTcozQQWU+YF8dsfMDlj9CcxHAyYixOCbhH0/MfXf4IQfGkw08wQiye2HOwuLTs9ooQwgdzC4xDNDICaVF9UMCLnBnTMDC8geEP8TjFoSdOcaTdYxWCJuDv6RyoOVf2YHoGQrir7GKjY+Nncs9BCHX6kSGDlQJeBAvnP5hTaZB2D2kRLE5JnVuEA1iFIMPJOsJ6rbW99nx5U0X9kM78cOOPPQVjkZ/bO/oghGuxOOADepMTRXdIgXEfBOPqxy0dA6S6hpXNrNTVcaOuqLL6fPmVy1e0OJNOkSuTovn5hWGchBB29mg0wzTNSf+hwKchbDZeLqz+BsNezymsbW0frK9uri4ob6q4qNWa7EKI9YVpThqxuCjgzSgQpQBK0Z+PH7Oe0LEKCIrXGsDX1wa9wSiGvYAhe+7Vkyffbv62h2QlndlJMC5UPISMgtGbke7eAQihHAgPGaysZ9TGyzZeZj0hGy+TFrWGfbj9bFnjiyfexbLsg8+/7Casakc5RBqIjENEW2y8bHFKGQVTd6d7NUMQwq3kto2XdSRHMC69yUla1XSTDj/p8L/zXs7Lr5zAsJfQ0W+e/szICBrCpjexepMaO8G41Paze9Acp/nV2EYmRTe0OISwvaMHddGIxUVzEusLU8Db0zlQmV9SmldceaGltrULe+0t7Pk3dCSrNdhIi5rGbGSXLaNgZvZ+v0aHukjNicNvZqW+frytrrm2sKKhvK63H6f54IjNY2SEriFKRwIa+I5tsOyyZWowHr3V1HIF3QPcxPb36i8WVzWU1mi6tQTF0nyQtO91PQotfc99h2L/PwW3f7kTnZiEEI7/FG0sudBQWjMwSFKszHAyutXkPnBKLQ8FvDTwZfMIqDsPXjMK0PBkZycQCA7qzMb0lwSnOF4co4BPb3Lug9UQVq0BkHYPBbxaA0AVRtAaWaszANw3tUaV1BrZTJEVZRdCGI8/NJD09K/zC0u/La+s3bozXVnTZKDsa+ubc4sqg7Aa23D7g7enZlZjGwfk/OLv64mtq9f7v/uhb2VtHZGp1F/PKDhkiqJ4RXlm9v4Bk0wm/06lFEWZmb2/vLycSlv2lujEZDgcOXpUxsHRf8U+r0qsqrn06dm8otIqw4i5qLSqoLi8qLRqK5k8dsvxDo6KyH5NpVLrGxvb249SqdRWMrm9/SiR2Dy0/tgQ/wWIljPm9lm4TwAAAABJRU5ErkJggg==" nextheight="592" nextwidth="982" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>The returns were calculated as the change in VWAP between consecutive transactions $$r_{x} = \text{VWAP}_x - \text{VWAP}_{x-1}$$ where $$x$$ denotes the transaction index.</p><h1 id="h-impact-of-slippage" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Impact of Slippage</h1><p>The analysis revealed that <strong>atomic liquidations can be performed with minimal slippage on collateral assets</strong>. While general collateral degradation may occur, the likelihood of generating bad debt through the liquidation process itself remains very low.</p><p>The data demonstrates that liquidating $40,000 worth of $wAVAX from an unhealthy position typically results in only $12 slippage on the AMM. This finding proved surprising and requires further individual transaction analysis, though the data seems to consistently support this conclusion.</p><p>The bin-model architecture of the LFJ exchange appears responsible for this favourable slippage profile. Analysis uncovered instances of $600,000 orders executing with zero slippage. While LFJ's pricing can appear confusing to users due to dust-related price distortions that may not reflect actual liquidity, the Volume Weighted Average Price (VWAP) typically provides fair execution.</p><h1 id="h-next-steps" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Next Steps</strong></h1><p>In the next post we will dive into liquidity data and analyze liquidation sizes across DeFi vaults. We’ll explore Just-In-Time (JIT) liquidity patterns, testing the hypothesis of JIT activity and then analyse the liquidation sizes for various DeFi vaults.</p>]]></content:encoded>
            <author>keyringnetwork@newsletter.paragraph.com (Alex McFarlane)</author>
            <category>defi</category>
            <category>ltv</category>
            <category>collateral</category>
            <category>crypto</category>
            <category>lfj</category>
            <category>amm</category>
            <category>quant</category>
            <category>risk</category>
            <category>management</category>
            <category>quantitative</category>
            <category>liquidity</category>
            <category>keyring</category>
            <category>keyring-network</category>
            <category>avalanche</category>
            <category>trader-joe</category>
            <category>wavax</category>
            <category>avax</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/ece3c1deedc80d451449c747fddc8c8a.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[Exploring LTV Limits: A Deep Dive into DeFi's Risk Management Framework]]></title>
            <link>https://paragraph.com/@keyringnetwork/exploring-ltv-limits-a-deep-dive-into-defis-risk-management-framework</link>
            <guid>DSzlBWzzkEXIqEhnzU5N</guid>
            <pubDate>Thu, 14 Aug 2025 18:44:50 GMT</pubDate>
            <description><![CDATA[We compare central bankers to 'Protoplasmic Jellies' and then derive a basic quant risk model for crypto-native assets.]]></description>
            <content:encoded><![CDATA[<h1 id="h-but-why-the-problem-with-protoplasmic-jellies" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">But Why? The Problem with 'Protoplasmic Jellies'</h1><p>My kids often say: <em>"But, Why?"</em></p><p>If you ask this question about 3-4 times you either uncover irrational assumptions or quantum physics (or both!).</p><p>Why do central banks target 2% ? <strong>The answer may shock you...</strong> </p><p>Central banks target 2% because the Bank of New Zealand <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.reuters.com/markets/mouse-that-roared-new-zealand-worlds-2-inflation-target-2023-01-30/">arbitrarily picked 2%</a> Literally because it was higher than 1% ... and everyone copied them!</p><p>There is no real fundamental analysis that underpinned the original decision that <strong>every major central bank copied</strong>.</p><p>Maybe they got it right? Boris Johnson had a famous phrase^ for civil servants that are paid lots of money to take on no risk with no accountability or engagement,</p><blockquote><p><em>"great supine protoplasmic invertebrate jellies"</em></p></blockquote><p>I prefer his assessment.</p><h1 id="h-ltv-limits" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">LTV Limits</h1><p>I was looking at how to set LTV limits - basically everyone seems to have copied each other +/- a bit. I haven't yet found any analysis backing a lot of the LTVs on most platforms... at least not publicly and nothing quantitative.</p><p>This got me thinking, shall we just take 80/85% for <code>$wstETH</code> and 70/75% for <code>$wAVAX</code> ... or is this just sloppy?</p><p>In traditional finance risk modelling, this is <strong>one of the most regulated areas because it's one of the most risky</strong> for the financial system. The Standard Initial Margin Model (SIMM) that arose from the Fundamental Review of the Trading Book (FRTB) Sensitivities-Based Approach (SBA) approach became the standard of interbank margin modelling. It levied heavily on the Value at Risk model (VAR / Expected Shortfall).</p><div data-type="youtube" videoid="uYm2rvVJLnk">
      <div class="youtube-player" data-id="uYm2rvVJLnk" style="background-image: url('https://i.ytimg.com/vi/uYm2rvVJLnk/hqdefault.jpg'); background-size: cover; background-position: center">
        <a href="https://www.youtube.com/watch?v=uYm2rvVJLnk">
          <img src="https://paragraph.com/editor/youtube/play.png" class="play">
        </a>
      </div></div><p>Let us firstly define a separation of two types of assets</p><ul><li><p>native assets: UNI, ETH, BTC - these assets have no off-chain credit risk</p></li><li><p>non-native - assets are deposited and taken off-chain</p></li></ul><p>Even this basic classification puts us in a conundrum: Tether and Circle literally take assets off chain and deposit into non-cash like assets.</p><div data-type="embedly" src="https://www.reuters.com/business/crypto-firm-circle-reveals-33-bln-exposure-silicon-valley-bank-2023-03-11/" data="{&quot;provider_url&quot;:&quot;https://www.reuters.com&quot;,&quot;description&quot;:&quot;Stablecoin USD Coin (USDC) lost its dollar peg and slumped to an all-time low on Saturday before recovering most of its losses after Circle, the firm behind it, assured investors it would honor the peg despite exposure to failed Silicon Valley Bank.&quot;,&quot;title&quot;:&quot;Circle assures market after stablecoin USDC breaks dollar peg&quot;,&quot;author_name&quot;:&quot;Elizabeth Howcroft&quot;,&quot;thumbnail_width&quot;:1920,&quot;url&quot;:&quot;https://www.reuters.com/business/crypto-firm-circle-reveals-33-bln-exposure-silicon-valley-bank-2023-03-11/&quot;,&quot;thumbnail_url&quot;:&quot;https://storage.googleapis.com/papyrus_images/95cecb709e6fc578b403ae17a5e41b60.jpg&quot;,&quot;author_url&quot;:&quot;https://www.reuters.com/authors/elizabeth-howcroft/&quot;,&quot;version&quot;:&quot;1.0&quot;,&quot;provider_name&quot;:&quot;Reuters&quot;,&quot;type&quot;:&quot;link&quot;,&quot;thumbnail_height&quot;:1005,&quot;image&quot;:{&quot;base64&quot;:&quot;data:image/png;base64,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&quot;,&quot;img&quot;:{&quot;width&quot;:1920,&quot;height&quot;:1005,&quot;src&quot;:&quot;https://storage.googleapis.com/papyrus_images/95cecb709e6fc578b403ae17a5e41b60.jpg&quot;}}}" format="small"><link rel="preload" as="image" href="https://storage.googleapis.com/papyrus_images/95cecb709e6fc578b403ae17a5e41b60.jpg"><div class="react-component embed my-5" data-drag-handle="true" data-node-view-wrapper="" style="white-space:normal"><a class="link-embed-link" href="https://www.reuters.com/business/crypto-firm-circle-reveals-33-bln-exposure-silicon-valley-bank-2023-03-11/" target="_blank" rel="noreferrer"><div class="link-embed"><div class="flex-1"><div><h2>Circle assures market after stablecoin USDC breaks dollar peg</h2><p>Stablecoin USD Coin (USDC) lost its dollar peg and slumped to an all-time low on Saturday before recovering most of its losses after Circle, the firm behind it, assured investors it would honor the peg despite exposure to failed Silicon Valley Bank.</p></div><span><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-link h-3 w-3 my-auto inline mr-1"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg>https://www.reuters.com</span></div><img src="https://storage.googleapis.com/papyrus_images/95cecb709e6fc578b403ae17a5e41b60.jpg"></div></a></div></div><p>For now, however, we will treat <code>$USDC</code> and <code>$USDT</code> as special cases of <em>"native assets"  </em>(eeek!) until they get a banking license. This however remains such a systemic risk it will have to be accepted as a fundamental tenant of risk management on-chain. Either accept it or don't play.</p><p>For the native assets, VaR based models with credit risk add-ons are probably the correct approach due to the nature of their operations, the credit components and the redemption windows.</p><p>This approach isn't so valid for <em>"native assets" </em>- VaR is not the right measure of risk in a context where no (acknowledged) credit exposure exists, particularly in liquidations where zero-holding period is usually taken. Generally the "inventory risk" is pushed to JIT liquidity providers who will increasingly start to look at statistical arbitrages (requiring holding periods) as the instant "free lunch" starts to dry up with highly <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://jumpcrypto.com/reintroducing-jump-crypto/">sophisticated actors like Jump Crypto re-entering</a>.</p><p>So what is the correct model for liquidators? A model that measures the likelihood of these arbitrageurs to come and backstop the trade made. This cannot be judged from the LP pools as most of it is "dark".</p><p>We have to measure Execution Risk (Slippage).</p><h2 id="h-modelling-execution-risk" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Modelling Execution Risk</h2><p>As mentioned, the AMM model is sort of irrelevant with most liquidity these days off-exchange. The reality is that we should inherit directly from quant risk modelling as most of the liquidity will indeed come from Limit Order Books (LOBs).&nbsp;</p><p>When creating any model in quant finance the dumbest thing to do is go to machine learning (unless you just finished a PhD on the topic) - instead start with something and build on it.</p><p>It is with this in mind that we look to basic price impact models such as Kyle's Lambda: The foundation of market microstructure.</p><h3 id="h-kyles-lambda" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Kyle's Lambda</h3><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://people.duke.edu/~qc2/BA532/1985%20EMA%20Kyle.pdf">Kyle (1985)</a> formulated a framework including a parameter known as a Kyle's Lambda. This parameter comes from a modelling the optimal behaviours of of informed traders amongst the uninformed. Assume you are an insider and "informed" then what is the optimal strategy to move your position? Kyle considers this topic in the context of a single static trade. <em>For more complex sequential trading actions you must consider optimal inventory and additional constraints (see below).</em></p><p>For a DeFi interpretation, Kyles Lambda can be interpreted as the cost of requiring a certain market depth in a given period of time which is established by relating the price change during a transaction $$r$$, with the volume, $$V$$ executed subject to a random process $$\epsilon$$ which is assumed to be independently and identically distributed,</p><p style="text-align: center">$$r = \lambda V + \epsilon$$ </p><p>like everything so simple, it's a bit of a pain to derive but super easy to explain conceptually.</p><p>In this approach I decided to remove the "signed volume" approach of <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://papers.ssrn.com/sol3/papers.cfm?abstract_id=388360">Hasbrouck (2006)</a> since we can precisely obtain all the orders on-chain in a separate fashion. This means we can calculate Kyles lambda in two directions, buys &amp; sells.</p><p>However, we only care about sells for liquidations.</p><p>Now we have a regression model to run across all the data on the AMMs.</p><div data-type="callout" type="info"><link rel="preload" as="image" href="https://paragraph.com/editor/callout/information-icon.png"><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.com/editor/callout/information-icon.png" class="callout-button"><div class="callout-content"><div><p><em>Modern "solvers" like </em><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.odos.xyz/market"><em>Odos </em></a><em>(below) route single transactions through a large number of liquidity venues. It might present a challenge to identify correctly all the events from all venues.</em></p></div></div></div></div><h3 id="h-future-model-improvements" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Future Model Improvements</h3><p>There are so many extremely talented quants working in this space it's hard to know where to start but I'll just pick two of my personal favourites.</p><p>On the single trade horizon, Bouchard in <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.cambridge.org/core/books/trades-quotes-and-prices/029A71078EE4C41C0D5D4574211AB1B5?utm_campaign=shareaholic&amp;utm_medium=copy_link&amp;utm_source=bookmark">"Trades, Quotes, Prices"</a> looks at correlator models which I found fascinating from a physics perspective. He demonstrates how to calculate correlators that accurately fit CEX execution data in crypto but I think it could probably be used in the same way on interest rate models to identify the reaction speed.</p><p>For multi-trade inventory management it becomes more of an optimal inventory management problem that market makers face, this is tackled by Cartea quite comprehensively in <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.cambridge.org/gb/universitypress/subjects/mathematics/mathematical-finance/algorithmic-and-high-frequency-trading">"Algorithmic and High Frequency Trading"</a>.</p><h1 id="h-the-future-of-defi-quant-risk" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">The Future of DeFi Quant Risk?</h1><p>ISDA is a global co-operative involving all major banks. <strong>Effectively ISDA is a DAO</strong>. I hope that curators should look to create something similar to ISDA for risk modelling such that users have transparency with a simple benchmark.</p><h2 id="h-references" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">References</h2><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.bis.org/publ/bcbs265.htm">BIS: Fundamental Review of the Trading Book</a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://people.duke.edu/~qc2/BA532/1985%20EMA%20Kyle.pdf">Kyle, A. S. (1985). Continuous auctions and insider trading. Econometrica: Journal of the Econometric Society, pages 1315–1335.</a></p></li></ul><p><em>^Johnson was expected to face a two-hour grilling over his proposed £16.5 billion budget, which included cuts to services like the fire and police departments. The insult was a response to the assembly's decision to bypass the question session, which Johnson perceived as a lack of engagement or accountability.</em></p><br>]]></content:encoded>
            <author>keyringnetwork@newsletter.paragraph.com (Alex McFarlane)</author>
            <category>lltv</category>
            <category>defi</category>
            <category>ltv</category>
            <category>lending</category>
            <category>quant-finance</category>
            <category>risk</category>
            <category>management</category>
            <category>web3</category>
            <category>quant</category>
            <category>finance</category>
            <category>quantitative</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/991b2ea4e37b907bfa9256c03dbb8c51.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[The Evolution of Currency, Trust, and Innovation]]></title>
            <link>https://paragraph.com/@keyringnetwork/the-evolution-of-currency-trust-and-innovation</link>
            <guid>q131JVxNsajxmAN8JkxZ</guid>
            <pubDate>Thu, 24 Jul 2025 17:02:51 GMT</pubDate>
            <description><![CDATA[Gold holds a special place among financial assets. It is often seen as the ultimate store of value, a hedge against inflation and economic turmoil. Yet its price history over centuries tells a different story. This article argues that gold has shown dramatic volatility, much like modern cryptocurrencies such as Bitcoin. Supply shocks, geopolitical changes, and shifts in trust have driven this. Using 760 years of inflation-adjusted data, we trace gold's role as a currency and medium of exchang...]]></description>
            <content:encoded><![CDATA[<p>Gold holds a special place among financial assets. It is often seen as the ultimate store of value, a hedge against inflation and economic turmoil. Yet its price history over centuries tells a different story. This article argues that gold has shown dramatic volatility, much like modern cryptocurrencies such as Bitcoin. Supply shocks, geopolitical changes, and shifts in trust have driven this. Using 760 years of inflation-adjusted data, we trace gold's role as a currency and medium of exchange. Its reliability is more myth than fact. We also draw parallels with Bitcoin's early, turbulent path. As DeFi grows, these lessons highlight money's role amid eroding trust in the current financial system.</p><h2 id="h-why-gold-became-currencys-benchmark" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Why Gold Became Currency's Benchmark</strong></h2><p>What makes a good currency? Economists point to three key roles:&nbsp;</p><ol><li><p>A unit of account (for pricing goods)</p></li><li><p>Medium of exchange (for transactions)</p></li><li><p>Store of value (for holding wealth)</p></li></ol><p>Gold has met these needs for ages. It shares features with today's digital assets. Its scarcity comes from geological rarity and first appeared in items like jewellery. Immutability means it keeps its worth even if melted down. Fungibility lets it be reshaped: coins can be split or reformed without losing value.</p><p>This mix beat out other options. Diamonds are scarce and immutable but hard to divide. Tulips or feathers are scarce and fungible but wear out or rot over time. Rocks are immutable and fungible but far too common. Gold's traits allowed decentralised pricing. It enabled trustless trades without banks, similar to blockchain now. Think of barter's problems, like arguing over Pokémon cards in school. A shared asset simplifies this by creating a standard unit for exchanges. This is why currencies are important, they remove arguments from cross-asset pricing by simplifying into a base unit of exchange.</p><p>Gold fit the market well and gained traction. Prices peaked around 1400 as demand for coins grew, based on records adjusted to 2024 USD purchasing power. However problems with the system soon emerged...</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/be6e91252b276c24e042f0733893d2dc.jpg" blurdataurl="data:image/png;base64,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" nextheight="707" nextwidth="1280" class="image-node embed"><figcaption htmlattributes="[object Object]" class="">Gold Through History: 760 Years of Price Data (1264-2024) Adjusted to 2024 USD Purchasing Power.</figcaption></figure><h2 id="h-golds-downfall-supply-floods-and-everyday-limits" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Gold's Downfall: Supply Floods and Everyday Limits</strong></h2><p>Gold's supply is not fixed. The discovery of the Americas in the late 1400s flooded markets with the precious metal, which drove prices down to about $1,000 in adjusted terms. Additionally, gold was difficult to use at scale due to its heaviness and scarcity, making it challenging to transact at large volumes.</p><p>China's Ming Dynasty is a good example of this in the 15th Century. Taxes were collected as a proportion of crops, paid to the emperor. Naturally, farmers gave the bad crops as tax. The empire tried gold briefly but found it too rare for its huge population, which accounted for a quarter of the world's total at the time. Silver offered a better balance and became the official currency in the 16th century. But as demand rose, silver supply started to dry up. As a result, the Ming Dynasty soon found itself in a position where they could no longer pay their own soldiers due to Silver shortages.&nbsp;</p><p>Help arrived from early global trade. The Spanish found Potosí in Bolivia, the world's richest silver site. This solved China's shortage. From 1500 to 1800, Bolivia and Mexico produced 80% of global silver. About a third ended up in China. Economists call this the start of true international trade.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/86d84eb0bfe178b5c7bed73a8245afed.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAANCAIAAABHKvtLAAAACXBIWXMAAAsTAAALEwEAmpwYAAAD70lEQVR4nHWUfUyVVRzHP8xYL5ZMu8T1Qg9eogsqL6LWxsAkxXIwxQbDKGbpdb47QRIFI19ABYIoXkLufbiHh8s7kUrIhps4EKU09d6n53m4vsB0q9lWrf7uH9u9f9SsPPv9cXZ2vt/P73zP2SFcGFS6qekJapo4qLynXCfaDTshL4UKnqqEZo9F9khCM7k87NvN+nSWQDJkQBbkgNU/We6iaBD3lRf2DWI9aafKEXy8UBIGIU5PuDCswghy6VF14uz4pjM6NAYYZVC0gM/OJfZOhzhvBjVeJyeHOFgccI/DP7Kgif2DeG93T90rdHvBDntTQ4Ux6/SV2bJG1pmZzK+nl3UYiZ135rVcrB8q+eO3CzTDfthmQdaSWr/n6Fn2KKSVRWYsIj+eA5uWnXontz7PD1jFoLr/4a+1P/0+9PDnL2OOQUGspd41XzFSe+6mdvt4VWhWoSV2TKV2+1b0zSR/cVweySYX3oTjHclCfd1xmT3NcacuUjmaUTcntAI+WsTupRvayG1a6L66Zr0SPz5z7tGjP+0184mFvYLMLew6nTN0/+3+e5hk9Tmnh5YbZmFQN0F+lXVtSsKu/DlHG7FXU9yfNfTjuuEHFI2QEkU1uUPkD0ItH/ZAOeTnkA1bsR6y+HtKy6KwjbK+MNlDixenl+ROX3Knb2WXL61/2p9G1XB09fiCw9Xzs9cRNQdbGGUDib3TlF5kbTrFUEpCKzuG2dv/fJY4SMF5lq4mw05hKekJ2GtjqxRby630gft5Qw82nJlhUbuxuu/uyi6fVWi29qmYjtsvtekcGVlS2UYaPAOvQUEFRy7x+TWKuqiuXajQq/OuSGH7aWq+4+NRyi9TJGMOZWUS8RuJSqTmfHyHz9ZuYJK9swMlCc0sNJPsjVZ0GifZ00Am2OBlCIemWwk9U+w4S0n/+gNzKxoIyU9iczvbB+Y5bsZ137G5deouUPwN2zazZVVo06Vgp8cflCS0/1aY8yZVE5Vjv/AJbCPCXkr15Nzmay86blE2MnyjRBm1kJnGrmOUT0QrP1hkr1WoyBo1Zk7gfyOf7jTJAZ//BUjCG+TS3/9KkAQFG5d33qFyzJ9S+SW2DrxRcSi39jAf9NF4I8Y9ZZFVSahWoQU7vZwMozjCryqJiW33Peu4+gSAy4OsvdWcTcFiWlTJ5YlW9Bj31CyHN8Th5dgY5eOSUCMV3eR3/0eIQzW3atQ45zace0Woplrnk06gBsva04dWmOv7JGFIwn9DktAiFT1S0W2KHuvWJaFZZNUs1LDAR/K3UHJ5rMIIF0aE89sI5+QTAdHtPk600Thq9QMeazOQyWOb/yU3B1bChR4ujL8A3egBIaKobOQAAAAASUVORK5CYII=" nextheight="1188" nextwidth="2835" class="image-node embed"><figcaption htmlattributes="[object Object]" class="">White represents the route of the Manila galleons in the Pacific and the flota in the Atlantic, which mainly carried silver. (Blue represents Portuguese routes which primarily focused on spices.)</figcaption></figure><p>The Spanish amassed incredible wealth and squandered it on a massive meme coin-like trade of invading England (massive upside gamble), the Spanish Armarda 1588. Much like the Solana Trenchers of today, the Spanish learned the hard way that going all in is a very risky business.</p><p>As a result Imperio Español lost their money and influence and remained pissed to this day, taking up football to stick it to the English every 4 years.&nbsp;</p><p>Silver rose as a global currency, pushing gold aside. New South American gold finds added to the supply glut. Prices fell during the Age of Discovery before steadying in the 17th century.</p><p>The Ming example showed the need for balance in scarcity, immutability, and fungibility. As trust in banks grew, money relied less on physical coins. It also reduced the need for the Crown to back lower-value metals like silver.</p><h2 id="h-the-rise-and-fall-of-the-gold-standard" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>The Rise and Fall of the Gold Standard</strong></h2><p>By the 18th century, gold lost ground. The Bank of England, founded in 1694, tested paper notes backed by gold. However, problems arose when&nbsp; the stubborn Isaac Newton, Master of the Royal Mint overvalued gold in 1717 shortly before being a dick to Leibniz.</p><p>This led to Portuguese gold flooding England and market distortions. Traders bought cheap silver in Britain, melted it, and sold it in Asia and Europe. The Bank of England had swallowed up silver via Newton's erroneous conversion calculator for the Silver/Gold rate and was a major reason for Silver to vanish as a global currency.</p><p>The Industrial Revolution sped the decline. It started in 1771 at Arkwright's mill in Derbyshire. New technologies made gold expensive to hold compared to growing goods and services. People invested in companies instead, and gold's price stalled. Newton's mistake drained silver stocks, helping end its global use.</p><p>The Gold Standard was short-lived, despite its reputation. The Bank of England set it in 1816, but it lasted only until 1914. Victorian calm was rather artificial, supported by empire, not natural stability. Then in World War I, the great European Empires sold off their reserves to cover debts, crashing prices like a modern asset dump. This is the same as a shitcoin post-TGE unlock. The price of gold collapsed.&nbsp;</p><p>The price for the stupidity of Kings, had been paid by blood and gold.&nbsp;</p><p>The Great Depression led to Roosevelt's 1933 gold seizure. This devalued the dollar by loosening gold ties, allowing more money printing. This wasn’t a rise in gold price per-se. Less gold was required to back the dollar, and the FED was free to print.</p><p>It was the OG brrrrr.</p><p>In 1944, Bretton Woods linked the dollar to gold at $35 per ounce. Other nations tied their currencies to the dollar. This created a gold-exchange system and boosted US power. The US Empire was born, backed by nukes and the Dollar. This valuation of gold was treated as sacrosanct and a modern “Gold Standard” despite its primary purpose being brrrrrrrr.</p><p>However, Nixon then invoked some Roosevelt in 1971 by dropping the gold standard entirely and the price of gold spiked dramatically as currency was debased. The Fiat Currency era started and frankly became the most volatile period of all time for the price of gold. Gold really did trade like a shitcoin in the 2000s fluctuating as much as 10x in the space of 10 years; and certainly not upwards!</p><h2 id="h-golds-hidden-volatility-and-lessons-for-bitcoin" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Gold's Hidden Volatility and Lessons for Bitcoin</strong></h2><p>The chart covers 1264 to 2024 in adjusted USD and shows the ups and downs. Medieval prices were often higher in real terms than today. The Black Death from 1347 to 1351 caused huge economic shifts through labour shortages and inflation. Discoveries cut values in half. Industrial times brought drops as output grew faster than metal. The Gold Standard era from 1717 to 1971 hid volatility under rules. Fiat era saw wild moves, with rises in crises like COVID-19 but overall loss in buying power.</p><p>As of July 2025, gold is at about $3,376 per ounce nominally. This is a high driven by global tensions and inflation worries. Adjusted for a 2.7% CPI increase from mid-2024, it equals roughly $3,287 in 2024 USD. This continues the chart's fiat volatility.</p><p>Bitcoin follows a similar pattern. It faces criticism for volatility, with one-year swings around 50%, compared to gold's 12 to 20%. But gold in the 1970s post-standard had spikes over 30% during changes. Research shows Bitcoin acts like gold as a hedge but is more volatile due to its newness and speculation. Both rely on scarcity: Bitcoin's 21 million limit matches gold's limits. Yet both face supply and demand jolts. Gold's past hints Bitcoin could steady over time, but neither promises constant value.</p><p>Nixon's move showed gold's weakness as a store. Trust, not the metal, supports trade. Central banks have done okay, but the 2008 crash eroded trust in the modern era. This fuels fears of inflation, especially in developing markets.</p><h2 id="h-shattering-golds-stability-myth" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Shattering Gold's Stability Myth</strong></h2><p>Gold's journey reveals the weakness in its 'store of value' image. Centuries of volatility match Bitcoin's ups and downs. In 2025, with prices at highs, it reminds us that trust is money's core. As DeFi calls, using its strengths and learning from gold could build a stronger financial system.</p><h2 id="h-defi-the-next-step-in-trustless-money" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>DeFi: The Next Step in Trustless Money</strong></h2><p>DeFi offers a fix through programmable money via smart contracts. These create trustless, decentralised systems like gold's early appeal. Cryptocurrencies provide scarcity, immutability, and fungibility in digital form. But challenges remain. Smart contracts can be hacked, and compliance issues let bad actors dodge rules, worrying governments and regulators.</p><p><strong>DeFi is the future with trustless contract-based systems.</strong> But rogue actors still prey on crypto users. Hackers and exploiters make headlines at retail's expense. Despite low real metrics, the potential for criminals and rogue states to evade sanctions terrifies those in power, who've long used finance as a substitute for war.</p><p><strong>Smart contract risk + Compliance risk = the two biggest blockers to adoption.</strong></p><p>At Keyring, we believe DeFi will win. Cryptocurrencies satisfy all the requirements that gave such strong PMF to historic currencies. The next natural progression of DeFi is trust.</p><h2 id="h-the-zkverified-future" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>The zkVerified Future</strong></h2><p>Rational privacy is required in DeFi. Trust based on commonly held standards and assertions that are provable. Keyring will remove compliance risk and smart contract risk, opening the floodgates to capital markets.</p><p><strong>Prove what matters. Share nothing else. Access everything.</strong></p><p>The zkVerified revolution starts now. Institutional money is moving. DeFi will win, verified, not doxxed.</p><br><hr><p><em>Methodology: Britain has the longest history of markets, allowing us to obtain gold prices back to 1257 in pounds. We converted GBP to USD using historic inflation figures and 2024 GBP/USD rates. Sources: Lawrence H. Officer and Samuel H. Williamson, "The Price of Gold, 1257 - Present," MeasuringWorth, 2025; Eric W. Nye, Pounds Sterling to Dollars: Historical Conversion of Currency.</em></p><p><strong>The future is zkVerified.</strong> Join our community to be early for the upcoming TGE:<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/keyring_network"> <u>https://t.me/keyring_network</u></a></p>]]></content:encoded>
            <author>keyringnetwork@newsletter.paragraph.com (Hugh Flood)</author>
            <category>gold</category>
            <category>bitcoin</category>
            <category>silver</category>
            <category>crypto</category>
            <category>currency</category>
            <category>inflation</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/cb0e51010f0151eb704487cfb506d93c.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[Upgrade: Faster, More Trusted Data Authentication]]></title>
            <link>https://paragraph.com/@keyringnetwork/keyring-connect-upgrade</link>
            <guid>m2q8sCuUpkfDeNxwIcOT</guid>
            <pubDate>Fri, 18 Jul 2025 16:35:45 GMT</pubDate>
            <description><![CDATA[We just shipped a major upgrade that cuts verification time in half. Built on TLS Notary alpha-10 with our own security and compatibility enhancements.]]></description>
            <content:encoded><![CDATA[<h2 id="h-the-problem-defis-kyc-nightmare" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>The Problem: DeFi's KYC Nightmare</strong></h2><p>Here's the thing about DeFi onboarding - it sucks.</p><p>Users want to prove they're legitimate humans without doxxing themselves. Protocols want verified users without the liability of storing passport photos. Everyone's stuck with slow, clunky verification that makes people abandon ship halfway through.</p><p>30-60 second wait times might not sound like much, but in crypto, that's an eternity. Users bounce. Platforms lose customers. The whole "verified, not doxxed" promise feels broken when the tech can't keep up.</p><p><strong>Time to fix that.</strong></p><h2 id="h-what-we-fixed-speed-trust-compatibility" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>What We Fixed: Speed + Trust + Compatibility</strong></h2><p>Our latest Keyring Connect upgrade tackles three critical areas:</p><p><strong>Faster Verification</strong></p><ul><li><p>Notarisation times slashed from 30-60 seconds to 15-30 seconds</p></li><li><p>Significantly improved user experience and conversion rates</p></li><li><p>Eliminated timeouts for users with slower connections</p></li></ul><p><strong>Enhanced Contextual Integrity</strong></p><ul><li><p>Bulletproof verification of claims within their full context</p></li><li><p>Zero tolerance for malicious data injection attempts</p></li><li><p>Enterprise-grade fraud prevention for sensitive applications</p></li></ul><p><strong>Expanded API Compatibility</strong></p><ul><li><p>Native support for chunked transfer-encoding</p></li><li><p>Broader exchange and platform integrations</p></li><li><p>Cleaner, more maintainable verification pipeline</p></li></ul><h2 id="h-technical-deep-dive" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Technical Deep Dive</strong></h2><h3 id="h-tls-notary-alpha-10-the-game-changer" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0"><strong>TLS Notary Alpha 10: The Game-Changer</strong></h3><p>The core performance improvement comes from TLS Notary alpha 10's architectural overhaul. The previous alpha 5 implementation relied heavily on an "online" phase where the client, notary, and API server interacted in real-time, constructing the TLS connection using garbled circuits. This was inherently latency-sensitive - slow connections to our notary could drag the entire process down, occasionally causing timeouts.</p><p>Alpha 10 shifts much of this computational work to an "offline" phase, where the client and notary handle cryptographic proofs without tying up the API connection. This dramatically improves reliability and reduces the impact of network latency on verification times.</p><p><strong>Quicksilver Proving System</strong>: The offline phase now uses Quicksilver, a proving system based on Vector Oblivious Linear Evaluations (VOLE). Compared to the previous JKO13 garbled circuits, Quicksilver delivers substantially faster proof generation - like upgrading from dial-up to fiber for cryptographic operations. Combined with alpha 10's round optimizations in the MPC engine, this creates a much smoother user experience.</p><p><strong>MPC-TLS Architecture</strong>: We continue to use Multi-Party Computation TLS over alternatives like ZK-TLS because it's fundamentally more censorship-resistant. Unlike centralized proxy solutions that exchanges could block, MPC-TLS permits direct or flexibly-proxied connections, ensuring platforms and users can always trust the verification process.</p><h3 id="h-keyrings-security-enhancements" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0"><strong>Keyring's Security Enhancements</strong></h3><p>Beyond the TLS Notary upgrade, we've implemented significant security improvements:</p><p><strong>Contextual Integrity</strong>: Our verification now requires users to reveal all HTTP headers and the complete JSON response structure (keys without sensitive values). This prevents malicious actors from injecting fake data into unexpected fields or headers that could fool our verifier. We enforce verification of claims within their known JSON path in the authenticated API response, ensuring every claim is legitimate.</p><p>Think of it like checking a passport - we don't just verify the name, we check the issuer, format, security features, and context. A claim of "verified: true" is only meaningful when we can prove it came from the right field, in the right response, from the right API endpoint.</p><p><strong>Enhanced API Compatibility</strong>: Some exchange APIs use chunked transfer-encoding, which TLS Notary's built-in parsing couldn't handle cleanly. This forced us into workarounds that were harder to maintain and potentially weakened our contextual integrity checks.</p><p>Our solution adds native chunked encoding support and enhances TLS Notary's utilities to automatically enforce contextual integrity. This means cleaner integrations with complex APIs and more robust verification across different data sources.</p><figure float="none" width="516px" data-type="figure" class="img-center" style="max-width: 516px;"><img src="https://storage.googleapis.com/papyrus_images/180dd02b9849f29314662e40ddc92944.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAIAAAD8GO2jAAAACXBIWXMAAAsTAAALEwEAmpwYAAAD3ElEQVR4nLWWXUzTUBTH64sxzs9ofCBjfgwwjshilak4FRf8GNGHufgwvwIvgtMoYvyI+BETB/qEAsaYqPNlEcRFSIxgMIis0YQl6zQh0206kzVthzGr3g0f2rVmu1jLVmBOPDnJuvb0/s/v3nPPLSL8Z0OmjMBxLyIxdK1OvA4TxDQIUBR9qv5MmX6zVOZIrfVWSytF0RO9BUAMgFhWAqKFCSLKMCRJhgkCACBkZ+MEoGam/Rz9yXLcJAGSEZLCFqOxIE+JIIjf7x8TOFJrdXZ1G1D07eAgy3FgAqMoeqJHAIAow1AUzfOJNWvK5y/Inzl7bnL9oMBoPC4IwtXTZy1G45QJThnAchwk/jNFNbXHnc6nAMRK1eovoRBcokynkgTyj8SANMkxAZIkAQAsx9VVV5+zWkWm3AhkBO7df9A/MMBy3JdQaLVSmRJjMz3KMLL3pQHyAoFAEC6gIAhVJlNTQ4MsBMiZwOl86nJhqVqIvfd4StUFsrVETVpFMEBeAMe9JEmyHAezNm3bZr99O5sEsyXAcW8gEBSn5XVfnwFFp0cgEAieqKv3+Xy+D35Yv7CcDCj6orsb3hE9tcjj7mQGpAu4XNisOQtx3BsmCHF3CILQYX9YubEsbalzIcBxb8WOnT09vW63O5V+TEzHgKJDGDYNBErV8t8VMrYh4bPma9dg5xAhciEgSbKnp7e947HH4yks0tlszWI3BwDoNZqAzwfJ/qlVQAsGQwqF6ubNu2IuV+rr66qrRYhcCOCEtLXd6ex8As8vhUJlszXzfAIAMBKJlKrVI5EIrK7cN9pv/SQmTY/kKYsbGmw8n2A5rspk0ms0YoKj8bhsH5yQAP7cu//g2bPnLMfBHKMMs3hJ4YmTF3g+QVG0xWjUazTtdjvz/Uda2aQRkCQ5GYF0HwAQKyzS1dSc5vlEshv6fBajsUSZX2uxtNvtQxj2uq/v29evacNJR5AhACAWZRhpRuqCdWZzFdSALWQIw85bj5kNFaVqdWXZJrOhAvr+yt16TfH1S5flBeBwafpw/QuLdAgyw+FwOhzOj/5P0oB4DIRDn0X/OPw+QlPyAu0dj2UJQKowurqeHzp0dOeufQqFav2GHSXaLSXaLQiyYOlSrRYt16Ll63TbN2/dk6csvnjluog7NYGUAxpF0cFgCPqbN+5374bFv9BpekQYb2MCYYJwubCX/a/g11Wms6k+43j0CMZnHpY8n3C73Y2NTWlZ/iEIE0RLaxs8/TOLr7PzSWPTDdWyFS2tbQMDg5kxcJ4PHDwsTzC5AQBWriqeO28R/PI17TVn89ZfCPyL/QLlP6VCAde3qgAAAABJRU5ErkJggg==" nextheight="800" nextwidth="800" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><figure float="none" width="515px" data-type="figure" class="img-center" style="max-width: 515px;"><img src="https://storage.googleapis.com/papyrus_images/13728b92e1fd0d991a2c1565c6485800.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAIAAAD8GO2jAAAACXBIWXMAAAsTAAALEwEAmpwYAAAD3ElEQVR4nLWWXUzTUBTH64sxzs9ofCBjfgwwjshilak4FRf8GNGHufgwvwIvgtMoYvyI+BETB/qEAsaYqPNlEcRFSIxgMIis0YQl6zQh0206kzVthzGr3g0f2rVmu1jLVmBOPDnJuvb0/s/v3nPPLSL8Z0OmjMBxLyIxdK1OvA4TxDQIUBR9qv5MmX6zVOZIrfVWSytF0RO9BUAMgFhWAqKFCSLKMCRJhgkCACBkZ+MEoGam/Rz9yXLcJAGSEZLCFqOxIE+JIIjf7x8TOFJrdXZ1G1D07eAgy3FgAqMoeqJHAIAow1AUzfOJNWvK5y/Inzl7bnL9oMBoPC4IwtXTZy1G45QJThnAchwk/jNFNbXHnc6nAMRK1eovoRBcokynkgTyj8SANMkxAZIkAQAsx9VVV5+zWkWm3AhkBO7df9A/MMBy3JdQaLVSmRJjMz3KMLL3pQHyAoFAEC6gIAhVJlNTQ4MsBMiZwOl86nJhqVqIvfd4StUFsrVETVpFMEBeAMe9JEmyHAezNm3bZr99O5sEsyXAcW8gEBSn5XVfnwFFp0cgEAieqKv3+Xy+D35Yv7CcDCj6orsb3hE9tcjj7mQGpAu4XNisOQtx3BsmCHF3CILQYX9YubEsbalzIcBxb8WOnT09vW63O5V+TEzHgKJDGDYNBErV8t8VMrYh4bPma9dg5xAhciEgSbKnp7e947HH4yks0tlszWI3BwDoNZqAzwfJ/qlVQAsGQwqF6ubNu2IuV+rr66qrRYhcCOCEtLXd6ex8As8vhUJlszXzfAIAMBKJlKrVI5EIrK7cN9pv/SQmTY/kKYsbGmw8n2A5rspk0ms0YoKj8bhsH5yQAP7cu//g2bPnLMfBHKMMs3hJ4YmTF3g+QVG0xWjUazTtdjvz/Uda2aQRkCQ5GYF0HwAQKyzS1dSc5vlEshv6fBajsUSZX2uxtNvtQxj2uq/v29evacNJR5AhACAWZRhpRuqCdWZzFdSALWQIw85bj5kNFaVqdWXZJrOhAvr+yt16TfH1S5flBeBwafpw/QuLdAgyw+FwOhzOj/5P0oB4DIRDn0X/OPw+QlPyAu0dj2UJQKowurqeHzp0dOeufQqFav2GHSXaLSXaLQiyYOlSrRYt16Ll63TbN2/dk6csvnjluog7NYGUAxpF0cFgCPqbN+5374bFv9BpekQYb2MCYYJwubCX/a/g11Wms6k+43j0CMZnHpY8n3C73Y2NTWlZ/iEIE0RLaxs8/TOLr7PzSWPTDdWyFS2tbQMDg5kxcJ4PHDwsTzC5AQBWriqeO28R/PI17TVn89ZfCPyL/QLlP6VCAde3qgAAAABJRU5ErkJggg==" nextheight="800" nextwidth="800" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><h2 id="h-why-this-matters-for-defis-future" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Why This Matters for DeFi's Future</strong></h2><p>Fast verification isn't just a nice-to-have - it's make-or-break for mainstream adoption.</p><p><strong>For Protocols</strong>: Higher user conversion, lower bounce rates, institutional-ready compliance without data liability.</p><p><strong>For Users</strong>: Prove you're legitimate in seconds, keep your privacy intact, access the same opportunities as institutions.</p><p><strong>For the Ecosystem</strong>: This is how DeFi scales without becoming TradFi. Verified access that preserves crypto's core values.</p><h2 id="h-whats-next" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>What's Next</strong></h2><p>We're not stopping here. Alpha 11 integration is already planned, new data sources are coming, and verification times will keep dropping.</p><p>Fast, anonymous, bulletproof verification. That's how we bridge institutional capital and user privacy. That's how DeFi grows up without selling out.</p><p>Ready to integrate verified access into your protocol? Keyring Connect takes 3 hours to set up and 3 minutes for users to verify. No passport selfies required.</p><p>Read on X: </p><div data-type="twitter" tweetid="1946229387231432917"> 
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/KeyringNetwork">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/22a628bc255399b6ffba16aa1070e3e1.png">
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/KeyringNetwork" class="twitter-displayname">Keyring Network</a>
              <p><a target="_blank" href="https://twitter.com/KeyringNetwork" class="twitter-username">@KeyringNetwork</a></p>
    
            </div>
            <a href="https://twitter.com/KeyringNetwork/status/1946229387231432917" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png">
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      <a class="twitter-content-link" href="https://t.co/AYjPqeGzOS" target="_blank">x.com/i/article/1946…</a>
      
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/KeyringNetwork/status/1946229387231432917" style="margin-right:16px; display:flex;">
            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.com/editor/twitter/heart.png">
            4
          </a>
          <a target="_blank" href="https://twitter.com/KeyringNetwork/status/1946229387231432917"><p>4:23 PM • Jul 18, 2025</p></a>
        </div>
    
  </div> 
  </div><p><br><strong><em>Learn more</em></strong><em>: </em><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://keyring.network"><em>keyring.network</em></a><em><br></em><strong><em>Integration docs</em></strong><em>: </em><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://docs.keyring.network"><em>docs.keyring.network</em></a><em><br></em><strong><em>Contact</em></strong><em>: </em><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="mailto:contact@keyring.network"><em>contact@keyring.network</em></a></p>]]></content:encoded>
            <author>keyringnetwork@newsletter.paragraph.com (Justin Martin)</author>
            <category>mpc-tls</category>
            <category>zk</category>
            <category>zero-knowledge</category>
            <category>web3</category>
            <category>defi</category>
            <category>decentralised</category>
            <category>finance</category>
            <category>zkps</category>
            <category>tlsn</category>
            <category>tls-notary</category>
            <category>keyring-network</category>
            <category>keyring</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/2f084e45aa6612d8f8083fa3a01a9a09.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[SEC's Innovation Exemption: Why This Is DeFi's Trust Breakthrough]]></title>
            <link>https://paragraph.com/@keyringnetwork/secs-innovation-exemption-why-this-is-defis-trust-breakthrough</link>
            <guid>TXUAmgZqdLjhIbjn8aPS</guid>
            <pubDate>Wed, 11 Jun 2025 14:52:42 GMT</pubDate>
            <description><![CDATA[This week's SEC roundtable made it clear: Chairman Paul Atkins is exploring an "innovation exemption" that could fundamentally change how DeFi operates in the United States. While some might see this as loosening oversight, we see it for what it really is, validation that endless document uploads and passport selfies aren't real compliance.The End of Passport Selfie TheaterTo understand why this SEC shift matters, we need to remember where DeFi was just months ago. Operation Chokepoint 2.0 ne...]]></description>
            <content:encoded><![CDATA[<p>This week's SEC roundtable made it clear: Chairman Paul Atkins is exploring an "innovation exemption" that could fundamentally change how DeFi operates in the United States. While some might see this as loosening oversight, we see it for what it really is, validation that endless document uploads and passport selfies aren't real compliance.</p><h2 id="h-the-end-of-passport-selfie-theater" class="text-3xl font-header"><strong>The End of Passport Selfie Theater</strong></h2><p>To understand why this SEC shift matters, we need to remember where DeFi was just months ago. Operation Chokepoint 2.0 nearly killed the industry in America. The FDIC sent "pause letters" to 23 banks telling them to halt crypto activities. Banks like Signature and Silvergate collapsed under regulatory pressure. Coinbase faced SEC lawsuits. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.dydx.xyz/">DyDx</a> moved offshore. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.sec.gov/newsroom/press-releases/2024-138">Rari </a>shut down. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://opensea.io/blog/articles/taking-a-stand-for-a-better-internet">OpenSea</a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.dechert.com/knowledge/onpoint/2024/7/sec-charges-ethereum-developer-over-liquid-staking-and-swap-prog.html">Lido </a>got hit with Wells notices. The <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://frax.com/">FRAX</a> founder <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/samkazemian">Sam Kazemian</a> had his JPMorgan accounts closed after being told "we have to close anyone's account that we know their primary source of income/wealth is crypto". Gary Gensler's SEC launched case after case and lost virtually every major one, including <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.grayscale.com/">Grayscale</a>, partial losses in <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ripple.com/">Ripple</a>, and failed asset freezing attempts against <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.binance.com/en">Binance</a>.</p><p>DeFi protocols were caught in an impossible position: operate in complete openness (risking regulatory action) or implement traditional KYC that fundamentally broke the user experience with document uploads, passport selfies, and weeks-long approval processes.</p><p>The SEC's shift recognizes what we've known all along: requiring someone to upload their passport to access a smart contract doesn't make DeFi safer, it just creates busywork that looks like compliance without actually providing security.</p><p>Real safety comes from knowing your users are legitimate humans, not from collecting their government IDs in a centralized database that becomes a honeypot for hackers. Just ask the 69,000+ Coinbase users whose <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cointelegraph.com/explained/coinbase-data-breach-2025-what-was-stolen-and-what-you-need-to-know">personal data, government IDs, and financial information were stolen by hackers who bribed overseas support staff.</a></p><h2 id="h-no-more-bullshit-tickbox-compliance" class="text-3xl font-header"><strong>No More Bullshit Tickbox Compliance</strong></h2><p>Here's what the SEC's "innovation exemption" really means:</p><ul><li><p><strong>No more bullshit tickbox compliance</strong> at the protocol level</p></li><li><p><strong>Developers can't be held responsible</strong> for how their open-source code is used</p></li><li><p><strong>Focus shifts to actual user safety</strong> rather than paperwork collection</p></li></ul><p>Removing traditional KYC requirements doesn't eliminate the need for trust. Institutions still need to know their counterparties aren't criminals or malicious actors. Protocols still need to stop industrial farmers gaming their systems. Communities still want fair governance.</p><p><strong>This is exactly the gap Keyring Connect was built to fill.</strong></p><h2 id="h-verified-not-doxxed" class="text-3xl font-header"><strong>Verified, Not Doxxed</strong></h2><p>While traditional compliance asks "Can you prove who you are?", Keyring Connect asks the better question: "Can you prove you're eligible?"</p><p>Instead of passport selfies, users prove verification status through their existing web2 accounts. Think of it like showing your Binance verification without revealing any personal details – you get access based on eligibility, not identity.</p><p>The beauty of zero-knowledge proofs means users can satisfy institutional requirements while maintaining the privacy and sovereignty that drew them to DeFi in the first place.</p><h2 id="h-defis-1970s-moment-has-arrived" class="text-3xl font-header"><strong>DeFi's 1970s Moment Has Arrived</strong></h2><p>As we've written before,<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://paragraph.com/@keyringnetwork/stuck-in-the-1970s"> <u>DeFi is retracing TradFi's evolution at breakneck speed</u></a>. We've seen the emergence of money (Bitcoin), credit (<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://makerdao.com/en/">MakerDAO</a>), markets (<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.uniswap.org/">Uniswap</a>), and derivatives (<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.synthetix.io/">Synthetix</a>) – all following the same sequence as traditional finance, just compressed into decades instead of centuries.</p><p>Now we've reached DeFi's 1970s moment: the compliance inflection point. Just as the Bank Secrecy Act and KYC rules allowed traditional markets to scale systematically in the 1970s, DeFi needs its own trust infrastructure to unlock institutional capital.</p><p>The SEC's regulatory evolution creates the perfect conditions for this breakthrough. Protocols can innovate freely without compliance overhead, institutions get verified counterparties without compromising user privacy, and users maintain sovereignty while accessing institutional-grade yields.</p><p>This isn't just about regulatory relief, it validates our core thesis that DeFi's next phase requires privacy-preserving trust infrastructure. The trillions in institutional capital sitting on the sidelines aren't waiting for less regulation; they're waiting for better verification systems that respect both compliance needs and crypto's core values.</p><p>Traditional KYC creates a binary choice: privacy or access. zkVerified pools eliminate this false choice entirely, letting users prove eligibility without revealing identity. Think of it as DeFi's parallel to how Eurodollars unlocked offshore liquidity in traditional finance – verified access becomes the bridge that brings institutional capital onchain without breaking DeFi's foundational principles.</p><p>Take zkVerified pools as an example, users could potentially access institutional-grade lending that beats traditional savings rates, all without sharing personal data. No passport uploads. No weeks-long approvals. No wallet-to-identity links. Just cryptographic proof that they're legitimate participants.</p><p>Stay anonymous, stay in control, still get in.</p><p>The SEC's innovation exemption goes beyond mere regulatory relief, it's recognition that DeFi's unique architecture requires unique solutions. We're moving beyond the false choice between "wild west" openness and "traditional finance" surveillance.</p><p>While others scramble to understand what post-exemption compliance looks like, we've been building it. <strong>DeFi is growing up, doesn't mean putting on a tie.</strong></p><ul><li><p><strong>Universal verification</strong> across any HTTPS-enabled platform</p></li><li><p><strong>Cross-chain compatibility</strong> for multichain DeFi</p></li><li><p><strong>Privacy-preserving trust</strong> that actually scales</p></li></ul><p>The regulatory landscape just caught up to our vision. <strong>The future of DeFi is verified, not surveilled.</strong></p><br><hr><br><p><em>Learn more about Keyring Connect at</em><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://keyring.network/"><em> </em></a><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://keyring.network"><em><u>keyring.network</u></em></a><em>.</em></p>]]></content:encoded>
            <author>keyringnetwork@newsletter.paragraph.com (Hugh Flood)</author>
            <category>blockchain</category>
            <category>defi</category>
            <category>crypto</category>
            <category>sec</category>
            <category>regulation</category>
            <category>tradfi</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/bbfa9038d0b015588b25e5017117bad2.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[A Quiet Disruption]]></title>
            <link>https://paragraph.com/@keyringnetwork/a-quiet-disruption</link>
            <guid>CGR3jlR4IaRy897FfIRE</guid>
            <pubDate>Thu, 29 May 2025 14:11:26 GMT</pubDate>
            <description><![CDATA[At its core, the emerging DeFi lending market is built around a simple but powerful mechanism:Depositors in DeFi provide USD liquidity.Borrowers use that liquidity to fund leveraged crypto basis trades — typically the difference between perpetual swaps and spot prices across exchanges.This means that DeFi borrow rates are determined by two supply/demand dynamics:The demand for crypto leverage (e.g. via perps), andThe availability of capital from DeFi depositors.Compliance and InsuranceFor DeF...]]></description>
            <content:encoded><![CDATA[<p>At its core, the emerging DeFi lending market is built around a simple but powerful mechanism:</p><ul><li><p>Depositors in DeFi provide USD liquidity.</p></li><li><p>Borrowers use that liquidity to fund leveraged crypto basis trades — typically the difference between perpetual swaps and spot prices across exchanges.</p></li></ul><p>This means that DeFi borrow rates are determined by two supply/demand dynamics:</p><ul><li><p>The demand for crypto leverage (e.g. via perps), and</p></li><li><p>The availability of capital from DeFi depositors.</p></li></ul><h1 id="h-compliance-and-insurance" class="text-4xl font-header">Compliance and Insurance</h1><p>For DeFi lending to achieve mass adoption and rival traditional markets, it must overcome two critical barriers: compliance and operational risk. Emerging solutions are paving the way, but widespread adoption of the following is essential:</p><ul><li><p>Compliance infrastructure (e.g. Keyring) to ensure verifiable, compliant participants.</p></li><li><p>Regulated insurers to underwrite DeFi-specific operational risks at scale.</p></li></ul><p>with these solutions in place, DeFi depositors face a simplified risk landscape:</p><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://en.wikipedia.org/wiki/Interest_rate_risk"><u>Rates Risk</u></a></p><ul><li><p>Borrowing demand: Demand for USD against BTC/ETH collateral drives utilisation.</p></li><li><p>Funding rate: The cost/benefit of going long crypto through perpetual swaps.</p></li></ul></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.spglobal.com/market-intelligence/en/news-insights/research/probing-the-limits-of-initial-margin-wrongway-risk-with-jumpat"><u>Gap (jump-to-default) Risk</u></a>: Collateral value crashing faster than liquidation processes can cover.</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://en.wikipedia.org/wiki/Liquidity_risk"><u>Liquidity Risk</u></a>: Inability to exit if dominating a pool at high utilisation.</p></li></ul><p>As concentration and rates risks are standard in functioning capital markets, gap risk emerges as the primary concern.</p><h1 id="h-the-residual-gap-risk" class="text-4xl font-header">The Residual "Gap Risk"</h1><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/2b33a325944fde2a8b43b851a7286b6f.jpg" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAPCAIAAAAK4lpAAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFK0lEQVR4nEXTa0wUVxQH8FkWJsuyO7uzMzv3Mc+dmZ1lH4CwLFBZqS8ekqBoQU1lixGpT1RoBapSCgW3xSoaWdTWCm0tNW2ISUtqxKr4IAQfqSVt0081qY0m1qQx0U9t0mawSZOT+/H+7jnnfwnCgoh0nEaidBt20oIXCBBJHBIxr/CCyiEUjUbj8VLM8z5FVxTN8OvhbCNo6JqmCYLK8z6JV71A9rACAKKXk1iP5HaLLrfgpATShgkLidNt2GqDpP1/wIsESfJBJCyKl3w7fu7yxMTu7Vt01Wfoejho5OUE88JGdsCvqX5Z1hRJ57ECOAECEQKZY3iPR6BpwUnxmTZMWG0ww45IGyYdmGKQF/BmmYDMIby1sXF8dKSladuZoRM1K8r9ilBSGC6NRYqjoWhuIBjwG7ru13RF1ngki1iRsA9DCXA8w4q0W3RRPJFhh5kOZBoO5GYQy2EOChwSEBJVVT3cvrcyXrpkcdn42bP1K6tlzOWG1GiuXpwfLI4G88LZQUMP+v26qimiT5VUVVIFKCEoQiByjODxCESmA80DkHQgioYISwhLLOBdDIzl51fF44KITg8fO9rblx8yqsrj6+trKpctjOUb4WyfX5NzAv6CkBEJ+LN1UyqNxQpz8kQs88gsjCTCaudIm5fmFBcj2uxQkjUOCi4GuhjkpJjKFZWXL17o3/d2T3vn3OzU88e/PXvy8IfZ6XuzV7+fnWrb3hTQfdl+TRWxJgkhQ5cRWlhYpIgqgmYHCMqEhQQ2O5fpQKQdZ8434WEx5GVN14uLCu/dmtnVvGcklfp17s7E2NhI6kSyq++ToZMzk5Pjo5+dGjjU+Gp9QUEkkVhXVbmsbNFLiYaGUChCM9DDCk4373BigrBy/+3ZgZxuTM/vGWDZSTEbEw0jJ0c+Oj7099OHd29cm7ny3d3pmzOTkz/evD751Zf7t7U01zd0NDVNXxj/89H9x7/fv/TN+U1Nm0VJlSTNw/BZFCbtmLCSIGMesNkhRSHBzL7gBbyH5cKh0NGD/XduXDuTGv751vWnfzz456/nz548+mVu7uLEpSN9g4M9yduXLjz46c7U1+Od25sjAYOmvQDwoXC+JBlOCrto0RyR1c6ZhslAyPtYzkwqADzNgli0YEtiQ3NiU+9b+/e27BkeHPxwaPj2zMz1qzM3r0xPTVycGDt36r2+12qrAppPxHxuJEeSVBcNRUmn3JCDPoKwcKZhgwQJ0kiUZvM6KUC5AW1GlqcZyAtCKOCvW726r6trsPedhroN6+vWtrV2rqqurYgvX7tyVUEkoqo+VZV9oqirGo8lD4slyfBwij0LEYQVEBbOPK0mQDqQgwIuN2AY6GUxQgLGiOc5EdOLi8O7EzVtrzfWr6lbUvayjaTT01wEYX/xFAB4EYsQIIgkJ40tNkhYQaYdmR0QFkhYuTTS/G6ZJoAoN3DR0MsiB+XlWGCo8isrynY21m5eW724pMjQApXl5UXR4qXxstqKivqa6qXxeNAwMIAICYpqsJzIQV+WE7sZmSAIYN4+PyILCTLs0O7kXG7gYZGLhiWxwh0b1yXWVLc2bWhv2bqvdcfO5qZkT8+xD44ceKNt385tqXcPfHq8fyjZNdDbtbd11/KlywJGSFYMSdZlJSDKQYKwoDQSvUhqFoUc89NHWHG5gSipR5PdQ8nuge6O86Op1Ps9Y6dTHx8f+OL0yfHPRw/1dHbu2JTs7ujv7hjo7x48MnD40MGO9jcrKqpiRQsX5BcHshf49Nx/Ac1DTQxOLUZxAAAAAElFTkSuQmCC" nextheight="350" nextwidth="750" class="image-node embed"><figcaption htmlattributes="[object Object]" class="">A "grey swan" event is a known and possible event that is considered unlikely but could have a significant impact if it does occur. Being attacked by a grey swan on a countryside walk is a great irony.</figcaption></figure><p>With compliance and operational insurance solved, the primary remaining risk is gap risk.</p><div data-type="callout" type="info"><link rel="preload" as="image" href="https://paragraph.com/editor/callout/information-icon.png"><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.com/editor/callout/information-icon.png" class="callout-button"><div class="callout-content"><div><p><strong>Gap Risk </strong>Manifested in credit models as the Jump-to-Default risk: The risk that collateral value crashes faster than liquidation mechanisms can respond.</p></div></div></div></div><p>In highly volatile events (e.g. a 30–50% crash in minutes), over-collateralised loans can still default.</p><p>However, with conservative Loan-To-Value (LTV) settings, automated liquidations, and insurance backstops, this risk becomes manageable and quantifiable, similar to how volatility risk is priced in options markets.</p><h1 id="h-could-defi-lending-pull-capital-from-sovereign-debt" class="text-4xl font-header">Could DeFi Lending Pull Capital From Sovereign Debt?</h1><p>If DeFi deposits:</p><ul><li><p>were properly insured and compliant</p></li><li><p>consistently offered yields higher than central bank debt (government bonds)</p></li></ul><p>Even with some embedded gap risk, there could be a gradual reallocation of capital. European Government Bonds (EGBs), yielding* 2–4% and T-bills yielding ~4.3% could face marginal outflows toward DeFi lending opportunities yielding 6-10%.</p><p>This wouldn’t be a wholesale shift because systemic players (banks, insurers, pensions) remain tied to regulatory capital rules. But<strong> </strong>at the margin, flexible allocators, HNWIs, family offices, corporates, would move.</p><p>In fact, we are already seeing the beginnings of this in DeFi markets where groups like the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://turtle.club/">TurtleClub</a> are coordinating efforts from HNWI, Family Offices and Treasuries into such lending markets. </p><p>At present this seems to be viewed more like an alternative to private credit, due to the various, and significant, compliance and operational risks inherent but the removal of credit risk via smart contracts is extremely attractive. The DeFi rates markets, are also shielded from the direct effects of inflation mis-management and political risk. Political risk remains tied to regulators for now but the tailwinds are positive and significant so we can assume this risk will decrease dramatically, at least over the next 3-4 years.</p><p><em>*DE10y @ 2.535%; IT10y @ 3.637% and US10y @ 4.31% as of 3-May-25</em></p><h1 id="h-defidollars-a-historical-parallel-to-eurodollars" class="text-4xl font-header">DeFidollars:<em> </em>A Historical Parallel to Eurodollars</h1><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0e5187889b0702b829a4842ae57ae1b8.png" blurdataurl="data:image/png;base64,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" nextheight="534" nextwidth="716" class="image-node embed"><figcaption htmlattributes="[object Object]" class=""><strong><em>"Eurodollar Market Booming in London" by </em></strong><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out last-byline css-ojhyzr e1jsehar0" href="https://www.nytimes.com/by/peter-t-kilborn"><strong><em><u>Peter T. Kilborn Special to The New York Times</u></em></strong></a><em>,</em><strong><em> </em></strong><em>highlighted the rapid growth in the London Eurodollar market since its inception in the early 1960s. The main concern of governments at the time were tax evasion, lack of prudential oversight and reckless leverage. </em>This echoes DeFi’s current challenges.</figcaption></figure><blockquote><p><em>Just as Eurodollars quietly shifted monetary power from national governments to market participants, DeFi lending could shift credit creation toward decentralised, crypto-collateralised systems over time.</em></p></blockquote><p>The following excerpt, a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.nytimes.com/1971/04/28/archives/dollars-and-eurodollars-europeans-fear-that-payments-system-may.html">1971<em>&nbsp;</em>article in the New York Times</a>, captured how the Eurodollar system had already begun to operate like a recursive loop — not unlike leveraged strategies in DeFi today:</p><blockquote><p><em>A foreign business — say, West German manufacturer— earns dollars by exporting goods to the United States. The business turns those dollars over to a German commercial bank, which exchanges them for marks at the Bundesbank, the West German central bank.</em></p><p><em>The Bundesbank adds those dollars to its reserves and then deposits the dollars with the Bank for International Settlements in Basel, Switzerland, to earn interest on them.</em></p><p><em>The B.I.S. lends the dollars it acquires in the Eurodollar market - say, in London - in order to earn interest to cover its interest obligations to the Bundesbank or other central banks.&nbsp;</em></p><p><em>The Eurodollars offered by the B.I.S. in London are borrowed by an Italian concern that pays them to a German company, which puts them in a German commercial bank. That bank exchanges the dollars once more for marks at the Bundesbank. And the Bundesbank adds the dollars to its re serves for the second time.&nbsp;</em></p></blockquote><p>This recursive dollar loop exemplified how the Eurodollar system operated in practice</p><ul><li><p>Eurodollars were offshore U.S. dollar deposits, outside U.S. regulation.</p></li><li><p>They created a parallel dollar liquidity system, governed by market forces rather than central banks.</p></li><li><p>Over time, the Eurodollar market grew larger than the domestic U.S. deposit base and shaped global liquidity.</p></li></ul><p>A similar pattern is re-emerging in what might be termed <strong>DeFidollars</strong>, where stablecoins and crypto-collateral drive a recursive, extraterritorial dollar credit system that bypasses traditional regulations to enable market-driven credit creation through decentralised, crypto-collateralised mechanisms.</p><h2 id="h-a-parallel-funding-market" class="text-3xl font-header">A parallel funding market</h2><table style="min-width: 50px"><colgroup><col><col></colgroup><tbody><tr><th colspan="1" rowspan="1"><p><strong>Eurodollars (then)</strong></p></th><th colspan="1" rowspan="1"><p><strong>DeFidollars (now)</strong></p></th></tr><tr><td colspan="1" rowspan="1"><p>Offshore dollar deposits outside U.S. control</p></td><td colspan="1" rowspan="1"><p>DeFidollar deposits outside U.S. control</p></td></tr><tr><td colspan="1" rowspan="1"><p>Created a parallel yield curve</p></td><td colspan="1" rowspan="1"><p>Crypto-influenced funding curves</p></td></tr><tr><td colspan="1" rowspan="1"><p>Driven by regulation arbitrage</p></td><td colspan="1" rowspan="1"><p>Largely unregulated markets drive arbitrage</p></td></tr><tr><td colspan="1" rowspan="1"><p>Forced adjustments to monetary policy</p></td><td colspan="1" rowspan="1"><p>Could pressure gives demand and FX stability</p></td></tr></tbody></table><p>The important difference is that DeFi lending would be fully collateralised, transparent, and programmatically enforced, whereas Eurodollar markets were opaque and unsecured. </p><p>Unlike the opaque, unsecured Eurodollar markets, DeFi lending’s transparency and programmatic enforcement could amplify its disruptive potential.</p><h2 id="h-how-did-eurodollar-participants-make-money" class="text-3xl font-header">How did Eurodollar participants make money?</h2><p>Building on the DeFidollar parallel, where market-driven systems bypass traditional controls, Eurodollar participants profited by exploiting structural asymmetries, strategies that DeFi platforms can replicate:</p><h3 id="h-regulatory-arbitrage" class="text-2xl font-header">Regulatory Arbitrage</h3><p>Eurodollar deposits avoided U.S. capital controls, reserve requirements, and deposit insurance costs. Banks could lend USD offshore at higher rates than they paid depositors, sidestepping U.S. regulation entirely.</p><div data-type="callout" type="info"><link rel="preload" as="image" href="https://paragraph.com/editor/callout/information-icon.png"><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.com/editor/callout/information-icon.png" class="callout-button"><div class="callout-content"><div><p><strong>DeFi Parallel</strong> Decentralised lending apps operate outside Basel rules, using smart contracts to offer dollar-denominated loans collateralised by crypto, capturing spreads without a banking license.</p></div></div></div></div><h3 id="h-spread-capture-and-intermediation" class="text-2xl font-header">Spread Capture and Intermediation</h3><p>Eurodollar dealers profited from pricing liquidity risk, especially in an opaque, bilateral interbank system. Access to dollar liquidity, especially in times of stress, commanded a premium.</p><div data-type="callout" type="info"><link rel="preload" as="image" href="https://paragraph.com/editor/callout/information-icon.png"><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.com/editor/callout/information-icon.png" class="callout-button"><div class="callout-content"><div><p><strong>DeFi Parallel </strong>DeFi lenders earn yields by pricing basis trade demand, with liquidity providers and vault creators manufacturing synthetic credit products, mirroring Eurodollar brokers’ offshore loan pricing.</p></div></div></div></div><h3 id="h-leverage" class="text-2xl font-header">Leverage</h3><p>Offshore banks reused Eurodollar deposits as reserves, creating more USD credit than existed in the U.S. system. Chains of interbank loans generated shadow leverage far beyond actual reserves, unchecked by central banks.</p><div data-type="callout" type="info"><link rel="preload" as="image" href="https://paragraph.com/editor/callout/information-icon.png"><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.com/editor/callout/information-icon.png" class="callout-button"><div class="callout-content"><div><p><strong>DeFi Parallel</strong> Recursive lending loops, leveraged vaults, and liquid staking derivatives build credit pyramids atop crypto collateral, offering full on-chain transparency unlike Eurodollar opacity.</p></div></div></div></div><h3 id="h-creation-of-a-parallel-yield-curve" class="text-2xl font-header">Creation of a Parallel Yield Curve</h3><p>The Eurodollar market birthed LIBOR, a global benchmark rate set by market participants, not central banks.</p><div data-type="callout" type="info"><link rel="preload" as="image" href="https://paragraph.com/editor/callout/information-icon.png"><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.com/editor/callout/information-icon.png" class="callout-button"><div class="callout-content"><div><p><strong>DeFi Parallel</strong> Lending protocols like Pendle shape crypto-native yield curves, pricing time and risk independently of state control.</p></div></div></div></div><p>These mechanisms highlight how Eurodollar markets thrived on regulatory and structural gaps, a playbook DeFidollar markets are adapting with greater transparency and automation. Yet, significant challenges remain for DeFi to scale these opportunities.</p><h1 id="h-headwinds-and-challenges" class="text-4xl font-header">Headwinds and Challenges</h1><p>While DeFidollar markets offer significant profit potential, scaling these opportunities requires overcoming key challenges:</p><ul><li><p><strong>Gap Risk Management</strong>: The DeFi lending landscape is nascent in risk management practices. At present, and to our knowledge, no lending market has published its analysis on collateral limits with any sort of formal rigour. There needs to be a dramatic upgrade in the market risk management frameworks.</p></li><li><p><strong>Liquidity Crunch Events</strong>: Sudden liquidity vacuums could still cause temporary disruptions.</p></li><li><p><strong>Regulatory Retaliation</strong>: Governments could seek to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.ft.com/content/82ce5c18-ef6c-40ff-b9ba-c796a5562548">restrict</a> or heavily regulate large-scale DeFi lending activity if it threatens sovereign funding models.</p></li><li><p><strong>Scaling Challenges</strong>: Deploying hundreds of billions into DeFi lending without yield collapse or system stress will require serious scaling of infrastructure and risk management tools.</p></li></ul><h1 id="h-what-next" class="text-4xl font-header">What Next?</h1><p>To profit from the DeFidollar revolution, focus on owning the bottlenecks where value accrues, such as:</p><ul><li><p><strong>Programmatic Credit Issuance</strong>: Create automated, transparent lending systems that issue crypto-collateralised credit at scale, capturing spreads without regulatory overhead.</p></li><li><p><strong>Yield Curve Creation</strong>: Develop protocols or platforms that shape DeFi-native yield curves, to price risk and time independently of traditional finance.</p></li><li><p><strong>Risk and Compliance Infrastructure</strong>: Build tools, like Keyring, to ensure verifiable identities, manage gap risk, and integrate regulated insurance for operational stability.</p></li></ul><p>With transparency, automation, and smart collateral as core strengths, DeFidollars could forge a more resilient shadow banking system than Eurodollars. Just as the Eurodollar market enriched intermediaries who mastered its asymmetries, the Defidollar era will reward those who dominate issuance, risk management, and infrastructure.</p>]]></content:encoded>
            <author>keyringnetwork@newsletter.paragraph.com (Alex McFarlane)</author>
            <category>defi</category>
            <category>eurodollars</category>
            <category>blockchain</category>
            <category>stablecoins</category>
            <category>lending</category>
            <category>decentralised</category>
            <category>crypto</category>
            <category>yield</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/1a36b4b13363dc1d89b8880c9d12dfa5.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[Stuck in the 1970s]]></title>
            <link>https://paragraph.com/@keyringnetwork/stuck-in-the-1970s</link>
            <guid>aXUb64gBty78X8siHZH5</guid>
            <pubDate>Wed, 07 May 2025 12:13:04 GMT</pubDate>
            <description><![CDATA[DeFi is charting a familiar course, eerily replicating TradFi's journey at lightning speed. Using historical milestones, DeFi's present state is reminiscent of 1970s TradFi: ready to usher in a new wave of compliance infrastructure and liquidity solutions. ]]></description>
            <content:encoded><![CDATA[<p>From Satoshi’s Bitcoin white paper in 2008 to today’s institutional capital inflows, DeFi has evolved from a cypherpunk dream of financial freedom to a global force. Yet, amid the noise of memecoins and on-chain speculation, its founding ideals of decentralisation and empowerment can feel distant. This rapid evolution, however, hints at a deeper pattern, one we’ll explore as crypto retraces the milestones of traditional finance (TradFi) at an unprecedented pace.</p><p>DeFi isn’t reinventing finance, it’s retracing TradFi’s evolution on a compressed timeline.</p><p>Coinage, credit, markets, derivatives: each DeFi primitive mirrors a historical milestone. Now, just like TradFi in the 1970s, crypto faces its compliance moment. Trust infrastructure, like emerging identity and compliance tools, is the inevitable next step to scale capital without compromising principles.</p><h2 id="h-a-familiar-path-accelerated" class="text-3xl font-header">A Familiar Path, Accelerated</h2><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/dafec42da01168a84c5a440b07ce173b.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAANCAIAAABHKvtLAAAACXBIWXMAAAsTAAALEwEAmpwYAAAEb0lEQVR4nC3Q228UVQAG8OleZs6cc3rmzG3P3Ha7O3Nm2Nl2u9ttty1d2m6xF6rQYltLi2AhBQQUQQlWHiQm9UHjheirD/wBxkTjJYaEmGDkwdCQaEwDSCA8GiEhSoIhWlMx+R6/fL/kEyBEls06u7hbsJhlKFQJY3/92vd3f/4uLvOULGIVJ1LpsaHyOyv7zr48t/ra3OvL41RrlWQAEJQIehKgYCvLiEaYa/xw6etHt9aen51IpKAAIbQdo9IVuAVmMhVhxCP/xk9X7l2/VOmO0gggDQGCtg/4B2f79u6sL+3uP3OoyQOWTIuQIElBMsVpAm1HO39yz3vHn5vsLrx77sTGg5sHFp9OpkUBIWTbeqWcL8Zt9YGqZek+z91Y++be9c+rdS4SADTkMDrWlzfV1riQMSns7XDH+vxEOi1jKOFNQKSoLWetLDQ/PjH94bHJj946tPHX7SNLU2kgCRhjy6b17vxAp/PBq7Nv7B8MuHtz7YsHv35Z6+VpDCBBlqlsq9iWBmaGSk/V8o2qu6sZtgBJRhCoGJlEpCjk1qHJ+kjVX51v3Pz07Y2/7xxZmm5JJgVCsO1oY/3+qbn6wfHSVIOHoXvjx8/+vP1tV3eQkiVMMSSY52g9ZpGnjfbklme6KpVcEgOweT1qNVuTWK6Vc6tLI+eXt19cXbx1+cLGw/XDS1OJZGoT0E3lhbHSJ8eG9zWjvcNxMXKuX/3q8e+/9PYWRVmCWEqkko6r8xz1dNJfcmYm2jO2ImJZVhEgWMZIRHLGVqca/P3Dg2cWBq6tXdzY+O3A4q5EMi0Qoji2wUP3zfmeC68MHRwvhqG7fvXyPw/v1/tiISFYObvebOSjQKOySWGUo0GB5TtC1cuIspSUJaBCqLVCVbEZjbI6VeWzp198dPfK8r5nhBZRwJg4th5Eztw2/6UdkctIwL0769ce/3F/Yvf4yNzU/lPH95w8Glbbky3JdEpMCAkv8AZnJhvP7tw6ORZ2lVpNhRo6NTQJyCKQdYMCBLb2xvV6GStUADJgTLWzrK+S7Q31DGO8yN8+t3J65cTk0sLiyaPjC7OlxgDvKqumKQOZEBR1x53NRs+O0aHZqflTR0dmpzK2hRVCKEEYYYVQTYUEKQbNB67geSwuc8uxqh1+rZjNFdowURCBKlMznhv1VGujzahecyOu2QwiZLCM3x5F9eqWvlpbqWiHvH1rjRcDiJGiUqwoWCH/GRQT4mUNoTkY9/eEPMr7xSCIQ93QvVzWsnWCYTolqroeVNvz8RaHByznyQAajNl+m1+N/WrscZ8aWsF3Rif6CX0y/T+gUAVj7Li6wH2r3FFor23hcVjsKk3Pz3T0dFgWQUiWRIAVkvEclsuqjJmOA2RENVVlpuXnCqUwG3g+d8K4MD0zrOoagAgiDBHChFBVkWXEmC5QReE8m2HMYCZVCA/DjnLIGAEigECmGlEMw3RsoutYobKMMMYQQkKVjJPp7Ilcj1FKGsMVZjFRAhAiADZLhBBJQqqm/gt1veMb5BDC1AAAAABJRU5ErkJggg==" nextheight="798" nextwidth="1920" class="image-node embed"><figcaption htmlattributes="[object Object]" class=""><em>"What happened, happened and couldn't have happened any other way."</em> Morpheus’s words in The Matrix reflect the inevitable evolution of financial primitives, as both TradFi and DeFi share the same ordered timeline.</figcaption></figure><p>Morpheus’ words, underscore the natural progression of financial systems, a path both TradFi and DeFi have traced.</p><p>Finance has long evolved by fostering trust, expanding access, and simplifying complexity—from Mesopotamia’s coins to global markets, each step addressed a new challenge. Crypto accelerates this journey: Bitcoin established digital currency, MakerDAO pioneered permissionless lending, Uniswap opened global markets, Synthetix brought derivatives, and Pendle innovated yield strategies.</p><p>Like a system following the path of least action in physics, financial primitives emerge in a logical sequence driven by necessity rather than chance.</p><h2 id="h-a-timeline-of-definancial-evolution" class="text-3xl font-header">A Timeline of (De)Financial Evolution</h2><p>It is remarkable that for each significant financial primitive, both the TradFi and DeFi equivalents became popularised in the same ordering. Looking at the dates each major protocol became a unicorn is an unbiased way of showing this relationship. The only major missing primitives are under-collateralised credit and insurance.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/8000dc18b6b4b3a280e5f150fb89b7d4.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAdCAIAAABE/PnQAAAACXBIWXMAAC4jAAAuIwF4pT92AAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjEsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvc2/+5QAABR9JREFUeJytln1ME2ccx58E9xLjsn+2sDkzdRGdU+csuGZOp6JgQJ1agWrG0cJZ4RycpbWgJ+rp5sn0xotl0kzjM8S6UYZYVM7qOLekmy8V4eJCFwaFbNbEXXy7+nJF5Zbeua4CMSb0+8fl7ve8fO73e57f73mAFA2xLMvI4jiOZVm3281xHMMwXq8XPM94URSf3Wq1WgmCKC4qpml69SotRVE2m40kSbvd/lwASZ4FQRCtVosgSG5e3qKkJARBUBTFcVyrDc2odLt540br+XORA4cG+P1+i8VCEMTuPXsoaichi6IoCKHijefsWeHWra7ublyWxWIhSZKiKILYlJGWhuO419uh/FYIEAz2BYN9A/73/MWLbre7ta3dcRgebzza1t5esplAUZSm6ZPNzab8/IqyMpIkrVarR9bRhkZ4oKalpWVfVdWpUy6/3z/QA+N6XJeF5BoM2Tk5EMIiy4bWS5ckSeruuHwvcEeSpJ9aWvZVV1dVVZVbK9CsrN2lX1VUVnIcpwwXhMAfHV13A4HWCxeeCtHj/n74Q8OX5dVowQa0YEPmWhxB88or92oy1xRt21W2v9a2h3Q6apuO/vjzCfvFc79cabt8sO6breb8psNHuN+vnHa56uvrnU5n9d4DpdvLv4PQDqEkSQ/7noQE3H8QBLFxIKRRAIwEIObNCVPiJr8vf8YAACbFgkWzps2ZOf2TCWC2Km6Wavpbk0K9XwNAPfvjhPh4tVo9M2Hmq2D06y+OGzvmbQzVPwUIBvvAmMkgQq+8MXb8pCnyawwAMZNHj1AAie+C+er35qoTxk59AQAQC8Ds+fMGAwy6zIGAGQuXjxg/bdTE+FET40e8M2NO8pJPV2aMjAt9vhSXsGJBAp6jzcvJxJar8nTpa/W6JRkfjYt9OfkDFYYX6HV6FEX1Ov2sGUnz1IuXLVm6k9wqz9w/9DYVBMHtdrMsy/P8f1v22snmZqfTyfO83+93u92K3ePxKAnMsizHcYIgiKKodBsiDx73PwE+evxIkBXO3vsP7octdwOBcJMgCDzPK02KURTFyIHPSrQoCihFA0JosVhsNhtBEBBCDMMghARBMAyj0Wjk50qGYRAEqXM41q83MgyDYVh9fT2GYXa7XXlHUdTpdGq1WpZl/wf4fN1ms4UgSpRigOM4RVEYtq7QZCYIonTXLmxtKHsVO47jO7aTySnzCwsKcg0GxU7TtF6XnbkK2bhp45aSLVarVRCEp0K0o6y6o7MrcjF6/75ad+ykJEm3b1xv+/VM5Lbr9XWmZS9sqKnx9/SGC23D98eWJmmHrLvgtMs1Nf7DhsZjkVbvnz3f1joUQPtvLbLtyS7o9XV+ZkhtqKm5fvWqDH4oSVJz0+n0xVlKWRsI8Hq9x5ucXq83bOrt6ck3mhdrMnievxe4qXgQCViNpgwGpKUiQwMGr7vH4yHJbRS1s7Or+6+uDsf+0gEhGi5AkRJNiqJUKlV40W7fEVwnGlNXxDuPHBkWQMmaSJIimv46JTV5EbKg8dCh4XowWD6fr9BoRBBEV7TGAfdf91+LMkAQBJPZZC40ryv+/IuSopv/8FEGiKJos9koinKdOVOs1/d2dkYTIMorASHUyCo0GjUaTWJiIkEQkiTVHqxLmbdyuB5IcpSUehmuvsFgn8lsWjA3OSs9NwoAKUKkLJqmTWbT8mWajYWhcyaagPCBwzDM3grr9s2huxfP81E+D0RRxHEcRVHDGkN2TnZaWnr4lqcA/gUofobjZT4zWgAAAABJRU5ErkJggg==" nextheight="2178" nextwidth="2368" class="image-node embed"><figcaption htmlattributes="[object Object]" class="">The dates that each major primitive obtained a (fully diluted) valuation of $1bn as a meaningful and cross-industry metric. The crypto market, being much compressed is often at the mercy of various macro events which are highlighted for context. In general the market has progressed in the same linear way as traditional finance. Labels with more than one primitive are because the $1bn FDV was obtained in the same calendar month.</figcaption></figure><ul><li><p><strong>2000-600 BC: Coinage [DeFi: 2013-2018]</strong><br>TradFi: Coins in Mesopotamia and Lydia standardised trade, replacing barter with trusted money.<br>DeFi: Bitcoin created a verifiable, decentralised digital currency, bypassing central banks.</p><ul><li><p>Mar-2013 Bitcoin becomes a unicorn</p></li><li><p>May-2016 Ethereum becomes a unicorn</p></li></ul></li><li><p><strong>1200-1500s: Banking and Credit [DeFi: 2018-2020]</strong><br>TradFi: Over-collateralised loans and promissory notes enabled trade beyond physical coins.<br>DeFi: MakerDAO’s DAI and AAVE’s pooled liquidity (aTokens) made credit permissionless and composable.</p><ul><li><p>Jan-2018 Maker becomes a unicorn</p></li><li><p>Nov-2020 AAVE becomes a unicorn</p></li></ul><div data-type="callout" type="info"><link rel="preload" as="image" href="https://paragraph.com/editor/callout/information-icon.png"><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.com/editor/callout/information-icon.png" class="callout-button"><div class="callout-content"><div><p>Note that this period, in DeFi terms, was rather extended due to the 2018 round tariffs, followed by Powell's comments <em>“We’re a long way from neutral at this point, probably.”  </em>causing a sell off in the last quarter of 2018. Finally, even though markets had a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://en.wikipedia.org/wiki/Goldilocks_economy">'Goldilocks' </a>period through 2019, this was welcomed by the largest pandemic of modern times at the end of the year, disrupting markets until late 2020.</p></div></div></div></div></li><li><p><strong>1600s-1800s: Capital Markets [DeFi: early 2021]</strong><br>TradFi: Stock markets and corporate bonds funded industrial growth. Central banks like Bank of England/Bank of Amsterdam provide asset custody (gold, securities etc.).<br>DeFi: Uniswap’s 24/7 exchange. AAVE begins listing many "Altcoins" as collateral. FireBlocks MPC tech provides institutional self-custody.</p><ul><li><p>Dec-2020 AAVE <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.tally.xyz/gov/aave/proposal/0">lists CRV</a> as collateral. BAL &amp; SUSHI follow</p></li><li><p>Jan-2021 Uniswap becomes a unicorn</p></li><li><p>Mar-2021 FireBlocks raise 133m (assuming 20% dilution and 5x token multiplier this makes Fireblocks a unicorn. They raised another true PE unicorn in December.)</p></li></ul></li><li><p><strong>1900s: Derivatives and Synthetics [DeFi: late 2021]</strong><br>TradFi: Futures, options, and mortgage-backed securities created layered risk strategies.<br>DeFi: Synthetix derivative infrastructure and Securitize’s tokenised assets (RWAs) enable hedging and structured yield.</p><ul><li><p>Jun-2021 Securitize raised 48m from MS (assuming 20% dilution and 5x token multiplier this makes Securitize a unicorn on a token equivalent basis)</p></li><li><p>Jul-2021 Synthetix becomes a unicorn</p></li></ul><div data-type="callout" type="info"><link rel="preload" as="image" href="https://paragraph.com/editor/callout/information-icon.png"><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.com/editor/callout/information-icon.png" class="callout-button"><div class="callout-content"><div><p>This DeFi period faced severe disruption after the pandemic. COVID-era QE fuelled a spending glut, sparking rampant inflation and the fastest rate-hiking cycle in decades as central banks struggled to regain control. The fallout hit crypto markets hard: over-leveraged prime brokers and projects collapsed, culminating in FTX’s downfall. The Democrats, eager to distance themselves from a disgraced crypto industry, launched an unprecedented anti-industry crackdown nicknamed Operation Chokepoint 2.0. This, combined with the market’s implosion, stalled DeFi market growth for nearly two years.</p></div></div></div></div></li><li><p><strong>1940s-1960s: Retail and Liquidity [DeFi: 2024-2025]</strong><br>TradFi: Mutual funds and credit cards brought finance to the masses, with Eurodollars creating offshore liquidity. Zero-coupon bonds gained popularity, offering yield curve exposure. Money Market Funds (MMFs) became mainstream.<br>DeFi: Ondo built on Securitize and Blackrock's foundations to release the first major institutional MMF. Ethena creates the first major mutual fund, while stablecoins act as DeFi’s global liquidity engine. The new payments cards are technically short term credit cards but DeFi still struggles to capture a true retail credit card facility. Pendle captured the market of yield stripping.</p><ul><li><p>Mar-2024 Ondo becomes a unicorn</p></li><li><p>Apr-2024 Ethena launches at &gt;$1bn valuation</p></li><li><p>Apr-2024 Pendle becomes a unicorn</p></li><li><p>Apr-2024 1Inch launches 1Inch Card in cooperation with Mastercard</p></li><li><p>May-2024 Gnosis Pay powers a unicorn valuation for Gnosis in cooperation with Visa</p></li></ul></li><li><p><strong>1970s: Compliance and Trust [DeFi: expected late 2025-2026]</strong><br>TradFi: The Bank Secrecy Act and KYC rules gave markets ability to systematically scale under clear guidance. Negotiable Certificate of Deposits enabled banks to issue debt of varied duration to generate yield from Asset &amp; Liability Management (ALM). Mortgage-Backed Securities (MBS) and Private Equity (PE) funds emerged.<br>DeFi: Keyring Network creating trust infrastructure for compliance and security, unlocking institutional capital. InfiniFi are creating duration-driven yield with decentralised ALM.</p><div data-type="callout" type="info"><link rel="preload" as="image" href="https://paragraph.com/editor/callout/information-icon.png"><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.com/editor/callout/information-icon.png" class="callout-button"><div class="callout-content"><div><p>The current DeFi market is contending with macro headwinds, notably the renewal of tariffs and growing bond market concerns over the Federal Reserve’s independence. As in 2018, the hope is that the U.S. administration will move away from protectionist rhetoric, creating space to ease pressure on global markets and de-escalate tensions with the FED.</p><p>There is a strong chance that the FED will hold off until at least Q3, both as a signal of institutional independence and, more critically, due to inflation risks. The <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://fred.stlouisfed.org/series/MICH">University of Michigan Inflation Expectations index</a> has surged from 2.6% to 5% since November 2024, echoing conditions in 2022 when the Fed <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.federalreserve.gov/monetarypolicy/2022-06-mpr-part1.htm?utm_source=chatgpt.com">adopted a hawkish stance in response</a> to similar consumer sentiment data.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/515b6899d5358c3072c19f7c4663a2e0.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAALCAIAAACRcxhWAAAACXBIWXMAABYlAAAWJQFJUiTwAAAEDUlEQVR4nCWSUUwadxzH/8kyO5expDULlkWW0ICyGKdXSycq7d02mR5oI3/kdDvrsYkOpZBO6zmgkUOP6BnFFLeqsbRxy7akfS3aSsRL8YymmzBwUUzr0mpkNule7IMvLOr34ffwe/h+8vvkBxYikXgstnYcQRCWlpbisVgqlZqfnxeJRB9KJFlZWSKRCMMwsVhssVhwHAcASCQSqVSqVCoBAGKxWCqVikQiAIBSqcw+9c7i4mLyOKFQCMRi8Z2d3WfPn794+TKRTCaSyb10OpXaisXifR7PyKi/f2DA6XJNTk75/WN+/9j4+I9Ol4tlfU6Xy+lyMYx3cGhoZNTvdt+02x0DLMuyvuRRz/peOr0QiRzxz5w5LZPJ5HI5iqJqtVosFut1eo1GI5fLSbJZqSygKIogGmUyGYQQwzC1Wk1RZo1Go9VqG0wmBEEsljYIIYIg9QaDSqVCEARCKMnNRS+jgKZ729vaCaKRJJvtdgfDeGm6l2G8fR7GbnewrK+rq9vvH/P5ho73AzTd29TY1OdhLJY2ijIzzMDx9DKMlySbGeboXIoy276/UaWv/Yr6BhwcvLkbvKvRXCq9cKHBZDo4eJPJZPb3Xx0eHmYymZ2d3Uwmc3h4uL//KpPJvH79H8/zEBpXV58GAgGSJLe3X1itHRw3vLr6FMdxQRBCobmmxibdjR/A2++Dis/B9vY/tycmFApFQUFBvcEgCEJd3ZVAYDwUmitTl4fDYY/HQ5LNsdhfOI4zjDccDmPYZ7OzjxjGi+O6P9bWSJLsoemNzZTVZpuZ+dlspnQ63adkKzibB0rLwe7untPlKioqQpDzx4Dl6poajhuenX1UXFISDofd7psQGtfX/0ZR1OV28zxfVlZ2AviiqiqRXK83GOx2x0+BQO2XVX1jAVCkArkfNTnMufLTpZeLjwDBYFCj0ahUKgiNf67FCIIIBu/xPI9hmCAss6zPau3Y2noGIeS4YUEQjlUscxzXYDLF4/HWlqt9/WwZ0fyWorBz0JePIu+ey50Kumv1igajCuyl06HQnFarLS4pIcnmeCJBkuT0nTtPolGtVvskGh0ZHbVarRubKYIgBoe4lZUVCOHj+TDHcQTROP7L7wqV2tjRmYdVgLM5DsbWc11bWSF58GCgtR2txj8B6X/3bdeuIch5hUJRVaWNRgUUwwaHuIcPQ0rlx4/nwzTdW1d3JZFMVlZqemh6IRKpqKycmp7u6urGcd0l23UAwAcoSn6tznkPjPk7qW/RwqKcX3/z6usKVRfzjhTdm5k5+eITRRDC2xOTPM+r1eU8H2VZlqKojc0UhEaW9QmCQFHmycmpqy0tdrujutsNQPa5Wj3tNOUrs6eme8ZufScvOHX/fn91Tb7BePF/WQTrkGrJ+/oAAAAASUVORK5CYII=" nextheight="376" nextwidth="1058" class="image-node embed"><figcaption htmlattributes="[object Object]" class=""><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.cmegroup.com/markets/interest-rates/cme-fedwatch-tool.html">As of 5-May-2025, CME futures are pricing</a> in 96% chance of a cut by September FOMC an 84% chance of 50bps by October FOMC and a 76% chance of a 75bps by end of year, with a 40% chance of a full percent. </figcaption></figure></div></div></div></div></li></ul><ul><li><p><strong>1980s: Swaps, Diversification and AML [DeFi: expected 2026/7]</strong></p><p>TradFi: Swaps enabled risk management via yield curves. CDOs pooled debt, amplifying returns and risks. ETFs offered retail diversification. FATF set global AML standards.<br>DeFi: Lending apps figure out how to popularise over-collateralised swap rates. Synthetic assets tranche debt like CDOs. DeFi ETFs pool crypto for retail. On-chain compliance aligns with FATF standards.</p></li><li><p><strong>1990s: Financial Engineering [DeFi: expected 2027/8]</strong></p><p>TradFi: REITs enabled retail real estate investment. Credit Default Swap (CDS) hedged credit risk. Structured products, driven by derivative pricing, offered tailored returns. Algorithmic trading. Travel Rule become adopted.<br>DeFi: Tokenised real estate mimics REITs. Decentralised CDS might be tricky due to balance sheet requirements. Structured yield products use DeFi derivatives. Algo-bots optimise pools. On-chain AML enforces something that seems similar to Travel Rule.</p></li></ul><p>Beyond the 1990s [DeFi: 2028], DeFi projections become too speculative, so we stop here.</p><h2 id="h-building-pressure-for-a-breakthrough" class="text-3xl font-header">Building Pressure for a Breakthrough</h2><p>Crypto’s recent growth has been fuelled by consumer speculation, with platforms like <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://pump.fun/board">pump.fun</a> earning <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://defillama.com/fees/pump">$600M in fees since January 2024.</a> Yet, DeFi’s potential for composable markets and scalable capital is under pressure. Off-chain credit and identity challenges, especially in under-collateralised lending, create barriers. Compliance, identity, and trust gaps hinder anti-fraud and credit screening, delaying progress.</p><p>This tension is building toward a pivotal shift. Robust compliance infrastructure like, Keyring's verified markets, is emerging, redirecting focus to on-chain DeFi solutions. The result will be rapid and massive credit adoption, transforming the landscape. As DeFi matures along its historical timeline, it’s ready for a breakthrough.</p><p>Also, the rates market is poised to lead TradFi adoption in this new era. Here, DeFidollars (a parallel funding market of stablecoins and crypto-collateral, echoing Eurodollars) enable verifiable lending and borrowing. This marks the first wave of a seismic change which we will explore in our next post.</p><h2 id="h-embracing-a-global-dawn" class="text-3xl font-header">Embracing a Global Dawn</h2><p>Crypto’s evolution follows a deterministic path, not by chance but by necessity, like a system optimising for efficiency. Each TradFi milestone: coinage, credit, derivatives, compliance, has a DeFi counterpart, emerging in sequence.</p><p>Now, at the compliance stage, crypto can scale to rival global markets. Emerging trust infrastructure is building the foundation for this leap: private identities enable secure access, composable compliance ensures regulatory alignment, and trustless systems unlock institutional capital. Imagine a DeFi ecosystem where a small business secures a loan via a compliant, decentralised platform, or an investor trades tokenised assets with verified identity, all without central intermediaries.</p><p>DeFi is not stuck in the 1970s, it’s poised to usher in a global era, redefining finance for the future.</p>]]></content:encoded>
            <author>keyringnetwork@newsletter.paragraph.com (Alex McFarlane)</author>
            <author>keyringnetwork@newsletter.paragraph.com (Hugh Flood)</author>
            <category>defi</category>
            <category>cryptocurrency</category>
            <category>blockchain</category>
            <category>tradfi</category>
            <category>bitcoin</category>
            <category>ethereum</category>
            <category>makerdao</category>
            <category>uniswap</category>
            <category>synthetix</category>
            <category>pendle</category>
            <category>compliance</category>
            <category>trust</category>
            <category>keyring network</category>
            <category>infinifi</category>
            <category>stablecoins</category>
            <category>tokenized assets</category>
            <category>decentralized finance</category>
            <category>capital markets</category>
            <category>derivatives</category>
            <category>yield strategies</category>
            <category>yield</category>
            <category>institutional adoption</category>
            <category>financial primitives</category>
            <category>crypto market trends</category>
            <category>operation chokepoint 2.0</category>
            <category>federal reserve</category>
            <category>tradfi vs defi</category>
            <category>on-chain compliance</category>
            <category>zk-kyc</category>
            <category>zkkyc</category>
            <category>mpc-tls</category>
            <category>zk-tls</category>
            <category>zk</category>
            <category>zero-knowledge</category>
            <category>zkps</category>
            <category>zkp</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/255c39a13007781fbf60342b87c3e2ad.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[From "Login with" to "Verify with": The Future of Identity]]></title>
            <link>https://paragraph.com/@keyringnetwork/from-login-with-to-verify-with-the-future-of-identity</link>
            <guid>XRDubSSUxTyNSQDZns00</guid>
            <pubDate>Mon, 27 Jan 2025 00:00:00 GMT</pubDate>
            <description><![CDATA[No passport uploads. No endless onboarding loops. Simple and instant verification.]]></description>
            <content:encoded><![CDATA[<p>We often hear that the main barrier to crypto adoption is user experience. While that may be true, the crypto ecosystem also offers an incredible playground for testing new solutions. It’s a fully programmable world where collaboration and cross-pollination thrive beyond the silos of web2. Such innovations often come with major benefits like improved privacy, data ownership and interoperability — even in the most traditional areas like KYC.</p><p>Imagine if you could buy an asset or receive an airdrop without having to upload your passport for the millionth time. No endless onboarding loops. No anxiety about leaving sensitive information behind, worrying it might be hacked or sold. As for platforms, no more losing half your audience during onboarding and frustrating the other half.</p><p>That’s what <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.keyring.network/">Keyring</a> solves. Most of us are used to giving away privacy and data ownership to save a few clicks and "login with" our Google or social media accounts. What if we could use a similar approach to prove we're legit KYC'd users? Proving we’ve already been verified by our bank, broker or centralised exchange. Yet this time, not at the expense of privacy and data ownership.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0505d7685e92128c334513bd38545f46..svg" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAVCAIAAACor3u9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAA7UlEQVR4nO2UwU7EIBRF+/8/48Lf8BNMXKillJG2FHgXeC9MJt3MTI2aSBcmntwFu5N3gdd131FrXZyz82Lnpe7ofk/ZQYR+0A/Tm4i0EQBYnHNuzTkDiEQ+hGc/lVIaCESEmbUxbl23M1JKOSOlNhPUL/kXdLeCwnyggAhKj2o0zNJSICIgm3LOpdylmSDML/2gnfcEXKfZT1bvNBoTYrxLuwliPFlrF3fIBCJCgPM+REJK12lW0eNTfe3Vh50OqaiUogatzSnEeFhFRPkz/uCq2NNMsD0bAiLgQ1xDaCyotYpcVhAzE2G7gJ8IzrEsZxWBHReqAAAAAElFTkSuQmCC" nextheight="814" nextwidth="1218" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><h1 id="h-another-way-to-know-your-customer" class="text-4xl font-header">Another way to “know your customer”</h1><p>For blockchain-based systems to go mainstream, we need solutions that prevent interactions with bad actors. That doesn’t mean we’re stuck with the cumbersome KYC processes we know today.</p><p>Financial institutions have spent decades refining their onboarding and fraud prevention systems. They still collectively invest <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://risk.lexisnexis.com/insights-resources/research/true-cost-of-financial-crime-compliance-study-global-report?">over $200 billion each year</a>. With AI providing increasingly sophisticated methods to outsmart existing KYC systems, even more investments are required to keep up. Institutions must also safeguard sensitive user data, and even the most secure systems are regularly breached.</p><p>So why don't we rely on these trusted checks rather than having every platform re-verify users, and store personal information at great risk?</p><p>Let’s be clear, this requirement won’t disappear overnight. Most regulators require financial service providers to verify and store user information, so they can be held accountable. But if we go back to the concept of “knowing your customer”, using the whole trail of existing reliable information makes a lot of sense. We’d supplement already-verified data from trusted institutions (like KYC passed) with other reputation-based information (like account longevity or transaction history).</p><p>While we are not there yet for regulated entities, <strong>Keyring Connect offers a solution for all use cases that don't require traditional collect-verify-hold user docs.</strong></p><p>Why would these non-regulated use cases implement any form of KYC? Because it still fulfils the underlying purpose: risk mitigation. Today, many platforms skip verification entirely to avoid the heavy UX burden, missing out on the opportunity to tap into huge pools of already-verified users.</p><p>If we take the example of lending pools, you can’t scale a pool by manually verifying every participant.&nbsp;The operational hurdles and UX impact would be massive. However, say users can prove their status with Binance or Revolut in a few clicks, your pool has much better chances to attract institutional capital while maintaining a seamless user experience.</p><p><strong>This is KYC reliance 2.0.</strong> Risk-focused instead of identification-focused. Fully automated. Relying on trustworthy data. The best part: it comes with minimal friction for users and protocols.</p><h1 id="h-introducing-keyring-connect-instant-zk-kyc" class="text-4xl font-header">Introducing Keyring Connect: Instant zk-KYC</h1><p>Keyring Connect lets users extract information from any website, with a proof of authenticity.</p><p>For instance, you can prove you’ve passed KYC with Revolut or sent a wire transfer. You can show your Coinbase balance or Experian credit score — or simply prove it’s above a certain number.</p><p><strong>It’s like open banking but for all data and all websites, without having to build and maintain hundreds of API connections</strong>. Unlike scraping the web, data can be collected behind login walls. Users verify themselves once with a trusted platform and carry their credentials across ecosystems. All in just three clicks and under three minutes.</p><p>At its core, Connect relies on zkTLS technology, or more precisely <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://docs.tlsnotary.org/protocol/mpc-tls/index.html">MPC-TLS</a>. Built on TLS (the internet’s security layer), it allows a neutral “notary” service to witness a browsing session and prove that the data extracted from the website is authentic. Importantly, zkTLS is built in such a way that only the required information is extracted, ensuring minimum data exposure. It's similar to a blacked-out report. When setting up a new website data source, Keyring uses its URL and JSON path to identify the fields to consider, based on what’s required for a given policy. Data is only shared with user intent.</p><p>Think of it as a cryptographically sealed screenshot of selected data points that cannot be tampered with or faked.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/99f869541c2f27f517112b7b1285051d.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAVCAIAAACor3u9AAAACXBIWXMAABYlAAAWJQFJUiTwAAADkElEQVR4nN1VXWgUVxSeFZYZCDPs3t3c2bk7s5nZnc2kWYIGQrH6oMXGv22K8YfUt7xJXgKywrKQH7OQgHmI2LXGSkokEqwW9aUW8uBDX0RMUzaSNSGEahW1VB91zV6hU+6c3cnEGvsgvvTysZx77nfPd+65585ytm1T+sZm429K3wCcqU0ptW379p27w6NnJqcuj09MFcYnLl25du6778cK56ev3lhe+d3eeMB2DiarlcrLV6+9oSml5XLZtu1fi/dOjZ0tjE98c/bCqbFCYXxiePT08OjpyakfVh48ohsPSJ0rl8uzc79lBkawueXy9Zs/3Zz5eeaW/cFj5tYvx7MDKw8ecquVSuHbC0e7j332RbqnN3P8RC6T7RvMjwzmR/pODuf687n+oWxuMNefd6ZD2b6TDMwzBDTgOL958AzmR3oz2Z7ezMM/HnOU0u07d/uEkEz0ACZ+EfOSHMBqHYr4ReyiDkUCWPVLsk8IuUtv0XxCSAoRKcSC+EUc0czS4jI7wY72NAQNEx3JGpI1JWZiYoCNHGBiKDEzrDQEsOoueWlhlp8a0cyIZiJZE5Gixi0mQCn9vH1/HYqEif7vnWGlAVSrAjUblrw0MORo3M1jnYCIFBCAiEqMJQLbwkQPE13WEhDuHTSHUBVwaJDHmsCuvR0iUjAxYCcmRtRIQjhcgxIzo0ZS1hK4JuClVVUdSdVolLXEmsBqpQIlgrMHsPq+OyC6W273BO4dODSnREQXkRI1GqsC23fu5vggL9VDS/BSPdwSL9W7EJGCZA0INZrspYEzgNUAVnmpnhMQJsb/VaDOuY/3C/AO2UOTawLkPwQ4AXGbJAjKbAH5ReyVr3oExPFBiM7xQZ8QAhqovlsAOjVqNFotbVZLW6p1KyZG85ZP9WQq0dRiNm22WtpYF8YtPZlS41aqdaueTDWYzWbT5pj5iRq31LilxEwRKZBoVQC+RSDgvs+okVTjFvSrrCWgI6NGo/fRel4GeyhI1qDF3y4RpXTbjnZuk+QXsRB0SiQgyMInhAAcHxSCEREp60pUo4EH7gMTw/0Wrb2Dnt7Mrr1f7fnyYLqzi/0eONLR+TXY+zoOpTu79nUcgtX0gSMM1SVmOHbn4aPdF6d/nL56w4tLV64/fvLM+cMplj4Gbs8Wnzz9k51g4f5ysbQ0N18qLizOzZeYUVpicKcLi1WPQ1vHqXkYZz1miwt/PX/xD9/is10CcT9lAAAAAElFTkSuQmCC" nextheight="1304" nextwidth="1956" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>Let’s take the example of Alice who wants to lend in a pool. For the pool’s smart contract to accept the transaction, she needs to prove she’s over 18 and doesn’t live in the UK.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/e3d853e00d9b612e825ee70db18ed00a.jpg" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAANCAIAAABHKvtLAAAACXBIWXMAAAsTAAALEwEAmpwYAAACkklEQVR4nJWT72sTMRjH76W+GoL/pG8EJ7oXIkNhMJWBsv+gg1kKlloO6hzFo5zHcaO33bau4xqv2bF4i3EXzbIsM8aIDdaxVoefVyE8eb75Pj8cM4EQAgCAEIJwmKYphEM8oiiKLMsAABDCPM/hiMnnnHMbTwgRQjh5nodheEmAEPIhgwOQ7acDSr/Ye611t9utVque5yGE0jTFGCulbDxCqCxLjHGWZZ7nra6uhmGIMXaWl5dnZ2e11kopKaUQIk0HRYHO2NExzo8+DtBhxtiJMUYplSTbm5tbaZoeH39mjEVRFMdxvV5vjIjjWEoJIQyCoNFohGGIEHIAAJVKRUpJKWWMEULerL3t97ay3dZ+srafuP3kHUJHWusTzt8H0cZGHIah7/s7O7tLS0tlWVJKrRWllHUQx3Gr1QIjHIxxr9e7WCJKaVmWp0Lmh4XSPyZLXK+/EkLYdFprYwzGmP8GAOC67srKiu/7hBDH87xGo6GUuigAIeScH8Dh0+cvnF9cc67fcGZuOtdnKi9reX7AGBPijBBiBWwntNac86Io1tfXa7VaFEVFUThaa8aYjbv4TQBAp9N57bq3783dfzA/9/DR/MLi/MJix/e73e64w5NTpEeMD87UOSvLUim1nSRa608Y93d3D+Aw8P3+3h5jX7MssxOBMZ58PpaxhykCbIRSqtlsWvsWzk8551prIYSNRAhdsj7JdAGEUJIkQRDEcez7fr/fN8YQQlzXjaIoTVNCiDEGADC1SlcIcM4hhGEYNpvNdrtNKbVZiqKoVqvtdttq9Hq9v7XhageMMbvSUsrxvdb62/m5XUallNZ6PEX/JyClJISUlBpjbt25OxrTPzx+8uy7UoQQuy7/zm6M+QlpuFtObDf0KQAAAABJRU5ErkJggg==" nextheight="540" nextwidth="1280" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><ol><li><p><strong>Data Extraction:</strong> Alice opens the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://chromewebstore.google.com/detail/keyring-connect/jgogeidclfccfoedhfjjaclnaojcllpi">Keyring web extension</a>, selects Binance as her data source, and logs in. The extension securely gathers authorised cookies from the session, containing the minimum required data (here: date of birth and address). The Keyring notary authenticates the session, ensuring data integrity.</p></li><li><p><strong>Data Validation:</strong> Extracted data is automatically validated against the pool's Policy (set of rules defined by the Keyring customer). For Alice, this means verifying her age is above 18 and her address isn’t in the UK. No external vendor or manual workforce is required. <strong>‍</strong></p></li><li><p><strong>On-Chain Credential Issuance:</strong> Once validated, Alice binds her wallet to the verified data, hiding that link with zero-knowledge. This ensures there is no honeypot of information mapping users’ identities to the wallets they use. She then creates an on-chain credential attesting she complies with the policy. Smart contracts dynamically query credentials to approve actions like deposits or trades, making real-world user data accessible on-chain without exposing sensitive details.</p></li></ol><p><strong>On the protocol side,</strong> <strong>we made integration extra simple and</strong> <strong>achievable in under 3 hours</strong>:</p><ol><li><p>Define your compliance Policy with Keyring, specifying the rules and data sources you accept.</p></li><li><p>Include a link or button (via SDK) on your frontend for users to start the verification.</p></li><li><p>Add a modifier to the desired smart contract functions to check the credentials cache before approval. Done.</p></li></ol><p>Our approach is use-case first: we don’t want to distract builders from their core purpose. So we built modular tooling that can be used as a turnkey solution. All protocols can now mitigate risks without prohibitive costs, expand their product offering and attract compliance-conscious capital.</p><h1 id="h-where-is-it-most-useful" class="text-4xl font-header">Where is it most useful?</h1><p>Keyring Connect was built to unlock the potential of digital assets by enabling the secure sharing of sensitive data within crypto ecosystems. The first focus is compliance for DeFi.</p><p>We've mentioned permissioned pools in DeFi already. We believe this is the best tool to push institutions over the line and deploy at scale. By ensuring only KYC’d users from non-sanctioned countries can interact with pools, Keyring Connect mitigates risk while respecting the ecosystem’s privacy ethos. <strong>It helps break the barrier between retail and institutions in DeFi.</strong> As a side benefit, it helps prevent scams and improve hack recovery by providing identity trails and jurisdictions of reference. Idle Finance, Euler and Benqi are already on board, with more coming soon. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.pareto.credit/vault#0x45054c6753b4Bce40C5d54418DabC20b070F85bE">See it in action on Pareto</a>!</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/fc735dcda91ba17f32cbde199434b7c4.png" blurdataurl="data:image/png;base64,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" nextheight="985" nextwidth="1530" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>Other applications include attestation layers for blockchain ecosystems, airdrops with geographic restrictions or sybil protection, non-custodial wallet compliance with MiCA travel rule, or enabling AI agents to KYC counterparts. Keyring Connect works everywhere private authenticated data is needed.</p><p>We’ll be doing deep dives on these use cases in future articles. Follow us to stay tuned (links at the end).</p><h1 id="h-what-next" class="text-4xl font-header">What next?</h1><p>Keyring Connect isn’t just about better KYC — it’s about redefining identity verification for decentralised systems. Here’s why it stands out:</p><ol><li><p>Quick and painless</p></li><li><p>Respects privacy</p></li><li><p>More secure than sharing docs with every platform</p></li><li><p>Reliable with zkTLS authenticity</p></li><li><p>Universal: works with all websites and data points</p></li><li><p>Fully automated with built-in data refresh</p></li><li><p>Easy to integrate</p></li></ol><p>With AI and decentralisation, the demand for scalable, secure identity solutions will grow. By eliminating the need for human intervention, Keyring Connect offers a level of scalability and efficiency that legacy solutions can’t match. <strong>We aim for it to become the best automation tool for identity,</strong> <strong>to build trust in the programmable economy.</strong></p><p>We’re live on Ethereum, Base, Arbitrum, Optimism, Avalanche. Deploying on Midnight, Injective, ZKsync and Solana. Reach out to get started today <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="mailto:info@keyring.network">info@keyring.network</a>.</p>]]></content:encoded>
            <author>keyringnetwork@newsletter.paragraph.com (Alex McFarlane)</author>
            <category>defi</category>
            <category>permissioning</category>
            <category>authorisation</category>
            <category>login</category>
            <category>verification</category>
            <category>mpc-tls</category>
            <category>zero-knowledge</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/f904ee4cb12d04f03f11890304ba1eac.jpg" length="0" type="image/jpg"/>
        </item>
    </channel>
</rss>