Vote for Dlux on TheDappList and get Rewarded

Hivians, Power Up DLUX on The Dapp List!

Deep in the #Hive blockchain’s electric grid, where 3-second blocks hum like a cosmic engine, DLUX @dlux-io pulses as a boundless forge of Web3 dreams. Imagine a sprawling VR metropolis—neon spires of code, IPFS-powered galleries, and DeFi markets buzzing with tokenized energy. Here, creators sculpt VR realms and mint NFTs without a single line of code, all fueled by Hive’s feeless magic. But now, Hivians, a wild challenge sparks in the void: #TheDappList , a galactic leaderboard of dapps, calls DLUX to prove its mettle. Only your votes can launch it into orbit!

Enter Vynix, a rogue VR sprite born from DLUX’s open-source core, its holographic wings flickering with encrypted light. “Hivians!” Vynix chirps, darting through Hive’s data streams, “The Dapp List is our stage! Vote to light up DLUX’s infinite loop!” It weaves through SPK nodes, past buzzing #Hive-Engine markets, rallying creators on @peakd and visionaries on @ecency. In DLUX’s virtual plazas, a coderless artist spawns a glowing NFT—a tokenized comet—while a node runner hums of trustless DEX trades. “DLUX is our playground,” they chant, “let’s make it unstoppable!”

This isn’t just a vote—it’s a hack against centralized chains, a cheer for WebXR rebels, and a power-up for Hive’s #decentralized future. Grab your Hive Keychain, sync with Vynix’s signal, and flood The Dapp List with your spark. Let’s code DLUX’s legend into the blockchain’s core!

Vote now, and forge the limitless!

Vote & Earn Rewards

IMPORTANT: The first 5 days of comments from this article will recieve rewards so you better be fast with voting.

Here is what you need to do, Let's start!

  1. Go to https://thedapplist.com/project/decentralized-limitless-user-xperiences

  2. Connect any Wallet from the given list (If you don't have any of these wallets please check

    how to create a TrustWallet on your Phone and This Tutorial for PC.)

  3. Change your Username to the same username as on Hive

  4. VOTE

  5. After voting, take a screenshot so we can see your Username, Dlux Dapp and your VOTE. Here is an example:

  6. Now post the screenshot in the Comments of this Article

  7. REBLOG and TAG 3 Friends inviting them to join the voting


egwetbb.jpg

Thank You ❤️

This article is sponsored by @Acidyo and the @OCD Team, @starkerz and the @threespeak Team, @blocktrades and @dlux-io. Thank you! 100% of the beneficiary rewards will go to @commentrewarder, allowing us to reward everyone for voting for Dlux on The Dapp List website.

og.png

What is TheDappList?

TheDappList is a community-driven discovery platform for #decentralized applications (dApps) in the #Web3 ecosystem. It serves as a curated directory where users can explore, review, and engage with dApps across various blockchain networks.

The platform empowers both users and developers by offering a trustworthy space to showcase and discover innovative #projects in DeFi, NFTs, gaming, social platforms, and more. With a focus on transparency and decentralization, TheDappList allows the #community to vote on projects, ensuring that only the most valuable and credible dApps gain visibility.

030eed965f1449e0b98678d1c778f593bd024abb.png

Promote Hive

Hive isn’t just a blockchain—it’s a dynamic, #decentralized network fueled by our collective creativity, energy, and enthusiasm. To help it flourish, we can’t afford to keep it to ourselves. It’s time to step out and share what sets Hive apart, why it’s superior, and why it’s worth joining!

Where Should We Showcase Hive? Anywhere and everywhere! Think crypto conferences, meetups, podcasts, blogs, social media platforms, hackathons, gaming circles, and even in-person gatherings. Any spot where people dive into topics like #Web3, decentralization, content creation, gaming, or finance is a perfect opportunity to spotlight #Hive.

Scour the Web & Include Hive! Let’s get proactive—search online to see where other #blockchains are popping up. Are they featured in crypto directories, comparison websites, forums, or learning hubs? If so, let’s make sure Hive gets a mention too! Boosting our presence means more people stumble upon our #ecosystem.

