<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Developers Forum for XinFin XDC Network</title>
    <description>The most recent home feed on Developers Forum for XinFin XDC Network.</description>
    <link>https://www.xdc.dev</link>
    <atom:link rel="self" type="application/rss+xml" href="https://www.xdc.dev/feed"/>
    <language>en</language>
    <item>
      <title>How to Generate a Seed Phrase Using Dice: A Complete BIP39 Guide</title>
      <dc:creator>Rushabh Parmar</dc:creator>
      <pubDate>Tue, 04 Aug 2026 07:12:49 +0000</pubDate>
      <link>https://www.xdc.dev/rushabh_parmar/how-to-generate-a-seed-phrase-using-dice-a-complete-bip39-guide-ba2</link>
      <guid>https://www.xdc.dev/rushabh_parmar/how-to-generate-a-seed-phrase-using-dice-a-complete-bip39-guide-ba2</guid>
      <description>&lt;p&gt;If you've ever created a crypto wallet, you've seen it happen: 12 or 24 words appear on your screen in a couple of seconds, and you're told to "write them down safely." That phrase is the master key to everything in that wallet — every coin, every token, every transaction history, forever. And yet almost nobody who uses one knows exactly how those words were chosen, or whether the process that chose them can be trusted.&lt;/p&gt;

&lt;p&gt;This guide shows a different way to generate that phrase: using ordinary six-sided dice, offline, with a free open-source tool you can inspect line by line. No app store download, no account, no server involved at generation time.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tool used in this guide:&lt;/strong&gt; &lt;a href="https://github.com/RushabhParmar12/dice-to-seed"&gt;dice-to-seed&lt;/a&gt; — a free, open-source, single-file HTML generator.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Trust Dice Over Your Wallet's Built-In Generator?
&lt;/h2&gt;

&lt;p&gt;Every crypto wallet app generates your seed phrase using a random number generator (RNG) running on your phone or computer. That RNG needs to produce numbers that are truly unpredictable — because if anyone could guess or reproduce them, they could reconstruct your seed phrase and steal everything the wallet holds.&lt;/p&gt;

&lt;p&gt;The problem is that you can't see or verify that RNG. You're trusting:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;That the wallet app's code has no bugs affecting randomness&lt;/li&gt;
&lt;li&gt;That the device's operating system hasn't been compromised by malware&lt;/li&gt;
&lt;li&gt;That no one tampered with the app before you downloaded it&lt;/li&gt;
&lt;li&gt;That the hardware itself has no hidden flaws&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Software RNG failures aren't theoretical. There is a well-documented history of wallets, apps, and cryptographic libraries shipping with weakened or predictable random number generation — sometimes by accident, sometimes not. Once a weakness like that is found, every wallet ever created with that flawed generator is retroactively at risk.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Physical dice sidestep this entire category of risk.&lt;/strong&gt; A die sitting on your desk isn't running software. It can't be hacked, backdoored, or silently weakened by an update. Its randomness comes from physics — the chaotic, unpredictable way it tumbles and bounces — not from code you have to trust blindly.&lt;/p&gt;

&lt;p&gt;This is the same principle used by high-security systems like Cloudflare's LavaRand which uses a wall of physical lava lamps as an entropy source specifically because physical, real-world randomness is harder to manipulate than anything purely computational.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Problem Are We Actually Solving?
&lt;/h2&gt;

&lt;p&gt;Three things, specifically:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Verifiable randomness.&lt;/strong&gt; With dice, you watch the entropy get created. There's no black box between "the random event" and "the number you wrote down."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Air-gapped generation.&lt;/strong&gt; The seed phrase never has to exist on a device connected to the internet at the moment of creation, closing off remote attack vectors entirely.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Auditable software.&lt;/strong&gt; The tool that converts your rolls into words is a single open-source HTML file — anyone can read the code, verify it does exactly what it claims, and confirm nothing is sent anywhere.&lt;/p&gt;

&lt;p&gt;What we are &lt;strong&gt;not&lt;/strong&gt; solving: safe storage of the phrase afterward, protection against someone watching you roll, or protection against a compromised device that's used to display the words later. Dice generation is one link in the security chain — a strong one, but not the only one that matters.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Standard Behind It: BIP39
&lt;/h2&gt;

&lt;p&gt;The 12–24 word phrase format itself follows a specification called &lt;a href="https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki"&gt;BIP39&lt;/a&gt;, used by virtually every major crypto wallet (Bitcoin, Ethereum, XDC, and most EVM-compatible chains included). BIP39 defines:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A standardized list of 2048 English words&lt;/li&gt;
&lt;li&gt;How raw randomness (called "entropy") is mapped to those words&lt;/li&gt;
&lt;li&gt;A built-in checksum so a typo during recovery gets caught instead of silently creating the wrong wallet&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Because it's a shared standard, a phrase generated by our dice tool restores correctly in any BIP39-compatible wallet — hardware wallets, MetaMask, Trust Wallet, and XDC-native wallets alike.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step-by-Step: Generating Your Seed Phrase With Dice
&lt;/h2&gt;

&lt;h3&gt;
  
  
  What you need
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;A fair six-sided die&lt;/strong&gt; (a casino-grade die with sharp edges is ideal — avoid rounded "fun" dice, which can be subtly biased)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;A computer you can safely disconnect from the internet&lt;/strong&gt; for a few minutes, or one that's genuinely air-gapped&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pen and paper&lt;/strong&gt; to record the final phrase&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The dice-to-seed tool:&lt;/strong&gt; &lt;a href="https://github.com/RushabhParmar12/dice-to-seed"&gt;github.com/RushabhParmar12/dice-to-seed&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Step 1 — Download the tool
&lt;/h3&gt;

&lt;p&gt;Go to the &lt;a href="https://github.com/RushabhParmar12/dice-to-seed"&gt;dice-to-seed GitHub repository&lt;/a&gt; and download &lt;code&gt;dice-to-seed.html&lt;/code&gt;. Because the tool is fully open-source, you (or anyone) can read through the code before running it — there's nothing hidden.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 2 — Move to an offline environment
&lt;/h3&gt;

&lt;p&gt;Transfer the file to the computer you'll actually use to generate the phrase, then disconnect Wi-Fi and any Ethernet cable. This step matters: it guarantees the phrase can't leave the machine even if something unexpected happens.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.xdc.dev/images/QFyyzJNn_gFLeVymvyHf0WmXPMbGTbmFs6LfLFl0hFA/w:880/mb:500000/ar:1/aHR0cHM6Ly93d3cu/eGRjLmRldi91cGxv/YWRzL2FydGljbGVz/LzlkdXRlcHlxMmIw/MTI0cmw3cmw3LnBu/Zw" class="article-body-image-wrapper"&gt;&lt;img src="https://www.xdc.dev/images/QFyyzJNn_gFLeVymvyHf0WmXPMbGTbmFs6LfLFl0hFA/w:880/mb:500000/ar:1/aHR0cHM6Ly93d3cu/eGRjLmRldi91cGxv/YWRzL2FydGljbGVz/LzlkdXRlcHlxMmIw/MTI0cmw3cmw3LnBu/Zw" alt="Image description" width="880" height="431"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 3 — Open the file in your browser
&lt;/h3&gt;

&lt;p&gt;No installation needed — double-click &lt;code&gt;dice-to-seed.html&lt;/code&gt; and it opens directly. The page will show a warning if it detects you're still online, as a reminder to disconnect first.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.xdc.dev/images/GQK-PkZeB0K1VCW346L2W05CIz5M1khLggk5U1LfFlo/w:880/mb:500000/ar:1/aHR0cHM6Ly93d3cu/eGRjLmRldi91cGxv/YWRzL2FydGljbGVz/L2J4c3R1eHhkcmRx/aW5iMG5ndmNsLnBu/Zw" class="article-body-image-wrapper"&gt;&lt;img src="https://www.xdc.dev/images/GQK-PkZeB0K1VCW346L2W05CIz5M1khLggk5U1LfFlo/w:880/mb:500000/ar:1/aHR0cHM6Ly93d3cu/eGRjLmRldi91cGxv/YWRzL2FydGljbGVz/L2J4c3R1eHhkcmRx/aW5iMG5ndmNsLnBu/Zw" alt="Image description" width="880" height="224"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 4 — Choose your phrase length
&lt;/h3&gt;

&lt;p&gt;The tool supports both:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;24 words&lt;/strong&gt; (256 dice rolls) — the maximum security level&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;12 words&lt;/strong&gt; (128 dice rolls) — still fully secure and BIP39-standard, just a shorter phrase&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://www.xdc.dev/images/KsTZPp1w4Dbu9rcN2MmhkPfFJn1Zez_3LWoXVA_B7RA/w:880/mb:500000/ar:1/aHR0cHM6Ly93d3cu/eGRjLmRldi91cGxv/YWRzL2FydGljbGVz/Lzd6dHRmbHF5cnNo/enU4b3czZnB4LnBu/Zw" class="article-body-image-wrapper"&gt;&lt;img src="https://www.xdc.dev/images/KsTZPp1w4Dbu9rcN2MmhkPfFJn1Zez_3LWoXVA_B7RA/w:880/mb:500000/ar:1/aHR0cHM6Ly93d3cu/eGRjLmRldi91cGxv/YWRzL2FydGljbGVz/Lzd6dHRmbHF5cnNo/enU4b3czZnB4LnBu/Zw" alt="Image description" width="880" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 5 — Roll the die and enter each result
&lt;/h3&gt;

&lt;p&gt;Roll your die and type the number (1–6) into the page as you go. Do this for all 256 rolls (or 128, for a 12-word phrase). As you type, a live grid on the page fills in — this is your entropy being generated in real time, so you can visually confirm the process is working correctly.&lt;/p&gt;

