
Ocean Uploader - storage flow 1

Ocean Uploader - storage flow 1
-
-Step 2: Open the Ocean Marketplace. Go to publish and fill in all the information for your dataset.
-
-
-
-Step 3: When selecting the file to publish, open the hosting provider (e.g. "Arweave" tab)
-
-
-
-Step 4: Paste the hash you copied earlier.
-
-
-
-Step 5: Click on "VALIDATE" to ensure that your file gets validated correctly.
-
-
-
-This feature not only simplifies the process of storing and managing files but also seamlessly integrates with the Ocean Marketplace. Once your file is uploaded via Uploader UI, you can conveniently use the generated hash or CID to interact with your assets on the Ocean Marketplace, streamlining the process of sharing, validating, and trading your digital content.
\ No newline at end of file
diff --git a/developers/uploader/uploader-ui.md b/developers/uploader/uploader-ui.md
deleted file mode 100644
index 797ed4c01..000000000
--- a/developers/uploader/uploader-ui.md
+++ /dev/null
@@ -1,178 +0,0 @@
-# Uploader UI
-
-The [Uploader UI](https://github.com/oceanprotocol/uploader-ui-lib) stands as a robust UI react library dedicated to optimizing the uploading, and interaction with digital assets.
-
-Through an intuitive platform, the tool significantly simplifies the entire process, offering users a seamless experience for uploading files, acquiring unique identifiers such as hashes or CIDs, and effectively managing their decentralized assets. Developed using React, TypeScript, and CSS modules, the library seamlessly connects to Ocean remote components by default, ensuring a cohesive and efficient integration within the ecosystem.
-
-## 🚀 Usage
-
-Integrating [Uploader UI](https://github.com/oceanprotocol/uploader-ui-lib) into your application is straightforward. The package facilitates seamless uploads but requires a wallet connector library to function optimally. Compatible wallet connection choices include [ConnectKit](https://docs.family.co/), [Web3Modal](https://web3modal.com/), [Dynamic](https://dynamic.xyz/) and [RainbowKit](https://www.rainbowkit.com/docs/installation).
-
-**Step 1:** Install the necessary packages. For instance, if you're using ConnectKit, the installation command would be:
-
-```bash
-npm install connectkit @oceanprotocol/uploader-ui-lib
-```
-
-**Step 2:** Incorporate the UploaderComponent from the uploader-ui-lib into your app. It's crucial to ensure the component is nested within both the WagmiConfig and ConnectKit providers. Here's a basic implementation:
-
-```javascript
-import React from 'react'
-import { WagmiConfig, createConfig } from 'wagmi'
-import { polygon } from 'wagmi/chains'
-import {
- ConnectKitProvider,
- getDefaultConfig,
- ConnectKitButton
-} from 'connectkit'
-import UploaderComponent from 'uploader-ui-lib'
-
-export default function App () {
- // Initialize the Wagmi client
- const wagmiConfig = createConfig(
- getDefaultConfig({
- appName: 'Ocean Uploader UI',
- infuraId: 'Your infura ID',
- chains: [polygon],
- walletConnectProjectId: 'Your wallet connect project ID'
- })
- )
-
- return (
-