diff --git a/developers/community-monetization.md b/developers/community-monetization.md index f1abf8b5..7155ee51 100644 --- a/developers/community-monetization.md +++ b/developers/community-monetization.md @@ -10,7 +10,7 @@ The intentions with all of the updates are to ensure that your project is able t **Do you have data that you can monetize?** :thinking: -Ocean V3 introduced the new crypto primitives of “data on-ramp” and “data off-ramp” via datatokens. The publisher creates ERC20 datatokens for a dataset (on-ramp). Then, anyone can access that dataset by acquiring and sending datatokens to the publisher via Ocean handshaking (data off-ramp). As a publisher, it’s in your best interest to create and publish useful data — datasets that people want to consume — because the more they consume the more you can **earn**. This is the heart of Ocean utility: connecting data publishers with data consumers :people\_hugging: +Ocean introduced the new crypto primitives of “data on-ramp” and “data off-ramp” via datatokens. The publisher creates ERC20 datatokens for a dataset (on-ramp). Then, anyone can access that dataset by acquiring and sending datatokens to the publisher via Ocean handshaking (data off-ramp). As a publisher, it’s in your best interest to create and publish useful data — datasets that people want to consume — because the more they consume the more you can **earn**. This is the heart of Ocean utility: connecting data publishers with data consumers :people\_hugging: The datasets can take one of many shapes. For AI use cases, they may be raw datasets, cleaned-up datasets, feature-engineered **data**, **AI models**, **AI model predictions**, or otherwise. (They can even be other forms of copyright-style IP such as **photos**, **videos**, or **music**!) Algorithms themselves may be sold as part of Ocean’s Compute-to-Data feature. diff --git a/developers/dev-faq.md b/developers/dev-faq.md index a42d4644..a867ff09 100644 --- a/developers/dev-faq.md +++ b/developers/dev-faq.md @@ -1,8 +1,8 @@ --- title: Development FAQ -description: Commonly Asked Questions Regarding the Technical Aspects of the Ocean Stack +description: Frequently Asked Questions About Ocean Technology" --- -## Developement FAQ +## Development FAQ Have some questions about the Ocean Protocol tech stack? @@ -11,14 +11,20 @@ Hopefully, you'll find the answers here! If not then please don't hesitate to re
The blockchain is public - does this mean that anyone can access my data? -Your data is protected as it is stored encrypted on the chain. So no one is able to access your data via the blockchain without purchasing access (with the datatoken) through the smart contract. Ocean smart contracts encrypt the URL to the dataset before it is published on the blockchain. This means that only the encrypted URL will be queryable in the public blockchain. Ocean technology facilitates data access to the consumer via a proxy (Ocean Provider) and the unencrypted URL is never exposed. +The blockchain being public means that transaction information is transparent and can be viewed by anyone. However, your data isn't directly accessible to the public. Ocean Protocol employs various mechanisms, including encryption and access control, to safeguard your data. Access to the data is determined by the permissions you set, ensuring that only authorized users can retrieve and work with your data. So, while blockchain transactions are public, your data remains protected and accessible only to those with proper authorization.
-How are datatokens created, and how does the creator make money? +How are datatokens created? -[Datatokens](../developers/contracts/datatokens) represent access rights to a specific dataset or data service on the Ocean Protocol. Creators of datasets tokenize their data, creating these datatokens. Each datatoken is unique to a dataset. +Datatokens are created within the Ocean Protocol ecosystem when you tokenize a dataset(convert a dataset into a fungible token that can be traded). More details, on the [datatokens page](../developers/contracts/datatokens) +
+ +
+How does the datatoken creator make money? + +You can generate revenue as a dataset publisher by selling DataTokens to access your published dataset. For more details, please visit the [community monetization]((https://docs.oceanprotocol.com/developers/community-monetization#1.-publishing-and-selling-data) page.
@@ -28,10 +34,9 @@ To access this data, some technical expertise is required. You can find this inf
-How can collaborators and developers use Ocean technology to build their own data marketplaces? +How can developers use Ocean technology to build their own data marketplaces? -Ocean technology is open-source, community-funded, and freely available for use by anyone. -Anyone can fork various components from the Ocean [GitHub](https://github.com/oceanprotocol) repository and create their own. Additionally, Ocean empowers dApp owners with great flexibility and control over the fees they charge, allowing you to customize the fee structure to meet your specific needs and ensure your project's sustainability. +You can fork Ocean Market and then make changes as you wish. Please see the [customising your market](../developers/build-a-marketplace/customising-your-market) page for details.
@@ -47,22 +52,16 @@ Ocean technology is actively used by Daimler/Acentrik, deltaDAO/GAIA-X, and seve An Ocean faucet is a site to get (fake) OCEAN for use on a given testnet. There's an Ocean faucet for each testnet that Ocean is deployed to. The [networks](../discover/networks/) page have more information.
-
-Can I use the off-the-shelf CSS available in the repo? - -The marketplace name, logo, and typeface must be changed by the client. A slight modification would be enough for compliance. For more information consult the README file about [forking Ocean Market](https://github.com/oceanprotocol/market#-forking). -
-
How can I convert tokens from the BEP20 network to the ERC20 network? -Please follow this [tutorial](../discover/networks/bridges#binance-smart-chain-bsc-bridge) to bridge from/to binance smart chain. Please double-check the addresses and make sure you are using the right smart contracts. +Please follow this [tutorial](../discover/networks/bridges#bnb-smart-chain-bridge) to bridge from/to BNB Smart Chain. Please double-check the addresses and make sure you are using the right smart contracts.
How to bridge my mOcean back to Ocean? -Please follow this [tutorial](../discover/networks/bridges#polygon-ex-matic-bridge) to bridge to/from polygon. Please double-check the addresses and make sure you are using the right smart contracts. +Please follow this [tutorial](../discover/networks/bridges#polygon-ex-matic-bridge) to bridge to/from Polygon mainnet. Please double-check the addresses and make sure you are using the right smart contracts.
@@ -76,7 +75,7 @@ PS: We offer good rewards 😇
If a dataset consists of 100 individuals' private data, does this solution allow each individual to maintain sovereign control over their data while still enabling algorithms to compute as if it were one dataset? -Each individual could publish their dataset themselves, to get a data NFT. From the data NFT, they can mint datatokens which are to access the data. They have sovereign control over this, as hold the keys to the data NFTs and datatokens, and have great flexibility in how to give others access. For example, they could send a datatoken to a DAO for the DAO can manage. Or they could grant datatoken-minting permissions to the DAO. The DAO could use this to assemble a dataset across 100 individuals. ⁣ +Yes. Each individual could publish their dataset themselves, to get a data NFT. From the data NFT, they can mint datatokens which are to access the data. They have sovereign control over this, as hold the keys to the data NFTs and datatokens, and have great flexibility in how to give others access. For example, they could send a datatoken to a DAO for the DAO can manage. Or they could grant datatoken-minting permissions to the DAO. The DAO could use this to assemble a dataset across 100 individuals. ⁣ ⁣ Learn more about Data NFTs on the [Docs](../developers/contracts/data-nfts).
\ No newline at end of file diff --git a/developers/ocean.py/README.md b/developers/ocean.py/README.md index 6aa6edb9..3bda1c7f 100644 --- a/developers/ocean.py/README.md +++ b/developers/ocean.py/README.md @@ -4,33 +4,12 @@ Attention all data enthusiasts! Are you an inquisitive data scientist intrigued by the world of Web3 and blockchain, but unsure of where to begin? Have you developed a groundbreaking AI algorithm and desire to transform it into profitable success? Perhaps you're engaged in training a highly lucrative model (LLM) and seek to define precise licensing terms for your valuable data. Or maybe you simply wish to sell your data while maintaining utmost privacy and control. -Well, brace yourselves for some exhilarating news! Introducing ocean.py, a Python library that possesses a touch of magic. 🎩🐍 It empowers you to discreetly and securely publish, exchange, and effortlessly consume data. 🐙💦 Collaborating with the Ocean Protocol 🌊, it unlocks a plethora of advantages mentioned earlier. So get ready to take the plunge into the vast ocean of data with a resounding splash of excitement! 💦🌊 +This is where ocean.py can help. It is a Python library for data scientists to privately & securely publish, exchange, and consume data. 🐙💦

ocean.py library

### Overview -ocean.py serves as a connection layer bridging the smart contracts and various components such as [Provider](https://github.com/oceanprotocol/provider), [Aquarius](https://github.com/oceanprotocol/aquarius), and [Compute to Data engine](https://github.com/oceanprotocol/operator-service) within Ocean Protocol. This pythonic library brings all these elements together, facilitating seamless integration and interaction. By acting as an intermediary, ocean.py enables developers to easily leverage the functionalities offered by Ocean Protocol, making it a valuable tool in building applications and solutions that utilize decentralized data marketplaces. Its purpose is to simplify the process of connecting with smart contracts and accessing services provided by Provider, Aquarius, and Compute to Data engine, providing a convenient and efficient development experience for users. - -#### Architectural point of view - -ocean.py is like the conductor of an underwater orchestra, guiding different marine creatures (modules) to work together harmoniously. It's an open-source library that makes swimming in the vast sea of data a breeze! 🌊 - -The head of this library is the "[Ocean](technical-details.md)" class. It oversees everything and keeps track of the data flow. - -Now, let's take a closer look at those amazing branches: - -1. **Data Discovery Branch**: This branch discovers & creates valuable datasets stored in the Ocean Protocol ecosystem. It navigates through metadata and identifies the hidden treasures of the data assets. -2. **Data Access Branch**: Just like a skilled locksmith, this branch unlocks the doors to the datasets, facilitating access and content retrieval. It interacts with the Ocean Protocol's smart contracts to securely fetch the desired data. -3. **Data Transformation Branch**: Transforming data is like wielding magic, and this arm is the magician! It performs enchanting operations on the data, such as reformatting, reorganizing, or even enriching it, making it ready for the next steps. -4. **Model Deployment Branch**: This branch deploy the Ocean smart contract objects wrapped models using [Brownie](https://github.com/eth-brownie/brownie), making them accessible for utilization within the library. -5. **Model Training Branch**: This branch collaborates with Compute-To-Data engine in order to run algorithms and to train models using the transformed data. -6. **Model Monitoring Branch**: This branch monitors the received algorithm result logs from Compute-to-Data engine, tracking their performance. - -So, in the realm of ocean.py's integration with Ocean Protocol's smart contracts, the six versatile branches embark on an exciting journey. Together, they form a powerful team, navigating the depths of the Ocean ecosystem. 🌊🐙 - -### ocean.py Strengths 💪 - ocean.py lets you do the following things: * Publish data services: downloadable files or compute-to-data. Create an ERC721 data NFT for each service, and ERC20 datatoken for access (1.0 datatokens to access). @@ -41,9 +20,7 @@ If you prefer video format, please check this video below, otherwise let's move {% embed url="https://youtu.be/8uZC6PC9PBM" %} - - -### ocean.py Quickstart 🚀 +### Quickstart 🚀 To kickstart your adventure with ocean.py, we set out the following steps to get you zooming ahead in no time! diff --git a/developers/subgraph/README.md b/developers/subgraph/README.md index f96b3f32..abe6d0a6 100644 --- a/developers/subgraph/README.md +++ b/developers/subgraph/README.md @@ -32,7 +32,7 @@ When it comes to fetching valuable information about [Data NFTs](../contracts/da | ------------------- | ----------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | | Ethereum | [Subgraph](https://v4.subgraph.mainnet.oceanprotocol.com) | [GraphiQL](https://v4.subgraph.mainnet.oceanprotocol.com/subgraphs/name/oceanprotocol/ocean-subgraph/graphql) | | Polygon | [Subgraph](https://v4.subgraph.polygon.oceanprotocol.com/) | [GraphiQL](https://v4.subgraph.polygon.oceanprotocol.com/subgraphs/name/oceanprotocol/ocean-subgraph/graphql) | -| Binance Smart Chain | [Subgraph](https://v4.subgraph.bsc.oceanprotocol.com) | [GraphiQL](https://v4.subgraph.bsc.oceanprotocol.com/subgraphs/name/oceanprotocol/ocean-subgraph/graphql) | +| BNB Smart Chain | [Subgraph](https://v4.subgraph.bsc.oceanprotocol.com) | [GraphiQL](https://v4.subgraph.bsc.oceanprotocol.com/subgraphs/name/oceanprotocol/ocean-subgraph/graphql) | | Energy Web Chain | [Subgraph](https://v4.subgraph.energyweb.oceanprotocol.com) | [GraphiQL](https://v4.subgraph.energyweb.oceanprotocol.com/subgraphs/name/oceanprotocol/ocean-subgraph/graphql) | | Moonriver | [Subgraph](https://v4.subgraph.moonriver.oceanprotocol.com) | [GraphiQL](https://v4.subgraph.moonriver.oceanprotocol.com/subgraphs/name/oceanprotocol/ocean-subgraph/graphql) | | Mumbai | [Subgraph](https://v4.subgraph.mumbai.oceanprotocol.com) | [GraphiQL](https://v4.subgraph.mumbai.oceanprotocol.com/subgraphs/name/oceanprotocol/ocean-subgraph/graphql) | diff --git a/discover/explore.md b/discover/explore.md index c1647731..ffe8f63d 100644 --- a/discover/explore.md +++ b/discover/explore.md @@ -58,8 +58,7 @@ You can choose from two options: Tokengate Your dApp or Content

Are you interested in token gating your dApp or content using an Ocean data NFT? We offer you all the code and support that you need to make this happen.
-Feel free to fork the [Ocean Token Gate template](https://github.com/oceanprotocol/token-gating-template) code and customize it to start building your dApp from scratch. If you already have an existing dApp of yours, then you can also modify it simply to use an Ocean data NFT. The [Ocean Token Gate repo](https://github.com/oceanprotocol/token-gating-template) will be helpful to inform your coding to do this, of course. But we also explain the [smart contract mechanics](../developers/contracts/) of Data NFTs and Datatokens[ in the docs](../developers/contracts/) for you to understand the code better. Remember, we're always here to help guide you with any coding questions on [Discord](https://discord.gg/TnXjkR5). - +Feel free to fork the [Ocean token-gating template](https://github.com/oceanprotocol/token-gating-template) code and customize it to start building your dApp from scratch. If you already have an existing dApp of yours, then you can also modify it simply to use an Ocean data NFT.
diff --git a/discover/faq.md b/discover/faq.md index 882bff40..05e1198c 100644 --- a/discover/faq.md +++ b/discover/faq.md @@ -57,7 +57,7 @@ This issue is similar to what any digital distribution platform faces. For insta
-Is the Ocean Shipyard funded by $OCEAN? +What is Ocean Shipyard? Ocean Shipyard is an early-stage grant program established to fund the next generation of Web3 dApps built on Ocean Protocol. It is made for entrepreneurs looking to build Web3 solutions on Ocean, make valuable data available, build innovations, and create value for the Ocean ecosystem. More info on the [Shipyard](https://oceanprotocol.com/shipyard) page. @@ -84,26 +84,25 @@ To be fully decentralized means no single point of control, at any level of the
Where can we see previous data challenges and submitted solutions? -You can find a list of past data challenges on the [website](https://oceanprotocol.com/challenges). -Accessing the submitted solutions is currently a work in progress, with one solution already available for the [Catalunya](https://catalunya.oceanprotocol.com/) challenge. +You can find a list of past data challenges on the [website](https://oceanprotocol.com/challenges).
### Tokenomics
-How does the $OCEAN token capture value? +How does the OCEAN token capture value? Please see the [token page](https://www.oceanprotocol.com/token) for up-to-date information about OCEAN tokenomics.
-What is the circulating supply of Ocean token? What is the emission schedule for $OCEAN? +What is the circulating supply of Ocean token? What is the emission schedule for OCEAN? All 1.41 Billion Ocean have been [minted](https://blog.oceanprotocol.com/control-over-the-ocean-contract-to-be-revoked-soon-overview-6c5b15be2db) with approximately 700 million Ocean in circulation. The remaining 51% of the supply is earmarked on an emission schedule identical to Bitcoin's emission mechanism, including the 4-year half-life.
-Can $OCEAN supply become deflationary? +Can OCEAN supply become deflationary? A portion of the revenue earned in the Ocean ecosystem is earmarked for buy-and-burn. If the transaction volume on Ocean reaches scale and is broadly adopted to the point where the buy-burn mechanism outruns the emissions of Ocean token, the Ocean token supply would deflate.
@@ -111,13 +110,13 @@ A portion of the revenue earned in the Ocean ecosystem is earmarked for buy-and-
Does the OCEAN token also have governance functionality? -During the Ocean DAO grants program (2021-2022), the Ocean token was used for community voting and governance. Currently, there are no governance functions associated with the Ocean Token. In the future, when there is a broader adoption of Ocean technology and a vibrant community and ecosystem has formed around Ocean, further options for community governance with the Ocean token will be explored. +During the OceanDAO grants program (2021-2022), the Ocean token was used for community voting and governance. Currently, there are no governance functions associated with the Ocean Token. In the future, when there is a broader adoption of Ocean technology and a vibrant community and ecosystem has formed around Ocean, further options for community governance with the Ocean token will be explored.
- Which blockchain network currently has the highest liquidity for Ocean? + Which blockchain network currently has the highest liquidity for OCEAN? -The Ethereum network has the highest liquidity for $OCEAN. +The Ethereum network has the highest liquidity for OCEAN.
@@ -130,9 +129,7 @@ All Ocean modules and components are open-source and freely available to the com
How does the ecosystem and the Ocean token benefit from the usage of the open-source tech stack when transactions can be paid in any currency? -You are right, all Ocean modules and components are open-source and freely available to the community. Developers can change the default currency from OCEAN to a different one for their dApp. But, there is a community fee involved in all transactions hapening in the ecosystem. - -veOCEAN on the other hand, follows the model of other ve tokens, where it can be used for passive and active staking. By locking up your $OCEAN to veOCEAN, you automatically receive passive staking rewards. You can also earn active staking rewards by assigning your veOCEAN directly on datasets or through a proxy (psdnOCEAN), who deploy your veOCEAN at no risk, in order to gain a share of active rewards. Active rewards are based on transaction volume on specific data assets. +For each consume transaction, the Ocean community gets a small fee. This happens whether OCEAN is used or not. [Here are details](../developers/contracts/fees.md)"
### Data marketplaces diff --git a/discover/glossary.md b/discover/glossary.md index 79f9526d..2bceafeb 100644 --- a/discover/glossary.md +++ b/discover/glossary.md @@ -274,7 +274,7 @@ In the context of Ocean Protocol, interoperability enables the integration of th Smart contracts are self-executing digital contracts that allow for the automation and verification of transactions without the need for a third party. They are programmed using code and operate on a decentralized blockchain network. Smart contracts are designed to enforce the rules and regulations of a contract, ensuring that all parties involved fulfill their obligations. Once the conditions of the contract are met, the smart contract automatically executes the transaction, ensuring that the terms of the contract are enforced in a transparent and secure manner. -Ocean ecosystem smart contracts are deployed on multiple blockchains like Polygon, Energy Web Chain, Binance Smart Chain, and others. The code is open source and available on the organization's [GitHub](https://github.com/oceanprotocol/contracts). +Ocean ecosystem smart contracts are deployed on multiple blockchains like Polygon, Energy Web Chain, BNB Smart Chain, and others. The code is open source and available on the organization's [GitHub](https://github.com/oceanprotocol/contracts).
diff --git a/discover/networks/README.md b/discover/networks/README.md index d0c6f9f5..43c536c8 100644 --- a/discover/networks/README.md +++ b/discover/networks/README.md @@ -25,15 +25,15 @@ Ocean Protocol is also deployed to Polygon Mainnet, which is another production Check out the Polygon Bridge [guide](bridges.md) to learn how you can deposit, withdraw and send tokens. -### Binance Smart Chain +### BNB Smart Chain -Ocean Protocol is also deployed to Binance Smart Chain (BSC), which is another production network. The native token of the Binance Smart Chain is BNB, which is the token of the Binance exchange. If Binance Smart Chain is not listed as a predefined network in your wallet, you can manually connect to it by following Binance's [guide](https://academy.binance.com/en/articles/connecting-metamask-to-binance-smart-chain), which provides detailed instructions on how to connect to Binance Smart Chain. +Ocean Protocol is also deployed to BNB Smart Chain, which is another production network. The native token of the BNB Smart Chain is BNB, which is the token of the Binance exchange. If BNB Smart Chain is not listed as a predefined network in your wallet, you can manually connect to it by following Binance's [guide](https://academy.binance.com/en/articles/connecting-metamask-to-binance-smart-chain), which provides detailed instructions on how to connect to BNB Smart Chain.
Gas TokenBSC BNB(Native token)
OCEAN0xdce07662ca8ebc241316a15b611c89711414dd1a
Explorerhttps://bscscan.com/
**Bridge** -Check out the BSC Bridge [guide](bridges.md#binance-smart-chain-bsc-bridge) to learn how you can deposit, withdraw and send tokens. +Check out the BSC Bridge [guide](bridges.md#bnb-smart-chain-bridge) to learn how you can deposit, withdraw and send tokens. ### Energy Web Chain diff --git a/discover/networks/bridges.md b/discover/networks/bridges.md index 26f8d0a4..431e4ed1 100644 --- a/discover/networks/bridges.md +++ b/discover/networks/bridges.md @@ -9,9 +9,9 @@ A bridge is a mechanism that connects two or more separate blockchain networks, We suggest using the following solutions to transfer Ocean tokens between Ethereum mainnet and Polygon or BSC. -## Binance Smart Chain (BSC) Bridge +## BNB Smart Chain Bridge -To transfer Ocean tokens to and from the Binance Smart Chain, we recommend using the [Binance Bridge](https://www.bnbchain.org/en/bridge). BSC offers various options such as withdrawing crypto from [Binance](https://www.binance.com/en) and utilizing the [Binance Bridge](https://www.bnbchain.org/en/bridge). You can refer to the Binance Academy article "[How to Get Started with BSC](https://academy.binance.com/en/articles/how-to-get-started-with-binance-smart-chain-bsc)" for more information. +To transfer Ocean tokens to and from the BNB Smart Chain, we recommend using the [Binance Bridge](https://www.bnbchain.org/en/bridge). BSC offers various options such as withdrawing crypto from [Binance](https://www.binance.com/en) and utilizing the [Binance Bridge](https://www.bnbchain.org/en/bridge). You can refer to the Binance Academy article "[How to Get Started with BSC](https://academy.binance.com/en/articles/how-to-get-started-with-binance-smart-chain-bsc)" for more information. {% hint style="warning" %} In case you opt for an alternative bridge option and intend to transfer tokens to Binance, it is **crucial** to ensure that the contract address you are sending the tokens to is correct. diff --git a/discover/wallets-and-ocean-tokens.md b/discover/wallets-and-ocean-tokens.md index bc349b17..4d518d59 100644 --- a/discover/wallets-and-ocean-tokens.md +++ b/discover/wallets-and-ocean-tokens.md @@ -12,7 +12,7 @@ If you don't see any Ocean Tokens in your crypto wallet software 🔎 (e.g. Meta Almost all ERC-20 wallets require these values for adding a custom token: -
Network nameContract AddressSymbolDecimals
Mainnet0x967da4048cD07aB37855c090aAF366e4ce1b9F48OCEAN18
Polygon
(ex Matic)
0x282d8efCe846A88B159800bd4130ad77443Fa1A1mOCEAN18
BSC
Binance Smart Chain
0xdce07662ca8ebc241316a15b611c89711414dd1aOCEAN18
Görli0xCfDdA22C9837aE76E0faA845354f33C62E03653aOCEAN18
Mumbai0xd8992Ed72C445c35Cb4A2be468568Ed1079357c8OCEAN18
+
Network nameContract AddressSymbolDecimals
Mainnet0x967da4048cD07aB37855c090aAF366e4ce1b9F48OCEAN18
Polygon
(ex Matic)
0x282d8efCe846A88B159800bd4130ad77443Fa1A1mOCEAN18
BSC
BNB Smart Chain
0xdce07662ca8ebc241316a15b611c89711414dd1aOCEAN18
Görli0xCfDdA22C9837aE76E0faA845354f33C62E03653aOCEAN18
Mumbai0xd8992Ed72C445c35Cb4A2be468568Ed1079357c8OCEAN18
The [OCEAN Token page](https://oceanprotocol.com/token) at oceanprotocol.com has further details. diff --git a/rewards/df-faq.md b/rewards/df-faq.md index 26acfcca..61e2ce9f 100644 --- a/rewards/df-faq.md +++ b/rewards/df-faq.md @@ -7,11 +7,11 @@ description: Frequently Asked Questions about Data Farming ### Guides
-I'm new to Ocean and I want to stake my $OCEAN tokens. Can you show me how? Where can I learn about APY and locks? +I'm new to Ocean and I want to stake my OCEAN tokens. Can you show me how? Where can I learn about APY and locks? Absolutely, we've adopted the voting escrowed system from Curve Finance (veCRV) and created veOCEAN. -veOCEAN lets you lock $OCEAN to receive veOCEAN. You then automatically access Passive Rewards via Data Farming while learning more about Active Rewards. Here are some handy resources to help you get started: +veOCEAN lets you lock OCEAN to receive veOCEAN. You then automatically access Passive Rewards via Data Farming while learning more about Active Rewards. Here are some handy resources to help you get started: 1. [Tutorial](user-guides/how-to-volumedf.md) 2. [Estimate your APY](user-guides/how-to-estimate-apy.md) @@ -43,7 +43,7 @@ You can delegate veOCEAN to others in order to facilitate farming, however, you Which networks are eligible for Data Farming? -You participate by default in Passive Rewards when you lock $OCEAN on Ethereum Mainnet. +You participate by default in Passive Rewards when you lock OCEAN on Ethereum Mainnet. Data assets for Volume DF may be published in any network where Ocean’s deployed in production: Eth Mainnet, Polygon, BSC, and more. @@ -91,7 +91,7 @@ Yes. When you lock Ocean tokens, you'll receive them back at the end of the lock Is it possible to only participate in Passive Rewards? Or should I participate in Active Rewards? -You participate by default in Passive Rewards when you lock $OCEAN. +You participate by default in Passive Rewards when you lock OCEAN. But to maximize your rewards, you will also need to engage in Active Rewards. @@ -120,9 +120,9 @@ The ratio stands at 80% to 20%, creating an imbalanced pool that minimizes price
- How to convert PsdnOcean back to $OCEAN ? + How to convert PsdnOcean back to OCEAN ? -You can convert psdnOCEAN back to $OCEAN using the Balancer AMM liquidity [pool](https://app.balancer.fi/#/ethereum/pool/0xf8c4cd95c7496cb7c8d97202cf7e5b8da2204c2b00020000000000000000039e). +You can convert psdnOCEAN back to OCEAN using the Balancer AMM liquidity [pool](https://app.balancer.fi/#/ethereum/pool/0xf8c4cd95c7496cb7c8d97202cf7e5b8da2204c2b00020000000000000000039e). [Price information](https://www.geckoterminal.com/eth/pools/0xf8c4cd95c7496cb7c8d97202cf7e5b8da2204c2b) for psdnOCEAN. @@ -180,9 +180,9 @@ They can be claimed/redeposited whenever you want. If you don't claim, they just
-Are rewards paid out in veOCEAN or $OCEAN? +Are rewards paid out in veOCEAN or OCEAN? -All rewards in Data Farming are paid out in $OCEAN and can be claimed at the every epoch. +All rewards in Data Farming are paid out in OCEAN and can be claimed at the every epoch.
@@ -198,7 +198,7 @@ To boost your APY, consider locking your OCEAN for a more extended period. It's
-Could you explain the benefits of staking $OCEAN tokens and how the APY is calculated? +Could you explain the benefits of staking OCEAN tokens and how the APY is calculated? Yes, You can find the details in these resources.⁣ 1. [Benefits](df-veocean).