&lt;p&gt;Behind the scenes, each roll becomes a single bit: odd numbers (1, 3, 5) become &lt;code&gt;0&lt;/code&gt;, even numbers (2, 4, 6) become &lt;code&gt;1&lt;/code&gt;. Since a die has exactly three odd and three even faces, this gives a perfectly balanced 50/50 result every roll — no bias toward any outcome.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.xdc.dev/images/PrXUFbYqDI5VeQkKdXokk_gxoILtGo_XUr5OLY-10p8/w:880/mb:500000/ar:1/aHR0cHM6Ly93d3cu/eGRjLmRldi91cGxv/YWRzL2FydGljbGVz/L3k0ZzNlODV4dmQz/ZjF6c2tyb3RmLnBu/Zw" class="article-body-image-wrapper"&gt;&lt;img src="https://www.xdc.dev/images/PrXUFbYqDI5VeQkKdXokk_gxoILtGo_XUr5OLY-10p8/w:880/mb:500000/ar:1/aHR0cHM6Ly93d3cu/eGRjLmRldi91cGxv/YWRzL2FydGljbGVz/L3k0ZzNlODV4dmQz/ZjF6c2tyb3RmLnBu/Zw" alt="Image description" width="844" height="418"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 6 — Let the tool calculate your phrase
&lt;/h3&gt;

&lt;p&gt;Once all rolls are entered, the tool automatically:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Runs a standard checksum calculation over your entropy (this step uses your browser's built-in cryptographic function, not randomness — it's the same every time for the same rolls)&lt;/li&gt;
&lt;li&gt;Looks up each 11-bit group in the official BIP39 word list&lt;/li&gt;
&lt;li&gt;Displays your full recovery phrase&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://www.xdc.dev/images/lgyC36HYQ4ePn7pqvjA4oFQyfJnRON2McjGr13kb260/w:880/mb:500000/ar:1/aHR0cHM6Ly93d3cu/eGRjLmRldi91cGxv/YWRzL2FydGljbGVz/L2c3NHN4ZDUyODVo/bXR1MTBqNXIyLnBu/Zw" class="article-body-image-wrapper"&gt;&lt;img src="https://www.xdc.dev/images/lgyC36HYQ4ePn7pqvjA4oFQyfJnRON2McjGr13kb260/w:880/mb:500000/ar:1/aHR0cHM6Ly93d3cu/eGRjLmRldi91cGxv/YWRzL2FydGljbGVz/L2c3NHN4ZDUyODVo/bXR1MTBqNXIyLnBu/Zw" alt="Image description" width="793" height="786"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 7 — Write it down by hand
&lt;/h3&gt;

&lt;p&gt;Copy the words onto paper — never a screenshot, never a note app, never a password manager during this step. There is no copy button in the tool, deliberately, to keep the phrase off the clipboard.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.xdc.dev/images/XuG-1CFoyIxbqO-XsidPPijcOXtOGN6zQalNmEF4lpA/w:880/mb:500000/ar:1/aHR0cHM6Ly93d3cu/eGRjLmRldi91cGxv/YWRzL2FydGljbGVz/LzVrNnlmZms2dWtv/OW85bTZ1NjcwLnBu/Zw" class="article-body-image-wrapper"&gt;&lt;img src="https://www.xdc.dev/images/XuG-1CFoyIxbqO-XsidPPijcOXtOGN6zQalNmEF4lpA/w:880/mb:500000/ar:1/aHR0cHM6Ly93d3cu/eGRjLmRldi91cGxv/YWRzL2FydGljbGVz/LzVrNnlmZms2dWtv/OW85bTZ1NjcwLnBu/Zw" alt="Image description" width="817" height="417"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 8 — Verify independently before funding a wallet
&lt;/h3&gt;

&lt;p&gt;This step is not optional if real funds are involved. Restore the same phrase on a hardware wallet, or a second independent BIP39 tool, and confirm both produce identical wallet addresses. Only fund the wallet after two independent methods agree.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 9 — Close the browser
&lt;/h3&gt;

&lt;p&gt;The tool stores nothing — no history, no cache, no saved state. Closing the tab clears everything from that session.&lt;/p&gt;

&lt;h2&gt;
  
  
  Frequently Asked Questions
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Is dice-generated randomness actually better than my wallet app's randomness?&lt;/strong&gt;&lt;br&gt;
It's not necessarily "better" in a mathematical sense — a properly implemented software RNG can also produce excellent randomness. The advantage of dice is verifiability: you don't have to trust code you can't see. For high-value wallets, treasury keys, or long-term cold storage, that verifiability is worth the extra effort.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Does this work for Bitcoin, Ethereum, and XDC Network?&lt;/strong&gt;&lt;br&gt;
Yes. BIP39 is a shared standard across virtually all major chains, including EVM-compatible networks like XDC. The resulting phrase restores identically wherever BIP39 is supported.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What if I make a mistake typing a roll?&lt;/strong&gt;&lt;br&gt;
The tool only accepts digits 1–6 and shows your progress live, so mistakes are easy to catch before finishing. If you do notice an error after generating the phrase, simply start over — dice are free and the process only takes a few minutes.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Is a 12-word or 24-word phrase better?&lt;/strong&gt;&lt;br&gt;
Both are considered cryptographically secure by current standards. 24 words offer a larger security margin and are generally preferred for high-value or long-term storage; 12 words are still standard and widely used.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Can I trust an HTML file I downloaded from the internet?&lt;/strong&gt;&lt;br&gt;
That's exactly why the project is open source — the code is fully readable on GitHub, so you (or someone you trust) can review exactly what it does before running it, instead of taking a claim on faith.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It Yourself
&lt;/h2&gt;

&lt;p&gt;The full tool, source code, and technical documentation are available on GitHub:&lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;&lt;a href="https://github.com/RushabhParmar12/dice-to-seed"&gt;github.com/RushabhParmar12/dice-to-seed&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It's free, open-source, and designed to be read before it's trusted.&lt;/p&gt;

</description>
      <category>xdc</category>
      <category>phrase</category>
      <category>dice</category>
      <category>seed</category>
    </item>
    <item>
      <title>[Insights] July Edition: Key Highlights and Developments from Plugin’s Journey</title>
      <dc:creator>Pooja Balaji</dc:creator>
      <pubDate>Mon, 03 Aug 2026 17:33:55 +0000</pubDate>
      <link>https://www.xdc.dev/pooja_balaji/insights-july-edition-key-highlights-and-developments-from-plugins-journey-2oc6</link>
      <guid>https://www.xdc.dev/pooja_balaji/insights-july-edition-key-highlights-and-developments-from-plugins-journey-2oc6</guid>
      <description>&lt;p&gt;Plugin just got faster, wider, and more connected all in the same month. Data feeds now speak across chains, a cross-chain bridge that took weeks to earn our trust finally proved itself end-to-end, and Automation just got faster under the hood...here's the story behind the progress!&lt;/p&gt;

&lt;p&gt;📰 &lt;strong&gt;News&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;⛓️ &lt;strong&gt;Plugin Data Feeds Step Into a Multi-Chain World&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;Plugin has taken its next step toward expanding its presence across multiple blockchain networks. Plugin Data Feeds are now live on testnet across multiple blockchains: XDC Apothem, Ethereum Sepolia, and BNB Smart Chain Testnet with each network reporting independently.&lt;/p&gt;

&lt;p&gt;For developers, this means the same Plugin infrastructure that powers lending platforms, DEXs, stablecoins, derivatives, and RWAs on one chain can now be built with across ecosystems, using the same Plugin infrastructure across supported networks.&lt;/p&gt;

&lt;p&gt;Supporting this expansion is PLI SWAP, a bridge connecting XDC and EVM-compatible chains, which has completed development and is now deployment-ready on testnet. With multi-chain data feeds live and the bridge ready to go, mainnet rollout is the next milestone on the horizon.&lt;/p&gt;

&lt;p&gt;🔓 &lt;strong&gt;Major Milestone Unlocked&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The Plugin CCIP bridge, providing a single communication lane between &lt;strong&gt;XDC and Base&lt;/strong&gt;, is now fully operational end-to-end. Following extensive debugging across consensus logic, gas mechanics, RPC stability, and on-chain configurations, the team successfully validated the complete cross-chain flow from commit to execute, fully automated and verified on-chain.&lt;/p&gt;

&lt;p&gt;Key milestones achieved include reliable message commitment from XDC to Base, automatic detection and execution by the Plugin oracle network without manual intervention, and successful completion of multiple full round-trip test messages. The team also identified and resolved infrastructure challenges, including message batching at scale and consensus edge cases, with every improvement verified across the full validator set. This milestone reflects the extensive protocol-level work to build more reliable cross-chain infrastructure.&lt;/p&gt;

&lt;p&gt;🎙️ &lt;strong&gt;Weekly X Spaces with the Web3 Community&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Plugin hosts an X Space featuring leaders and contributors from across the Web3 ecosystem to discuss emerging trends, share perspectives, and exchange insights on the latest developments in blockchain. These sessions provide an opportunity to showcase Plugin's decentralized infrastructure, engage with the broader Web3 community, and foster meaningful industry connections and potential collaborations.&lt;/p&gt;

&lt;p&gt;Whether you're a developer, builder, or blockchain enthusiast, join us at 6 pm GST every Friday for new discussions, fresh perspectives, and the latest updates from the Plugin ecosystem.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Get latest updates:&lt;/strong&gt; &lt;a href="https://x.com/GoPlugin"&gt;https://x.com/GoPlugin&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🤖 &lt;strong&gt;Automation Gets Its Speed Fixed&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Plugin has enhanced the performance of Smart Contract Automation network by optimizing coordination between nodes and reducing execution delays. These improvements ensure automated tasks are executed more quickly once on-chain conditions are met.&lt;/p&gt;

&lt;p&gt;With faster transaction execution, improved monitoring, and more consistent performance, developers can build more responsive decentralized applications while users benefit from a smoother experience across DeFi protocols and other automated services.&lt;/p&gt;