Collaborate & Innovate Together, we’re unstoppable! Let’s unite as a #community to swap ideas and plan. How do we get Hive noticed by more people? Could we partner with influencers, back events, or launch attention-grabbing social media pushes? The possibilities to propel Hive are limitless—but we’ve got to make it happen!

join the soup.jpg



0
0
0.000
222 comments
avatar

Was it for Dlux where disregard was posting about building an UI for a decentralized any-kind-of-file storage of some sorts (perhaps a custom IPFS)? There were some screenshots in one of his posts a while back with basically a file/directory management app.

An early post this morning from you. Caught me before I started delving into other blocks of work without paying attention to my feed.

image.png

Just bragging that I upvoted all of them. No need for an upvote... although I don't mind, lol.

0
0
0.000
avatar

Oh yeah. Try it out:

https://www.dlux.io/@disregardfiat#drive

Or upload your own at your profile.

0
0
0.000
avatar

Awesome! I'm curious... Would someone be able to host static websites on SPK Network Drive, in the future, for example? Would it be slow, if possible?

0
0
0.000
avatar

I'm just gonna post the current file system documentation i'm trying to get the bugs out of now. This should be pretty fast, and it's part of a wider integration with graphQL


Filesystem API Documentation

The Filesystem API provides a familiar file system interface for accessing SPK Network storage contracts with intelligent IPFS gateway routing through actual storage nodes.

Base URL

https://honeygraph.example.com/fs

Endpoints

Directory Listing

Get a listing of files and subdirectories for a user at a specific path.

GET /fs/:username/:path

Parameters

  • username - The SPK account username
  • path - The directory path (optional, defaults to root)

Example Requests

# Get root directory
GET /fs/alice

# Get Videos directory
GET /fs/alice/Videos

# Get nested directory
GET /fs/alice/Documents/Projects

Response Format

{
  "path": "/Videos",
  "username": "alice",
  "type": "directory",
  "contents": [
    {
      "name": "vacation",
      "type": "directory",
      "path": "/Videos/vacation",
      "numberOfItems": 1
    },
    {
      "name": "tutorial.mp4",
      "type": "file",
      "cid": "QmXkEeNVh3Q2wK8MG5RCxA2tZsJmZaHtBFmkYgAPndu5jC",
      "size": 52428800,
      "mimeType": "video/mp4",
      "contract": {
        "id": "alice:0:94477061-457c1cb54b53658ec034b719ff8c158bd85ea430",
        "blockNumber": 94477061
      },
      "metadata": {
        "encrypted": false,
        "autoRenew": true
      }
    }
  ]
}

File Access

Access a specific file by path. Automatically redirects to IPFS with version control.

GET /fs/:username/:filepath

Parameters

  • username - The SPK account username
  • filepath - Full path to the file including filename

Example Requests

# Access a video file
GET /fs/alice/Videos/tutorial.mp4

# Access a document
GET /fs/alice/Documents/report.pdf

# Access nested file
GET /fs/alice/Projects/website/index.html

Response

  • 302 Redirect to IPFS gateway URL
  • Headers:
    • X-IPFS-CID: The IPFS content identifier
    • X-Contract-ID: The storage contract ID
    • X-Block-Number: Block number (for version tracking)
    • X-File-Size: File size in bytes
    • X-Version-Count: Number of versions available
    • X-Storage-Node: Account serving the file (if available)
    • X-Gateway-Priority: Gateway selection method used

Version Control

When multiple versions of a file exist (same path in different contracts), the API automatically selects the newest version based on block number.

Features

1. Intelligent Gateway Routing

When accessing files, the system uses a multi-tier gateway selection strategy:

Primary: Contract Storage Nodes

  • Queries the storage nodes assigned to the contract
  • Looks for IPFS gateway services on those nodes
  • Routes requests through nodes that actually have the file
  • Ensures data locality and optimal performance

Fallback: Network-Wide Gateways

  • If contract nodes don't have gateways, searches all network IPFS services
  • Sorts by node health (lastGood block metric)
  • Uses the healthiest available gateway

