<?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: Embed.WS</title>
    <description>The latest articles on DEV Community by Embed.WS (@embedws).</description>
    <link>https://dev.to/embedws</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%2F1119611%2F4cd28269-7e18-4078-8d19-168c10f3467e.png</url>
      <title>DEV Community: Embed.WS</title>
      <link>https://dev.to/embedws</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/embedws"/>
    <language>en</language>
    <item>
      <title>Here is a sample English promotional tweet for embed.ws</title>
      <dc:creator>Embed.WS</dc:creator>
      <pubDate>Wed, 14 Aug 2024 02:23:43 +0000</pubDate>
      <link>https://dev.to/embedws/here-is-a-sample-english-promotional-tweet-for-embedws-2nd5</link>
      <guid>https://dev.to/embedws/here-is-a-sample-english-promotional-tweet-for-embedws-2nd5</guid>
      <description>&lt;p&gt;Here is a sample English promotional tweet for embed.ws:&lt;/p&gt;

&lt;p&gt;Unlock the power of customizable web components with embed.ws! 🚀&lt;/p&gt;

&lt;p&gt;Build your dream productivity dashboard with our no-code DIY platform. Just hold an embed.ws NFT to get Pro access and start unleashing your creativity.&lt;/p&gt;

&lt;p&gt;Hurry, the early bird NFT price is climbing! Get yours now on vv.meme before it's too late.&lt;/p&gt;

&lt;p&gt;Join the web3 revolution and take control of your workspace - embed.ws, where your ideas become reality. #NoCode #Productivity #Web3&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
    <item>
      <title>Implementing Wallet Connect Verification with Siwe-java</title>
      <dc:creator>Embed.WS</dc:creator>
      <pubDate>Wed, 07 Aug 2024 00:38:16 +0000</pubDate>
      <link>https://dev.to/embedws/implementing-wallet-connect-verification-with-siwe-java-3ae6</link>
      <guid>https://dev.to/embedws/implementing-wallet-connect-verification-with-siwe-java-3ae6</guid>
      <description>&lt;p&gt;To implement Wallet Connect verification using the Siwe-java library, follow these steps:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Add the Siwe-java dependency:
&lt;/h3&gt;

&lt;p&gt;In your pom.xml file, add the following dependency:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight xml"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;dependency&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;groupId&amp;gt;&lt;/span&gt;com.moonstoneid&lt;span class="nt"&gt;&amp;lt;/groupId&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;artifactId&amp;gt;&lt;/span&gt;siwe-java&lt;span class="nt"&gt;&amp;lt;/artifactId&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;version&amp;gt;&lt;/span&gt;1.0.6&lt;span class="nt"&gt;&amp;lt;/version&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/dependency&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  2.Parse the Siwe message provided by the frontend:
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;String message = "example.com wants you to sign in with your Ethereum account:\n" +
    "0xAd472fbB6781BbBDfC4Efea378ed428083541748\n\n" +
    "Sign in to use the app.\n\n" +
    "URI: https://example.com\n" +
    "Version: 1\n" +
    "Chain ID: 1\n" +
    "Nonce: EnZ3CLrm6ap78uiNE0MU\n" +
    "Issued At: 2022-06-17T22:29:40.065529400+02:00";

String signature = "0x2ce1f57908b3d1cfece352a90cec9beab0452829a0bf741d26016d60676d63" +
        "807b5080b4cc387edbe741203387ef0b8a6e79743f636512cc48c80cbb12ffa8261b";

