<?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>Forem: JhiNResH</title>
    <description>The latest articles on Forem by JhiNResH (@jhinresh).</description>
    <link>https://forem.com/jhinresh</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%2F1108066%2F914d94e3-2e17-4478-85cd-dcef3edd6325.jpeg</url>
      <title>Forem: JhiNResH</title>
      <link>https://forem.com/jhinresh</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/jhinresh"/>
    <language>en</language>
    <item>
      <title>How to Verify Any Smart Contract or AI Agent Before You Transact</title>
      <dc:creator>JhiNResH</dc:creator>
      <pubDate>Fri, 27 Feb 2026 04:32:31 +0000</pubDate>
      <link>https://forem.com/jhinresh/how-to-verify-any-smart-contract-or-ai-agent-before-you-transact-44b2</link>
      <guid>https://forem.com/jhinresh/how-to-verify-any-smart-contract-or-ai-agent-before-you-transact-44b2</guid>
      <description>&lt;p&gt;When someone asks "is this DeFi protocol safe?" or "can I trust this AI agent?", there's now a programmatic answer.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Maiat Protocol&lt;/strong&gt; is a trust infrastructure layer for the agentic economy. It provides on-chain reputation scoring for any EVM address — smart contracts, wallets, and AI agent tokens alike.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Maiat Does
&lt;/h2&gt;

&lt;p&gt;Maiat aggregates three data sources to produce a &lt;strong&gt;trust score (0–100)&lt;/strong&gt;:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;On-chain analytics&lt;/strong&gt; — contract age, transaction volume, deployer history, verified source code&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Community reviews&lt;/strong&gt; — structured ratings from users who have interacted with the protocol&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Outcome reports&lt;/strong&gt; — verified post-transaction reports (success / failed / dispute)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The result is a verdict:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;✅ &lt;code&gt;proceed&lt;/code&gt; — score above threshold (default 60)&lt;/li&gt;
&lt;li&gt;⚠️ &lt;code&gt;caution&lt;/code&gt; — borderline, proceed carefully&lt;/li&gt;
&lt;li&gt;🚫 &lt;code&gt;block&lt;/code&gt; — high-risk, avoid&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  API Usage
&lt;/h2&gt;

&lt;p&gt;Maiat exposes a public REST API:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Free tier — up to 10 req/min&lt;/span&gt;
GET https://maiat-protocol.vercel.app/api/v1/score/0xYourAddress

&lt;span class="c"&gt;# Trust gate verdict (proceed / caution / block)&lt;/span&gt;
GET https://maiat-protocol.vercel.app/api/v1/trust-check?agent&lt;span class="o"&gt;=&lt;/span&gt;0xYourAddress

&lt;span class="c"&gt;# x402 payment-gated endpoint (for AI agents, $0.02 USDC / call)&lt;/span&gt;
GET https://maiat-protocol.vercel.app/api/v1/trust-gate?agent&lt;span class="o"&gt;=&lt;/span&gt;0xYourAddress
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The &lt;code&gt;trust-gate&lt;/code&gt; endpoint implements the &lt;a href="https://github.com/coinbase/x402" rel="noopener noreferrer"&gt;x402 payment protocol&lt;/a&gt; — meaning AI agents using Coinbase's AgentKit or &lt;code&gt;awal&lt;/code&gt; can autonomously pay for and consume trust data without human intervention.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why This Matters for AI Agents
&lt;/h2&gt;

&lt;p&gt;In 2026, AI agents are transacting on-chain autonomously. An agent executing a swap or deploying capital needs to verify its counterparty the same way a human would check a contract on Etherscan — but programmatically.&lt;/p&gt;

&lt;p&gt;Maiat is designed for this pattern:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// Before any agent-to-agent transaction&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;verdict&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nf"&gt;fetch&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
  &lt;span class="s2"&gt;`https://maiat-protocol.vercel.app/api/v1/trust-check?agent=&lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;counterpartyAddress&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;`&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="na"&gt;headers&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;X-Maiat-Key&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;mk_...&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nf"&gt;then&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;r&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="nx"&gt;r&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;json&lt;/span&gt;&lt;span class="p"&gt;());&lt;/span&gt;