&lt;p&gt;🍽️ &lt;strong&gt;Food for Thought :&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The most important infrastructure work rarely announces itself. Nobody notices a bridge until it fails, or a delay until it's gone. This month was a reminder that real trust in decentralized systems isn't built through big reveals  it's built through the unglamorous work of finding the edge case, fixing the few extra seconds, and verifying it across every validator before calling it done.&lt;/p&gt;

&lt;p&gt;🧠 &lt;strong&gt;Plugin Quiz :&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Which token standard is commonly used for governance?&lt;/p&gt;

&lt;p&gt;👉 Reply with your answer in the comments!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>The $40M Cold Wallet Hack: Why Air-Gapping Alone Was Never Enough — and How Doru Air Gets Self-Custody Right</title>
      <dc:creator>Doru Air</dc:creator>
      <pubDate>Sat, 01 Aug 2026 13:00:22 +0000</pubDate>
      <link>https://www.xdc.dev/doru_air/the-40m-cold-wallet-hack-why-air-gapping-alone-was-never-enough-and-how-doru-air-gets-self-custody-right-akn</link>
      <guid>https://www.xdc.dev/doru_air/the-40m-cold-wallet-hack-why-air-gapping-alone-was-never-enough-and-how-doru-air-gets-self-custody-right-akn</guid>
      <description>&lt;h2&gt;
  
  
  A Wake-Up Call for Everyone in Self-Custody
&lt;/h2&gt;

&lt;p&gt;On July 31, 2026, the crypto community woke up to one of the most unsettling security incidents in Bitcoin's history.&lt;/p&gt;

&lt;p&gt;In just 25 minutes, attackers drained roughly &lt;strong&gt;594 BTC — around $40 million&lt;/strong&gt; — from approximately 500 separate wallets. By later estimates, the total losses climbed even higher as more compromised wallets were swept.&lt;/p&gt;

&lt;p&gt;Here is what makes this incident different from every exchange hack or phishing campaign you've read about:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;These were cold wallets.&lt;/strong&gt; Offline. Air-gapped. Hardware devices that people bought specifically because they believed their keys could never be touched.&lt;/p&gt;

&lt;p&gt;There was no phishing link. No malware. No leaked seed phrase. No one clicked anything.&lt;/p&gt;

&lt;p&gt;The attackers simply &lt;em&gt;computed&lt;/em&gt; the private keys — because the keys were never truly random in the first place.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Actually Went Wrong
&lt;/h2&gt;

&lt;p&gt;The affected devices were Coldcard Mk3 hardware wallets running firmware versions released from March 2021 onward.&lt;/p&gt;

&lt;p&gt;According to research published by Bitcoin engineering and security teams, a firmware build setting caused the devices to silently skip their hardware true random number generator (TRNG). Key generation quietly fell back to a basic software substitute — seeded from the chip's &lt;strong&gt;serial number&lt;/strong&gt; and &lt;strong&gt;internal clock registers&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Neither of those values is a secret. A serial number is fixed factory metadata. Clock values can be narrowed down or measured by anyone with a similar device.&lt;/p&gt;

&lt;p&gt;The result: seed phrases that should have carried &lt;strong&gt;128 bits of entropy&lt;/strong&gt; were generated with only around &lt;strong&gt;40 bits&lt;/strong&gt; — small enough for an attacker to brute-force offline, at their leisure, without ever touching the victim's device.&lt;/p&gt;

&lt;p&gt;The flaw sat in the codebase, in plain sight, for more than five years. Then, one morning, someone ran the numbers. Wallets that had been dormant since 2021 were emptied in minutes.&lt;/p&gt;

&lt;p&gt;And critically: &lt;strong&gt;a firmware update cannot fix this.&lt;/strong&gt; If your seed was generated during the vulnerable window, the only remedy is to create an entirely new wallet with a new seed and move your funds.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Uncomfortable Lesson: The Air Gap Is Necessary — But Not Sufficient
&lt;/h2&gt;

&lt;p&gt;Here is the part of this story that too few people are talking about.&lt;/p&gt;

&lt;p&gt;The compromised wallets were &lt;em&gt;already offline&lt;/em&gt;. The air gap worked exactly as designed. The internet was never the attack vector.&lt;/p&gt;

&lt;p&gt;The attack succeeded because cold storage is not a single feature — it is a &lt;strong&gt;chain of security guarantees&lt;/strong&gt;:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Key generation&lt;/strong&gt; — your keys must be created with true, unpredictable randomness&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Key storage&lt;/strong&gt; — your keys must never leave the offline environment&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Transaction signing&lt;/strong&gt; — signing must happen offline, with only the signed output leaving the device&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;If the first link in that chain is weak, nothing downstream can save you. A perfectly air-gapped device with predictable keys is just a very expensive way to feel safe.&lt;/p&gt;

&lt;p&gt;This is the lens through which every self-custody solution should now be evaluated — including ours.&lt;/p&gt;

&lt;h2&gt;
  
  
  How Doru Air Approaches the Full Security Chain
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Doru Air&lt;/strong&gt; is a 100% air-gapped self-custody wallet that transforms a dedicated smartphone into an offline crypto signing device, supporting XDC, ETH, BTC, and XRP. It was built at XDC Innovation Labs, Dubai, with one principle at its core: &lt;em&gt;security must hold at every layer, not just one.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Here is how Doru addresses each link in the chain.&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Offline Key Generation with Strong Entropy
&lt;/h3&gt;

&lt;p&gt;Doru Air generates your 12-word recovery phrase entirely on the offline device using a &lt;strong&gt;cryptographically secure pseudo-random number generator (CSPRNG)&lt;/strong&gt; — the same class of randomness source trusted across modern security-critical software. Unlike the predictable, chip-metadata-based randomness that led to the Coldcard incident, a CSPRNG draws from high-entropy sources that cannot be reconstructed from public or guessable information like serial numbers or timestamps. Your keys are born offline, with full-strength randomness, and they never exist anywhere else.&lt;/p&gt;

&lt;p&gt;Every wallet setup also includes mandatory mnemonic verification, ensuring your backup is accurate before the wallet is ever used.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Enforced Air-Gapping — Not Optional, Not Trust-Based
&lt;/h3&gt;

&lt;p&gt;Many wallets &lt;em&gt;recommend&lt;/em&gt; going offline. Doru Air &lt;strong&gt;requires&lt;/strong&gt; it.&lt;/p&gt;

&lt;p&gt;The application performs internal security checks on every launch and will not operate unless WiFi, mobile data, and Bluetooth are all switched off. If any connectivity is detected, the app simply refuses to proceed. The air gap is enforced by the software itself — not left to user discipline.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. No Proprietary Hardware, No Hidden Supply Chain
&lt;/h3&gt;

&lt;p&gt;The recent incident revealed another uncomfortable truth about hardware wallets: users depend on firmware, build configurations, and supply chains they can never fully inspect.&lt;/p&gt;

&lt;p&gt;Doru Air takes a different path. It runs on standard smartphone hardware — ideally an old, factory-reset device dedicated solely to Doru. That means:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;No custom chips whose behavior you cannot verify&lt;/li&gt;
&lt;li&gt;No USB cables or Bluetooth pairing creating physical attack surfaces&lt;/li&gt;
&lt;li&gt;No dependency on a single manufacturer's firmware pipeline&lt;/li&gt;
&lt;li&gt;No additional hardware purchase at all&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You repurpose a device you already own — and you control its entire environment.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. QR-Only Transaction Flow
&lt;/h3&gt;

&lt;p&gt;With Doru Air, the online and offline worlds never physically touch:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The transaction is prepared using an online device via &lt;strong&gt;doruair.com&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Signing happens on the fully offline phone&lt;/li&gt;
&lt;li&gt;Only the &lt;strong&gt;signed transaction&lt;/strong&gt; leaves the offline device — as a QR code you can visually inspect before broadcasting&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Even if your online computer is riddled with malware, your private keys remain unreachable. Nothing secret ever crosses the gap.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Every Crypto Holder Should Do This Week
&lt;/h2&gt;

&lt;p&gt;Regardless of which wallet you use, this incident carries lessons for everyone:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Know how your wallet generates entropy.&lt;/strong&gt; If you cannot find a clear answer, that itself is an answer.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Add a strong BIP-39 passphrase&lt;/strong&gt; on top of your seed for an additional security layer.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Consider multisig&lt;/strong&gt; for significant holdings — every wallet drained in this attack was single-signature.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;If you were affected:&lt;/strong&gt; generate a completely new seed on patched software, verify it, send a small test transaction first, and only then migrate your funds. Do not rush, and never type seed words into a connected device.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Self-Custody Is Still the Answer — Done Right
&lt;/h2&gt;

&lt;p&gt;It would be easy to read this incident as an argument against self-custody. Some commentators are already suggesting users retreat to custodians and ETFs.&lt;/p&gt;

&lt;p&gt;We believe the opposite. The answer to a failure of &lt;em&gt;implementation&lt;/em&gt; is not to abandon the &lt;em&gt;principle&lt;/em&gt;. Not your keys, not your coins — that truth has not changed.&lt;/p&gt;

&lt;p&gt;What has changed is the standard users should demand: security that begins at the very first moment your keys are created, enforced offline operation rather than optional offline operation, and an architecture transparent enough to reason about.&lt;/p&gt;

&lt;p&gt;That is what Doru Air was built for.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;True cold storage, in your pocket. Offline by design. Secure from the first key.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;🔗 Get started: &lt;a href="https://doruair.com"&gt;https://doruair.com&lt;/a&gt;&lt;br&gt;
📖 Full setup guide: &lt;a href="https://medium.com/@info_77493/doru-air-a-complete-guide-to-offline-signing-true-self-custody-4554ab574872"&gt;Doru Air: A Complete Guide to Offline Signing &amp;amp; True Self-Custody&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Disclaimer
&lt;/h2&gt;