try {
    // Parse the Siwe message
    SiweMessage siwe = new SiweMessage.Parser().parse(message);

    // Verify the Siwe message signature
    siwe.verify("example.com", "EnZ3CLrm6ap78uiNE0MU", signature);
} catch (SiweException e) {
    // Handle the exception
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  3. After the signature verification is successful, you can confirm the user's identity and proceed with the login flow.
&lt;/h3&gt;

&lt;p&gt;Using the Siwe-java library greatly simplifies the Wallet Connect verification logic. The library implements the EIP-4361 standard, providing methods to create, parse, and validate Siwe messages, helping developers quickly integrate Wallet Connect functionality.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;This is exactly the method of Embed.ws to complete the login wallet test in the Java service. Everyone can try.&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>webdev</category>
      <category>embedws</category>
      <category>beginners</category>
      <category>java</category>
    </item>
    <item>
      <title>如何购买 Embed.WS Pro？</title>
      <dc:creator>Embed.WS</dc:creator>
      <pubDate>Tue, 06 Aug 2024 12:00:00 +0000</pubDate>
      <link>https://dev.to/embedws/ru-he-gou-mai-embedws-pro-he0</link>
      <guid>https://dev.to/embedws/ru-he-gou-mai-embedws-pro-he0</guid>
      <description>&lt;p&gt;只需购买下方链接的 NFT,即可获得 PRO 权限。&lt;br&gt;
EMBED.WS | vv.meme&lt;/p&gt;

&lt;p&gt;使命：&lt;br&gt;
"我们致力于打造 web3 下的小组件平台，用户可以在这里 DIY 自己想要的组件风格，从而搭建自己的工作台，构建自己专属的高效率工具平台。"&lt;/p&gt;

&lt;p&gt;Pro 许可证：&lt;br&gt;
只需持有一枚 NFT，即可解锁 &lt;a href="https://app.embed.ws" rel="noopener noreferrer"&gt;https://app.embed.ws&lt;/a&gt; 的 Pro 权限。&lt;/p&gt;

&lt;p&gt;社区:&lt;br&gt;
X: &lt;a href="https://x.com/EmbedWS" rel="noopener noreferrer"&gt;https://x.com/EmbedWS&lt;/a&gt;&lt;br&gt;
电报群: &lt;a href="https://t.me/embedwsofficial" rel="noopener noreferrer"&gt;https://t.me/embedwsofficial&lt;/a&gt; 官网: &lt;a href="https://embed.ws" rel="noopener noreferrer"&gt;https://embed.ws&lt;/a&gt;&lt;br&gt;
应用程序: &lt;a href="https://app.embed.ws" rel="noopener noreferrer"&gt;https://app.embed.ws&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
    <item>
      <title>Embed.WS Early Bird Pro 株式の販売 - Embed.WS - Medium</title>
      <dc:creator>Embed.WS</dc:creator>
      <pubDate>Tue, 06 Aug 2024 11:58:10 +0000</pubDate>
      <link>https://dev.to/embedws/embedws-early-bird-pro-zhu-shi-nofan-mai-embedws-medium-1o9p</link>
      <guid>https://dev.to/embedws/embedws-early-bird-pro-zhu-shi-nofan-mai-embedws-medium-1o9p</guid>
      <description>&lt;p&gt;Pro を購入する方法:&lt;br&gt;
Pro 権限を得るには、下のリンクからNFTを購入するだけです。&lt;br&gt;
EMBED.WS | vv.meme&lt;/p&gt;

&lt;p&gt;ミッション:&lt;br&gt;
"我々は、ユーザーが希望するコンポーネントスタイルをDIYできる、web3の下での小さなコンポーネントプラットフォームの構築に取り組んでおり、それによって独自のダッシュボードを構築し、独自の高効率ツールプラットフォームを構築できます。"&lt;/p&gt;

&lt;p&gt;Proライセンス:&lt;br&gt;
&lt;a href="https://app.embed.ws%E3%81%AEPro%E6%A8%A9%E9%99%90%E3%82%92%E5%BE%97%E3%82%8B%E3%81%AB%E3%81%AF%E3%80%81NFT%E3%82%921%E3%81%A4%E6%89%80%E6%9C%89%E3%81%99%E3%82%8B%E3%81%A0%E3%81%91%E3%81%A7" rel="noopener noreferrer"&gt;https://app.embed.wsのPro権限を得るには、NFTを1つ所有するだけで&lt;/a&gt; OK です。&lt;/p&gt;

&lt;p&gt;コミュニティ:&lt;br&gt;
X: &lt;a href="https://x.com/EmbedWS" rel="noopener noreferrer"&gt;https://x.com/EmbedWS&lt;/a&gt;&lt;br&gt;
Telegram: &lt;a href="https://t.me/embedwsofficial" rel="noopener noreferrer"&gt;https://t.me/embedwsofficial&lt;/a&gt; &lt;br&gt;
ウェブサイト: &lt;a href="https://embed.ws" rel="noopener noreferrer"&gt;https://embed.ws&lt;/a&gt;&lt;br&gt;
アプリ: &lt;a href="https://app.embed.ws" rel="noopener noreferrer"&gt;https://app.embed.ws&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>programming</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Embed.WS Early Bird Pro 지분 판매 - Embed.WS - 미디엄</title>
      <dc:creator>Embed.WS</dc:creator>
      <pubDate>Tue, 06 Aug 2024 11:57:07 +0000</pubDate>
      <link>https://dev.to/embedws/embedws-early-bird-pro-jibun-panmae-embedws-midieom-a02</link>
      <guid>https://dev.to/embedws/embedws-early-bird-pro-jibun-panmae-embedws-midieom-a02</guid>
      <description>&lt;p&gt;Pro를 구매하는 방법:&lt;br&gt;
Pro 권한을 얻으려면 아래 링크에서 NFT를 구매하기만 하면 됩니다.&lt;br&gt;
EMBED.WS | vv.meme&lt;/p&gt;

&lt;p&gt;미션:&lt;br&gt;
"우리는 사용자가 원하는 구성 요소 스타일을 DIY할 수 있는 web3 아래의 작은 구성 요소 플랫폼을 구축하기 위해 최선을 다하고 있으며 이를 통해 자신만의 대시보드를 구축하고 자신만의 독점적인 고효율 도구 플랫폼을 구축할 수 있습니다."&lt;/p&gt;

&lt;p&gt;Pro 라이선스:&lt;br&gt;
&lt;a href="https://app.embed.ws%EC%9D%98" rel="noopener noreferrer"&gt;https://app.embed.ws의&lt;/a&gt; Pro 권한을 얻으려면 NFT를 하나만 소유하면 됩니다.&lt;/p&gt;

&lt;p&gt;커뮤니티:&lt;br&gt;
X: &lt;a href="https://x.com/EmbedWS" rel="noopener noreferrer"&gt;https://x.com/EmbedWS&lt;/a&gt;&lt;br&gt;
텔레그램: &lt;a href="https://t.me/embedwsofficial" rel="noopener noreferrer"&gt;https://t.me/embedwsofficial&lt;/a&gt; 웹사이트: &lt;a href="https://embed.ws" rel="noopener noreferrer"&gt;https://embed.ws&lt;/a&gt;&lt;br&gt;
앱: &lt;a href="https://app.embed.ws" rel="noopener noreferrer"&gt;https://app.embed.ws&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>beginners</category>
      <category>react</category>
    </item>
    <item>
      <title>Streamline Your Web3 User Experience with embed.ws' Customizable Modal</title>
      <dc:creator>Embed.WS</dc:creator>
      <pubDate>Tue, 06 Aug 2024 09:13:45 +0000</pubDate>
      <link>https://dev.to/embedws/streamline-your-web3-user-experience-with-embedws-customizable-modal-3ljb</link>
      <guid>https://dev.to/embedws/streamline-your-web3-user-experience-with-embedws-customizable-modal-3ljb</guid>
      <description>&lt;p&gt;As the web3 landscape continues to evolve, providing a seamless login and authentication experience for your users has become paramount. Integrating a web3 modal into your application can significantly enhance user adoption and engagement, but it often requires extensive development effort and complex configuration.&lt;/p&gt;

&lt;p&gt;That's where embed.ws steps in to simplify the process. Our platform offers a highly customizable and easy-to-implement web3 modal solution, empowering you to deliver a tailored login experience that aligns with your brand and user requirements.&lt;/p&gt;

&lt;p&gt;In this article, we'll guide you through the step-by-step integration of the embed.ws web3 modal, so you can start leveraging the power of decentralized authentication in your web3 application.&lt;/p&gt;

&lt;p&gt;Getting Started with embed.ws Web3 Modal&lt;/p&gt;

&lt;p&gt;Install the embed.ws SDK: Begin by installing the embed.ws SDK in your project using your preferred package manager, such as npm or yarn.&lt;br&gt;
bash&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; @embedws/sdk
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Initialize the Web3 Modal: Import the necessary modules from the embed.ws SDK and initialize the web3 modal in your application's entry point or relevant component.&lt;br&gt;
javascript&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tsx"&gt;&lt;code&gt;
&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;initWeb3Modal&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;@embedws/sdk&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="nf"&gt;initWeb3Modal&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt;
  &lt;span class="na"&gt;chainId&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="c1"&gt;// Ethereum mainnet&lt;/span&gt;
  &lt;span class="na"&gt;theme&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;light&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="c1"&gt;// or 'dark'&lt;/span&gt;
  &lt;span class="c1"&gt;// Additional configuration options&lt;/span&gt;
&lt;span class="p"&gt;});&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Customize the Web3 Modal: Leverage the extensive customization options provided by embed.ws to seamlessly integrate the web3 modal into your application's design and user experience.&lt;br&gt;
javascript&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tsx"&gt;&lt;code&gt;&lt;span class="nf"&gt;initWeb3Modal&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt;
  &lt;span class="na"&gt;chainId&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="na"&gt;theme&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;light&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="na"&gt;logo&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;https://your-custom-logo.png&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="na"&gt;title&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Connect with your Wallet&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="na"&gt;description&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Sign in to access your account&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="c1"&gt;// Add more custom styles and configurations&lt;/span&gt;
