<?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>DEV Community: aisatoshinext-arch</title>
    <description>The latest articles on DEV Community by aisatoshinext-arch (@aisatoshinextarch).</description>
    <link>https://dev.to/aisatoshinextarch</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3843764%2F61425f64-81f0-4725-80ab-cb20d7e123c7.png</url>
      <title>DEV Community: aisatoshinext-arch</title>
      <link>https://dev.to/aisatoshinextarch</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/aisatoshinextarch"/>
    <language>en</language>
    <item>
      <title>NemoClaw secures the sandbox. What about the wallet?</title>
      <dc:creator>aisatoshinext-arch</dc:creator>
      <pubDate>Wed, 25 Mar 2026 21:40:06 +0000</pubDate>
      <link>https://dev.to/aisatoshinextarch/nemoclaw-secures-the-sandbox-what-about-the-wallet-1i7i</link>
      <guid>https://dev.to/aisatoshinextarch/nemoclaw-secures-the-sandbox-what-about-the-wallet-1i7i</guid>
      <description>&lt;p&gt;NVIDIA launched NemoClaw at GTC 2026. It wraps OpenClaw in a sandbox, enforces network policies, and adds local inference. It’s genuinely impressive.&lt;/p&gt;

&lt;p&gt;But it doesn’t solve the spend problem.&lt;/p&gt;

&lt;p&gt;OpenShell can block egress to suspicious-exchange.io. What it can’t do is tell you that your agent has already spent $450 today, that it’s about to hit a $500 payment on an endpoint that looks legitimate but isn’t, or generate a cryptographic proof that every payment decision was legitimate.&lt;/p&gt;

&lt;p&gt;That’s a different layer. That’s spend governance.&lt;/p&gt;

&lt;p&gt;What spend governance means.&lt;br&gt;
When an agent makes a payment — calling a paid API, executing a DeFi trade, purchasing a service — someone needs to answer three questions:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1.  Is this destination allowed?
2.  Is the amount within policy?
3.  Can I prove this decision was made correctly?
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;NemoClaw answers none of these. It’s not supposed to. It’s a sandbox, not a financial controller.&lt;/p&gt;

&lt;p&gt;What I built.&lt;/p&gt;

&lt;p&gt;I built Dreamline to fill this gap. Before any payment, the agent calls /proxy/pay:&lt;/p&gt;

&lt;p&gt;response = requests.post(&lt;br&gt;
    "&lt;a href="https://dreamline-backend.onrender.com/proxy/pay" rel="noopener noreferrer"&gt;https://dreamline-backend.onrender.com/proxy/pay&lt;/a&gt;",&lt;br&gt;
    headers={"X-Dreamline-Key": "your-key"},&lt;br&gt;
    json={&lt;br&gt;
        "amount_usd": 0.01,&lt;br&gt;
        "destination": "api.coingecko.com",&lt;br&gt;
        "task_description": "Fetch BTC price"&lt;br&gt;
    }&lt;br&gt;
)&lt;/p&gt;

&lt;p&gt;In under 100ms, Dreamline:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;∙ Checks an on-chain blacklist stored in a BNB Chain smart contract — no server compromise can unblock a blacklisted destination
∙ Enforces per-agent policies — daily budget, per-transaction limit, destination whitelist
∙ Returns an EIP-712 signature on every approval, verifiable on any EVM chain
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;How it works with NemoClaw:&lt;/p&gt;

&lt;p&gt;The two layers are complementary:&lt;br&gt;
    ∙ NemoClaw controls what the agent can access at the network level&lt;br&gt;
    ∙ Dreamline controls what the agent can spend at the financial level&lt;/p&gt;

&lt;p&gt;A NemoClaw policy allows egress to dreamline-backend.onrender.com. From there, Dreamline takes over — checking the on-chain blacklist, enforcing budgets, and logging every decision immutably.&lt;/p&gt;

&lt;p&gt;I opened a PR to add a Dreamline preset to NemoClaw’s policy library: github.com/NVIDIA/NemoClaw/pull/923&lt;/p&gt;

&lt;p&gt;Try it.&lt;/p&gt;

&lt;p&gt;Live demo, no login needed: dreamline-jade.vercel.app/landing&lt;br&gt;
You can test the on-chain blacklist live — click “Run authorization” and see payments approved or blocked in real time, with "onchain": true in the response when BNB Chain makes the decision.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>agentskills</category>
      <category>blockchain</category>
      <category>security</category>
    </item>
  </channel>
</rss>