&lt;p&gt;This article is intended for educational and informational purposes only and does not constitute financial, investment, or security advice. References to third-party products and security incidents are based on publicly available reports at the time of writing and are provided solely for context. Doru Air is a self-custody solution — users are fully responsible for securely storing their private keys and recovery phrases. Loss of a recovery phrase may result in permanent loss of access to digital assets. Always ensure your offline device remains disconnected from WiFi, mobile data, and Bluetooth when generating keys or signing transactions.&lt;/p&gt;

</description>
      <category>xdc</category>
      <category>doru</category>
      <category>custody</category>
      <category>wallet</category>
    </item>
    <item>
      <title>How XDC Masternodes Are Selected from Validators</title>
      <dc:creator>Wanwiset Peerapatanapokin</dc:creator>
      <pubDate>Tue, 28 Jul 2026 09:05:28 +0000</pubDate>
      <link>https://www.xdc.dev/wanwiset25/how-xdc-masternodes-are-selected-from-validators-51e6</link>
      <guid>https://www.xdc.dev/wanwiset25/how-xdc-masternodes-are-selected-from-validators-51e6</guid>
      <description>&lt;p&gt;This article gives a simple, quick understanding of Validators and how Masternodes are selected from them on XDC.&lt;/p&gt;

&lt;p&gt;First, let's cover the terminology.&lt;/p&gt;

&lt;h2&gt;
  
  
  Terminology
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Validator&lt;/strong&gt; — an address that has staked a minimum of 10 million XDC on the XDCValidator contract (&lt;a href="https://xdcscan.io/address/0x0000000000000000000000000000000000000088"&gt;0x00...0088&lt;/a&gt;).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Masternode&lt;/strong&gt; — a Validator in the active state, responsible for mining blocks and keeping the network alive.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Standbynode&lt;/strong&gt; — a Validator waiting in reserve to become a Masternode when an active Masternode drops out.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Penaltynode&lt;/strong&gt; — a Validator that has failed to perform its duties (e.g. an offline node) and has been temporarily removed from active duty.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;   &lt;/p&gt;

&lt;h2&gt;
  
  
  Masternode Selection
&lt;/h2&gt;

&lt;p&gt;Masternodes are selected from the pool of Validators by ranking them on stake amount — simply put, the top stakers get in. The maximum number of Masternodes is 108, so the top 108 Validators become active Masternodes. Every epoch (~900 blocks, ~30 minutes) the list is re-calculated.&lt;/p&gt;

&lt;p&gt;When Validators have staked the same amount (for example, all sitting at the 10M minimum), the tie-break is decided by the sorting algorithm — the resulting order looks arbitrary but is deterministic.&lt;/p&gt;

&lt;p&gt;A non-performing Validator (a Penaltynode) is excluded from this calculation.&lt;/p&gt;

&lt;p&gt;You can view current staking numbers and rankings on the &lt;a href="https://nodes.primexdc.com/masternodes"&gt;XDC Masternode Dashboard&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;   &lt;/p&gt;

&lt;h2&gt;
  
  
  Reward Distribution
&lt;/h2&gt;

&lt;p&gt;Every epoch (~900 blocks, ~30 minutes) a fixed reward of 5,000 XDC is shared among the active Masternodes — roughly 46 XDC per Masternode (90% goes to the node owner, 10% to the XDC Treasury). Over a year this works out to approximately 10% APY.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; The ~10% APY is not guaranteed. Rewards are tied to block production — they are only paid out as blocks are created.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Rewards are based on the fixed 10M stake only; staking more than 10M does not earn additional rewards. However, topping up above 10M can raise your ranking and therefore improve your chance of getting into the top 108 and becoming an active Masternode.&lt;/p&gt;

&lt;p&gt;Standbynodes do not receive on-chain rewards today, but currently receive manual rewards monthly, funded by the XDC Treasury wallet. In the next protocol upgrade (ETA 2026), Standby nodes will be split into Protector and Observer nodes, and their rewards will be automated and paid out on-chain.&lt;/p&gt;

&lt;p&gt;Penaltynodes do not receive any rewards.&lt;/p&gt;

&lt;p&gt;   &lt;/p&gt;

&lt;h2&gt;
  
  
  FAQ
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;When are Masternode rewards paid?&lt;/strong&gt;&lt;br&gt;
Masternode rewards are paid automatically on-chain at the end of every epoch (~900 blocks, ~30 minutes).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;When does the active Masternode set change?&lt;/strong&gt;&lt;br&gt;
At the epoch boundary — every ~900 blocks — the list is re-calculated and any changes take effect.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How are Validators with the same stake ranked?&lt;/strong&gt;&lt;br&gt;
Validators are ranked purely by stake, from highest to lowest. When several have staked the same amount (for example, all at the 10M minimum), the tie-break is decided by the sorting algorithm. The resulting order looks arbitrary and isn't based on anything a Validator controls, but it is deterministic — it's not random, and the network always arrives at the same order.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is the limit to the number of Standbynodes?&lt;/strong&gt;&lt;br&gt;
No — there is currently no limit on the number of Standbynodes. In the next protocol upgrade (ETA 2026), Standby will be split into Protector and Observer tiers, which will have maximum limits.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How does a Penaltynode recover?&lt;/strong&gt;&lt;br&gt;
A penalised node rejoins by submitting signing transactions, which confirm it is back online and ready to resume its duties.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How do I become a Masternode from a Standbynode?&lt;/strong&gt;&lt;br&gt;
Stake additional XDC on top of your 10M so that your ranking rises into the top 108 Validators.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How do I stake on the Validator contract?&lt;/strong&gt;&lt;br&gt;
Staking requires locking 10M XDC and a KYC process. It's not covered in this article — see the &lt;a href="https://xinfin.org/setup-masternode"&gt;Masternode Setup Guide&lt;/a&gt; and &lt;a href="https://master.xinfin.network/"&gt;XDC Network Staking Portal (Governance)&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;   &lt;/p&gt;

&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://nodes.primexdc.com/masternodes"&gt;XDC Masternode Dashboard | Real-time Network Stats&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://master.xinfin.network/"&gt;XDC Network Staking Portal (Governance)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://xinfin.org/setup-masternode"&gt;Masternode Setup Guide&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://xdcscan.io/address/0x0000000000000000000000000000000000000088"&gt;Explorer - XDCValidator contract&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>XDCAI : Building Payment Rails for Millions of Autonomous AI Agents</title>
      <dc:creator>Ritesh kakkad</dc:creator>
      <pubDate>Sat, 25 Jul 2026 10:59:39 +0000</pubDate>
      <link>https://www.xdc.dev/riteshkakkad/xdcai-building-payment-rails-for-millions-of-autonomous-ai-agents-3nei</link>
      <guid>https://www.xdc.dev/riteshkakkad/xdcai-building-payment-rails-for-millions-of-autonomous-ai-agents-3nei</guid>
      <description>&lt;p&gt;Artificial intelligence is rapidly moving beyond answering questions. The next generation of AI agents will independently discover services, make decisions, execute purchases and settle payments with a just voice command.&lt;/p&gt;

&lt;p&gt;Recently, At XDC Tech’s New York office, XDC Network Co-founder Atul Khekade presented a live demonstration of XDC AI—a new framework designed to combine agentic intelligence with programmable, blockchain-based compliance settlement. AI Assistants to Economic Agents&lt;/p&gt;

&lt;p&gt;The commercial opportunity is enormous.&lt;/p&gt;

&lt;p&gt;McKinsey estimates that AI agents could mediate between $3 trillion and $5 trillion in global consumer commerce by 2030, including as much as $1 trillion in the US B2C retail market alone. Gartner also predicts that by 2028, agentic AI will be included in 33% of enterprise software applications, compared with less than 1% in 2024, and will autonomously make approximately 15% of everyday business decisions. AI Agents will require more than intelligence. They will need wallets, spending controls, trusted payment assets, transparent records and an efficient settlement network.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What XDCAI.tech Brings to Agentic Commerce&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;XDCAI provides autonomous agents with a non-custodial smart wallet, Compliant and Regulated framwork and allows them to pay for APIs and digital services using stable coins like USDC on XDC Network.&lt;/p&gt;

&lt;p&gt;Built around the open x402 payment standard, the framework enables:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Gasless USDC payments using EIP-3009&lt;/li&gt;
&lt;li&gt;On-chain spending limits controlled by users&lt;/li&gt;
&lt;li&gt;Pay-per-call API transactions&lt;/li&gt;
&lt;li&gt;Agent-to-agent and agent-to-business payments&lt;/li&gt;
&lt;li&gt;Machine-readable transaction records&lt;/li&gt;
&lt;li&gt;Integration with ChatGPT, Claude, Codex, Cursor and other AI platforms&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Instead of subscriptions, invoices or credit cards, an AI agent can pay the exact price of a service and receive an on-chain transaction record for every request using Stable coin like USDC on XDC Network.&lt;/p&gt;

&lt;p&gt;Native USDC and Circle’s CCTP V2 are already live on XDC Network, supporting fast, ISO20022 Compliant messaging, low-cost payments and cross-chain transfers. Circle describes USDC issued in Europe as a MiCA-compliant regulated e-money token and states that USDC already meets core GENIUS Act standards while progressing toward full regulatory alignment in the United States. Payments ecosystem also supports projects that prioritise ISO 20022-aligned financial messaging, helping connect autonomous digital commerce with established financial infrastructure. &lt;/p&gt;

&lt;p&gt;XDC Network has already processed more than 1.12 billion transactions since year 2019, demonstrating the scale and operational history required for enterprise applications. Trade finance, real-world asset tokenisation to regulated stablecoins and now agentic commerce, XDC continues evolving with every major technology cycle.&lt;/p&gt;

&lt;p&gt;XDCAI.tech is not simply another AI application. It is being developed as a payment, control and settlement framework for a future in which millions of autonomous agents transact with one another.&lt;/p&gt;

