<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel>
        <title>ssarra.eth</title>
        <link>https://paragraph.com/@ssarra.eth</link>
        <description>undefined</description>
        <lastBuildDate>Thu, 09 Apr 2026 13:50:27 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[How to use Oracle Redstone for dApps]]></title>
            <link>https://paragraph.com/@ssarra.eth/how-to-use-oracle-redstone-for-dapps</link>
            <guid>OcspA9XaMxcd4T1FlWbZ</guid>
            <pubDate>Mon, 05 Feb 2024 19:38:46 GMT</pubDate>
            <description><![CDATA[How to use Oracle Redstone for dAppsIntroduction:Oracle Redstone is an advanced Oracle platform that provides blockchains and decentralized applicati...]]></description>
            <content:encoded><![CDATA[<p>How to use Oracle Redstone for dApps</p><p>Introduction:</p><p>Oracle Redstone is an advanced Oracle platform that provides blockchains and decentralized applications (dApps) on Web 3 with secure and reliable access to real-world data and information. As a tutorial for technical people, this article describes how to use Oracle Redstone for dApps.</p><p>levels:</p><p>Choosing the type of oracle: Oracle Redstone offers two types of oracles: public oracles and private oracles. Public oracles are available for public use, while private oracles are designed for use by a specific dApp.</p><p>Create Request: To get data from Oracle Redstone, you need to create a request. An application includes the following:</p><p>Data Type: The type of data you want to receive (such as currency rates, weather conditions, traffic information).</p><p>Data source: The data source you want to get data from (eg API, website, database).</p><p>Request Lifetime: How long you want the request to be active.</p><p>Submit Request: After creating a request, you can submit it to Oracle Redstone.</p><p>Receive data: After Oracle Redstone processes the request, the data is sent to your dApp.</p><p>Tools:</p><p>Oracle Redstone offers a wide range of tools for developers, including:</p><p>SDK: The Redstone Oracle SDK allows you to easily develop your own oracles for your dApps.</p><p>API: The Oracle Redstone API allows you to access real-world data through your dApps.</p><p>Documentation: Oracle Redstone provides complete documentation to help you develop your dApps.</p><p>Uses:</p><p>Oracle Redstone offers a wide range of use cases in Blockchain and Web 3, including:</p><p>Decentralized Finance (DeFi): Oracle Redstone can be used to provide market price data, exchange rates and other financial information to DeFi dApps such as decentralized exchanges (DEXs) and lending platforms.</p><p>Blockchain Games: The Redstone Oracle can be used to provide game world data such as weather, traffic, and player information to blockchain games.</p><p>Decentralized Identity (DID): Oracle Redstone can be used to verify the identity of individuals and organizations in the blockchain world.</p><p>Decentralized Autonomous Organizations (DAOs): The Redstone Oracle can be used to provide voting, governance, and other information about DAOs.</p><p>important points:</p><p>When choosing an oracle type, you should consider the needs of your dApp.</p><p>When creating a request, you must make sure that you enter all the necessary information correctly.</p><p>Oracle Redstone is constantly being upgraded, so you should use the latest version of the SDK and API.</p><p>How to use Oracle Redstone in dApps with code example</p><p>In this article, we will show how to use Oracle Redstone in dApps using a simple code example.</p><p>Example:</p><p>Let's say we want to create a simple dApp that displays the price of Bitcoin in USD. For this, we need the following:</p><p>A smart contract: The smart contract implements the logic of the dApp.</p><p>An oracle: An oracle provides bitcoin price data from the real world to the smart contract.</p><p>A user interface: The user interface allows the user to view the price of Bitcoin.</p><p>Step 1: Create a smart contract</p><p>First, we need to create a smart contract that implements the dApp logic. The following code is a simple example of a smart contract that receives the Bitcoin price from Oracle and displays it to the user:</p><p>pragma solidity ^0.8.0;</p><p>contract BitcoinPrice {</p><p>   </p><p>     address public oracleAddress;</p><p>  </p><p>     uint256 public price;</p><p>     constructor(address _oracleAddress) {</p><p>         oracleAddress = _oracleAddress;</p><p>     }</p><p>  </p><p>     function getPrice() public {</p><p>         price = IPriceOracle(oracleAddress).getPrice();</p><p>     }</p><p>}</p><p>interface IPriceOracle {</p><p>     function getPrice() external view returns (uint256);</p><p>}</p><p>Step 2: Create an oracle</p><p>Next, we need to create an oracle that will feed real-world bitcoin price data to the smart contract. The following code is a simple example of an oracle that retrieves the price of Bitcoin from a public API:</p><p>pragma solidity ^0.8.0;</p><p>contract BitcoinPriceOracle is IPriceOracle {</p><p>     public string apiUrl;</p><p>     constructor(string _apiUrl) {</p><p>         apiUrl = _apiUrl;</p><p>     }</p><p>     function getPrice() external view returns (uint256) {</p><p>     }</p><p>}</p><p>Step 3: Create the user interface</p><p>Finally, we need to create a user interface that allows the user to view the price of Bitcoin. The following code is a simple example of a web UI that uses web3.js to connect to a smart contract and get a bitcoin price:</p><p>Result:</p><p>Using the code above, you can create a simple dApp that displays the price of Bitcoin in USD. This is just a simple example and you can get from Oracle Redstone for</p>]]></content:encoded>
            <author>ssarra.eth@newsletter.paragraph.com (ssarra.eth)</author>
        </item>
        <item>
            <title><![CDATA[Oracle Redstone: An in-depth look at the technical details]]></title>
            <link>https://paragraph.com/@ssarra.eth/oracle-redstone-an-in-depth-look-at-the-technical-details</link>
            <guid>ENVv6LH9iU9aTDn83lon</guid>
            <pubDate>Mon, 05 Feb 2024 19:27:39 GMT</pubDate>
            <description><![CDATA[Oracle Redstone: An in-depth look at the technical detailsIntroduction:Oracle Redstone is an advanced Oracle platform that provides blockchains and d...]]></description>
            <content:encoded><![CDATA[<p>Oracle Redstone: An in-depth look at the technical details</p><p>Introduction:</p><p>Oracle Redstone is an advanced Oracle platform that provides blockchains and decentralized applications (dApps) on Web 3 with secure and reliable access to real-world data and information. This article takes an in-depth look at the technical details of Oracle Redstone programming.</p><p>Programming language:</p><p>Oracle Redstone uses the Rust programming language to develop its core components such as nodes, smart contracts, and user interfaces. Rust was chosen because of the following advantages:</p><p>Security: Due to its robust memory ownership system, Rust avoids memory errors, which are the source of many security vulnerabilities.</p><p>Performance: Rust offers high performance due to direct compilation to machine code.</p><p>Reliability: Rust ensures reliable and stable code due to its static type system and advanced testing tools.</p><p>Smart contracts:</p><p>Oracle Redstone uses Move smart contracts to implement Oracle logic. Move is a new programming language designed to develop dApps on the Redstone blockchain. Move offers the following benefits:</p><p>Security: Move ensures high security for smart contracts by using a static type system and formal checks.</p><p>Extensibility: Using a Rust-like programming language, Move makes it easy to develop and maintain smart contracts.</p><p>Interoperability: Move is interoperable with other programming languages such as Rust and Solidity.</p><p>Main modules:</p><p>Oracle Redstone uses a set of modules to provide Oracle services to dApps. These modules are:</p><p>Data collection module: This module collects data from various sources such as APIs, websites and databases.</p><p>Data processing module: This module processes and prepares the collected data to be stored in the blockchain.</p><p>Data storage module: This module stores the processed data in the blockchain.</p><p>Data Access Module: This module allows dApps to access data stored on the blockchain.</p><p>Security:</p><p>Security is one of the most important aspects of Oracle Redstone. To ensure security, Oracle Redstone uses various security mechanisms such as the following:</p><p>Secure computing: Oracle Redstone nodes use secure computing environments to run Oracle code.</p><p>Encryption: Data on the Redstone blockchain is encrypted using strong encryption algorithms.</p><p>Security audits: Oracle Redstone code is regularly audited by security experts.</p><p>Expandability:</p><p>Oracle Redstone is designed for high extensibility. Developers can create custom oracles for their specific needs using the Redstone Oracle SDK. The Oracle Redstone SDK provides the tools and libraries needed to develop Oracles in various programming languages such as Rust and Solidity.</p><p>Advantages of modular design:</p><p>Flexibility: The modular design allows developers to create custom oracles for their specific needs. They can use the various modules available in the Redstone platform or develop new modules for their specific needs.</p><p>Scalability: The modular design allows the Redstone platform to scale easily. As the number of dApps and the demand for real-world data increase, new modules can be added to the platform to increase its capacity and functionality.</p><p>Maintainability: The modular design makes it easy to upgrade and maintain the Redstone platform. Modules can be upgraded independently and bugs can be fixed easily.</p><p>Key modules:</p><p>The Redstone platform consists of a set of core modules, each of which performs specific tasks. Some of these modules are:</p><p>Data collection module: This module collects data from various sources such as APIs, websites and databases.</p><p>Data processing module: This module processes and prepares the collected data to be stored in the blockchain.</p><p>Data storage module: This module stores the processed data in the blockchain.</p><p>Data Access Module: This module allows dApps to access data stored on the blockchain.</p><p>Performance:</p><p>Here's a brief description of how Redstone's modular design works:</p><p>The developer defines his needs: The first step is to define what kind of real-world data the dApp needs.</p><p>Choosing the right modules: The developer can use the existing modules in the Redstone platform or develop new modules for their specific needs.</p><p>Create Oracle: Using the selected modules, the developer can create their own custom Oracle.</p><p>Oracle deployment: Oracle will be deployed on the Redstone blockchain.</p><p>Data Access: dApps can access real-world data through the Oracle Redstone API.</p><p>Processing speed:</p><p>Processing speed in Oracle Redstone depends on several factors, including:</p><p>Data Type: The type of data to be processed affects the processing speed. For example, processing simple data such as currency prices does not require the speed of processing more complex data such as images or videos.</p><p><strong> Processing complexity:</strong> The amount of processing that needs to be done on the data affects the processing speed. For example, calculating the mean of a data set does not require the speed of calculating the standard deviation of the same data set.</p><p>Network load: Redstone blockchain network load affects processing speed. If the network is congested, data processing may take longer.</p><p>How to process:</p><p>Oracle Redstone uses a multi-step process to process data:</p><p>Data Collection: Data is collected from various sources such as APIs, websites and databases.</p><p>Data Verification: Data is checked to verify accuracy.</p><p>Data processing: Data is processed according to the dApp's needs.</p><p>Data storage: The processed data is stored in the Redstone blockchain.</p><p>Data Access: dApps can access stored data through the Oracle Redstone API.</p><p>Solutions to increase speed:</p><p>Oracle Redstone uses various solutions to increase processing speed, including:</p><p>Parallelization: Data processing is done in parallel to increase the processing speed.</p><p>Cache Storage: Frequently used data is cached so that it can be accessed quickly.</p><p>Code optimization: Oracle Redstone code is continuously upgraded to optimize processing speed.</p><p>Processing speed:</p><p>Processing speed in Oracle Redstone depends on several factors, including:</p><p>Data Type: The type of data to be processed affects the processing speed. For example, processing simple data such as currency prices does not require the speed of processing more complex data such as images or videos.</p><p><strong> Processing complexity:</strong> The amount of processing that needs to be done on the data affects the processing speed. For example, calculating the mean of a data set does not require the speed of calculating the standard deviation of the same data set.</p><p>Network load: Redstone blockchain network load affects processing speed. If the network is congested, data processing may take longer.</p><p>How to process:</p><p>Oracle Redstone uses a multi-step process to process data:</p><p>Data Collection: Data is collected from various sources such as APIs, websites and databases.</p><p>Data Verification: Data is checked to verify accuracy.</p><p>Data processing: Data is processed according to the dApp's needs.</p><p>Data storage: The processed data is stored in the Redstone blockchain.</p><p>Data Access: dApps can access stored data through the Oracle Redstone API.</p><p>Solutions to increase speed:</p><p>Oracle Redstone uses various solutions to increase processing speed, including:</p><p>Parallelization: Data processing is done in parallel to increase the processing speed.</p><p>Cache Storage: Frequently used data is cached so that it can be accessed quickly.</p><p>Code optimization: Oracle Redstone code is continuously upgraded to optimize processing speed.</p>]]></content:encoded>
            <author>ssarra.eth@newsletter.paragraph.com (ssarra.eth)</author>
        </item>
        <item>
            <title><![CDATA[Oracle Redstone: Gateway to the Real World in Blockchain and Web 3]]></title>
            <link>https://paragraph.com/@ssarra.eth/oracle-redstone-gateway-to-the-real-world-in-blockchain-and-web-3</link>
            <guid>pvj3bdxNAc1QXwvWvKUu</guid>
            <pubDate>Mon, 05 Feb 2024 19:04:27 GMT</pubDate>
            <description><![CDATA[Oracle Redstone: Gateway to the Real World in Blockchain and Web 3Introduction:Oracle Redstone is an advanced Oracle platform that provides blockchai...]]></description>
            <content:encoded><![CDATA[<p></p><p>Oracle Redstone: Gateway to the Real World in Blockchain and Web 3</p><p>Introduction:</p><p>Oracle Redstone is an advanced Oracle platform that provides blockchains and decentralized applications (dApps) on Web 3 with secure and reliable access to real-world data and information. This platform collects data from various sources and transfers it to the blockchain using a set of secure and distributed nodes.</p><p>Oracle Redstone history and team:</p><p>The Oracle Redstone project was founded in 2021 by a group of blockchain experts with experience working on prominent projects such as Ethereum and Chainlink. The Oracle Redstone team consists of experienced engineers, researchers, and entrepreneurs who seek to build a reliable and efficient Oracle platform for the next generation of dApps.</p><p>Key features of Oracle Redstone:</p><p>High security: Oracle Redstone uses a set of secure and distributed nodes to collect and transmit data. This helps to maintain data security and privacy against attacks and manipulations.</p><p>Reliability: Oracle Redstone uses advanced consensus mechanisms to verify data integrity. This ensures that the data provided by Oracle is accurate and reliable.</p><p>High performance: Oracle Redstone is designed to deliver data quickly and efficiently. This allows dApps to seamlessly and seamlessly access real-world information.</p><p>Scalability: Oracle Redstone is designed to easily adapt to the different needs of dApps. The platform supports a wide range of data sources and can be customized for the specific needs of dApps.</p><p>Applications of Oracle Redstone:</p><p>Oracle Redstone offers a wide range of applications in Blockchain and Web 3. Some of these applications include:</p><p>Decentralized Finance (DeFi): Oracle Redstone can be used to provide market price data, exchange rates and other financial information to DeFi dApps such as decentralized exchanges (DEXs) and lending platforms.</p><p>Blockchain Games: The Redstone Oracle can be used to provide game world data such as weather, traffic, and player information to blockchain games.</p><p>Decentralized Identity (DID): Oracle Redstone can be used to verify the identity of individuals and organizations in the blockchain world.</p><p>Decentralized Autonomous Organizations (DAOs): The Redstone Oracle can be used to provide voting, governance, and other information about DAOs.</p><p>Advantages of using Oracle Redstone:</p><p>Security: Oracle Redstone uses a set of secure, distributed nodes to collect and transmit data. This helps to maintain data security and privacy against attacks and manipulations.</p><p>Reliability: Oracle Redstone uses advanced consensus mechanisms to verify data integrity. This ensures that the data provided by Oracle is accurate and reliable.</p><p>Efficiency: Oracle Redstone is designed to deliver data quickly and efficiently. This allows dApps to seamlessly and seamlessly access real-world information.</p><p>Scalability: Oracle Redstone is designed to easily adapt to the different needs of dApps. The platform supports a wide range of data sources and can be customized for the specific needs of dApps.</p><p>Pricing: Oracle Redstone offers a transparent and affordable pricing model that is accessible to dApps of all sizes.</p><p>Comparison of Oracle Redstone with other Oracles:</p><p>Redstone Oracle offers several advantages compared to other oracles on the blockchain. Some of these benefits include:</p><p>Security: Oracle Redstone is stronger than other Oracles in terms of security. This is due to the use of a set of secure and distributed nodes to collect and transmit data.</p><p>Reliability: Oracle Redstone is stronger than other oracles in terms of reliability. This is due to the use of advanced consensus mechanisms to verify the authenticity of the data.</p><p>Performance: Oracle Redstone is faster than other oracles in terms of performance. This is due to the efficient design of the platform to deliver data quickly and without interruption.</p><p>Extensibility: Oracle Redstone is stronger than other Oracles in terms of flexibility and extensibility. This is due to the design of the platform in such a way that it can be easily adapted to the different needs of dApps.</p><p>Challenges facing Oracle Redstone:</p><p>Oracle Redstone faces several challenges, including:</p><p>Competition: Redstone Oracle is facing stiff competition from other blockchain oracles such as Chainlink and Band Protocol.</p><p>Security: As a centralized platform, Oracle Redstone is an attractive target for hackers. The Oracle Redstone team must constantly strive to improve the security of their platform.</p><p>Reliability: To keep dApps trusting the data provided, Oracle Redstone must continuously verify the accuracy of the data.</p><p>Roadmap and future of Oracle Redstone:</p><p>The Oracle Redstone team is actively developing and improving their platform. Oracle Redstone roadmap includes the following:</p><p>Increasing diversity of data sources: Oracle Redstone is looking to add a wide range of new data sources to its platform. This allows dApps to access a wider range of real-world information.</p><p>Increased scalability: Oracle Redstone is looking to increase the scalability of its platform to meet the growing needs of dApps. This allows the platform to serve data to a larger number of dApps faster and more efficiently.</p><p>Increased focus on privacy: Oracle Redstone continues to increase its focus on data privacy. This helps protect the privacy of dApps users and prevent their data from being misused.</p><p>Community Building: Oracle Redstone seeks to build a strong community of developers and users. This helps promote the platform and promote its use in dApps.</p><p>The future of Oracle Redstone:</p><p>Oracle Redstone has the potential to become a leading platform in the field of blockchain oracles. This platform is considered as an ideal solution for dApps in Web 3.0 by providing advantages such as high security, reliability, efficiency and scalability. By continuing to develop and upgrade the platform, Oracle Redstone can play an important role in promoting the use of blockchain and Web 3.0 in the real world.</p><p>Here are some examples of Oracle Redstone's potential future uses:</p><p>Supply Chain Management: Oracle Redstone can be used to track and manage commodity supply chains in a transparent and efficient manner.</p><p>Decentralized Identity: The Redstone Oracle can be used to verify the identity of individuals and organizations in the blockchain world.</p><p>Voting: Oracle Redstone can be used to conduct transparent and secure elections online.</p><p>Market Forecasting: Oracle Redstone can be used to provide data on financial markets in order to predict prices and trends.</p><p>Considering the high potential of Oracle Redstone, we can expect that this platform will witness significant growth and development in the future.</p><p>Conclusion:</p><p>Oracle Redstone is an advanced Oracle platform that provides blockchains and dApps on Web 3 with secure and reliable access to real-world data and information.</p>]]></content:encoded>
            <author>ssarra.eth@newsletter.paragraph.com (ssarra.eth)</author>
        </item>
        <item>
            <title><![CDATA[A Trailblazer in the Blockchain and Web 3 Landscape]]></title>
            <link>https://paragraph.com/@ssarra.eth/a-trailblazer-in-the-blockchain-and-web-3-landscape</link>
            <guid>UxZpclXEKZvZjmJB0Bkh</guid>
            <pubDate>Sun, 04 Feb 2024 23:20:36 GMT</pubDate>
            <description><![CDATA[Redstone: A Trailblazer in the Blockchain and Web 3 LandscapeRedstone, a platform built on the Ethereum blockchain, opens new doors to the world of b...]]></description>
            <content:encoded><![CDATA[<p></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/cd890953158e968c8cd39614e468ff33.png" blurdataurl="data:image/png;base64,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" nextheight="1500" nextwidth="2000" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><p><br>Redstone: A Trailblazer in the Blockchain and Web 3 Landscape</p><p>Redstone, a platform built on the Ethereum blockchain, opens new doors to the world of blockchain and Web 3. By providing powerful and flexible tools, it streamlines the development and deployment of decentralized applications (dApps). In this article, we will explore the various dimensions of Redstone, its applications in blockchain and Web 3 projects, and its unique advantages.</p><p>Redstone: Bridging the Gap Between Idea and Reality</p><p>Redstone, with its powerful Solidity programming language, offers a secure and reliable platform for implementing innovative ideas in the blockchain world. This programming language, due to its unique features, allows developers to write secure and reliable smart contracts.</p><p>Applications of Redstone in the Blockchain and Web 3 World:</p><p>Redstone, as a comprehensive platform, offers a wide range of applications in the blockchain and Web 3 world. Some of these applications include:</p><p>Decentralized Finance (DeFi): Redstone provides a suitable platform for developing and deploying various DeFi applications such as decentralized exchanges (DEXs), lending platforms, and stablecoins.</p><p>Blockchain Gaming: Redstone empowers developers to build blockchain games based on NFTs and the Metaverse with the necessary tools.</p><p>Decentralized Identity (DID): Redstone provides a secure and reliable solution for managing identity and personal information in a decentralized manner.</p><p>Decentralized Autonomous Organizations (DAOs): Redstone offers a suitable platform for building DAOs to govern and manage decentralized projects in a transparent and collaborative manner.</p><p>Advantages of Using Redstone:</p><p>Redstone, due to its unique features, offers several advantages to users and developers. Some of these advantages include:</p><p>Security: Redstone leverages the secure infrastructure of the Ethereum blockchain and ensures the security of smart contracts.</p><p>Scalability: Redstone is designed to support dApps with a large number of users and has high scalability.</p><p>Extensibility: The Solidity programming language, due to its simplicity and flexibility, allows developers to develop and implement innovative ideas.</p><p>Active Community: Redstone has a vibrant and growing community of developers and users who share knowledge and experiences.</p><p>Powerful Tools: Redstone provides a range of powerful tools such as IDE and compiler to facilitate the dApps development process.</p><p>Support for Multiple Blockchains: Redstone, in addition to the Ethereum blockchain, also supports other blockchains such as Polygon and Binance Smart Chain.</p><p>User-friendly Interface: Redstone provides a user-friendly and intuitive interface, offering a delightful user experience.</p><p>Conclusion:</p><p>Redstone, as a comprehensive and powerful platform, plays a key role in the development and advancement of the blockchain and Web 3 world. By offering various advantages and powerful tools, it streamlines the dApps development and deployment process and brings forth an ideal opportunity to enter the emerging world of blockchain and Web 3.</p>]]></content:encoded>
            <author>ssarra.eth@newsletter.paragraph.com (ssarra.eth)</author>
        </item>
        <item>
            <title><![CDATA[Oracle redstone for developers]]></title>
            <link>https://paragraph.com/@ssarra.eth/oracle-redstone-for-developers</link>
            <guid>YvKV4z6reZYcvLuy9lx9</guid>
            <pubDate>Tue, 30 Jan 2024 17:51:57 GMT</pubDate>
            <description><![CDATA[Introduction:RedStone is an oracle based on the Arweave blockchain that enables Dapps (decentralized applications) to access real-world data securely...]]></description>
            <content:encoded><![CDATA[<p>Introduction:</p><p>RedStone is an oracle based on the Arweave blockchain that enables Dapps (decentralized applications) to access real-world data securely, reliably and cost-effectively. This tutorial will show you how to use RedStone Oracle for your Dapp using images and examples.</p><p>prerequisites:</p><p>Introduction to blockchain and Dapps</p><p>Familiarity with Solidity programming language</p><p>Familiarity with APIs</p><p>levels:</p><p>1. Create a RedStone account:</p><p>Go to the RedStone website: https: /  / <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://redstone.finance">redstone.finance</a> / </p><p>Click on "Sign Up".</p><p>Enter the required information in the registration form.</p><p>Click on "Create Account".</p><p>Figure 1: RedStone website and Sign Up button</p><p>2. Create a data request:</p><p>In the RedStone dashboard, click on "Data Requests".</p><p>Click on "Create Request".</p><p>Select the type of data you want to get from the real world. For example, select "Price Data".</p><p>Figure 2: RedStone dashboard and Data Requests and Create Request buttons</p><p>3. Selection of data source:</p><p>In the "Data Source" field, select the data source.For example, select "CoinMarketCap API".</p><p>Enter the API Key and other necessary information.</p><p>Figure 3: Selection of data source and API Key</p><p>4. Request configuration:</p><p>Select the data update frequency. For example, select "5 minutes".</p><p>Choose how to pay for data. For example, select "Pay as you go".</p><p>5. Send request:</p><p>Click on "Submit Request".</p><p>Your request will appear in the "Data Requests" list.</p><p>6. Receiving data:</p><p>Your Dapp can access data from the real world through the RedStone API</p><p><strong>To get the price of Bitcoin, use the following code:</strong></p><p><code>pragma solidity ^0.8.0;</code></p><p><code>import "@redstone.finance/contracts/RedStone.sol";</code></p><p><code>contract BitcoinPrice is RedStone {</code></p><p><code>    function getBitcoinPrice() public view returns (uint256) {</code></p><p><code>        // Get the latest data request</code></p><p><code>        DataRequest request = getDataRequest(1);</code></p><p><code>        // Check if the request is successful</code></p><p><code>        require(request.status == RequestStatus.Success);</code></p><p><code>        // Get the data from the response</code></p><p><code>        uint256 price = abi.decode(request.response, (uint256));</code></p><p><code>        return price;</code></p><p><code>    }</code></p><p><code>}</code></p><p></p><p>Example:</p><p>Let's say you want to create a Dapp to display the price of Bitcoin in USD. Follow the steps below:</p><p>Create a RedStone account.</p><p>Create a data request to get bitcoin price.</p><p>Select the data source as CoinMarketCap API.</p><p>Set data update frequency as 5 minutes.</p><p>Submit the request</p><p>Display data:</p><p>After receiving the data from RedStone Oracle, you can display it in your Dapp. For example, you can use the following code to display the price of Bitcoin in an HTML element with the identifier "price":</p><p><code>&lt;div id="price"&gt;&lt;/div&gt;</code></p><p><code>&lt;script&gt;</code></p><p><code>const priceElement = document.getElementById("price");</code></p><p><code>const updatePrice = () =&gt; {</code></p><p><code>    const bitcoinPrice = getBitcoinPrice();</code></p><p><code>    priceElement.textContent = $${bitcoinPrice};</code></p><p><code>};</code></p><p><code>setInterval(updatePrice, 5000);</code></p><p><code>updatePrice();</code></p><p><code>&lt;/script&gt;</code></p><p>Result:</p><p>Using RedStone Oracle, you can easily build Dapps that access real-world data such as currency prices, weather data, sports data, and more. RedStone Oracle is a powerful tool for Dapp developers that allows them to build more powerful and efficient Dapps that fully meet the needs of users.</p><p>Hints:</p><p>RedStone uses a "Pay-as-you-go" payment model. You only pay for the data you use.</p><p>RedStone provides a complete API for developers that allows you to easily interact with RedStone Oracle.</p><p>For more information, see the RedStone documentation: https: /  / <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://docs.redstone.finance">docs.redstone.finance</a> </p>]]></content:encoded>
            <author>ssarra.eth@newsletter.paragraph.com (ssarra.eth)</author>
        </item>
        <item>
            <title><![CDATA[An oracle for the real world, with a taste of innovation]]></title>
            <link>https://paragraph.com/@ssarra.eth/an-oracle-for-the-real-world,-with-a-taste-of-innovation</link>
            <guid>UoMT1ZWdYGstNhVAvSKr</guid>
            <pubDate>Tue, 30 Jan 2024 17:39:21 GMT</pubDate>
            <description><![CDATA[Project Redstone: An oracle for the real world, with a taste of innovationIntroduction:As a blockchain-based oracle, Redstone plays a key role in con...]]></description>
            <content:encoded><![CDATA[<p>Project Redstone: An oracle for the real world, with a taste of innovation</p><p>Introduction:</p><p>As a blockchain-based oracle, Redstone plays a key role in connecting the real world to the digital world. This article explores how Redstone works, its unique benefits, and examples of its innovative real-world applications.</p><p>Redstone performance:</p><p>Data Collection: Redstone uses a wide and diverse network of nodes to collect data from various real-world sources such as websites, APIs, sensors, and IoT devices.</p><p>Processing and Validation: The data collected by the nodes are processed and validated using advanced algorithms to ensure their accuracy, precision and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://consistency.Secure">consistency.Secure</a> storage: Verified data is stored on the Arweave blockchain, which is considered the most secure type of data storage due to its stability and resistance to tampering.</p><p>Easy access: dApps and smart contracts can directly access data stored in Arweave through the Redstone API without the need for intermediaries.</p><p>Advantages of Redstone:</p><p>Unparalleled accuracy: Using innovative and multi-layered methods, Redstone ensures the highest level of accuracy in data presentation.</p><p>Real-time updates: Data is continuously updated in real-time so that dApps and smart contracts have access to real-world, real-time, accurate information.</p><p>Exemplary Reliability: Relying on a powerful and distributed network of nodes, Redstone guarantees that data is always available.Extreme security: Redstone protects data against any manipulation and hacking with advanced encryption and blockchain security techniques.</p><p>Affordable: Redstone aims to provide its services to a wide range of users with different needs by offering diverse and transparent pricing models.</p><p>Innovative applications of Redstone:</p><p>Decentralized Finance (DeFi): Redstone helps lending platforms, decentralized exchanges (DEX) and other DeFi applications operate more efficiently, transparently and reliably by providing accurate and up-to-date price data, exchange rates and other relevant information.</p><p>Supply chain: Redstone brings transparency and efficiency to the industry by tracking and verifying the authenticity of goods in the supply chain. Also, this oracle can directly provide consumers with information about the origin and status of goods.Blockchain Games: By providing game-related data such as scores, statistics, player positions and in-game items, Redstone makes the game experience more attractive and fair for users.</p><p>Identity: Redstone helps create a safe and trustworthy environment in the digital world by verifying the identity of individuals and organizations in blockchain applications.</p><p>Conclusion:</p><p>Offering a unique set of benefits and innovative applications, Redstone is recognized as the leading oracle in the blockchain world. This oracle plays a key role in connecting the real world to the digital world and will help the development and progress of decentralized applications in various fields</p>]]></content:encoded>
            <author>ssarra.eth@newsletter.paragraph.com (ssarra.eth)</author>
        </item>
        <item>
            <title><![CDATA[Oracle redstone from another perspective]]></title>
            <link>https://paragraph.com/@ssarra.eth/oracle-redstone-from-another-perspective</link>
            <guid>9tePKHTs2ktPMe34qDmz</guid>
            <pubDate>Tue, 30 Jan 2024 17:34:48 GMT</pubDate>
            <description><![CDATA[Redstone: Oracle for the real worldRedstone is a blockchain-based oracle that provides real-world data to decentralized applications (dApps) and smar...]]></description>
            <content:encoded><![CDATA[<figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/5c93f6e17d6cc9a528358e64b164e7f3.jpg" blurdataurl="data:image/png;base64,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" nextheight="491" nextwidth="745" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>Redstone: Oracle for the real world</p><p>Redstone is a blockchain-based oracle that provides real-world data to decentralized applications (dApps) and smart contracts. Redstone helps dApps and smart contracts become more efficient, reliable and secure by providing accurate, up-to-date and reliable data.</p><p>How does Redstone work?</p><p>Redstone uses a network of nodes to collect data from the real world. This data is then stored on the Arweave blockchain, which is a permanent and retrievable blockchain. dApps and smart contracts can access this data through the Redstone API</p><p>Redstone benefits</p><p>Redstone offers several advantages over traditional oracles, including:</p><p>Accuracy: Redstone uses a rigorous validation process to ensure data accuracy.</p><p>Up-to-date: Redstone updates data in real-time, so dApps and smart contracts always have access to the latest information.</p><p>Reliability: Redstone is backed by a large network of nodes that ensures data is always available.</p><p>Security: Redstone uses advanced encryption to protect data from tampering and hacking.</p><p>Affordable: Redstone uses a transparent and affordable pricing <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://model.Redstone">model.Redstone</a> uses</p><p>Redstone can be used in a wide variety of applications, including:</p><p>Decentralized Finance (DeFi): Redstone can be used to provide price data, exchange rates and other relevant data to DeFi applications such as decentralized exchanges (DEX) and lending platforms.</p><p>Supply chain: Redstone can be used to track the movement of goods in the supply chain and provide consumers with information about the origin and status of goods.</p><p>Blockchain Games: Redstone can be used to provide game data such as scores, stats and player positions to blockchain games.</p><p>Identity: Redstone can be used to verify the identity of individuals and organizations in blockchain applications.</p><p>Examples of Redstone projects</p><p>Band Protocol: Band Protocol is a Redstone-based oracle that provides price data to DeFi applications.Chainlink: Chainlink is a Redstone-based oracle that provides a wide range of data to dApps and smart contracts.</p><p>Everest: Everest is a Redstone-based oracle platform that allows developers to create custom oracles for their specific needs.</p><p>The future of Redstone</p><p>Redstone is becoming a leading oracle for the real world. By providing accurate, up-to-date and reliable data, Redstone helps dApps and smart contracts become more efficient, reliable and secure.</p><p>Redstone has the potential to revolutionize the way dApps and smart contracts interact with the real world. As Redstone grows and develops, we will see the emergence of new and innovative applications that use real-world data to provide better user experiences</p>]]></content:encoded>
            <author>ssarra.eth@newsletter.paragraph.com (ssarra.eth)</author>
        </item>
        <item>
            <title><![CDATA[Welcome to Paragraph!]]></title>
            <link>https://paragraph.com/@ssarra.eth/welcome-to-paragraph</link>
            <guid>F1leedCjRv6YzRKSeQzv</guid>
            <pubDate>Tue, 30 Jan 2024 17:29:59 GMT</pubDate>
            <description><![CDATA[This post teaches you everything you need to know about getting started with Paragraph.]]></description>
            <content:encoded><![CDATA[<p>Paragraph lets you create and share beautifully crafted posts - just like this one. </p><p>Write anything - from your smallest paragraph to your grandest masterpiece - and publish it online or send it as email newsletters directly to your readers.</p><p>Your Paragraph publication is blazing-fast, SEO optimized, and combines the best parts of both web2 and web3 to help you create content and grow your community better than ever. </p><h2>Getting started</h2><p>What you&apos;re looking at right now is the Paragraph editor. We support markdown, callouts, code, and rich media embeds like Twitter and YouTube.</p><div data-type="twitter" tweetid="1560419350976221185">   <div class="twitter-embed embed">    <div class="twitter-header">        <div style="display:flex">          <a target="_blank" href="https://twitter.com/paragraph_xyz">              <img alt="User Avatar" class="twitter-avatar" src="https://pbs.twimg.com/profile_images/1521582712527548416/VaZi_24t_normal.jpg">            </a>            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">              <a target="_blank" href="https://twitter.com/paragraph_xyz" class="twitter-displayname">paragraph.xyz</a>              <p><a target="_blank" href="https://twitter.com/paragraph_xyz" class="twitter-username">@paragraph_xyz</a></p>                </div>            <a href="https://twitter.com/paragraph_xyz/status/1560419350976221185" target="_blank">              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.xyz/editor/twitter/logo.png">            </a>          </div>        </div>          <div class="twitter-body">      On <a class="twitter-content-link" href="https://t.co/BbYULfPfbU" target="_blank">paragraph.xyz</a>, all posts are stored on <a class="twitter-content-link" href="https://twitter.com/ArweaveTeam" target="_blank">@ArweaveTeam</a>. This means they&apos;re immutable, uncensorable, permanent, and composable <img class="twitter-emoji" draggable="false" alt="✨" src="https://twemoji.maxcdn.com/v/14.0.2/72x72/2728.png">                    <a class="twitter-card-link" href="https://t.co/BbYULfPfbU" target="_blank">          <div class="twitter-media twitter-summary-large-image">            <img src="https://pbs.twimg.com/card_img/1747066277238108161/waMOL0FA?format=jpg&name=800x320_1">            <div class="twitter-summary-card-text">              <span>paragraph.xyz</span>              <h2>Paragraph | all-in-one publishing &amp; newsletter platform</h2>              <p>Create, publish and share web3-native blogs &amp; newsletters.</p>            </div>          </div>        </a>           </div>         <div class="twitter-footer">          <a target="_blank" href="https://twitter.com/paragraph_xyz/status/1560419350976221185" style="margin-right:16px; display:flex;">            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.xyz/editor/twitter/heart.png">            16          </a>          <a target="_blank" href="https://twitter.com/paragraph_xyz/status/1560419350976221185"><p>7:12 PM • Aug 18, 2022</p></a>        </div>      </div>   </div><p>When you publish a post, you&apos;ll have the option of sending it as a newsletter or storing it in the permanent &amp; uncensorable Arweave. </p><h2>Helpful links</h2><p>Here&apos;s a few helpful pointers to customize your publication &amp; get the most out of Paragraph:</p><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out " href="https://paragraph.xyz/settings/publication/theme">Theming &amp; customization</a>. Change your publication&apos;s font &amp; colors; truly make this space your own.</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out " href="https://paragraph.xyz/settings/publication/emails">Set up a welcome email</a>. This is the email your readers receive when they subscribe to your newsletter. </p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out " href="https://paragraph.xyz/settings/publication/blog">Configure your publication&apos;s settings</a>. Add links to your homepage, set up a custom domain, configure Google Analytics &amp; more. </p></li></ul><h2>Need help or have feedback?</h2><p>We&apos;ve put together some documentation <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out " href="https://docs.paragraph.xyz">here</a>, but if you still have questions you&apos;d like answered we’d love to hear from you. </p><p>You can reach us via email at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out " href="mailto:hello@paragraph.xyz">hello@paragraph.xyz</a> or subscribe to our newsletter <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out " href="https://paragraph.xyz/@blog">here</a>. We&apos;re also pretty active on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out " href="https://paragraph.xyz/discord">Discord</a>. </p>]]></content:encoded>
            <author>ssarra.eth@newsletter.paragraph.com (ssarra.eth)</author>
            <category>tutorial</category>
            <enclosure url="https://paragraph.xyz/covers/welcome_to_paragraph_modern.png" length="0" type="image/png"/>
        </item>
    </channel>
</rss>