Final Fallback: Public Gateway

  • Uses configured public IPFS gateway (default: ipfs.io)
  • Ensures files are always accessible

2. Directory Navigation

  • Browse user files like a traditional file system
  • Support for nested directories
  • Files and folders sorted alphabetically

3. Direct File Access

  • Clean URLs that map to IPFS content
  • Automatic IPFS gateway redirection
  • No need to know IPFS CIDs

4. Version Control

  • Automatic selection of newest file version
  • Based on contract block number
  • Transparent to the end user

5. Metadata Support

  • File type detection via MIME types
  • Encryption status
  • Auto-renewal information
  • Contract details

6. Path Resolution

  • Support for both exact path matching
  • Fallback to name-based search
  • Case-sensitive file names

Error Responses

404 Not Found

{
  "error": "User not found",
  "username": "nonexistent"
}
{
  "error": "File not found",
  "path": "/Videos/missing.mp4",
  "username": "alice"
}

500 Internal Server Error

{
  "error": "Internal server error"
}

Use Cases

1. Web Applications

Build file browsers and media galleries:

// Fetch user's video directory
const response = await fetch('/fs/alice/Videos');
const directory = await response.json();

// Display files
directory.contents.forEach(item => {
  if (item.type === 'file' && item.mimeType.startsWith('video/')) {
    console.log(`Video: ${item.name} (${item.size} bytes)`);
  }
});

2. Direct Media Streaming

Embed media files directly:

(html comment removed:  Video player )
<video controls>
  <source src="/fs/alice/Videos/tutorial.mp4" type="video/mp4">
</video>

(html comment removed:  Image )
<img src="/fs/alice/Photos/sunset.jpg" alt="Sunset">

(html comment removed:  Audio )
<audio controls>
  <source src="/fs/alice/Music/song.mp3" type="audio/mpeg">
</audio>

3. Document Viewing

Link to documents:

<a href="/fs/alice/Documents/report.pdf" target="_blank">
  View Report (PDF)
</a>

4. File Download

Direct download links:

<a href="/fs/alice/Backups/data.zip" download>
  Download Backup
</a>

Gateway Selection Details

How It Works

  1. Contract Query: For each file request, the system queries the storage contract to find assigned storage nodes
  2. Service Discovery: Checks each storage node for active IPFS gateway services
  3. Priority Routing: Routes through nodes that store the file when possible
  4. Health Monitoring: Falls back to healthy network gateways if needed

Example Gateway Response Headers

X-Gateway-Priority: contract-storage-node  # Served by actual storage node
X-Gateway-Priority: network-fallback       # Served by network gateway
X-Gateway-Priority: public-fallback        # Served by public gateway
X-Storage-Node: dlux-io                    # Gateway operator account

Benefits

  1. Data Locality: Files served by nodes that store them
  2. Load Distribution: Spreads traffic across storage providers
  3. Reliability: Multiple fallback options
  4. Performance: Reduces IPFS DHT lookups
  5. Economics: Storage nodes monetize gateway services

Implementation Notes

  1. Performance: Directory listings are built dynamically from contract data
  2. Caching: Consider implementing caching for frequently accessed directories
  3. IPFS Gateway: Configure IPFS_GATEWAY environment variable for fallback gateway
  4. Access Control: Currently public - implement authentication if needed
  5. Large Directories: Consider pagination for directories with many files
  6. Gateway Health: Monitor storage node availability and performance

Configuration

Set these environment variables:

# Fallback IPFS Gateway URL (defaults to https://ipfs.io)
# Only used when no storage node gateways are available
IPFS_GATEWAY=https://gateway.pinata.cloud

# Or use a local IPFS node
IPFS_GATEWAY=http://localhost:8080

Service Registration

For storage nodes to provide gateway services:

  1. Register IPFS Service:
