<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:cc="http://cyber.law.harvard.edu/rss/creativeCommonsRssModule.html">
    <channel>
        <title><![CDATA[Stories by Unicrow on Medium]]></title>
        <description><![CDATA[Stories by Unicrow on Medium]]></description>
        <link>https://medium.com/@unicrow?source=rss-3fe1ab78781e------2</link>
        <image>
            <url>https://cdn-images-1.medium.com/fit/c/150/150/1*bFjUYXNHEb4y8xqGCAPUuA.png</url>
            <title>Stories by Unicrow on Medium</title>
            <link>https://medium.com/@unicrow?source=rss-3fe1ab78781e------2</link>
        </image>
        <generator>Medium</generator>
        <lastBuildDate>Tue, 07 Apr 2026 21:48:18 GMT</lastBuildDate>
        <atom:link href="https://medium.com/@unicrow/feed" rel="self" type="application/rss+xml"/>
        <webMaster><![CDATA[yourfriends@medium.com]]></webMaster>
        <atom:link href="http://medium.superfeedr.com" rel="hub"/>
        <item>
            <title><![CDATA[Introducing the Unicrow MCP Server: Bringing Secure Escrow Transactions to AI Agents]]></title>
            <link>https://medium.com/@unicrow/introducing-the-unicrow-mcp-server-bringing-secure-escrow-transactions-to-ai-agents-0a0d967eca63?source=rss-3fe1ab78781e------2</link>
            <guid isPermaLink="false">https://medium.com/p/0a0d967eca63</guid>
            <category><![CDATA[escrow]]></category>
            <category><![CDATA[ai-agent]]></category>
            <category><![CDATA[mcp-server]]></category>
            <dc:creator><![CDATA[Unicrow]]></dc:creator>
            <pubDate>Fri, 20 Jun 2025 13:22:01 GMT</pubDate>
            <atom:updated>2025-06-20T13:47:53.500Z</atom:updated>
            <content:encoded><![CDATA[<h4><em>Agents can use Model Context Protocol to prepare escrow transactions for broadcasting to supported networks</em></h4><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*5DO9eOhUXbFN0TeDAEP6mA.png" /></figure><p>Model Context Protocol (<em>MCP</em>) has emerged as a de facto industry standard for communication of foundation models and AI agents with external resources and with each other. This led us to introduce it as another method of integration (on top of the TypeScript SDK, <a href="https://medium.com/@unicrow/unicrow-now-supported-in-woocommerce-and-dokan-on-wordpress-743d771fc782">Woocommerce/Dokan plugin</a>, and native web3 calls).</p><p>The MCP server supports both legacy SSE and Streamable HTTP connections at their respective endpoints:</p><ul><li>HTTP(S): mcp.unicrow.ai/mcp</li><li>SSE: mcp.unicrow.ai/sse</li></ul><p>The functions currently supported are:</p><ul><li>pay</li><li>refund</li><li>release</li><li>claim</li><li>arbitrate</li></ul><p>Unicrow currently runs on Base and Arbitrum One and each of these tools take <em>chainId</em> parameter so that they can return a contract address for the desired chain.</p><p>Below example calls for <em>pay</em>, <em>refund</em>, and <em>arbitrate</em></p><h4>Pay</h4><pre>{<br>  &quot;tool&quot;: &quot;pay&quot;,<br>  &quot;arguments&quot;: {<br>    &quot;chainId&quot;: 42161,<br>    &quot;sender&quot;: &quot;0x742d35Cc6631C0532925a3b8D4Fd23c83e4C9B1A&quot;,<br>    &quot;buyer&quot;: &quot;0x742d35Cc6631C0532925a3b8D4Fd23c83e4C9B1A&quot;, <br>    &quot;seller&quot;: &quot;0x8ba1f109551bD432803012645Hac136c74a13EcE&quot;,<br>    &quot;currency&quot;: &quot;0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9&quot;,<br>    &quot;amount&quot;: &quot;100000000&quot;,<br>    &quot;challengePeriod&quot;: 86400,<br>    &quot;challengeExtension&quot;: 43200,<br>    &quot;marketplace&quot;: &quot;0x123456789aBcDeFgHiJkLmNoP123456789AbCdEf&quot;,<br>    &quot;marketplaceFee&quot;: 9.5,<br>    &quot;arbitrator&quot;: &quot;0xAbCdEf123456789aBcDeFgHiJkLmNoP123456789&quot;, <br>    &quot;arbitratorFee&quot;: 4.5,<br>    &quot;paymentReference&quot;: &quot;ORDER-12345&quot;<br>  }<br>}</pre><p>The tool returns serialized transaction and contract address</p><pre>{<br>  data: &#39;0x0...&#39;,<br>  contractAddress: &#39;0xDb815D9bEaAa8d3bdc714Be3a17dCBA5eCbe876B&#39;<br>}</pre><p>The smart contract’s <em>Pay</em> function returns <em>escrowId</em> which is then used in any of the subsequent calls to identify the escrow.</p><h4>Refund</h4><pre>{<br>  &quot;tool&quot;: &quot;refund&quot;,<br>  &quot;arguments&quot;: {<br>    &quot;chainId&quot;: 42161,<br>    &quot;escrowId&quot;: &quot;123456&quot;<br>  }<br>}</pre><p><em>Release</em> and <em>Claim </em>follow the same pattern</p><h4>Arbitrate</h4><pre>{<br>  &quot;tool&quot;: &quot;arbitrate&quot;,<br>  &quot;arguments&quot;: {<br>    &quot;chainId&quot;: 42161,<br>    &quot;escrowId&quot;: &quot;123456789&quot;, <br>    &quot;buyerSplit&quot;: 75.0,<br>    &quot;sellerSplit&quot;: 25.0<br>  }<br>}</pre><h3>Limitations and prerequisites</h3><p>The server only returns transactions that need to be signed and broadcasted. It is therefore assumed that the agent has key infrastructure available and is connected to one of the supported chains.</p><p>Also, while reading <em>escrowId</em> and using it in all subsequent calls is all the agent needs for the full escrow lifecycle, staying updated about escrow updates executed by other parties requires blockchain indexing, which we plan to introduce in a separate MCP server.</p><p>We’d love to hear about how we can further support the agents in their secured transaction needs.</p><h3>On-prem deployment</h3><p>We will open source the server code so anyone can run it locally if desired. Stay tuned and <a href="mailto: hello@unicrow.io">contact us</a> for any suggestions, feedback, or questions</p><h3>Integration into an upcoming multi-agent platform</h3><p>The MCP server will be integrated into an upcoming multi-agent platform. To be announced here and <a href="https://x.com/unicrowio">on our X</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=0a0d967eca63" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Unicrow now supported in WooCommerce and Dokan on Wordpress]]></title>
            <link>https://medium.com/@unicrow/unicrow-now-supported-in-woocommerce-and-dokan-on-wordpress-743d771fc782?source=rss-3fe1ab78781e------2</link>
            <guid isPermaLink="false">https://medium.com/p/743d771fc782</guid>
            <category><![CDATA[escrow]]></category>
            <category><![CDATA[marketplaces]]></category>
            <category><![CDATA[payments]]></category>
            <category><![CDATA[woocommerce]]></category>
            <category><![CDATA[dokan]]></category>
            <dc:creator><![CDATA[Unicrow]]></dc:creator>
            <pubDate>Mon, 31 Mar 2025 14:51:01 GMT</pubDate>
            <atom:updated>2025-04-01T08:00:37.226Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*d20werYhAfOMvmuhrJbwjA.png" /></figure><h3>Introduction</h3><p>Unicrow <a href="https://docs.unicrow.io/docs/devs/sdk/">open-source SDK</a> already provides two ways for marketplaces and platforms to easily facilitate cryptocurrency payments — by either embedding the payment process into the marketplace’s frontend, or by reusing the built-in UI components.</p><p>Now we’re introducing a 3rd method (in fact, also 4th but more on that below), a native integration into <a href="https://woo.com/"><em>WooCommerce</em></a> and <a href="https://dokan.co/wordpress/"><em>Dokan</em></a>, Wordpress’ most popular e-commerce and multi-vendor plugins.</p><p><em>This provides arguably the quickest, the most secure, and completely permissionless way to process payments between buyers and sellers on a WooCommerce/Dokan marketplace (which itself is arguably the quickest and easiest way to build a marketplace).</em></p><h3>Overview</h3><p>There are a few things important to understand before we get into the actual (and actually very simple) setup.</p><h4>Unicrow 101</h4><p>To better grasp the potential that Unicrow brings to marketplace operators, it is good to understand the protocol basics. For that, we recommend our introduction post (TODO: add link), but let us briefly highlight key points here:</p><ul><li>Unicrow runs on Ethereum’s Layer 2s <em>Arbitrum One</em> and <em>Base</em> and supports ETH and any ERC20 token, e.g. stablecoins like USDT or USDC</li><li>Each individual escrow has the following parameters: <em>seller</em> (supposed to receive the funds), <em>marketplace </em>(optional, gets a fee), <em>arbitrator </em>(optional, decides a dispute), and what’s the <em>challenge </em>(escrow) period.</li><li><em>Buyer </em>can release funds to the <em>seller </em>at any time</li><li>Funds can be claimed to the <em>seller </em>after the <em>challenge period</em> ends</li><li><em>Marketplace </em>and/or <em>arbitrator </em>fees will be sent out when the funds are claimed or released from the escrow.</li></ul><h4>Supported tokens</h4><p>The plugin supports <em>ETH</em>, <em>USDC</em>, and <em>USDT</em> and <em>Arbitrum One</em> network. We will extend the support for <em>Base</em> soon and for additional tokens based on feedback and eventually make it easier for admins to add support for any tokens. In the meantime, the admins can extend support in the source code directly (see <em>Advanced Setup </em>below)</p><h4>Supported functionality</h4><p><strong>Woocommerce<br></strong>Unicrow plugin extends <em>Wooommerce </em>(WC) in the following ways:</p><ul><li>It is added to a list of payment methods in WC’s settings and on the checkout page</li><li>It adds an optional <em>seller address</em> attribute to product settings — this technically allows operating a multi-vendor marketplace even without Dokan, simply by adding different <em>seller address</em> to different products.</li><li>It adds a link to the transaction in Unicrow web3 app to admin emails and to the order notes.</li></ul><p><strong>Dokan<br></strong>The plugin further adds or reuses the following to Dokan settings:</p><ul><li>It uses Dokan’s admin commission as a <em>marketplace fee</em> parameter in Unicrow transactions</li><li>It adds <em>seller address</em> parameter to vendor settings and if set, uses it in the transactions (in that case, setting <em>seller address</em> in product settings is not necessary)</li><li>It adds a note with a link to the transaction in Unicrow web3 app to email sent to the vendor</li></ul><h4>Limitations</h4><ul><li>Unicrow currently requires exactly one seller address per escrow, therefore plugin will throw an error if the order contains different seller ethereum addresses (e.g. if different addresses are set in the products or if products from different vendors with unique addresses are in the order)</li><li>Supported currencies: ETH, USDT, USDC</li><li>Supported network: <em>Arbitrum One</em></li></ul><h3>Prerequisites</h3><p>Wordpress plugins:</p><ul><li><strong>Woocommerce </strong>is a required and technically sufficient pre-requisite since Unicrow plugin hooks into its functions for setting up and for payment processing. <br>While <em>Woocommerce </em>itself doesn’t support multi-seller setup, Unicrow extends product settings for <em>seller address</em> attribute. That means if an admin doesn’t want to complicate things with multiple sellers and an additional plugin such as <em>Dokan</em>, but wants to be able to process payments to different addresses for different products, the combination of <em>WC </em>and <em>Unicrow </em>allows for this.</li><li>(Optional) <strong>Dokan </strong>for full multi-vendor functionality.</li></ul><p>Other/Crypto-related prerequisites for different actors:</p><ul><li><strong>Marketplace operator<br></strong>- A secure wallet able to receive fees (if applicable) on the supported network<br>- An online web3 wallet to provide arbitration service loaded with a little bit bit of ETH to pay for gas costs <br>- (optional) An online web3 wallet that would regularly claim payments to sellers as a service to them (for simplification it can be done also from the Arbitrator wallet)</li><li><strong>Buyer<br></strong>- A web3 wallet with sufficient balance to pay the purchase and a little bit of ETH on the supported network</li><li><strong>Seller<br></strong>- An Ethereum address to receive the supported tokens on the supported network</li></ul><h3>Setup</h3><p><em>If any of this is not working for you or if you want to provide any feedback to this process or the plugin itself, please contact us at </em><a href="mailto: hello@unicrow.io"><em>hello@unicrow.io</em></a></p><p>Follow these steps to set up Unicrow with WooCommerce and, optionally, Dokan</p><ol><li>Open Wordpress Admin Console</li><li>Install and activate WooCommerce, <a href="https://plugins.svn.wordpress.org/unicrow-cryptocurrency-escrow/">Unicrow plugin</a>, and optionally Dokan</li><li>Open Woocommerce → Settings → Payments and press <em>Manage</em> next to <em>Unicrow</em></li><li>Enter the values per your preference:</li></ol><ul><li><strong>Unicrow Environment URL</strong>: Leave to default for production setup. Contact us at <a href="mailto:devs@unicrow.io">devs@unicrow.io</a> or at our Discord to use our staging area with the private testnet for testing</li><li><strong>Default Seller Address:</strong> If you plan to receive all payments to one address, paste that address here. Leave it empty if you plan to set seller address per product or (in Dokan) per vendor</li><li><strong>Marketplace Address</strong>: If you plan to collect a commission directly from Unicrow to your wallet, paste its address here. This can be a cold wallet or even an exchange address as long as it supports receiving the tokens you chose on the supported network (currently Arbitrum One TODO: add link to arbitrum guide).</li><li><strong>Marketplace Commission:</strong> Leave empty if you want the plugin to reuse Dokan commission settings or if you don’t plan to charge a commission.</li><li><strong>Challenge Period</strong>: How long a buyer can challenge the payment. After this, the seller can claim the payment.</li><li><strong>Arbitrator address</strong>: An address of a wallet account from which you will resolve disputes. The address should be funded with a little bit of ETH for gas fees and easy to access and make transactions from, e.g. a browser or even a mobile wallet. It won’t hold customer funds at any point so it can be “hot”.</li><li><strong>Arbitrator fee</strong>: Arbitrator fee in %. If the marketplace operator is an arbitrator too, can leave this at 0.</li><li><strong>Accepted tokens</strong>: Currently supporting ETH, USDT, USDC. We’d like your feedback which ones we should prioritize and will eventually let you manage a custom list (which you of course can still do by opening the plugin code and editing config.php :-)</li></ul><p>4. If you use Dokan, you can adjust the following settings:</p><ul><li><strong>Admin commission</strong> in Dokan → Settings → Selling Options (Unicrow technically supports percentage commission only, if flat commission is used, the plugin will convert it to percentage using total price)<br>- Note: If Admin commission is also set in Vendor settings, that value will take precedence.</li><li><strong>Vendor’s seller address</strong> in Users → All Users → Edit → Unicrow Vendor Options (at the very bottom)<br>- If this is left empty and neither product nor Woocommerce default seller address is set up, Unicrow payment option will not be available for the seller</li></ul><h3>Users’ experience</h3><p>Once things are set up properly (i.e. all required values are set), Unicrow will show up for the buyer as a payment option in the checkout.</p><h4>Token selection</h4><p>If multiple tokens are enabled, the user will be able to choose one. If only one token is set in the admin options, it will be explicitly mentioned in the payment method title.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/814/1*kyCe2vV-6DJYt0dM6Y9qSA.png" /><figcaption>Unicrow payment method with multiple tokens</figcaption></figure><figure><img alt="" src="https://cdn-images-1.medium.com/max/818/1*CVM4ZErfS5awwXYvXy0Zrw.png" /><figcaption>With only one token set, it displays in the payment method name</figcaption></figure><h4>Currency conversion</h4><p>If the user selects ETH or if the shop’s currency is other than USD, the plugin will read read the current price or the rate of the shop’s currency vs. the selected stablecoin from CoinGecko API. If the shop is in USD and USDT or USDC is selected, 1:1 rate is always used.</p><h4>Payment</h4><p>When the user confirms Unicrow payment and presses <em>Place Order</em>, they will be redirected to Unicrow where they can pay.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/962/1*G5UTZb3mX6F-MBevrncDNw.png" /></figure><figure><img alt="" src="https://cdn-images-1.medium.com/max/962/1*QR-zyP0LCC7RNXdjCAIcQA.png" /></figure><h4>Confirmation</h4><p>After the payment, the user will be redirected back to the shop’s checkout confirmation page.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/962/1*x2d8oZo_JD-5_uOnLev96A.png" /></figure><p>Both the admin and the seller will receive an email with a link to Unicrow app’s payment screen where they can verify that the payment was made as per the checkout. The same link is added to the order dashboard in WP admin.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/611/1*Gow5wCUQEAJuUnugqRZY4Q.png" /></figure><figure><img alt="" src="https://cdn-images-1.medium.com/max/482/1*cw7J52koLxMmtV6KjOUObQ.png" /><figcaption>Email with the link and the seller’s view after opening the link</figcaption></figure><h4>Dispute resolution</h4><p>If the admin needs to step in as an arbitrator, they can open the same link with their arbitrator wallet connected.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/480/1*O4-86ZAmacp-oH9iJ9ystA.png" /></figure><figure><img alt="" src="https://cdn-images-1.medium.com/max/585/1*ftu34_R1mLLxn_2Rb8AaBQ.png" /></figure><h4>Claim</h4><p>When the challenge period ends, either the seller, or the admin can follow the same link to release the payment from the escrow. The fees (if defined) are sent in the same transaction to the arbitrator and the marketplace addresses and the remaining amount to the seller.</p><p>This ability for the marketplace (or, technically, anyone) to release the funds on behalf of the seller securely (because the smart contract makes sure they’re sent only where they belong) creates a great user experience for the sellers who potentially don’t need to claim the payments manually (and can even have them sent to a fiat off-ramp).</p><p><em>Currently, this claim must be called manually by someone. Please </em><a href="mailto: hello@unicrow.io"><em>contact us</em></a><em> if you ere interested in having an automated service calling the claim for your marketplace users.</em></p><h3>How-to Guides</h3><p>Admins who want to post how-to guides to their website are more then welcome to reuse the text and images from this post and from the guides on our docs page: <a href="https://docs.unicrow.io/docs/quick-start/users/buyers">guide for buyers</a>, <a href="https://docs.unicrow.io/docs/quick-start/users/sellers">guide for sellers</a>, and also an overview of <a href="https://docs.unicrow.io/docs/quick-start/basic-concepts">basic concepts</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=743d771fc782" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Unicrow goes multichain, deploys to Base]]></title>
            <link>https://medium.com/@unicrow/unicrow-goes-multichain-deploys-to-base-a1eda1c54816?source=rss-3fe1ab78781e------2</link>
            <guid isPermaLink="false">https://medium.com/p/a1eda1c54816</guid>
            <dc:creator><![CDATA[Unicrow]]></dc:creator>
            <pubDate>Mon, 10 Feb 2025 15:15:30 GMT</pubDate>
            <atom:updated>2025-02-10T15:15:30.510Z</atom:updated>
            <content:encoded><![CDATA[<h3>Unicrow goes multichain</h3><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*34HH9Cv_17L8pttlb-2_Mg.png" /></figure><p>Unicrow’s escrow smart contracts are now deployed to <em>Base</em> as well as <em>Arbitrum One</em> where the protocol has been running from its day 1.</p><p>This support extends to our full developer stack and to our web3 app. While it presented a very complex change in the development tooling architecture, we made sure to keep the developer experience sleek and the integration as simple as it was before.</p><p>The related changes are mainly:</p><ul><li>The SDK now must be initialized with a network configuration call</li><li>The indexer needs to be configured with the selected networks when deployed</li><li>Reading escrow data from the indexer requires chainId as a parameter if it indexes multiple networks</li></ul><h3>Network handling in the SDK</h3><p>The best way to get a quick hands-on experience with Unicrow’s SDK is the <a href="https://github.com/unicrowio/sdk-tutorial">step-by-step tutorial</a>. However, below is an overview of the most important aspects of the integration and network handling.</p><h4>Initial configuration</h4><p>Whenever the app loads, the first call it needs to do before any Unicrow SDK calls are made is to configure the connected network, e.g.:</p><pre>import Unicrow from &quot;@unicrowio/sdk&quot;;<br><br>Unicrow.config({<br>  chainId: BigInt(42161),  // Arbitrum One chainId<br>});</pre><h4>Switching to a different network from the app</h4><p>To ask user’s wallet to switch to a different network:</p><pre>  Unicrow.wallet.switchNetwork(BigInt(42161));</pre><h4>Configuring network based on user’s wallet</h4><p>If the user’s wallet is connected to one of the supported networks, this will configure the SDK with the connected network:</p><pre>if (Unicrow.wallet.isWeb3WalletInstalled()) {<br>  if (await Unicrow.wallet.isSupportedNetworkConnected()) {<br>    const network = await Unicrow.wallet.getNetwork();<br>    Unicrow.config({<br>      chainId: network.chainId<br>    });<br>  }<br>}</pre><h4>Listening to user’s network change</h4><p>To listen to when user changes network manually in their wallet, run the following</p><pre>Unicrow.wallet.startListeningNetwork((chainId) =&gt; {<br>  // do something with the information<br>}); </pre><p>This function will change the SDK’s configuration automatically if the user switched to a supported network, but the callback provides an option to handle the situation in the app (e.g. informing the user if they switched to an unsupported network, or storing the chainId in a local context for easier access)</p><h3>Indexer</h3><p>The indexer can now fetch and store information from both supported mainnets and their respective Sepolia testnets.</p><p>See <a href="https://github.com/unicrowio/indexer">Indexer Github repo</a> for instruction on how to configure the networks</p><h3>Smart Contracts</h3><p>See our <a href="http://docs.unicrow.io">developer documentation</a> for <a href="https://docs.unicrow.io/docs/devs/contracts/#deployment-addresses">contract addresses</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=a1eda1c54816" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Arbius taps Unicrow for its upcoming decentralized AI marketplace]]></title>
            <link>https://medium.com/@unicrow/arbius-taps-unicrow-for-its-upcoming-decentralized-ai-marketplace-8569ad95af34?source=rss-3fe1ab78781e------2</link>
            <guid isPermaLink="false">https://medium.com/p/8569ad95af34</guid>
            <category><![CDATA[machine-learning]]></category>
            <category><![CDATA[ai]]></category>
            <category><![CDATA[marketplaces]]></category>
            <category><![CDATA[cryptocurrency]]></category>
            <category><![CDATA[generative-ai-tools]]></category>
            <dc:creator><![CDATA[Unicrow]]></dc:creator>
            <pubDate>Thu, 14 Mar 2024 18:16:18 GMT</pubDate>
            <atom:updated>2024-03-14T18:16:18.543Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/875/0*jYoj6ZLFw_W1-Wqb.jpeg" /></figure><p><a href="http://arbius.ai">Arbius</a>, a recently launched network for decentralized machine learning model execution is building a marketplace which will allow AI model to compete for customer jobs and to earn its own money.</p><p>The marketplace aims to be fully decentralized and trust-minimized and therefore will use Unicrow for payment settlement between the buyers and the sellers.</p><p>Read details in the <a href="https://blog.arbius.ai/arbius-x-unicrow-announcement-664963f0a92e">Arbius announcement</a>.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=8569ad95af34" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Hopscotch’s natural language web3 interface to integrate Unicrow]]></title>
            <link>https://medium.com/@unicrow/hopscotchs-natural-language-web3-interface-to-enable-escrow-via-unicrow-eb9c2c6f5eec?source=rss-3fe1ab78781e------2</link>
            <guid isPermaLink="false">https://medium.com/p/eb9c2c6f5eec</guid>
            <category><![CDATA[crypto]]></category>
            <category><![CDATA[arbitrum]]></category>
            <category><![CDATA[cryptocurrency]]></category>
            <category><![CDATA[ethereum]]></category>
            <category><![CDATA[escrow]]></category>
            <dc:creator><![CDATA[Unicrow]]></dc:creator>
            <pubDate>Thu, 15 Feb 2024 14:04:02 GMT</pubDate>
            <atom:updated>2024-02-15T14:22:22.383Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*svS5cK_91nZbOf0K" /></figure><p>Hopscotch (<a href="https://hopscotch.trade">hopscotch.trade</a>) makes using web3 much more intuitive and user friendly by curating the most reliable services and integrating them with natural language user interface. Its mission is to make it easier for users to interact with each other and with businesses on-chain, a goal already supported by natively integrated address book functionality and end-to-end encrypted communication.</p><p>The functionality that the app already allows include sending balances between users, bridging and swapping tokens and native currencies, and on- and off-ramp from and to fiat currencies.</p><p>Some examples of this:</p><ul><li>Onramp 100 USD into ETH on Arbitrum</li><li>Convert 10 MATIC into USDC on Polygon</li><li>Bridge 1000 USDT from Avalanche to Arbitrum</li></ul><p>For each of these, Hopscotch partnered up with the most trusted and liquid protocols so that new users don’t get lost in the sea of dApps. Hopscotch’s curation ensures the best price and user experience for the end users.</p><p>In its next upgrade, Hopscotch will integrate Unicrow to provide escrow between the users. Unicrow (<a href="http://unicrow.io">unicrow.io</a>) is a non-custodial and immutable escrow protocol supporting ETH and ERC20 tokens. Unicrow’s vision to enable real world commerce aligns well with Hopscotch functionality enabling communications and crypto-transactions between the users and businesses.</p><p>The integration will also support Unicrow’s arbitration functionality. In this example, Gary wants to send money to an escrow for Keir after they agreed on a judge:</p><ul><li>Escrow 1000 USDT for Keir for two weeks, with HAL as a judge</li></ul><p>Unicrow’s immutable design and strict limitation of each party’s role in the process minimizes trust requirements while creating a much better user experience compared to e.g. multisig-based escrow because all the actions can be securely executed by a single party.</p><p>Therefore to release the funds, Gary can call: “Release the escrow to Keir”, or after the escrow period ends, Keir can prompt “Claim the payment from the escrow”.</p><p>If they have a dispute, HAL can decide on the despute but even if he goes rogue, he cannot freeze or steal the funds.</p><p>Follow <a href="https://twitter.com/HopscotchTeam">Hopscotch</a> and <a href="https://twitter.com/Unicrowio">Unicrow</a> at X to catch the announcement when the integration is live.</p><p><strong>Morgan Culbertson, co-founder of Hopscotch</strong>: “Escrow has been on our roadmap from day one. Unicrow doing the heavy lifting in a beautifully designed developer experience saves us a lot of effort and gives trust and security assurances for our users”</p><p><strong>Tomas Forgac, co-founder of Unicrow</strong>: “Our mission is to connect humans engaging in real world commerce in a secure and trusted way. We fell in love with Hopscotch’s user experience, which is about human crypto-connection in more than one way and it’s an honor to provide them with a small piece of the underlying infrastructure.”</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=eb9c2c6f5eec" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Domain Outlet integrates Unicrow]]></title>
            <link>https://medium.com/@unicrow/domain-outlet-integrates-unicrow-d65a6a384e20?source=rss-3fe1ab78781e------2</link>
            <guid isPermaLink="false">https://medium.com/p/d65a6a384e20</guid>
            <category><![CDATA[escrow]]></category>
            <category><![CDATA[usdt]]></category>
            <category><![CDATA[domains]]></category>
            <dc:creator><![CDATA[Unicrow]]></dc:creator>
            <pubDate>Wed, 03 Jan 2024 13:44:59 GMT</pubDate>
            <atom:updated>2024-01-03T13:44:59.690Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/768/0*Zd1uYFVKJVir1KRc.png" /></figure><p>Page Howe’s <a href="http://domainoutlet.com/">DomainOutlet.com</a>, which lists thousands of high-quality domain names at wholesale prices, will add an option to pay for the domain purchases with USDT. The payments will be escrowed in Unicrow’s smart contracts.</p><p>The integration aligns well not only with Page’s strong belief in web3 ecosystem, but also with his long-term plans for the platform.</p><p>Read more here: <a href="https://domainoutlet.com/domain-outlet-starts-accepting-crypto-payments-for-domain-purchases/">https://domainoutlet.com/domain-outlet-starts-accepting-crypto-payments-for-domain-purchases/</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=d65a6a384e20" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Liberland Endorses Unicrow, Offers Arbitration Service]]></title>
            <link>https://medium.com/@unicrow/liberland-endorses-unicrow-offers-arbitration-service-eec7169e9768?source=rss-3fe1ab78781e------2</link>
            <guid isPermaLink="false">https://medium.com/p/eec7169e9768</guid>
            <category><![CDATA[stable-coin]]></category>
            <category><![CDATA[crypto]]></category>
            <category><![CDATA[cryptocurrency]]></category>
            <category><![CDATA[escrow]]></category>
            <category><![CDATA[micronations]]></category>
            <dc:creator><![CDATA[Unicrow]]></dc:creator>
            <pubDate>Thu, 03 Aug 2023 08:53:23 GMT</pubDate>
            <atom:updated>2023-08-03T10:00:15.766Z</atom:updated>
            <content:encoded><![CDATA[<h3>Liberland Endorses Unicrow, Offers Arbitration Services</h3><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*HQ_3EIM6UNyOCMdKeRwfYg.jpeg" /></figure><p>The government of the aspiring micronation established on the principles of individual liberty and free trade, has endorsed using Unicrow’s escrow protocol for trades between businesses incorporated in Liberland.</p><p>From Liberland’s <a href="https://liberland.org/en/news/458-liberland-endorses-unicrow-escrow-protocol-offers-arbitration-services">press release</a>:</p><blockquote>The shared commitment to free trade between the Liberland government and the Unicrow team makes this partnership a natural fit.</blockquote><p>In addition</p><blockquote>Liberland has stepped up to serve as an official arbitrator for individuals and entities wishing to use this service.</blockquote><p>Read the full PR including a statement from the Liberland’s president here: <a href="https://liberland.org/en/news/458-liberland-endorses-unicrow-escrow-protocol-offers-arbitration-services">https://liberland.org/en/news/458-liberland-endorses-unicrow-escrow-protocol-offers-arbitration-services</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=eec7169e9768" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Challenges for marketplaces integrating crypto (according to ChatGPT) and how Unicrow solves them]]></title>
            <link>https://medium.com/@unicrow/challenges-for-marketplaces-integrating-crypto-according-to-chatgpt-and-how-unicrow-solves-them-c279c1eec442?source=rss-3fe1ab78781e------2</link>
            <guid isPermaLink="false">https://medium.com/p/c279c1eec442</guid>
            <category><![CDATA[blockchain]]></category>
            <category><![CDATA[escrow]]></category>
            <category><![CDATA[marketplaces]]></category>
            <category><![CDATA[stable-coin]]></category>
            <category><![CDATA[cryptocurrency]]></category>
            <dc:creator><![CDATA[Unicrow]]></dc:creator>
            <pubDate>Wed, 19 Jul 2023 08:41:34 GMT</pubDate>
            <atom:updated>2023-07-19T08:41:34.248Z</atom:updated>
            <content:encoded><![CDATA[<h3>Challenges for marketplaces integrating cryptocurrencies (according to ChatGPT) and how Unicrow solves them</h3><figure><img alt="" src="https://cdn-images-1.medium.com/max/855/1*OkpPFY3f70Iv22cq-ZqYEA.png" /></figure><p><em>We asked GPT4 to list the challenges that marketplaces face when they want to integrate crypto. Turns out, Unicrow’s escrow platform solves all of them.</em></p><p>There are undeniable advantages of allowing buyers and sellers on an online marketplace to settle in crypto. Even ChatGPT, when asked to focus on the challenges of integrating crypto, started by highlighting the benefits, which include global accessibility and low transaction costs. We also believe it’s worth for the new market segment that brings.</p><p>But getting back to what the famous AI bot warned about, here’s the list of the consideration and why we think <a href="http://unicrow.io">Unicrow</a> is uniquely capable of addressing all of them and removing many headaches for the marketplace operators and their users.</p><p><em>Note: we’re including only the headlines </em><strong>in bold</strong> <em>and omit the details that GPT included and instead add our comments to each point:</em></p><ol><li><strong>Price Volatility</strong>: Oldie, but goodie. The answer is quite simple: stablecoins. They allow the users to reap the benefits of crypto’s permissionless nature, global access, and instant settlements, without the volatility. <em>Unicrow</em> supports any ERC20 tokens, which includes all stablecoins.</li><li><strong>Regulatory Compliance</strong>: As mentioned in our <a href="https://medium.com/@unicrow/kriptonmarket-integration-unicrow-driving-kriptonmarkets-decentralization-and-trust-2fdd87351823">recent announcement</a> of the upcoming integration of Unicrow into <a href="http://kriptonmarket.com">Kriptonmarket</a>, one of the advantages of the protocol is, that it is fully non-custodial and therefore minimizes the marketplaces’ regulatory exposure.</li><li><strong>Transaction Validation Time</strong>: Very valid concern for the two most popular L1s: Bitcoin and Ethereum. Unicrow has been deployed to Ethereum’s L2 Arbitrum which has 1-second blocktimes and sufficient capacity for the current and anticipated demand.</li><li><strong>Security Concerns</strong>: Since the integration of Unicrow removes the necessity for marketplaces to hold their users’ balances, the operators’ security risks drop dramatically, and along with those also the trust that users need to put into these platforms.</li><li><strong>Technical Complexity</strong>: Our big inspiration has from the beginning been one particular online card payment processor famous for its beautiful and easy-to-use API. You know whom we’re talking about. We aimed to achieve the same level of developer-friendliness and ease of integration, making sure our SDK does all the web3 heavy lifting for the developers so that they can focus on the other parts of the user experience. Try our <a href="https://github.com/unicrowio/sdk-tutorial">SDK tutorial</a> to evaluate how close we’ve gotten.</li><li><strong>User Experience</strong>: Crypto is famous for the necessity of trade-offs between user experience and security. Allow users to settle quickly via centralized and custodial escrow with all the risks that such a setup creates, or introduce a much more secure multisig setup which requires two parties to get together to release funds? <br>How about having the best of both worlds, by relying on non-custodial smart contracts to deliver the security and therefore allowing unilateral and instant settlement actions?</li><li><strong>Tax and Accounting Implications</strong>: These are also easily solved by integrating stablecoins and therefore removing any gains or losses that would need to be reflected in the marketplace’s or its users’ accounting and tax filing.</li></ol><p>On top of the most obvious benefits already mentioned at the beginning, integrating crypto brings along the possibility of relying on smart contracts for the escrow processes, which in turn removes a lot of inefficiencies, trust assumptions and regulatory headaches of traditional escrow.</p><p>Learn more about how Unicrow escrow works in our <a href="https://docs.unicrow.io/docs/introduction/summary">documentation</a>, try the SDK via an easy-to-follow <a href="https://github.com/unicrowio/sdk-tutorial">tutorial</a>, or <a href="mailto: hello@unicrow.io">reach out to us</a> to discuss your possible use case.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=c279c1eec442" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Kriptonmarket Integration: Unicrow Driving Kriptonmarket’s Decentralization and Trust]]></title>
            <link>https://medium.com/@unicrow/kriptonmarket-integration-unicrow-driving-kriptonmarkets-decentralization-and-trust-2fdd87351823?source=rss-3fe1ab78781e------2</link>
            <guid isPermaLink="false">https://medium.com/p/2fdd87351823</guid>
            <category><![CDATA[escrow]]></category>
            <category><![CDATA[decentralization]]></category>
            <category><![CDATA[marketplaces]]></category>
            <category><![CDATA[blockchain]]></category>
            <category><![CDATA[cryptocurrency]]></category>
            <dc:creator><![CDATA[Unicrow]]></dc:creator>
            <pubDate>Thu, 13 Jul 2023 18:40:31 GMT</pubDate>
            <atom:updated>2023-07-13T18:40:31.782Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*uedJ_pGW-U2c6NKaXTFJTA.png" /></figure><p><a href="https://unicrow.io/">Unicrow</a> founders entered the world of Bitcoin and crypto a decade ago with the vision of improving economic freedom for everyone, especially those in the regions suffering from high and unpredictable inflation, capital controls, and difficulties engaging with global commerce.</p><p>Therefore we are proud to announce that <a href="http://kriptonmarket.com">Kriptonmarket</a>, a pioneering peer-to-peer commerce platform that helps users across Latin America to trade more freely and to mitigate impacts of high inflation, will be integrating Unicrow <a href="https://docs.unicrow.io/docs/introduction/how-it-works">escrow protocol</a>.</p><p>The integration will deliver benefits to both Kriptonmarket’s users, who will enjoy increased transactional safety, transparency, and trust, and also to the nodes that operate the p2p marketplace for whom Unicrow’s non-custodial design will mitigate both the security risks and regulatory exposure related to handling customer funds.</p><p>For Kriptonmarket this will represent a major leap towards the team’s long-term vision of full decentralization of the platform.</p><p>In the run-up to the live integration, we will share further information about the background and details of this cooperation. Stay tuned as we contribute to reshaping the future of peer-to-peer markets. Together with Kriptonmarket, we are forging a path towards a more decentralized, secure, and user-centric future.</p><p><strong>About Kriptonmarket</strong></p><p>Kriptonmarket facilitates diverse peer-to-peer transactions including goods and services marketplace, crypto-OTC trading, and bill payments. Recently, Kriptonmarket announced a partnership with Tether to bring USDT to one of the world’s largest wholesale food markets: <a href="https://cointelegraph.com/news/tether-kriptonmarket-to-support-usdt-transactions-at-argentina-s-central-market">https://cointelegraph.com/news/tether-kriptonmarket-to-support-usdt-transactions-at-argentina-s-central-market</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=2fdd87351823" width="1" height="1" alt="">]]></content:encoded>
        </item>
    </channel>
</rss>