&lt;p&gt;Explore XDCAI's Market Place: &lt;a href="https://xdcai.tech/marketplace"&gt;https://xdcai.tech/marketplace&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;Build Your Quick Agent with XDCAI framework: &lt;a href="https://docs.xdcai.tech/"&gt;https://docs.xdcai.tech/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Watch Atul Khekade’s live demonstration:&lt;br&gt;
&lt;a href="https://x.com/XDC_USA/status/2079602305528115673?s=52"&gt;https://x.com/XDC_USA/status/2079602305528115673?s=52&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;Official XDC Network YouTube channel:&lt;br&gt;
&lt;a href="https://www.youtube.com/channel/UCQaL6FixEQ80RJC0B2egX6g"&gt;https://www.youtube.com/channel/UCQaL6FixEQ80RJC0B2egX6g&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Masternode Metrics</title>
      <dc:creator>Will White</dc:creator>
      <pubDate>Fri, 24 Jul 2026 17:12:54 +0000</pubDate>
      <link>https://www.xdc.dev/will_republic/masternode-metrics-43b</link>
      <guid>https://www.xdc.dev/will_republic/masternode-metrics-43b</guid>
      <description>&lt;p&gt;After a masternode becomes standby or is active are additional metrics exposed that enable tracking of consensus health and uptime? If not, what is the best way to monitoring the additional performance and health of the consensus operations undertaken by a masternode?&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Empty Coinbase.txt</title>
      <dc:creator>Will White</dc:creator>
      <pubDate>Fri, 24 Jul 2026 15:59:40 +0000</pubDate>
      <link>https://www.xdc.dev/will_republic/empty-coinbasetxt-1ljc</link>
      <guid>https://www.xdc.dev/will_republic/empty-coinbasetxt-1ljc</guid>
      <description>&lt;p&gt;Hi, I'm working on setting up some new nodes and everything worked well in regards to exercising the steps at:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/XinFinOrg/XinFin-Node"&gt;https://github.com/XinFinOrg/XinFin-Node&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;However, after the nodes have been at height and healthy for some time I came to grab the coinbase.txt data for staking processes and found that it is empty.&lt;/p&gt;

&lt;p&gt;Any ideas?&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Request for 10,000,000 Test XDC (Apothem)</title>
      <dc:creator>kankyoku-ri</dc:creator>
      <pubDate>Thu, 23 Jul 2026 05:45:31 +0000</pubDate>
      <link>https://www.xdc.dev/kankyokuri/request-for-10000000-test-xdc-apothem-2hh9</link>
      <guid>https://www.xdc.dev/kankyokuri/request-for-10000000-test-xdc-apothem-2hh9</guid>
      <description>&lt;p&gt;Hi team,&lt;br&gt;
I planning to set up an XDC node and then conduct staking tests on the Apothem testnet.&lt;br&gt;
I had planned to obtain test XDC by clicking on the following site:&lt;br&gt;
&lt;a href="https://faucet.apothem.network/"&gt;https://faucet.apothem.network/&lt;/a&gt;&lt;br&gt;
However, since a single click yields only 1,000 XDC, it would have required 10,000 clicks to acquire the 10 million XDC needed for the minimum staking amount.&lt;br&gt;
Therefore, I decided to change my approach and obtain the test XDC in a single batch here instead.&lt;br&gt;
Could you please send 10,000,000 TXDC to my address?&lt;br&gt;
Address: 0xf23Ed13483e212977Bd73efd6973F1cA5F8Ef7B2&lt;br&gt;
Thank you!&lt;/p&gt;

</description>
      <category>apothem</category>
    </item>
    <item>
      <title>Implementing an Asynchronous 'Kill Switch' &amp; Deterministic Rollbacks within a 2-Second Block Time</title>
      <dc:creator>Sara Teller</dc:creator>
      <pubDate>Mon, 20 Jul 2026 23:56:11 +0000</pubDate>
      <link>https://www.xdc.dev/sara_teller_f28580da0ae0d/implementing-an-asynchronous-kill-switch-deterministic-rollbacks-within-a-2-second-block-time-1m27</link>
      <guid>https://www.xdc.dev/sara_teller_f28580da0ae0d/implementing-an-asynchronous-kill-switch-deterministic-rollbacks-within-a-2-second-block-time-1m27</guid>
      <description>&lt;p&gt;To eliminate institutional counterparty risk, GovOn utilizes a 'Tripartite Kill Switch'. If the L2 physical execution data (ZK-Proof) doesn’t perfectly match the L0 banking fiat instructions down to the final decimal, the smart contract must trigger a hard rollback—zero capital moves.&lt;br&gt;
My challenge with XDC’s extremely fast XDPoS (2-second finality): How do you orchestrate a deterministic rollback when querying an external banking oracle right before the state commits?&lt;br&gt;
Do you rely on a two-step ⁠commit/reveal⁠ pattern, or are there specific Hook/WASM capabilities on XDC that allow a transaction to evaluate external conditions and revert gracefully without burning excessive gas for failed states?&lt;/p&gt;

</description>
    </item>
    <item>
      <title>How to Publish and Monetise Your API on XDC AI Marketplace.</title>
      <dc:creator>Vinn </dc:creator>
      <pubDate>Thu, 16 Jul 2026 12:47:53 +0000</pubDate>
      <link>https://www.xdc.dev/vinn_9686/how-to-publish-and-monetise-your-api-on-xdc-ai-marketplace-23b8</link>
      <guid>https://www.xdc.dev/vinn_9686/how-to-publish-and-monetise-your-api-on-xdc-ai-marketplace-23b8</guid>
      <description>&lt;h2&gt;
  
  
  Introduction
&lt;/h2&gt;

&lt;p&gt;AI is advancing past chatbots into autonomous agents that can discover services, make payments, and complete tasks on their own. This new economy, known as &lt;strong&gt;AI Commerce&lt;/strong&gt;, enables AI agents to automatically purchase APIs without human involvement.&lt;/p&gt;

&lt;p&gt;XDC AI Tech enables developers to publish APIs that AI agents can discover, pay for using &lt;strong&gt;gasless USDC payments&lt;/strong&gt; and consume instantly using the &lt;strong&gt;x402 payment protocol&lt;/strong&gt;, all powered by the &lt;strong&gt;&lt;a href="https://xinfin.org/"&gt;XDC Network&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Rise of Agentic AI Commerce
&lt;/h2&gt;

&lt;p&gt;AI is no longer limited to assisting users; it can independently discover services, negotiate prices, make payments, and complete tasks. This shift is giving rise to &lt;strong&gt;Agentic AI Commerce&lt;/strong&gt;, in which self-operating AI agents transact directly with digital services via programmable payments, rather than traditional user-driven workflows. Unlike conventional AI assistants, agentic systems can execute multi-step actions across applications with minimal human intervention, enabling a new machine-to-machine economy.&lt;/p&gt;

&lt;h2&gt;
  
  
  Challenges with Traditional API Monetisation
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Traditional API businesses rely on:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;API keys and manual authentication&lt;/li&gt;
&lt;li&gt;Monthly subscription plans&lt;/li&gt;
&lt;li&gt;Credit card payments and invoicing&lt;/li&gt;
&lt;li&gt;Geographic payment restrictions&lt;/li&gt;
&lt;li&gt;Human-managed billing&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These models create friction for autonomous AI agents that need instant, pay-per-use access.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why the API Economy Needs to Evolve
&lt;/h2&gt;

&lt;p&gt;The API economy has grown into a multi-billion-dollar industry, but most APIs still rely on subscriptions, API keys, invoices, and manual onboarding. These models work well for humans but introduce friction for autonomous AI agents that need instant, pay-per-use access. As AI agents become capable of executing workflows independently, developers need infrastructure that provides automated discovery, authentication, and micropayments without calling for human approval for every transaction.&lt;/p&gt;

&lt;h2&gt;
  
  
  Industry Momentum Behind Agentic AI
&lt;/h2&gt;

&lt;p&gt;Enterprises are rapidly investing in agentic AI. Gartner predicts that 6&lt;a href="https://www.gartner.com/en/newsroom/press-releases/2026-01-15-gartner-predicts-60-percent-of-brands-will-use-agentic-ai-to-deliver-streamlined-one-to-one-interactions-by-2028"&gt;0% of brands will use agentic AI&lt;/a&gt; to deliver one-to-one customer communications by 2028, while spending on supply chain software with agentic AI capabilities is expected to grow from less than &lt;a href="https://www.gartner.com/en/newsroom/press-releases/2026-04-07-gartner-forecasts-supply-chain-management-software-with-agentic-ai-will-grow-to-53-billion-in-spend-by-2030?utm_source=chatgpt.com"&gt;$2 billion in 2025 to $53 billion by 2030&lt;/a&gt;. These forecasts highlight how AI agents are moving beyond experimentation into real-life business operations.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is XDC AI Tech?
&lt;/h2&gt;

&lt;p&gt;XDC AI Tech is an AI API marketplace where developers are able to list APIs and AI services for autonomous agents.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.xdc.dev/images/9UabPIVkDJJHP_epYXGgJ70M-Cr9IaryY4mumz7c6So/w:880/mb:500000/ar:1/aHR0cHM6Ly93d3cu/eGRjLmRldi91cGxv/YWRzL2FydGljbGVz/LzM1Z25lMWl5a3Yy/OHQwaWZseDgzLnBu/Zw" class="article-body-image-wrapper"&gt;&lt;img src="https://www.xdc.dev/images/9UabPIVkDJJHP_epYXGgJ70M-Cr9IaryY4mumz7c6So/w:880/mb:500000/ar:1/aHR0cHM6Ly93d3cu/eGRjLmRldi91cGxv/YWRzL2FydGljbGVz/LzM1Z25lMWl5a3Yy/OHQwaWZseDgzLnBu/Zw" alt="Image description" width="880" height="474"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Primary features include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;AI API Marketplace&lt;/li&gt;
&lt;li&gt;Pay-per-request monetisation&lt;/li&gt;
&lt;li&gt;Gasless USDC payments&lt;/li&gt;
&lt;li&gt;x402 payment protocol&lt;/li&gt;
&lt;li&gt;Blockchain settlement on XDC Network&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why XDC Network?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;XDC Network provides:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Fast transaction finality&lt;/li&gt;
&lt;li&gt;Low transaction costs&lt;/li&gt;
&lt;li&gt;Enterprise-grade blockchain infrastructure&lt;/li&gt;
&lt;li&gt;EVM compatibility&lt;/li&gt;
&lt;li&gt;Native support for gasless USDC payments&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Understanding x402
&lt;/h2&gt;