services['mynode']['IPFS']['gateway1'] = {
  a: "https://ipfs.mynode.com",  // Gateway URL
  b: "mynode",                    // Registered by
  c: 2000,                        // Cost in milliLARYNX
  e: 1,                           // Enabled (1 = yes)
  i: "12D3KooW...",              // IPFS peer ID
  m: "High-speed gateway"         // Description
}
  1. Maintain Node Health:
  • Keep lastGood block current
  • Ensure gateway is accessible
  • Monitor service availability

Examples with cURL

# List root directory
curl https://honeygraph.example.com/fs/alice

# List Videos directory
curl https://honeygraph.example.com/fs/alice/Videos

# Get file (follow redirects)
curl -L https://honeygraph.example.com/fs/alice/Videos/tutorial.mp4

# Get file headers only
curl -I https://honeygraph.example.com/fs/alice/Videos/tutorial.mp4

This API makes SPK Network storage accessible through familiar file system semantics, enabling easy integration with existing applications and workflows.

0
0
0.000
avatar
     
It looks like this comment contains a link that does not use a secure protocol: http://localhost:8080

HTTP is in use instead of HTTPS and no protocol redirection is in place.
Do not enter sensitive information in this website as your data won't be encrypted.

[More info on this free service].
Read about HTTP unsafety:   [1]   [2]
{Current avg of HTTP links in Hive post/comments: 18.6/h}
Auto-reply throttled 1/20 to reduce spam. If it still bothers you, reply "OFF HTTP".


Service sponsored by @cryptoshots.nft, 🔫 3D Shooter on Hive
_ Vote for our WITNESS to support this FREE service!
avatar

Mission accomplished! I tag @ivyann, @tobywalter, and @jmis101! 😁🙏💚✨🤙

0
0
0.000
avatar

Thank you very much dear

0
0
0.000
avatar

Certainly, my dear, you're always very welcome. 😁 🙏 💚 ✨ 🤙

0
0
0.000
avatar

Thanks Tydyn for the invite

0
0
0.000
avatar

Absolutely, my friend, you're so welcome! 😁 🙏 💚 ✨ 🤙

0
0
0.000
avatar

@rare-gem @bmhillel @dwixer come and check this out

0
0
0.000
avatar

What's this dear

0
0
0.000
avatar
(Edited)

It's a call to support Dlux by voting it on the Dapplist. The first 5 days comments will be rewarded

If you are interested, all you need to do is to logging the site in any of your wallet, trust wallets preferably, then sign in and edit your profile to your hive username, vote then drop your screenshot in the comments sections tagging three people..

You can go through the post for more information and detailed guide on how to vote here

0
0
0.000
avatar

Action taken.
I invite @nellybestie, @alovely088 and @kingsleyy to vote.

0
0
0.000
avatar

Thanks dear

I'm trying to connect my trust wallet but is not working

0
0
0.000
avatar

Copy the deapplist link go to your trust wallet and paste it at the discover.
Then you sign in by authorizing it and vote.

I hope this helps?

0
0
0.000
avatar
0
0
0.000
avatar

Hey bruh- how did you edit your username there

0
0
0.000
avatar

You'll go to account settings and you'll put your username..

0
0
0.000
avatar

@chimaxroy @favouragina @favourstrings okay so I am not trying to spam you guys with blinks but this is also another chance to participate and earn some rewards.

0
0
0.000
avatar

Ohhh woahhhhh thanks alot for mentioning me and letting me know about this. I will definitely run it up can't play when it comes to rewards 😂

0
0
0.000
avatar

Brooo😹 Hive to the world 💪🏻 🔥🔥

0
0
0.000
avatar

Well... great. @coldbeetrootsoup , good job promoting promising projects on Hive... I went through this DLUX and I find it interesting ... Layer2 HoneyComb decentralised intrastructure. Cool dapps will be stored in IPFS encrypted using Skynet infrastrusture. DAO... and users can mint NFTs easily... and dapps for VR or metauniverse stuff, gaming can be created easily as wellnice. I voted for DLUX...

0
0
0.000
avatar

Thank you for the vote. Dlux is indeed a very interesting project. We are especially interested in the Storage passibility and also earning HIVE with giving your storage.