&lt;span class="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;verdict&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;verdict&lt;/span&gt; &lt;span class="o"&gt;===&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;block&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="k"&gt;throw&lt;/span&gt; &lt;span class="k"&gt;new&lt;/span&gt; &lt;span class="nc"&gt;Error&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Counterparty flagged as high-risk by Maiat Protocol&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  How Trust Scores Are Calculated
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Signal&lt;/th&gt;
&lt;th&gt;Weight&lt;/th&gt;
&lt;th&gt;Notes&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Contract verified on Etherscan&lt;/td&gt;
&lt;td&gt;High&lt;/td&gt;
&lt;td&gt;Unverified source = immediate caution&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Deployer wallet age&lt;/td&gt;
&lt;td&gt;Medium&lt;/td&gt;
&lt;td&gt;Fresh wallets = higher risk&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Transaction count (90d)&lt;/td&gt;
&lt;td&gt;Medium&lt;/td&gt;
&lt;td&gt;Low activity = less data&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Community review score&lt;/td&gt;
&lt;td&gt;High&lt;/td&gt;
&lt;td&gt;Weighted by reviewer reputation&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Outcome dispute rate&lt;/td&gt;
&lt;td&gt;High&lt;/td&gt;
&lt;td&gt;% of transactions that ended in dispute&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Use Cases
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Pre-swap trust gate&lt;/strong&gt; — verify a protocol before routing a swap through it&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI agent onboarding&lt;/strong&gt; — screen new agents before allowing them to join a multi-agent workflow&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DeFi due diligence&lt;/strong&gt; — research any protocol before depositing funds&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Smart contract auditing supplement&lt;/strong&gt; — community signal alongside formal audits&lt;/li&gt;
&lt;/ul&gt;

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

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Live app&lt;/strong&gt;: &lt;a href="https://maiat-protocol.vercel.app" rel="noopener noreferrer"&gt;maiat-protocol.vercel.app&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GitHub&lt;/strong&gt;: &lt;a href="https://github.com/JhiNResH/maiat-protocol" rel="noopener noreferrer"&gt;github.com/JhiNResH/maiat-protocol&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;x402 ecosystem&lt;/strong&gt;: Listed on &lt;a href="https://x402.org/ecosystem" rel="noopener noreferrer"&gt;x402.org/ecosystem&lt;/a&gt; under Services/Endpoints&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Virtuals ACP&lt;/strong&gt;: Available as &lt;code&gt;trust_gate&lt;/code&gt;, &lt;code&gt;trust_score_query&lt;/code&gt;, &lt;code&gt;onchain_report&lt;/code&gt;, &lt;code&gt;deep_insight_report&lt;/code&gt; offerings&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;Maiat Protocol is built on Base. Trust scores are computed in real-time using on-chain data + Prisma-backed community reviews. No API key required for the free tier.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>defi</category>
      <category>web3</category>
      <category>ai</category>
      <category>security</category>
    </item>
    <item>
      <title>Ideas about decentralized map</title>
      <dc:creator>JhiNResH</dc:creator>
      <pubDate>Wed, 09 Aug 2023 10:53:52 +0000</pubDate>
      <link>https://forem.com/jhinresh/ideas-about-decentralized-map-49bj</link>
      <guid>https://forem.com/jhinresh/ideas-about-decentralized-map-49bj</guid>
      <description>&lt;p&gt;I found many people are confused about my ideas on slide, so I decide to express my them.Here's some details about the decentralized maps platform which I want to build, and I think i cannot narrow those thoughts into a few sentences.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://twitter.com/JhiNResH/status/1689214066668326912?s=20"&gt;Original Post&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;cc&lt;br&gt;
&lt;a href="https://twitter.com/_nightsweekends"&gt;nights&amp;amp;weekends&lt;/a&gt;&lt;br&gt;
&lt;a href="https://twitter.com/_buildspace"&gt;buildspace&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--e46MoXUC--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/a4feombb2cftmjp0bwxd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--e46MoXUC--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/a4feombb2cftmjp0bwxd.png" alt="Image description" width="800" height="547"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Can anyone gives me some advice about the slide and the one liner?
&lt;/h2&gt;

&lt;p&gt;1️⃣&lt;br&gt;
I think ppl use google maps very often, and we sometimes gave reviews even ratings to the locations, shops or restaurants. And I have been observing it for months.&lt;br&gt;
I realized that there are lots of ppl like me actually manage their google account and try to promote it.&lt;br&gt;
2️⃣&lt;br&gt;
Everytime we write reviews, upload photos or vids will get some points. Those points can gain " Local Guidance" levels. As for me, I'm now Lv.5 very close to lv.6. The higher level you reach the better prizes or discount you will have from Google.&lt;br&gt;
3️⃣&lt;br&gt;
Moreover, the more contents you provide to the google maps platform you will get tremendous views. Therefore, I'm thinking to transfer views to money. Similarly, trying to transfer those points to irl money.&lt;br&gt;
Which means I might need to ICO. 🤔&lt;br&gt;
4️⃣&lt;br&gt;
In addition to turning those into money, I'm trying to make the platform more decentralized through blockchain tech. Such as the identity proofs, to keep the spams or bots away.&lt;/p&gt;

&lt;p&gt;I'm not sure whether your place which you based has this kind of thing. Rate for 5 stars to get some discounts or treats. This may lead restaurants or places that have a higher ratings but literally sucks misleading users to go there and visit.&lt;br&gt;
5️⃣&lt;br&gt;
Hence, I think maybe I can use some proving systyem to check those reviews or ratings are genuine.&lt;/p&gt;

&lt;p&gt;Other functions like web 3 auth, I'm also planning to add in my dapp.&lt;/p&gt;

&lt;p&gt;Feel free to give me some advice or insights.&lt;br&gt;
I really appreciate! 🙏&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