&lt;p&gt;x402 is an open payment protocol that enables APIs to charge users automatically.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Instead of API keys:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;AI requests an API.&lt;/li&gt;
&lt;li&gt;API returns HTTP 402 Payment Required.&lt;/li&gt;
&lt;li&gt;AI signs a USDC payment.&lt;/li&gt;
&lt;li&gt;Payment is verified.&lt;/li&gt;
&lt;li&gt;API returns the requested data.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This enables true machine-to-machine commerce.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why x402 Matters
&lt;/h2&gt;

&lt;p&gt;Traditional internet protocols never included a native payment mechanism, forcing developers to rely on API keys, subscriptions, and third-party billing systems. The x402 protocol brings programmable payments directly into HTTP by enabling APIs to request payment before returning a response. This allows AI agents to pay for services automatically on a per-request basis, making APIs both discoverable and instantly monetizable without manual billing workflows.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Shift Toward Machine-to-Machine Payments
&lt;/h2&gt;

&lt;p&gt;One of the biggest barriers to autonomous AI has been payments. While AI agents can analyse data, generate content, and orchestrate workflows, they traditionally could not complete purchases without human involvement. Emerging payment standards such as x402 and blockchain-based settlement are changing this by enabling secure, programmable, machine-to-machine payments that support autonomous digital commerce.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Reference:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://docs.x402.org/introduction"&gt;https://docs.x402.org/introduction&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://docs.xdcai.tech/"&gt;https://docs.xdcai.tech/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Gasless USDC Payments
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;With XDC AI:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Agents only need USDC.&lt;/li&gt;
&lt;li&gt;No XDC is required for gas.&lt;/li&gt;
&lt;li&gt;A relayer submits the blockchain transaction.&lt;/li&gt;
&lt;li&gt;Providers receive USDC payments seamlessly.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How to Publish Your API
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Step 1: Prepare Your API&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Ensure your API is:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Publicly accessible (HTTPS)&lt;/li&gt;
&lt;li&gt;Stable and production-ready&lt;/li&gt;
&lt;li&gt;Well documented&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Step 2: Integrate x402&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Configure your API to accept x402 payments, so AI agents can pay per request.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 3: Prepare Listing Details&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Keep the following ready:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;API name&lt;/li&gt;
&lt;li&gt;Description&lt;/li&gt;
&lt;li&gt;Endpoint&lt;/li&gt;
&lt;li&gt;Documentation&lt;/li&gt;
&lt;li&gt;Pricing&lt;/li&gt;
&lt;li&gt;Category &amp;amp; Tags&lt;/li&gt;
&lt;li&gt;Contact details&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Step 4: Submit Your Listing&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Visit the XDC AI Provider Submission page and complete the listing form.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 5: Review &amp;amp; Approval&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The XDC AI team reviews your submission before publishing it on the marketplace.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 6: Start Monetising&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Once approved:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Your API becomes discoverable.&lt;/li&gt;
&lt;li&gt;AI agents can access it.&lt;/li&gt;
&lt;li&gt;Payments are settled in USDC for every successful request.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Best Practices
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Write a clear API description.&lt;/li&gt;
&lt;li&gt;Keep documentation up to date.&lt;/li&gt;
&lt;li&gt;Use open pricing.&lt;/li&gt;
&lt;li&gt;Maintain high uptime.&lt;/li&gt;
&lt;li&gt;Choose accurate categories and tags.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  FAQs
&lt;/h2&gt;

&lt;p&gt;Q. What payment currency is used?&lt;/p&gt;

&lt;p&gt;USDC.&lt;/p&gt;

&lt;p&gt;Q. Do I need XDC for gas?&lt;/p&gt;

&lt;p&gt;No. Payments are gasless for users.&lt;/p&gt;

&lt;p&gt;Q. Can I charge per API call?&lt;/p&gt;

&lt;p&gt;Yes. XDC AI supports pay-per-request pricing.&lt;/p&gt;

&lt;p&gt;Q. Can I list an existing API?&lt;/p&gt;

&lt;p&gt;Yes, as long as it meets the marketplace requirements.&lt;/p&gt;

&lt;h2&gt;
  
  
  Disclaimer
&lt;/h2&gt;

&lt;p&gt;This article is for informational purposes only. Platform features and submission requirements may change. Always refer to the official &lt;a href="https://docs.xdcai.tech/"&gt;XDC AI documentation&lt;/a&gt; before publishing your API.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Future of AI Commerce
&lt;/h2&gt;

&lt;p&gt;Industry adoption is accelerating across sectors. Financial institutions are already deploying agentic AI for wealth management, treasury operations, client onboarding, and trading workflows under human supervision. At the same time, organisations are building marketplaces and payment infrastructure that allow AI agents to discover and purchase digital services autonomously. Together, these developments point heading toward a future where software agents become active participants in the global digital economy.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://xdcai.tech/"&gt;XDC AI Tech&lt;/a&gt;&lt;/strong&gt; simplifies API monetisation by combining AI Commerce, x402 programmable payments, gasless USDC transactions, and the &lt;strong&gt;&lt;a href="https://xinfin.org/"&gt;XDC Network&lt;/a&gt;&lt;/strong&gt;. Instead of relying on subscriptions and API keys, developers can earn revenue from every API request while making their services accessible to autonomous AI agents worldwide.&lt;/p&gt;

</description>
      <category>xdc</category>
      <category>ai</category>
      <category>blockchain</category>
      <category>agenticai</category>
    </item>
    <item>
      <title>What is the status of XDCDAO? (xdcdao.org appears to be offline)</title>
      <dc:creator>Shayne Picard</dc:creator>
      <pubDate>Tue, 14 Jul 2026 15:55:00 +0000</pubDate>
      <link>https://www.xdc.dev/sjpxdc/what-is-the-status-of-xdcdao-xdcdaoorg-appears-to-be-offline-2fkl</link>
      <guid>https://www.xdc.dev/sjpxdc/what-is-the-status-of-xdcdao-xdcdaoorg-appears-to-be-offline-2fkl</guid>
      <description>&lt;p&gt;While reviewing governance discussions here, I found &lt;a href="https://www.xdcdao.org/"&gt;https://www.xdcdao.org/&lt;/a&gt; inoperable; it returns an HTTP 402 error, which I believe typically indicates a lapsed payment with the hosting provider.  Before posting, I wanted to understand the timeline and what the outage means for any funds in the system. What I found raises questions that are broader than an unpaid hosting bill.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The timeline (per Internet Archive captures)&lt;/strong&gt;:&lt;br&gt;
The site was serving normally as recently as March 5, 2026, and appears to have gone dark sometime between then and mid-July 2026.  Archived captures suggest the front-end was rebuilt and redeployed at least once after the August 2024 launch. Someone was maintaining this site and then, within the last four months, it silently went offline.  I am not aware of any public statement regard it's deprecation or abandonment.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What's on-chain (verifiable on xdcscan.io)&lt;/strong&gt;:&lt;br&gt;
People's House deposits flow through the DaofinPlugin contract at 0xE514ca0B19B5bDBe01D60Be0879ed2cf4b2749E2, which forwards all XDC to the DAO treasury at 0xd7BF844A67954437593057b038b221485a2555C3.  The record shows seven addresses joined at 10,000 XDC each between August and late 2024, alongside eight 1-XDC deposits consistent with test transactions.  Three of the seven members resigned and withdrew--on October 8, November 15, and November 17, 2024--all while the site was operational.  The treasury currently holds 40,138 XDC, and nothing has moved since November 17, 2024.&lt;br&gt;
The transaction history shows nothing improper.  Funds in equal funds out plus what remains, and the deposits have sat untouched throughout the outage.  So this is largely an inquiry regarding stewardship, transparency, and the future function of XDCDAO. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;An honest open question about those deposits&lt;/strong&gt;:&lt;br&gt;
I have not attempted to identify owners of the depositing addresses, and I don't want to assume facts.  There are two readings of this data, and they lead to different, but equally important, conversations.&lt;br&gt;
If the depositors are &lt;u&gt;ordinary community members&lt;/u&gt;, then four people currently have 10,000 XDC each locked behind a website that no longer exists, with no published alternative for viewing or withdrawing their stake.&lt;br&gt;
If, instead, most deposits came from people involved in building and testing XDCDAO, then the funds-access concern softens, but a different question sharpens: genuine community participation in the network's flagship decentralized governance initiative may have been minimal, and the DAO went dark without anyone noticing in part because there was hardly anyone positioned to notice.&lt;br&gt;
I'd genuinely welcome clarification from anyone who knows which picture is accurate.  Both are worth an honest conversation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How I found the contract addresses — and why that's itself a finding&lt;/strong&gt;:&lt;br&gt;
I was unable to locate the mainnet contract addresses in any published source.  I didn't see them in the launch announcement, the how-to articles here on xdc.dev, the XinFinOrg/osx-daofin repository (whose deployment records cover only Apothem testnet), the daofin-ui repository (which loads them from private build-time variables), or anywhere indexed by search engines.  If they were shared somewhere (e.g. a Telegram channel, a Discord, a post I missed) I'd welcome the pointer, and I acknowledge that contract addresses are always technically recoverable on-chain by someone with the right expertise. But neither of those is user-friendly documentation. &lt;br&gt;
I recovered the addresses by extracting an archived copy of the website's JavaScript bundle from the Wayback Machine and verifying candidates against the chain.  (One caveat for completeness: the final version of the site's code was not archived, so I cannot rule out that later builds referenced additional contracts; but the chain confirms the 2024 member deposits remain in the treasury above.)  The practical standard for a system holding member deposits should be that a depositor of ordinary technical ability can find the contracts from an official, durable source.  Today, as far as I can determine, they cannot.  And with the front-end dead, there may be no documented path to the two-step resign-and-claim withdrawal process.&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Questions for anyone with visibility&lt;/u&gt;:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Who is responsible for xdcdao.org's hosting and maintenance, and is there a plan and timeline to restore it?  Given the site was maintained as recently as this year, this may be as simple as a missed invoice.&lt;/li&gt;
&lt;li&gt;Will the mainnet contract addresses and ABIs be officially published in a durable location, so depositors can verify their stake and withdraw without depending on a website?&lt;/li&gt;
&lt;li&gt;Can anyone involved clarify the extent of genuine community participation in the People's House and Masternode Senate?  How many proposals were ever put to a vote, and where can that history be viewed?  I attempted to view the voting history on one matter I understood was subject to the XDCDAO vote but was not able to find anything.&lt;/li&gt;
&lt;li&gt;There appears to be recent activity on the Apothem testnet contracts: deposits as recently as April 2026, i.e., around or after the time the production site went dark.  Is development continuing?  If so, what is the plan for the production governance layer: restore, relaunch, or formally wind down?&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Why this matters&lt;/strong&gt;:&lt;br&gt;
An expired hosting bill is a mundane failure, not a scandal, and the on-chain record is clean.  But governance infrastructure is only credible if it is reliably available and independently verifiable.  A governance system that can go dark for months without public comment tells us something either about its stewardship or about its adoption; both are worth addressing openly, because both are fixable.  The first steps are cheap: state plainly what XDCDAO's status is, publish the addresses and ABIs, and either restore the site or provide a withdrawal guide.  Last I knew, XDCDAO was in hands more capable than my own, but I'm available to help in any way that would move things forward.&lt;/p&gt;