Please don't forget to tag 3 friends and reblog this article as we ask this in the article :)

0
0
0.000
avatar

Done.

Thanks to @funshee for the mention.

@treasuree @bipolar95
@nellybestie @chi4god come and vote

0
0
0.000
avatar

Thank you

My own is not connecting I don't know why

0
0
0.000
avatar

What the issue you are having. You might need to put your device on desktop mode to see connect with trust wallet

0
0
0.000
avatar

I'm tapping on the wallet I want to connect with but it's not working

0
0
0.000
avatar

Which wallet are you making use of?

0
0
0.000
avatar
(Edited)

Trust wallet

I tried connecting bitget still the same

0
0
0.000
avatar

I used that also. Were you able to switch to desktop mode

0
0
0.000
avatar

No I haven't

0
0
0.000
avatar

Once you click the open the link on trust wallet before you connect click were is circle and switch to desktop mode

0
0
0.000
avatar

Have turn on the desktop mode and clicked on the wallet

0
0
0.000
avatar

Nice.. hope it makes it to the top

0
0
0.000
avatar

We hope so too 🤩 All daps are doing amazing on the dapp list and Hive is climbing the ladder 😉

0
0
0.000
avatar

Congratulations @coldbeetrootsoup! You have completed the following achievement on the Hive blockchain And have been rewarded with New badge(s)

You made more than 2000 comments.
Your next target is to reach 2500 comments.

You can view your badges on your board and compare yourself to others in the Ranking
If you no longer want to receive notifications, reply to this comment with the word STOP

0
0
0.000
avatar

Congratulations @coldbeetrootsoup! Your post has been a top performer on the Hive blockchain and you have been rewarded with this rare badge

Post with the highest payout of the day.

You can view your badges on your board and compare yourself to others in the Ranking
If you no longer want to receive notifications, reply to this comment with the word STOP

0
0
0.000
avatar

@coldbeetrootsoup ... I don't have friends about much in real life or Hive... but I got some followers I tag then to check #DLUX and upvote Hive project on #theDappList. @atma.love @dewabrata @saboin @Nhaji01, @jadams2k18 .

I myself am iching to get some wave touches of web3 because I have been off this web3 world for few months due to personal stuff I had to attend to. Yesterday I saw your tweet and even though I was not yet willing to check web3 stuff as I trying to get back, I came in checked #DLUX and really want to start off my Web3 journey else my life seems empty...

so I will check #DLUX, I did yesterday but today I do it again and ses if its the sort of project I like to write about to start off. Very rusty in web3... let's see how it goes... I remember #Distractor and I saw it help lot of latin American countries people in making payments using #HBD and also you know get upvotes for making purchases and paying using #Distrator and providing review of the shop and purchase.

It's good stuff, so I thought and a way to spread web3 aadoption on #HBD and Bitcoin Lighting payments and it was heartening to see that the Bitcoin Lighting payment method promoted about was the one developed in Hive by a Hive witness...anyway...somewhere I got a Web3 heart and am glad good things are made with Web3 technology...exciting yes but makes positive impact hopefully too!!

I also so thrilled to know there is a #dapplist website from which I can see Web3 dapps I can use, curated by community and all...so more reliable. and a good way to be part of web3 community and all...anyway.

0
0
0.000
avatar

thanks for the tag. Will check it out.

0
0
0.000
avatar

Interesting information. Thanks for sharing.

0
0
0.000
avatar

Congratulations @coldbeetrootsoup! Your post has been a top performer on the Hive blockchain and you have been rewarded with this rare badge

Post with the highest payout of the week.

You can view your badges on your board and compare yourself to others in the Ranking
If you no longer want to receive notifications, reply to this comment with the word STOP

0
0
0.000
avatar

Try not to miss out @zain-ab001 @rukkie @offia66

0
0
0.000
avatar

I tried it but trust wallet doesn't seem to be working.
Maybe it's a bug or something. But no wallet I try to connect works when I tap them on the site

0
0
0.000
avatar

Mine also was like that in the beginning but it later work, maybe you should try again.

0
0
0.000