&lt;span class="p"&gt;});&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Handle User Interactions: Implement the necessary logic to manage user interactions with the web3 modal, such as wallet connection, user authentication, and error handling.&lt;br&gt;
javascript&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tsx"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;useWeb3Modal&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;@embedws/sdk&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;connect&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;disconnect&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;isConnected&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;user&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;useWeb3Modal&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;

&lt;span class="c1"&gt;// Connect wallet&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;handleConnect&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;async &lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="k"&gt;try&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nf"&gt;connect&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
    &lt;span class="c1"&gt;// Handle successful connection&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;catch &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;error&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="c1"&gt;// Handle connection error&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;

&lt;span class="c1"&gt;// Disconnect wallet&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;handleDisconnect&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;async &lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="k"&gt;try&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nf"&gt;disconnect&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
    &lt;span class="c1"&gt;// Handle successful disconnection&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;catch &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;error&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="c1"&gt;// Handle disconnection error&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;p&gt;By leveraging the embed.ws web3 modal, you can provide your users with a seamless and customized authentication experience, empowering them to engage with your web3 application using their preferred wallet.&lt;/p&gt;

&lt;p&gt;Unlock the Full Potential of Web3 with embed.ws&lt;/p&gt;

&lt;p&gt;embed.ws is a comprehensive platform that goes beyond just web3 modal integration. It offers a wide range of customizable components and tools to help you build and enhance your web3 applications, from interactive charts and dashboards to powerful data visualization tools.&lt;/p&gt;