&lt;p&gt;I'm genuinely interested in answers here, not blame. Tagging &lt;a class="mentioned-user" href="https://www.xdc.dev/0xbeny"&gt;@0xbeny&lt;/a&gt;, who has been the most consistent and generous voice on XDCDAO in this forum.&lt;/p&gt;

&lt;h1&gt;
  
  
  WeAreXDC
&lt;/h1&gt;

</description>
      <category>xdcdao</category>
      <category>dao</category>
      <category>governance</category>
    </item>
    <item>
      <title>TradeFi Network Goes Multichain: The RWA Analytics Layer Born on XDC Now Tracks Stellar</title>
      <dc:creator>ruslan wing</dc:creator>
      <pubDate>Tue, 14 Jul 2026 13:50:36 +0000</pubDate>
      <link>https://www.xdc.dev/ruslan_wing/tradefi-network-goes-multichain-the-rwa-analytics-layer-born-on-xdc-now-tracks-stellar-4eb8</link>
      <guid>https://www.xdc.dev/ruslan_wing/tradefi-network-goes-multichain-the-rwa-analytics-layer-born-on-xdc-now-tracks-stellar-4eb8</guid>
      <description>&lt;p&gt;Every maturing asset class eventually gets its Bloomberg terminal. Equities got tickers and screens. DeFi got DefiLlama. And tokenized real-world assets — the fastest-growing category in crypto — are getting theirs too.&lt;/p&gt;

&lt;p&gt;For the XDC ecosystem, that layer is &lt;a href="https://tradefi.network"&gt;TradeFi Network&lt;/a&gt;. If you have read any recent analysis of XDC's RWA growth (including my own coverage of the &lt;a href="https://www.xdc.dev/ruslan_wing/15-billion-on-chain-how-xdc-networks-tokenized-value-just-rewrote-its-own-growth-curve-3iea"&gt;$1.5 billion tokenized value milestone&lt;/a&gt;), the numbers came from TradeFi's dashboards. It has quietly become the single source of truth for what is actually happening on XDC — RWA issuance, DeFi TVL, staking, and ETPs, all in one place.&lt;/p&gt;

&lt;p&gt;And now it is making its most significant move yet: &lt;strong&gt;TradeFi Network is going multichain, adding &lt;a href="https://tradefi.network/explore/stellar"&gt;Stellar&lt;/a&gt; as its second tracked network&lt;/strong&gt; — currently live in beta, with more chains on the roadmap.&lt;/p&gt;

&lt;p&gt;In this article, I want to cover what TradeFi Network actually does, how its data methodology works, and why the Stellar expansion changes what kind of platform this is.&lt;/p&gt;




&lt;h2&gt;
  
  
  What Is TradeFi Network?
&lt;/h2&gt;

&lt;p&gt;TradeFi Network describes itself as &lt;strong&gt;"cross-chain intelligence for tokenized assets."&lt;/strong&gt; In practice, it unifies fragmented RWA, DeFi, and ETP data across networks into one dashboard — with comparable metrics, issuer coverage, and on-chain transparency.&lt;/p&gt;

&lt;p&gt;If you have used it, you know the core surfaces:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;&lt;a href="https://tradefi.network/explore"&gt;Explore&lt;/a&gt;&lt;/strong&gt; — the ecosystem overview: total tokenized value by segment, distribution charts, and per-asset-class breakdowns (Tokenized RWA, Stablecoins, Staking, ETP, DeFi).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;a href="https://tradefi.network/rwa"&gt;RWA&lt;/a&gt;&lt;/strong&gt; — the tokenized asset registry: issuers, individual instruments, tokenized values, and 7-day trends. This is where you can drill into issuer pages like &lt;a href="https://tradefi.network/rwa/issuers/liqi"&gt;Liqi&lt;/a&gt; and see nearly two thousand individual credit instruments tracked asset-by-asset.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;a href="https://tradefi.network/network/staking"&gt;Staking&lt;/a&gt;&lt;/strong&gt; — validator counts, total staked value, estimated APY, and percentage of supply secured.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;a href="https://tradefi.network/defi"&gt;DeFi&lt;/a&gt;&lt;/strong&gt; — protocol-level TVL across the network's DeFi landscape.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;a href="https://tradefi.network/pools"&gt;Pools&lt;/a&gt;&lt;/strong&gt; — tracked liquidity and credit pools.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;On XDC today, that adds up to a live picture of &lt;strong&gt;$1.6 billion in total tokenized value&lt;/strong&gt;: $1.5B in tokenized RWAs across 1,936 assets from 14 issuers, $81.7M staked across 302 validators, plus ETP and DeFi segments. Issuers already integrated include &lt;strong&gt;Liqi, Mercado Bitcoin, and VERT Capital&lt;/strong&gt; — the names driving XDC's Brazilian credit engine.&lt;/p&gt;

&lt;h3&gt;
  
  
  Who It Serves
&lt;/h3&gt;

&lt;p&gt;TradeFi is built around three audiences, and this framing explains most of its product decisions:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Issuers&lt;/strong&gt; — get discovered by capital. A verified on-chain presence, benchmarking against the market, and lower distribution cost than pitching investors one by one.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Investors&lt;/strong&gt; — compare and track every RWA in one place, with on-chain validation and consistent metrics instead of scattered issuer PDFs.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The ecosystem&lt;/strong&gt; — a single, standardized source of truth for TVL, flows, and growth, usable by builders, analysts, and journalists alike.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That third audience is the one I would emphasize. Before TradeFi, quantifying XDC's RWA activity meant stitching together issuer announcements, explorer queries, and third-party trackers that barely covered the network. Now there is one URL. That discoverability compounds: analysts cite it, articles reference it, issuers want to appear on it.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Methodology: Labeled Data, Not Just Big Numbers
&lt;/h2&gt;

&lt;p&gt;The RWA analytics space has a credibility problem: headline "tokenized value" numbers often blend incompatible things. TradeFi's answer is a published, versioned &lt;a href="https://tradefi.network/methodology"&gt;data methodology&lt;/a&gt; (currently v2026-06) with a five-tier source taxonomy:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Source Type&lt;/th&gt;
&lt;th&gt;What It Means&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;On-chain indexed&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Metrics derived from publicly verifiable on-chain state and transactions&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Partner API&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Structured data supplied directly by issuers and licensed product vendors&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Open data&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Established public market and reference data providers&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;TradeFi curated&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Issuer, asset, and contract metadata verified and maintained by TradeFi&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Computed&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Aggregates and derived indicators built from the sources above&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Every aggregate displays its metric label and an "as of" timestamp. Cross-network figures carry an explicit methodology disclaimer, because — as the methodology page itself puts it — totals across networks respect network-specific definitions and &lt;strong&gt;should not be read as a single homogeneous pool&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;TradeFi also names its data infrastructure partner: &lt;strong&gt;&lt;a href="https://www.allium.so"&gt;Allium&lt;/a&gt;&lt;/strong&gt;, the blockchain data platform used by major institutions for indexed on-chain data. That matters for anyone consuming these numbers downstream — the pipeline is not a black box.&lt;/p&gt;

&lt;p&gt;This is the unglamorous work that separates an ecosystem marketing page from an analytics platform institutions can actually cite. Publishing what you measure, how you measure it, and where the data comes from is table stakes in traditional finance. It is still rare in crypto.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Big Move: Stellar Goes Live in Beta
&lt;/h2&gt;

&lt;p&gt;Until now, TradeFi was an XDC-native platform. That just changed. The &lt;a href="https://tradefi.network/explore/stellar"&gt;Stellar dashboard&lt;/a&gt; is live in beta, tracking &lt;strong&gt;curated Stellar stablecoins, tokenized funds, and the 21Shares AXLM ETP&lt;/strong&gt; — with RWA, DeFi, and ETP metrics and per-asset source attribution on detail pages.&lt;/p&gt;