&lt;p&gt;Explore the extensive capabilities of embed.ws and take your web3 user experience to the next level. Visit embed.ws to learn more and get started today.&lt;/p&gt;

&lt;h2&gt;
  
  
  Community
&lt;/h2&gt;

&lt;p&gt;X: &lt;a href="https://x.com/EmbedWS" rel="noopener noreferrer"&gt;https://x.com/EmbedWS&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;telegram: &lt;a href="https://t.me/embedws" rel="noopener noreferrer"&gt;https://t.me/embedws&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;official website: &lt;a href="https://embed.ws" rel="noopener noreferrer"&gt;https://embed.ws&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;App: &lt;a href="https://app.embed.ws" rel="noopener noreferrer"&gt;https://app.embed.ws&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>web3</category>
      <category>frontend</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Embed.WS Early Bird Pro equity on sale</title>
      <dc:creator>Embed.WS</dc:creator>
      <pubDate>Tue, 06 Aug 2024 06:51:59 +0000</pubDate>
      <link>https://dev.to/embedws/embedws-early-bird-pro-equity-on-sale-135c</link>
      <guid>https://dev.to/embedws/embedws-early-bird-pro-equity-on-sale-135c</guid>
      <description>&lt;p&gt;First, how to buy Pro?&lt;/p&gt;

&lt;p&gt;You only need to buy a NFT in the link below, and you have a PRO permissions&lt;/p&gt;

&lt;p&gt;&lt;a href="https://vv.meme/shares/17" rel="noopener noreferrer"&gt;https://vv.meme/shares/17&lt;/a&gt;&lt;/p&gt;




&lt;h1&gt;
  
  
  Mission
&lt;/h1&gt;

&lt;p&gt;"We are committed to building a small component platform under web3, where users can DIY the component style they want, thereby building their own dashboard and building their own exclusive high-efficiency tool platform."&lt;/p&gt;

&lt;p&gt;“我们致力于打造 web3 下的小组件平台，用户可以在这里 DIY 自己想要的组件风格，从而搭建自己的工作台，构建自己专属的高效率工具平台。”&lt;/p&gt;

&lt;p&gt;“当社は、ユーザーが希望するコンポーネント スタイルを DIY できる、web3 の下での小さなコンポーネント プラットフォームの構築に取り組んでおり、それによって独自のダッシュボードを構築し、独自の高効率ツール プラットフォームを構築できます。”&lt;/p&gt;

&lt;p&gt;“우리는 사용자가 원하는 구성 요소 스타일을 DIY할 수 있는 web3 아래의 작은 구성 요소 플랫폼을 구축하기 위해 최선을 다하고 있으며 이를 통해 자신만의 대시보드를 구축하고 자신만의 독점적인 고효율 도구 플랫폼을 구축할 수 있습니다.”&lt;/p&gt;

&lt;h1&gt;
  
  
  Pro license
&lt;/h1&gt;

&lt;p&gt;You only need to own one NFT to unlock the pro permissions of &lt;a href="https://app.embed.ws" rel="noopener noreferrer"&gt;https://app.embed.ws&lt;/a&gt;.&lt;/p&gt;

&lt;h1&gt;
  
  
  Community
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;X: &lt;a href="https://x.com/EmbedWS" rel="noopener noreferrer"&gt;https://x.com/EmbedWS&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;telegram: &lt;a href="https://t.me/embedws" rel="noopener noreferrer"&gt;https://t.me/embedws&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;official website: &lt;a href="https://embed.ws" rel="noopener noreferrer"&gt;https://embed.ws&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;App: &lt;a href="https://app.embed.ws" rel="noopener noreferrer"&gt;https://app.embed.ws&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>webdev</category>
      <category>cryptocurrency</category>
      <category>beginners</category>
      <category>react</category>
    </item>
  </channel>
</rss>