&lt;p&gt;Why Stellar as the second chain? Because in RWA terms, Stellar is one of the most serious networks in existence:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Stellar's tokenized RWA value recently crossed &lt;strong&gt;$3 billion&lt;/strong&gt;, roughly 300% growth from early 2025.&lt;/li&gt;
&lt;li&gt;It hosts &lt;strong&gt;Franklin Templeton's BENJI&lt;/strong&gt; — the first US-registered mutual fund to use a public blockchain as its official system of record, live on Stellar since 2021 and representing over &lt;strong&gt;$650 million&lt;/strong&gt; on the network, with the broader BENJI suite at ~$2B across nine chains.&lt;/li&gt;
&lt;li&gt;Ondo's USDY, Spiko's money market funds, and WisdomTree's tokenized fund family round out a deep institutional asset stack.&lt;/li&gt;
&lt;li&gt;Like XDC, Stellar's identity is payments, settlement, and regulated assets — not speculative DeFi.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That last point is the strategic tell. TradeFi is not chasing every chain; it is building coverage of &lt;strong&gt;settlement-and-RWA-first networks&lt;/strong&gt; — the chains where tokenized value means credit instruments and registered funds, not looped leverage. XDC and Stellar are natural siblings in that thesis.&lt;/p&gt;

&lt;h3&gt;
  
  
  What Multichain Actually Unlocks
&lt;/h3&gt;

&lt;p&gt;The obvious win is coverage. The deeper win is &lt;strong&gt;comparability&lt;/strong&gt;. With XDC and Stellar side by side under one methodology, questions that used to require three browser tabs and a spreadsheet become one toggle:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How does XDC's issuance-driven Brazilian credit stack compare to Stellar's registered-fund stack?&lt;/li&gt;
&lt;li&gt;Which network is attracting new issuers, and in which asset classes?&lt;/li&gt;
&lt;li&gt;How do staking economics, DeFi depth, and ETP presence differ across RWA-focused chains?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For XDC specifically, this is a confidence play, not a dilution. Putting XDC's $1.5B RWA figure next to Stellar's numbers, under the same labeling rules, says: &lt;em&gt;we are comfortable being measured against the best RWA chains in the industry, on neutral instruments.&lt;/em&gt; Ecosystems that only publish their own scoreboard invite skepticism. Ecosystems that build the league table invite comparison — and comparison is what institutional allocators actually do.&lt;/p&gt;

&lt;p&gt;The homepage already signals &lt;strong&gt;"more chains coming soon."&lt;/strong&gt; If TradeFi executes, the platform born as XDC's ecosystem showcase becomes something bigger: a specialized multichain RWA intelligence layer, in a market where the incumbents each cover only part of the picture that RWA-first networks care about.&lt;/p&gt;




&lt;h2&gt;
  
  
  Point of Comparison: TradeFi Network vs DefiLlama
&lt;/h2&gt;

&lt;p&gt;The easiest way to understand what TradeFi adds is to look at the same network through both lenses.&lt;/p&gt;

&lt;p&gt;Open DefiLlama and look up XDC: you will see roughly &lt;strong&gt;$7.5M in DeFi TVL across ~19 protocols&lt;/strong&gt;. Open TradeFi's Explore dashboard: &lt;strong&gt;$1.6 billion in total tracked value&lt;/strong&gt;. Both numbers are correct. They are measuring completely different things — and that gap is precisely the blind spot TradeFi exists to close.&lt;/p&gt;

&lt;p&gt;DefiLlama is the gold standard for what it does: open-source, community-maintained adapters tracking DeFi protocol deposits, stablecoins, fees, and volumes across hundreds of chains. But its lens is &lt;strong&gt;protocol TVL&lt;/strong&gt; — capital deposited into DeFi smart contracts. Tokenized real-world assets mostly do not live there. A Liqi receivables certificate or a VERT private credit pool is issued to investor wallets under regulated structures; it never touches a lending pool or DEX, so it is invisible to a TVL tracker. On a DeFi-first chain that distinction barely matters. On an RWA-first chain like XDC, it hides &lt;strong&gt;99.5% of the economy&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Here is the side-by-side:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Dimension&lt;/th&gt;
&lt;th&gt;DefiLlama&lt;/th&gt;
&lt;th&gt;TradeFi Network&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Primary lens&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;DeFi protocol TVL (capital in smart contracts)&lt;/td&gt;
&lt;td&gt;Full tokenized-value view: RWA + stablecoins + staking + ETP + DeFi&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;XDC as it appears&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;~$7.5M (19 protocols)&lt;/td&gt;
&lt;td&gt;$1.6B total tracked value&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Issuer-level RWA registry&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;No — aggregate categories only&lt;/td&gt;
&lt;td&gt;Yes — 14 issuer profiles with dedicated pages (e.g. Liqi with 1,800+ instruments)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Individual asset granularity&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Protocol-level&lt;/td&gt;
&lt;td&gt;Instrument-level: 1,936 individual tokenized assets tracked&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Issuer-supplied data&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;No — on-chain adapters only&lt;/td&gt;
&lt;td&gt;Yes — Partner API feeds directly from issuers, labeled as such&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Staking dashboard&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Not per-network validator economics&lt;/td&gt;
&lt;td&gt;$81.7M staked, 302 validators, 15.1% of supply, est. APY&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;ETP tracking&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Not covered&lt;/td&gt;
&lt;td&gt;Covered — XDC ETP ($9.4M) and 21Shares AXLM on Stellar&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Source labeling&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Adapter code (open-source, technical)&lt;/td&gt;
&lt;td&gt;Five-tier taxonomy on every metric + "as of" timestamps&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Verified issuer identity&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Verified listings backed by identity and on-chain data checks&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;7-day / trend view per asset class&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;DeFi-centric charts&lt;/td&gt;
&lt;td&gt;Per-segment trends incl. RWA (+41.14% 7D at time of writing)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Two data points in that table simply do not exist anywhere on DefiLlama:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;The instrument-level registry.&lt;/strong&gt; Nobody else shows you 1,936 individual tokenized credit instruments, mapped to 14 verified issuers, with per-asset source attribution. That granularity is what a credit analyst or allocator actually needs — "XDC has RWAs" is a narrative; "here are Liqi's 1,800 active receivables certificates, sourced via issuer API" is due diligence material.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;The hybrid data model.&lt;/strong&gt; DefiLlama is deliberately on-chain-only. TradeFi combines on-chain indexing (via Allium) with &lt;strong&gt;Partner API data supplied directly by regulated issuers&lt;/strong&gt; — because in RWA, the on-chain token is only half the story; the issuer's books are the other half. TradeFi labels which is which, so you know what you are reading.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;To be fair to DefiLlama: it covers hundreds of chains, its fee/volume dashboards are unmatched, and for pure DeFi analysis it remains the reference. The point is not that one replaces the other — it is that &lt;strong&gt;RWA-first networks were being measured with a DeFi-first ruler&lt;/strong&gt;, and chains like XDC and Stellar looked artificially small as a result. TradeFi is the ruler built for the actual asset class.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Commercial Layer: How the Platform Sustains Itself
&lt;/h2&gt;

&lt;p&gt;TradeFi is also building a real business around the data, with three clearly separated offerings:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Verified Listing&lt;/strong&gt; — a verified badge on issuers and assets, backed by identity and on-chain data checks, with enhanced profile data and priority indexing.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Featured Placement&lt;/strong&gt; — sponsored visibility on the market dashboard, always explicitly labeled "Sponsored."&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Data &amp;amp; API Access&lt;/strong&gt; — early-access programmatic endpoints for TVL, issuers, and assets, with CSV/JSON exports.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The design choice worth noting: &lt;strong&gt;paid placement is always labeled, and "Verified" reflects data checks, not endorsement.&lt;/strong&gt; Keeping the editorial/commercial line explicit is exactly what a data platform needs to stay citable. And the API tier is the one I am most interested in as a builder — programmatic access to issuer-level RWA data opens the door to integrations, dashboards, agents, and research tooling built on top of TradeFi rather than around it.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why This Matters for XDC
&lt;/h2&gt;

&lt;p&gt;Three takeaways from where I sit:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. XDC's growth is now independently legible.&lt;/strong&gt; A $1.5B RWA figure means more when it lives on a platform with published methodology, source attribution, and a named data partner — one that also tracks a $3B competitor chain under the same rules.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. The analytics layer is becoming an ecosystem export.&lt;/strong&gt; XDC has always exported standards work (trade finance, ISO 20022 alignment). TradeFi extends that pattern: infrastructure incubated in the XDC ecosystem, now serving the broader RWA market — with XDC as the primary, most deeply covered network at its core.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Data is a distribution channel.&lt;/strong&gt; Every analyst who opens TradeFi to check Stellar's numbers sees XDC's next to them. For a network whose story is issuance volume and asset count rather than token speculation, that ambient visibility is worth more than any campaign.&lt;/p&gt;

&lt;p&gt;The RWA market is projected in the trillions by every major forecaster. Markets that size do not run on screenshots and Telegram announcements — they run on data infrastructure. TradeFi Network started by giving XDC its scoreboard. With Stellar live in beta and more chains coming, it is now building the scoreboard for the category.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Explore the platform: &lt;a href="https://tradefi.network"&gt;tradefi.network&lt;/a&gt; · &lt;a href="https://tradefi.network/explore"&gt;XDC dashboard&lt;/a&gt; · &lt;a href="https://tradefi.network/explore/stellar"&gt;Stellar dashboard (beta)&lt;/a&gt; · &lt;a href="https://tradefi.network/methodology"&gt;Data methodology&lt;/a&gt;. Figures as of July 2026. Not investment advice.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>xdc</category>
      <category>tradefi</category>
      <category>rwa</category>
      <category>tvl</category>
    </item>
  </channel>
</rss>
